/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Contenedor superior (logo + top bar) */
.top-container {
    background-color: #fff;
    padding: 10px 0;
    position: relative;
}

/* Línea amarilla debajo del top-bar */
.top-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6.5px; /* Grosor de la línea */
    background-color: #FFD700; /* Amarillo (cambia el código si prefieres otro tono) */
}

.logo {
    height: 110px; /* Ajusta según el tamaño de tu imagen */
    width: auto;
    z-index: 1;
}

.top-bar {
    display: flex;
    gap: 25px; /* Espacio entre elementos */
    z-index: 1;
}
/* Estilos para íconos amarillos */
.icon-yellow {
    color: #FFD700; /* Amarillo corporativo */
    margin-right: 8px; /* Espacio entre ícono y texto */
    font-size: 30px; /* Tamaño ajustable */
}
.icon-yellow:hover {
    transform: scale(1.1); /* Efecto de crecimiento */
    transition: transform 0.3s;
}

.top-bar-item {
    font-size: 17px;
    color: #103464;
    display: flex;
    align-items: center;
}

/* Menú de navegación */
.navbar {
    background-color: #103464; /* Azul corporativo */
    padding: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px; /* Espacio entre enlaces */
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 520;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.8px;
    transition: all 0.3s;
    padding-bottom: 5px;
}

.nav-links a.active {
    color: #FFD700 !important; /* Amarillo corporativo */
    border-bottom: 2px solid #FFD700; /* Subrayado amarillo */
    font-weight: 700; /* Opcional: texto más grueso */
}

.nav-links a:active {
    transform: scale(0.98);
}

.nav-links a:hover {
    color: #FFD700;
    border-bottom: 2px solid #FFD700; 
}

.nav-links li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3); /* Línea sutil entre items */
    padding-right: 25px; /* Espacio extra */
}

/* Botón "Escríbenos" */
.btn-escribenos {
    background-color: #FFD700; /* Amarillo corporativo */
    color: #103464 !important; /* Azul corporativo (texto) */
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 30px; /* Espacio entre el último enlace y el botón */
}

.btn-escribenos:hover {
    background-color: #e6c200; /* Amarillo más oscuro al hover */
    transform: translateY(-2px); /* Efecto de elevación */
}

.btn-escribenos i {
    font-size: 12px; /* Tamaño del ícono */
}

/* Estilos del carrusel */
.carousel {
    position: relative;
    width: 100%;
    height: 500px; /* Ajusta según necesidad */
    overflow: hidden;
    margin: 0 auto;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%; /* Centrado vertical */
    left: 50%; /* Centrado horizontal */
    transform: translate(-50%, -50%); /* Ajuste fino para centrar exactamente */
    color: white;
    text-align: center; /* Alineación del texto al centro */
    width: 90%; /* Ancho máximo para evitar desbordamiento */
    max-width: 800px; /* Ajusta según necesidad */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.slide h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff; 
}

.btn-carousel {
    background-color: #FFD700;
    color: #103464;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    margin-top: 20px; /* Espacio entre título y botón */
}

.btn-carousel:hover {
    background-color: #e6c200;
}

/* Botón "Escríbenos" dentro del slide */
.btn-escribenos-slide {
    font-size: 1.2rem;
    padding: 15px 30px;
}

/* Controles del carrusel */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Indicadores de puntos */
.indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicators span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.indicators span.active {
    background-color: #FFD700;
}

/* Contenedor principal (en fila) */
.mvv-horizontal {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Columnas */
.mvv-column {
    flex: 1; /* Ocupa igual espacio */
    min-height: 270px; /* Altura fija (ajustable) */
    padding: 40px 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* Colores */
.vision, .valores {
    background-color: #103464; /* Azul */
    color: white;
}

.mision {
    background-color: #FFD700; /* Amarillo */
    color: #103464;
}

/* Divisores */
.mvv-divider {
    width: 50px;
    height: 3px;
    margin: 10px 0;
    align-self: flex-start;
}

.vision .mvv-divider, .valores .mvv-divider {
    background-color: #FFD700; /* Amarillo */
}

.mision .mvv-divider {
    background-color: #103464; /* Azul */
}

/* Tipografía */
.mvv-column h2 {
    align-self: flex-start;
    font-size: 24px;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 1px;
    margin-left: 10%;
}

.mvv-column p {
    max-width: 90%;
    margin-left: 10%;
    line-height: 1.6;
    font-size: 16px;
    margin-top: 15px;
}

.mvv-column h2, 
.mvv-column p, 
.mvv-divider {
    margin-left: 10%; /* Margen izquierdo igual para todos */
    width: 80%; /* Ancho controlado */
}

/* Sección Sobre Nosotros */

.about-us-section {
    background-color: #fff;
    padding: 80px 20px;
}

.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-us-content {
    flex: 1;
}

.about-us-content h1 {
    color: #FFD700; /* Azul corporativo */
    font-size: 30px;
    margin-bottom: 5px;
    font-weight: 700;
}

.about-us-content h2 {
    color: #103464; /* Azul corporativo */
    font-size: 45px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-us-content .intro-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: normal;
}

.about-us-content p:not(.intro-text) {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 16px;
}   

/* Botón */
.btn-about {
    background-color: #FFD700; /* Amarillo corporativo */
    color: #103464; /* Azul corporativo */
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-about:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

/* Imagen */
.about-us-image {
    flex: 0.9;
}

.about-us-image img {
    width: 80%;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Línea divisoria */
.about-us-content::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #FFD700; /* Amarillo corporativo */
    margin: 25px 0;
}   

/* Sección de Video */
.video-section {
            width: 100%;
            max-width: 2000px;
            height: 600px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(16, 52, 100, 0.7), rgba(16, 52, 100, 0.8)), url(img/video.png) no-repeat center center/cover;
        }
        
        .content {
            position: relative;
            z-index: 2;
            color: white;
            padding: 60px;
            max-width: 650px;
        }
        
        .title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .subtitle {
            font-size: 1.8rem;
            margin-bottom: 40px;
            font-weight: 300;
            color: #FFD700;
        }
        
        .play-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #FFD700;
            color: #103464;
            font-size: 1.2rem;
            font-weight: 600;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
            cursor: pointer;
        }
        
        .play-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
            background-color: #ffde29;
        }
        
        .play-btn i {
            margin-right: 10px;
            font-size: 1.5rem;
        }

        .services-container {
            width: 100%;
            max-width: 2000px;
            background: white;
            padding: 50px 40px;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .section-title {
            font-size: 36px;
            font-weight: 800;
            color: #103464;
            margin-bottom: 45px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: #FFD700;
            border-radius: 3px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .service-card {
            background: #103464;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.09);
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .service-image {
            height: 290px;
            overflow: hidden;
            position: relative;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.08);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-title {
            font-size: 20px;
            font-weight: 700;
            color: #ffe100;
            margin-bottom: 15px;
        }
        
        .service-specs {
            font-size: 15px;
            color: #4a5568;
            line-height: 1.5;
            padding: 12px;
            background: rgba(16, 52, 100, 0.06);
            border-radius: 8px;
            margin-top: 10px;
        }
        
        .spec-item {
            margin-bottom: 6px;
        }

.premium-clients {
            width: 100%;
            max-width: 1400px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .premium-clients:before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, rgba(255,215,0,0) 70%);
            z-index: 0;
        }
        
        .premium-clients:after {
            content: '';
            position: absolute;
            bottom: -200px;
            left: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(16,52,100,0.2) 0%, rgba(16,52,100,0) 70%);
            z-index: 0;
        }
        
        .section-header {
            position: relative;
            z-index: 2;
            margin-bottom: 70px;
        }
        
    
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: #103464;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 5px;
            background: linear-gradient(to right, #FFD700, #ffde2e, #FFD700);
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: rgba(62, 62, 62, 0.8);
            max-width: 600px;
            margin: 0 auto;
            font-weight: 300;
            line-height: 1.6;
        }
        
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
            margin-bottom: 60px;
        }
        
        .client-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 25px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 280px;
        }
        
        .client-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(16, 52, 100, 0.2) 0%, rgba(16, 52, 100, 0) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .client-card:hover:before {
            opacity: 1;
        }
        
        .client-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 215, 0, 0.3);
        }
        
        .client-logo {
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
        }
        
        .client-logo img {
            max-width: 100%;
            max-height: 80px;
            filter: brightness(0) invert(1);
            opacity: 0.9;
            transition: all 0.4s ease;
        }
        
        .client-card:hover .client-logo img {
            filter: brightness(1) invert(0);
            opacity: 1;
            transform: scale(1.1);
        }
        
        .client-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: rgb(13, 4, 83);
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }
        
        .client-sector {
            font-size: 0.9rem;
            color: rgba(0, 0, 0, 0.7);
            position: relative;
            z-index: 2;
        }
        
        .client-card:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #FFD700, #ffde2e, #FFD700);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .client-card:hover:after {
            transform: scaleX(1);
        }
        
        .testimonial-section {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }
        
        /* Efectos de aparición */
        .client-card {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s forwards;
        }
        
        .client-card:nth-child(1) { animation-delay: 0.1s; }
        .client-card:nth-child(2) { animation-delay: 0.2s; }
        .client-card:nth-child(3) { animation-delay: 0.3s; }
        .client-card:nth-child(4) { animation-delay: 0.4s; }
        .client-card:nth-child(5) { animation-delay: 0.5s; }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stats-section {
            width: 100%;
            max-width: 1200px;
            text-align: center;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #103464;
            margin-bottom: 60px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #FFD700;
            border-radius: 2px;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .stat-card {
            background: white;
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .stat-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #103464, #FFD700);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .stat-card:hover:before {
            transform: scaleX(1);
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .stat-icon {
            width: 80px;
            height: 80px;
            background: rgba(16, 52, 100, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            position: relative;
        }
        
        .stat-icon i {
            font-size: 2.2rem;
            color: #103464;
        }
        
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #103464;
            margin-bottom: 10px;
            line-height: 1;
        }
        
        .plus-sign {
            font-size: 2rem;
            color: #FFD700;
            font-weight: 700;
            vertical-align: super;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: #4a5568;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .stat-description {
            font-size: 0.95rem;
            color: #718096;
            margin-top: 10px;
        }
        
        /* Animación de contador */
        .stat-number {
            transition: all s ease;
        }



        .footer-container {
            width: 100%;
            max-width: 2000px;
            background: #103464;
            color: white;
            border-radius: 12px 12px 0 0;
            overflow: hidden;
            box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
        }
        
        .footer-main {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            padding: 50px 40px;
        }
        
        .footer-section {
            display: flex;
            flex-direction: column;
        }
        
        .footer-section h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #FFD700;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-section h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #FFD700;
            border-radius: 2px;
        }
        
        .footer-contact p {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            line-height: 1.5;
        }
        
        .footer-contact i {
            color: #FFD700;
            margin-right: 10px;
            margin-top: 4px;
            min-width: 16px;
        }
        
        .footer-services ul {
            list-style: none;
        }
        
        .footer-services li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        
        .footer-services li:before {
            content: '•';
            color: #FFD700;
            font-weight: bold;
            margin-right: 10px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }
        
        .footer-links a:hover {
            color: #FFD700;
        }
        
        .footer-links a:before {
            content: '→';
            color: #FFD700;
            margin-right: 10px;
            font-weight: bold;
            transition: transform 0.3s;
        }
        
        .footer-links a:hover:before {
            transform: translateX(5px);
        }
        
        .footer-contact-form p {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .contact-info {
            margin-top: 15px;
        }
        
        .contact-info p {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            color: #FFD700;
            margin-right: 10px;
            min-width: 16px;
        }
        
        .footer-bottom {
            background: #0a2540;
            padding: 25px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .footer-links-bottom {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-links-bottom a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        
        .footer-links-bottom a:hover {
            color: #FFD700;
        }
        
        .copyright {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            margin-top: 15px;
            width: 100%;
            text-align: center;
        }
        
        .designer {
            color: #FFD700;
            font-weight: 500;
        }

        /* ========================= */
/* MEDIA QUERIES RESPONSIVE */
/* ========================= */

/* Tablets y pantallas medianas */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .top-bar {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .about-us-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about-us-image img {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Móviles */
@media (max-width: 768px) {
    .logo {
        height: 80px;
    }

    .nav-links {
        display: none; /* Lo ocultamos y se activa menú hamburguesa si deseas */
    }

    .btn-escribenos {
        margin-left: 0;
        margin-top: 10px;
    }

    .carousel {
        height: 300px;
    }

    .slide h2 {
        font-size: 1.8rem;
    }

    .btn-carousel {
        padding: 10px 18px;
        font-size: 14px;
    }

    .mvv-horizontal {
        flex-direction: column;
    }

    .mvv-column {
        padding: 20px;
        text-align: center;
        align-items: center;
    }

    .about-us-content h2 {
        font-size: 28px;
    }

    .about-us-content h1 {
        font-size: 22px;
    }

    .video-section {
        height: 350px;
        padding: 20px;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Extra pequeños (menos de 480px) */
@media (max-width: 480px) {
    .slide h2 {
        font-size: 1.4rem;
    }

    .btn-carousel {
        padding: 8px 15px;
        font-size: 12px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

