        [data-aos] {
            opacity: 0;
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        [data-aos].aos-animate {
            opacity: 1;
            transform: translateY(0);
        }
       /*--------------------------------------------------------------
# Sección Nosotros
--------------------------------------------------------------*/

#nosotros-section {
    position: relative;
    height: 100vh; /* Esto asegura que la sección ocupe toda la altura de la pantalla */
    overflow: hidden;
}

#video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Esto hace que el video cubra toda el área */
    z-index: -1; /* Coloca el video detrás del contenido */
}

#nosotros-section .container {
    padding-top: 100px;
}

#nosotros-section h1 {
    margin: 0 0 10px 0;
    font-size: 38px;
    font-weight: 500;
    line-height: 56px;
    color: #fff;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
}

#nosotros-section h2 {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    font-size: 24px;
}

#nosotros-section .btn-get-started {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff;
    background: #006cbe;
}

#nosotros-section .btn-get-started:hover {
    background: #54a9fa;
}

#nosotros-section .btn-watch-video {
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    margin: 10px 0 0 25px;
    color: #fff;
    line-height: 1;
}

#nosotros-section .btn-watch-video i {
    line-height: 0;
    color: #fff;
    font-size: 32px;
    transition: 0.3s;
    margin-right: 8px;
}

#nosotros-section .btn-watch-video:hover i {
    color: #54a9fa;
}

#nosotros-section .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

/* Responsivo */

@media (max-width: 991px) {
    #nosotros-section {
        height: 100vh;
        text-align: center;
    }
    .animado {
        animation: none;
    }
    .nosotros-img {
        text-align: center;
    }
    .nosotros-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #nosotros-section h1 {
        font-size: 35px;
        line-height: 40px;
        font-family: Arial;
    }
    #nosotros-section h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    .nosotros-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    .nosotros-img img {
        width: 80%;
        padding-top: 0px;
    }
}

/* Animación */

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

        /*--------------------------------------------------------------
# Sección Origen
--------------------------------------------------------------*/
        
        #origen {
            padding: 50px 0;
            background: #f9f9f9;
        }
        
        #origen .container {
            max-width: 80%;
            margin: auto;
        }
        
        #origen .section-title h2 {
            font-size: 32px;
            font-weight: 600;
            color: #333;
            text-align: center;
            margin-bottom: 20px;
        }
        
        #origen .section-title p {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            text-align: justify;
        }
        
        @media (max-width: 768px) {
            #origen .section-title h2 {
                font-size: 28px;
            }
            #origen .section-title p {
                font-size: 14px;
            }
        }
        /*--------------------------------------------------------------
# Horario
--------------------------------------------------------------*/
        
        .coonnttaaiinneer {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            width: 90%;
            max-width: 500px;
            animation: fadeIn 1s ease-in-out;
            align-items: center;
            margin-left: 450px;
        }
        
        .boxx {
            background: #888;
            color: white;
            padding: 10px;
            margin: 5px 0;
            border-radius: 5px;
            font-size: 18px;
            opacity: 0;
            transform: translateY(20px);
            animation: slideIn 1s ease-in-out forwards;
        }
        
        .boxx:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .boxx:nth-child(3) {
            animation-delay: 0.4s;
        }
        
        .boxx:nth-child(4) {
            animation-delay: 0.6s;
        }
        
        .boxx:nth-child(5) {
            animation-delay: 0.8s;
        }
        
        .small-text {
            font-size: 14px;
            color: black;
            margin-top: 5px;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media screen and (min-width: 993px) and (max-width: 1366px) {
            .coonnttaaiinneer {
                margin-left: 17%;
                max-width: 700px;
            }
        }
        
        @media (max-width: 992px) {
            .coonnttaaiinneer {
                margin-left: 100px;
            }
        }
        
        @media (max-width: 768px) {
            .coonnttaaiinneer {
                margin-left: 20px;
            }
        }
        /*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
        
        .cta {
            background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("/assets/img/Nosotros/cta.webp") fixed center center;
            background-size: cover;
            padding: 0px 0;
        }
        
        .cta h3 {
            color: #fff;
            font-size: 28px;
            font-weight: 700;
        }
        
        .cta p {
            color: #fff;
        }
        
        .cta .cta-btn {
            font-family: "Jost", sans-serif;
            font-weight: 500;
            font-size: 16px;
            letter-spacing: 1px;
            display: inline-block;
            padding: 12px 40px;
            border-radius: 50px;
            transition: 0.5s;
            margin: 10px;
            border: 2px solid #fff;
            color: #fff;
        }
        
        .cta .cta-btn:hover {
            background: #47b2e4;
            border: 2px solid #47b2e4;
        }
        /* Ajuste para dispositivos móviles */
        
        @media (max-width: 1024px) {
            .cta {
                background-attachment: scroll;
            }
        }
        /* Alineación del botón en pantallas grandes */
        
        @media (min-width: 769px) {
            .cta .cta-btn-container {
                display: flex;
                align-items: center;
                justify-content: flex-end;
            }
        }
        
        .text-center.border.p-4 {
            height: 100%;
            min-height: 250px;
            border-radius: 10px;
            padding: 20px;
        }
        
        .text-center.border.p-4 h3 {
            color: #fff;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .text-center.border.p-4 span {
            color: #fff;
            font-size: 16px;
            font-weight: 500;
        }
        
        .text-center.border.p-4 i {
            font-size: 3rem;
            color: white;
            margin-bottom: 15px;
        }
        /*--------------------------------------------------------------
# Sección Misión, Visión y Valores
--------------------------------------------------------------*/
        
        #mision-vision-valores {
            padding: 50px 0;
            background: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        
        .mvv-container {
            width: 90%;
            max-width: 90%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        
        .info-box {
            padding: 40px 30px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
            background: #fff;
            border-radius: 8px;
            text-align: center;
            width: 80%;
            max-width: 80%;
            transition: transform 0.3s ease-in-out;
            border-top: 4px solid #47b2e4;
        }
        
        .info-box:nth-child(odd) {
            align-self: flex-start;
        }
        
        .info-box:nth-child(even) {
            align-self: flex-end;
        }
        
        .info-box h4 {
            font-size: 30px;
            color: #37517e;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .valores ul {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            justify-content: center;
            list-style: none;
        }
        
        .valores ul li {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 1px 0;
            gap: 8px;
        }
        
        .valores ul li::before {
            content: "✔️";
            color: #28a745;
            font-size: 12px;
        }
        /* Responsividad */
        
        @media screen and (min-width: 993px) and (max-width: 1366px) {
            .info-box {
                width: 80%;
            }
            .info-box h4 {
                font-size: 22px;
            }
        }
        
        @media (max-width: 992px) {
            .info-box {
                width: 90%;
                align-self: center;
            }
            .info-box h4 {
                font-size: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .valores ul {
                grid-template-columns: 1fr;
            }
            .info-box {
                width: 100%;
                max-width: 100%;
            }
            .info-box h4 {
                font-size: 25px;
            }
        }
        
        @media (max-width: 420px) {
            .info-box {
                width: 100%;
                max-width: 100%;
            }
        }