    .alianzas-circulos-carrusel-section {
        padding: 2rem 2rem;

        position: relative;
        overflow: hidden;
    }

    .alianzas-circulos-carrusel-container {
        max-width: 1300px;
        margin: 0 auto;
        position: relative;
    }

    .circulos-carrusel-titulo {
        font-size: 3.1rem;
        color: var(--azul, #095374);
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .circulos-carrusel-titulo .verde {
        color: var(--verde, #b0bf3e);
    }

    .circulos-carrusel-subtitulo {
        font-family: 'Roboto', sans-serif;
        color: var(--gris, #434444);
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    /* Wrapper con efecto glass */
    .circulos-carrusel-wrapper {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 80px;
        padding: 2.5rem 1rem;
        border: 2px solid var(--verde-claro, #d0da89);
        box-shadow: 0 20px 40px rgba(9, 83, 116, 0.15);
        overflow: hidden;
        margin: 0 2rem;
    }

    /* Track del carrusel */
    .circulos-carrusel-track {
        display: flex;
        gap: 3rem;
        animation: scroll 20s linear infinite;
        width: fit-content;
    }

    .circulos-carrusel-track:hover {
        animation-play-state: paused;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-220px * 6));
        }

        /* 220px es el ancho aproximado de cada item (180px + gap) */
    }

    /* Items (círculos con sombra) */
    .circulo-carrusel-item {
        flex: 0 0 180px;
        text-align: center;
        transition: 0.3s;
    }

    .circulo-carrusel-item:hover {
        transform: translateY(-10px) scale(1.05);
    }

    .circulo-carrusel-imagen {
        width: 150px;
        height: 150px;
        margin: 0 auto 1rem;
        border-radius: 50%;
        overflow: hidden;
        border: 5px solid var(--verde-claro, #d0da89);
        box-shadow: 0 15px 0 var(--azul, #095374);
        transition: 0.3s;
        cursor: pointer;
    }

    .circulo-carrusel-item:hover .circulo-carrusel-imagen {
        transform: translateY(-8px);
        box-shadow: 0 20px 0 var(--verde, #b0bf3e);
        border-color: var(--verde, #b0bf3e);
    }

    .circulo-carrusel-imagen img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .circulo-carrusel-item p {
        font-family: 'Montserrat', sans-serif;
        color: var(--gris, #434444);
        font-weight: 600;
        font-size: 1.1rem;
        margin-top: 0.5rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
        @keyframes scroll {
            100% {
                transform: translateX(calc(-200px * 6));
            }
        }
    }

    @media (max-width: 768px) {
        .circulos-carrusel-titulo {
            font-size: 2rem;
        }

        .circulos-carrusel-wrapper {
            border-radius: 50px;
            padding: 1.5rem 0.5rem;
        }

        .circulo-carrusel-item {
            flex: 0 0 140px;
        }

        .circulo-carrusel-imagen {
            width: 120px;
            height: 120px;
            box-shadow: 0 10px 0 var(--azul, #095374);
        }

        .circulo-carrusel-item p {
            font-size: 1rem;
        }

        @keyframes scroll {
            100% {
                transform: translateX(calc(-180px * 6));
            }
        }
    }

    @media (max-width: 480px) {
        .circulo-carrusel-item {
            flex: 0 0 120px;
        }

        .circulo-carrusel-imagen {
            width: 100px;
            height: 100px;
        }

        .circulos-carrusel-wrapper {
            margin: 0 1rem;
        }

        @keyframes scroll {
            100% {
                transform: translateX(calc(-160px * 6));
            }
        }
    }

    /* SECCIÓN ESTÁTICA DE CERTIFICACIONES (SIN MOVIMIENTO) */
.certificaciones-estaticas-section {
    padding: 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.certificaciones-estaticas-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.certificaciones-titulo {
    font-size: 3.1rem;
    color: var(--azul, #095374);
    text-align: center;
    margin-bottom: 3rem;
}

/* Wrapper con efecto glass */
.certificaciones-wrapper {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 80px;
    padding: 2.5rem 1rem;
    border: 2px solid var(--verde-claro, #d0da89);
    box-shadow: 0 20px 40px rgba(9, 83, 116, 0.15);
    margin: 0 2rem;
}

/* Grid en lugar de track animado */
.certificaciones-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    width: 100%;
}

/* Items (círculos con sombra) - Mismos estilos que el original */
.certificacion-item {
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
    transition: 0.3s;
}

.certificacion-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.certificacion-imagen {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--verde-claro, #d0da89);
    box-shadow: 0 15px 0 var(--azul, #095374);
    transition: 0.3s;
    cursor: pointer;
}

.certificacion-item:hover .certificacion-imagen {
    transform: translateY(-8px);
    box-shadow: 0 20px 0 var(--verde, #b0bf3e);
    border-color: var(--verde, #b0bf3e);
}

.certificacion-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .certificaciones-grid {
        gap: 2rem;
    }
    
    .certificacion-item {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .certificaciones-titulo {
        font-size: 2rem;
    }

    .certificaciones-wrapper {
        border-radius: 50px;
        padding: 1.5rem 0.5rem;
        margin: 0 1rem;
    }

    .certificaciones-grid {
        gap: 1.5rem;
    }

    .certificacion-item {
        width: 140px;
    }

    .certificacion-imagen {
        width: 120px;
        height: 120px;
        box-shadow: 0 10px 0 var(--azul, #095374);
    }
}

@media (max-width: 580px) {
    .certificaciones-grid {
        gap: 1.5rem;
    }
    
    .certificacion-item {
        width: 130px;
    }
}

@media (max-width: 480px) {
    .certificaciones-titulo {
        font-size: 1.8rem;
    }
    
    .certificacion-item {
        width: 120px;
    }

    .certificacion-imagen {
        width: 100px;
        height: 100px;
        box-shadow: 0 8px 0 var(--azul, #095374);
    }

    .certificaciones-wrapper {
        margin: 0 0.5rem;
        padding: 1.5rem 0.3rem;
    }
    
    .certificaciones-grid {
        gap: 1rem;
    }
}

/* Para pantallas muy pequeñas - Una sola columna */
@media (max-width: 380px) {
    .certificaciones-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .certificacion-item {
        width: 160px;
    }
    
    .certificacion-imagen {
        width: 130px;
        height: 130px;
    }
}

/*VIDEOOOOO*/

/* DISEÑO 6 - MODERNO CON LÍNEAS */
.video-moderno-section {
    padding: 2rem 2rem;
    position: relative;
    width: 100%;
}

.video-moderno-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.video-moderno-wrapper {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid var(--verde-claro, #d0da89);
    box-shadow: 0 20px 40px rgba(9, 83, 116, 0.1);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-moderno-wrapper:hover {
    border-color: var(--verde, #b0bf3e);
    box-shadow: 0 30px 60px rgba(9, 83, 116, 0.2);
}

/* Líneas decorativas */
.video-moderno-lineas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.linea {
    position: absolute;
    background: var(--verde, #b0bf3e);
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.video-moderno-wrapper:hover .linea {
    opacity: 0.3;
    background: var(--azul, #095374);
}

.horizontal {
    width: 100%;
    height: 1px;
    top: 30%;
    left: 0;
    transform: rotate(-5deg);
}

.vertical {
    width: 1px;
    height: 100%;
    left: 70%;
    top: 0;
    transform: rotate(15deg);
}

.diagonal {
    width: 150%;
    height: 1px;
    background: var(--azul, #095374);
    bottom: 20%;
    right: -25%;
    transform: rotate(-10deg);
}

/* Contenido inicial */
.video-moderno-contenido {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
    transition: opacity 0.4s ease;
}

.video-moderno-contenido.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-moderno-badge {
    display: inline-block;
    background: var(--azul, #095374);
    color: white;
    padding: 0.3rem 1.5rem;
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    border: 1px solid var(--verde-claro, #d0da89);
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}

.video-moderno-icono {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--verde, #b0bf3e);
    background: var(--azul, #095374);
    border-radius: 50%;
    transition: all 0.4s ease;
    cursor: pointer;
    z-index: 5;
}

.video-moderno-wrapper:hover .video-moderno-icono {
    background: var(--verde, #b0bf3e);
    color: var(--azul, #095374);
    transform: scale(1.05);
}

/* Ondas animadas */
.onda {
    position: absolute;
    border: 2px solid var(--verde-claro, #d0da89);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ondaAnim 2s infinite;
    opacity: 0;
    pointer-events: none;
}

.onda1 {
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.onda2 {
    width: 140px;
    height: 140px;
    animation-delay: 0.5s;
}

.onda3 {
    width: 160px;
    height: 160px;
    animation-delay: 1s;
}

@keyframes ondaAnim {
    0% {
        width: 100px;
        height: 100px;
        opacity: 0.5;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Títulos */
.video-moderno-titulo {
    font-family: 'Hatsch Sans', sans-serif;
    font-size: 2.5rem;
    color: var(--azul, #095374);
    margin-bottom: 0.5rem;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.video-moderno-texto {
    font-family: 'Montserrat', sans-serif;
    color: var(--gris, #434444);
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
}

/* Contenedor del video */
.video-moderno-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 10;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 20px;
    overflow: hidden;
}

.video-moderno-player.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-moderno-player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 500px;
}

/* Botón cerrar */
.video-moderno-cerrar {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--verde, #b0bf3e);
    border: 2px solid white;
    color: var(--gris, #434444);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.video-moderno-cerrar:hover {
    background: var(--azul, #095374);
    color: white;
    transform: rotate(90deg);
}

/* ===== RESPONSIVE ===== */

/* Tablets y laptops pequeñas */
@media (max-width: 992px) {
    .video-moderno-wrapper {
        padding: 2.5rem 1.5rem;
        min-height: 320px;
    }
    
    .video-moderno-titulo {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }
    
    .video-moderno-icono {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }
    
    .onda1 { width: 110px; height: 110px; }
    .onda2 { width: 130px; height: 130px; }
    .onda3 { width: 150px; height: 150px; }
}

/* Móviles grandes */
@media (max-width: 768px) {
    .video-moderno-section {
        padding: 2rem 1rem;
    }
    
    .video-moderno-wrapper {
        padding: 2rem 1rem;
        min-height: 280px;
        border-radius: 15px;
    }
    
    .video-moderno-badge {
        font-size: 0.7rem;
        padding: 0.2rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .video-moderno-icono {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .onda1 { width: 100px; height: 100px; }
    .onda2 { width: 120px; height: 120px; }
    .onda3 { width: 140px; height: 140px; }
    
    .video-moderno-titulo {
        font-size: 1.8rem;
        letter-spacing: 3px;
        margin-bottom: 0.3rem;
    }
    
    .video-moderno-texto {
        font-size: 1rem;
    }
    
    .video-moderno-cerrar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: 5px;
        right: 5px;
    }
}

/* Móviles medianos */
@media (max-width: 576px) {
    .video-moderno-wrapper {
        padding: 1.5rem 0.8rem;
        min-height: 250px;
    }
    
    .video-moderno-icono {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .onda1 { width: 90px; height: 90px; }
    .onda2 { width: 110px; height: 110px; }
    .onda3 { width: 130px; height: 130px; }
    
    .video-moderno-titulo {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .video-moderno-texto {
        font-size: 0.9rem;
    }
    
    .linea {
        opacity: 0.05;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .video-moderno-wrapper {
        min-height: 220px;
        border-radius: 12px;
    }
    
    .video-moderno-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .video-moderno-icono {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .onda1 { width: 80px; height: 80px; }
    .onda2 { width: 100px; height: 100px; }
    .onda3 { width: 120px; height: 120px; }
    
    .video-moderno-titulo {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
    }
    
    .video-moderno-texto {
        font-size: 0.8rem;
    }
}

/* Pantallas muy pequeñas */
@media (max-width: 360px) {
    .video-moderno-wrapper {
        min-height: 200px;
        padding: 1rem 0.5rem;
    }
    
    .video-moderno-icono {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .onda1 { width: 70px; height: 70px; }
    .onda2 { width: 90px; height: 90px; }
    .onda3 { width: 110px; height: 110px; }
    
    .video-moderno-titulo {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .video-moderno-texto {
        font-size: 0.7rem;
    }
}

