/* Variables globales */
:root {
    --primary-color: #003876;
    --accent-color: #FFA500;
    --dark: #111827;
    --light: #f3f4f6;
    --white: #ffffff;
    --gray: #6b7280;
    --transition: all 0.3s ease;
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar-scrolled {
    padding: 1rem 0;
    background: rgba(0, 56, 118, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    opacity: 0.9;
    transition: var(--transition);
}

.nav-links a:hover {
    opacity: 1;
}

/* Logo */
.logo {
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.contact-btn {
    background: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: var(--white);
}

.contact-btn:hover {
    background: #ff8c00;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 56, 118, 0.8), rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.typed-text {
    color: var(--primary-color);
    font-weight: 600;
}

/* Servicios Section */
.section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 5rem;
    color: var(--primary-color);
    position: relative;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.services-section {
    padding: 6rem 0;
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: auto;
}

.service-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-list li:last-child {
    margin-bottom: 0;
}

.service-list li i {
    color: var(--accent-color);
    margin-right: 1rem;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    background: none;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--primary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-grid {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

/* Profile Section */
.profile-icon-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.profile-main-icon {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.profile-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.profile-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.profile-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: start;
    width: 100%;
}

.profile-content {
    position: relative;
    margin-top: 2rem;
    width: 100%;
}

.profile-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
}

.profile-stats-container {
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-text {
    display: block;
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

.profile-circles {
    position: absolute;
    top: -20px;
    right: -10px;
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.profile-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding: 0.8rem;
}

.circle-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.circle-text {
    font-size: 0.8rem;
    color: var(--gray);
    text-align: center;
    line-height: 1.2;
    margin-top: 0.2rem;
}

.profile-info {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.profile-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    line-height: 1.2;
}

.profile-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.profile-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 100%;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.profile-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.value-item {
    padding: 1.2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.value-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.value-description {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

/* Profile Showcase */
.profile-showcase {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.showcase-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.showcase-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.showcase-header h3 {
    font-size: 1.8rem;
    color: var(--dark);
    font-weight: 600;
    margin: 0;
}

.showcase-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stat-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stat-circle::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: var(--white);
    border-radius: 50%;
    top: 5px;
    left: 5px;
}

.stat-circle::after {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    top: 10px;
    left: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    text-align: center;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.stat-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.stat-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    width: var(--percentage);
    transition: width 1.5s ease-in-out;
}

/* Additional Services Section */
.additional-services {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light) 0%, #f8f9fa 100%);
    position: relative;
}

.services-slider {
    margin-top: 3rem;
    padding: 2rem 0;
    position: relative;
}

.swiper {
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    height: auto;
    padding: 1rem;
}

.service-slide {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-slide-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
}

.service-slide-icon::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.service-slide-icon i {
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.service-slide h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.service-slide h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.service-slide ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-slide ul li {
    color: var(--gray);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-slide ul li:last-child {
    margin-bottom: 0;
}

.service-slide ul li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1rem;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 20px;
}

.swiper-pagination {
    bottom: 10px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 5px;
    background: var(--accent-color);
    opacity: 1;
}

@media (max-width: 768px) {
    .swiper {
        padding: 2rem 0.5rem;
    }

    .service-slide {
        padding: 2rem;
    }

    .service-slide-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .service-slide-icon i {
        font-size: 1.5rem;
    }

    .service-slide h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .service-slide ul li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* Footer Logo */
.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-info {
    max-width: 400px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h4,
.footer-social h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-info {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links,
    .footer-services {
        align-items: center;
    }

    .footer-services li {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stat-box {
        padding: 1rem 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        cursor: pointer;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--white);
        margin: 5px 0;
        transition: var(--transition);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .stat-group {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-circle {
        width: 120px;
        height: 120px;
    }

    .stat-circle::before {
        width: 110px;
        height: 110px;
    }

    .stat-circle::after {
        width: 100px;
        height: 100px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .showcase-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .profile-container {
        max-width: 960px;
    }

    .profile-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .profile-image-container {
        height: 350px;
    }

    .profile-circles {
        right: 0;
    }

    .profile-circle {
        width: 100px;
        height: 100px;
    }

    .profile-info {
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .profile-container {
        max-width: 720px;
    }

    .profile-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-content {
        margin-top: 0;
    }

    .profile-image-container {
        height: 300px;
    }

    .profile-circles {
        top: -15px;
        right: 10px;
    }

    .profile-circle {
        width: 90px;
        height: 90px;
    }

    .circle-number {
        font-size: 1.4rem;
    }

    .profile-info {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .profile-container {
        padding: 0 1rem;
    }

    .profile-image-container {
        height: 250px;
    }

    .profile-circles {
        position: absolute;
        top: -15px;
        right: 10px;
        gap: 0.8rem;
    }

    .profile-circle {
        width: 80px;
        height: 80px;
        padding: 0.5rem;
    }

    .circle-number {
        font-size: 1.2rem;
    }

    .circle-text {
        font-size: 0.7rem;
    }

    .profile-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .profile-values {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .value-item {
        padding: 1rem;
    }

    .value-icon {
        font-size: 1.3rem;
    }

    .value-title {
        font-size: 1rem;
    }

    .value-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .profile-stats {
        grid-template-columns: 1fr;
    }

    .profile-circle {
        width: 70px;
        height: 70px;
    }

    .circle-number {
        font-size: 1.1rem;
    }

    .circle-text {
        font-size: 0.65rem;
        margin-top: 0.1rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}

/* Círculos de servicios */
.service-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f6d365, #fda085);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-circle::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

.service-circle .circle-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 1rem;
    color: var(--dark);
}

.service-circle .circle-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ff6b6b;
}

.service-circle .circle-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    color: var(--gray);
}

.service-circle:hover::before {
    background: rgba(255, 255, 255, 0.95);
}

.service-circle:hover .circle-content h3 {
    color: #ff6b6b;
}
