* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}
body {
    font-family: Arial, Helvetica, sans-serif;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.top-bar {
    width: 100%;
    height: 20px;
    background-color: #000024;
    display: flex;
    align-items: center;
    color: white;
    font-size: 10px;
}
.content {
    width: 100%;
    background-color: #f8f6f6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    min-height: 80px;
}
.menu {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img {
    width: 225px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.05);
}
.navbar ul {
    display: flex;
}
.navbar ul li a {
    font-size: 16px;
    padding: 10px 15px;
    color: #333333; 
    font-weight: bold;
    transition: 0.3s;
}
.navbar ul li a:hover {
    color: #000024;
}
#menu {
    display: none;
}
.menu-icono {
    width: 30px;
    filter: brightness(0);
}
.menu label {
    cursor: pointer;
    display: none;
}
.navbar ul li a:hover {
    color: #ff9900;
    transition: 0.3s;
}
@media (max-width: 991px) {
    .menu label {
        display: block;
    }
    .navbar {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        display: none;
        flex-direction: column;
        border-top: 1px solid #eee;
        z-index: 100;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .navbar ul {
        flex-direction: column;
        padding: 10px 0;
    }
    .navbar ul li {
        width: 100%;
        text-align: center;
    }
    .navbar ul li a {
        display: block;
        padding: 25px 20px;
        border-bottom: 1px solid #eee;
        color: #333;
        text-decoration: none;
        font-size: 18px;
        letter-spacing: 1px;
        transition: background 0.3s;
        -webkit-tap-highlight-color: #cfb287;
    }
    .navbar ul li a:active, 
    .navbar ul li a:focus {
        background-color: #ff7300;
        color: #ffffff;
        border-left: 5px solid #ff9900;
    }
    .navbar ul li a:hover {
        background-color: #ff9900;
        color: #ffffff;
    }
    #menu:checked ~ .navbar {
        display: block;
    }
}
/*---------------------VIDEO DE FONDO----------------------------------------*/
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.video-fondo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    outline: none;
}
.capa-oscura {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}
.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0 20px;
}
.hero-content h1 {
    font-family: 'Arial', sans-serif;
    font-size: 55px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }  
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 15px;
    }
}
/*-------------------------------------------------------------------*/
.franja-dual {
    width: 100%;
    height: 15px; /* Altura delgada */
    /* 90deg: Dirección horizontal
       #000099 50%: Azul hasta la mitad
       #ff9900 50%: Naranja desde la mitad en adelante
    */
    background: linear-gradient(90deg, #000024 , #000024);
}
.franja-azul {
    width: 100%;
    min-height: 150px;
    background-color: #000024 ;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}
.texto-comillas {
    color: #bbb;
    font-family: "Leelawadee UI Semilight", "Leelawadee UI", sans-serif;
    font-size: 35px; 
    font-weight: 300;
    font-style: italic;
    text-align: center;
    line-height: 1.4;
    position: relative;
    padding: 0 30px;
    text-transform: none;
}
.texto-comillas::before,
.texto-comillas::after {
    position: absolute;
    font-size: 250px;
    font-family: serif;
    color: transparent;
    -webkit-text-stroke: 2px hsl(0, 0%, 100%);
    line-height: 1;
}
.texto-comillas::before {
    content: '“';
    left: -130px;
    top: -50px;
}
.texto-comillas::after {
    content: '”';
    right: -50px;
    bottom: -170px;
}
@media (max-width: 991px) {
    .texto-comillas {
        font-size: 18px;
        padding: 0 40px;
    }
    .texto-comillas::before, 
    .texto-comillas::after {
        font-size: 80px;
        -webkit-text-stroke: 1px white;
    }
    .texto-comillas::before {
        left: -20px;
        top: -40px;
    }
    .texto-comillas::after {
        right: -20px;
        bottom: -40px;
    }
}
/*--------------------FOTOS-----------------------------------*/
.seccion-imagenes-pegadas {
    width: 100%;
    background-color: #000024; 
    padding: 5px 0; 
    overflow: hidden;
}
.container-fotos-full {
    display: flex;
    justify-content: center;
    gap: 0; 
    width: 100%; 
    margin: 0;
    padding: 0;
}
.foto-item-full {
    flex: 1; 
    aspect-ratio: 20 / 30; 
    border: none; 
    overflow: hidden;
    margin-right: -1px; 
}
.foto-item-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.foto-item-full:hover img {
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .container-fotos-full {
        flex-direction: column;
    }
    .seccion-imagenes-pegadas {
        padding: 15px 0;
    }
    .foto-item-full {
        width: 100%;
        margin-right: 0;
        margin-bottom: -1px;
    }
}
/*-----------------SECCIÓN CONÓCENOS----------------*/
.conocenos {
    padding: 0; 
    background-color: #ffffff;
    overflow: hidden;
}
.conocenos-flex {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 85%; 
    margin: 0;
}
.conocenos-img {
    flex: 1;
    max-width: 40%; 
    line-height: 0;
    border-left: 20px solid #000024; 
}
.conocenos-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.conocenos-texto {
    flex: 1.2;
    text-align: left;
    font-family: "Leelawadee UI Semilight", "Leelawadee UI", sans-serif;
    padding: 80px; 
}
.conocenos-texto h3 {
    font-size: 40px;
    color: #2f2f30;
    margin-bottom: 25px;
    font-weight: bold;
    position: relative;
}
.conocenos-texto h3::after {
    content: '';
    display: block;
    width: 380px;
    height: 4px;
    background-color: #ff9900;
    margin-top: 10px;
}
.conocenos-texto p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}
@media (max-width: 991px) {
    .conocenos-flex {
        flex-direction: column !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    .conocenos-texto {
        padding: 40px 20px !important;
        text-align: center !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    .conocenos-texto p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }
    .conocenos-texto h3 {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .conocenos-texto h3::after {
   
        margin: 10px auto 0 auto !important;
    }
    .conocenos-img {
        order: 2;
        width: 60% !important;
        max-width: 300px !important;
        margin: 20px auto !important;
        display: block !important;
        border: none !important;
        line-height: 0;
    }
    .conocenos-img img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        border-radius: 8px !important;
        border: none !important;
    }
}
/*-----------------------ESTILOS PARA IMAGEN-----------------------*/
.imagen-destacada-wrapper {
    width: 100%;
    background-color: #ff9900; 
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.container-imagen-video {
    width: 100%; 
    max-width: 100%; 
    margin: 0;
    padding: 0;
}
.imagen-formato-video {
    width: 100%;
    aspect-ratio: 21 / 9; 
    overflow: hidden;
    line-height: 0;
    border-top: 3px solid #ff9900;
    border-bottom: 3px solid #ff9900;
    border-left: none;
    border-right: none;
    border-radius: 0;
    box-shadow: none;
}
.imagen-formato-video img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transition: transform 0.5s ease;
}
.imagen-formato-video:hover img {
    transform: scale(1.05);
}
@media (max-width: 991px) {
    .imagen-contenedor-total {
        aspect-ratio: 16 / 9; 
    }
}
/*--------------------ESTILOS FINALES FOOTER AZUL---------*/
.footer-final {
    background-color: #000024;
    color: #ffffff;
    padding: 60px 0;
    font-family: 'Arial', sans-serif;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.footer-col {
    flex: 1;
    min-width: 250px;
}
.footer-col h3 {
    color: #ff9900;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.linea-decorativa {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 12px;
}
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
}
/*--------------------SECCIÓN ALIADOS-------------------------------*/
.aliados-seccion {
    width: 100%;
    flex: 2;
    padding-right: 20px;
    box-sizing: border-box;
}
.logos-aliados-container {
    display: flex;
    flex-wrap: wrap; 
    gap: 15px;
    align-items: center;
    justify-content: center; 
    background-color: transparent;
    margin-top: 20px;
    width: 100%;
}
.logos-aliados-container img {
    background-color: #ffffff; 
    border: 0px solid #ffffff; 
    border-radius: 8px;
    width: 100%;
    max-width: 280px;
    height: 160px;
    object-fit: contain;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}
.logos-aliados-container img:hover {
    transform: scale(1.05);
}
@media (max-width: 1100px) {
    .logos-aliados-container img {
        width: 220px; 
        height: 130px;
    }
}
@media (max-width: 991px) {
    .logos-aliados-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .logos-aliados-container img {
        max-width: 180px; 
        height: 110px;
    }
}
@media (max-width: 768px) {
    .logos-aliados-container img {
        width: 150px; 
        height: 90px;
        padding: 8px;
    }
    
    .logos-aliados-container {
        gap: 15px;
    }
}
@media (max-width: 380px) {
    .logos-aliados-container img {
        width: 130px;
        height: 80px;
    }
}
/*------------------ PIE DE PÁGINA FINAL---------- */
.footer-final {
    background-color: #000024;
    width: 100%;
    margin-top: 0 !important;
    border-top: 14px solid #000024;
    padding: 25px 0; 
}
.footer-copy-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 90%;
    margin: 0 auto;
}
.footer-final p {
    color: #ffffff;
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
    font-family: 'Arial', sans-serif;
}
.diseno-autor {
    font-size: 12px !important;
    opacity: 0.7 !important;
    font-weight: 300;
}
@media (max-width: 768px) {
    .footer-copy-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
/*---------------------------boton--------------------------------------------*/
#btn-subir {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    background-color: rgba(255, 153, 0, 0.8); 
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    transition: all 0.4s ease-in-out;
}
#btn-subir.mostrar {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#btn-subir img {
    width: 50%;
    height: auto;
    filter: brightness(0) invert(1);
}
#btn-subir:hover {
    background-color: rgba(255, 153, 0, 1);
    transform: translateY(-5px);
}
/*----------------------------------------------------------------------*/
/* -----------------------CONTACTO ---------------------------------*/
.contacto-pagina {
    padding: 60px 0;
    background-color: #000024;
    color: white;
    font-family: sans-serif;
    margin-top: 0;
}
.container-contacto {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
h1 { font-size: 45px; margin-bottom: 10px; }
.linea-naranja-larga {
    width: 300px;
    height: 5px;
    background-color: #ff9900;
    margin-bottom: 40px;
}
.oficinas-row {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}
.oficina-card {
    flex: 1;
}
.imagen-marco {
    border: 3px solid white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    line-height: 0;
}
.imagen-marco img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.datos {
    padding-left: 10px; 
}
.datos h3 {
    color: #ff9900;
    font-size: 18px;
    margin-bottom: 5px;
    margin-left: 0; 
}
.datos p {
    font-size: 15px;
    color: #e0e0e0;
    margin: 8px 0;
    white-space: nowrap; 
    display: block;
}
/* -------- CONTENEDORES DE QR ---------- */
.info-qr-flex-bloque {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center; 
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
}
.datos {
    flex: 1;
    min-width: 250px; 
    text-align: left;
}
.qr-contenedor-individual {
    background-color: #ffffff;
    padding: 1px;
    border-radius: 0px;
    width: 125px;
    height: 125px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin-left: auto;
    margin-right: auto;
}
.qr-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.qr-contenedor-guayas {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 0px;
    border-radius: 4px;
    width: 125px; 
    height: 125px;
    flex-shrink: 0; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    margin: 0;
}
.columna-qrs {
    display: flex;
    flex-direction: column;
    gap: 70px; 
    justify-content: center;
    padding-top: 0px;
}
.info-qr-flex-guayas {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; 
    align-items: center;
    justify-content: center; 
    gap: 40px;
    width: 100%;
    margin-bottom: 10px;
}
.datos {
    flex: 1;
    min-width: 200px;
    text-align: left;
}
.qr-contenedor-guayas {
    margin-left: 0 !important; 
}
.divisor-naranja-total {
    width: 100%;
    height: 8px;
    background-color: #ff9900;
    margin: 0;
    border: none;
}
/*--------------- CONTACTANOS---------------*/
.seccion-contacto-final {
    background-color: #ffffff;
    padding: 80px 0;
    color: #333333;
    font-family: 'Segoe UI', Roboto, sans-serif;
}
.container-footer-flex {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}
.info-contacto-izq {
    flex: 1;
}
.info-contacto-izq h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000024;
    text-align: center; 
    width: 100%;
}
.linea-naranja-tit {
    width: 280px;
    height: 5px;
    background-color: #ff9900;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}
.bloque-datos-qr {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}
.grupo-dato {
    margin-bottom: 25px;
}
.grupo-dato h3 {
    color: #ff9900;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}
.grupo-dato p {
    margin: 5px 0;
    font-size: 16px;
    color: #333333;
}
.fila-contacto-qrs, .redes-iconos {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}
.encabezado-centrado {
    text-align: center;
    width: 100%;
    margin-bottom: 50px;
}
.encabezado-centrado h1 {
    font-size: 48px;
    font-weight: bold;
    color: #000024;
    margin-bottom: 10px;
}

.linea-naranja-tit {
    width: 280px;
    height: 5px;
    background-color: #ff9900;
    margin: 0 auto;
}
.container-footer-flex {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}
.fila-contacto-qrs {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
.redes-iconos {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}
@media (max-width: 991px) {
    .oficinas-row {
        flex-direction: column;
        gap: 40px;
    }
    .imagen-marco {
        border: none !important;
        background: none !important;
        padding: 0 !important;
        margin-bottom: 20px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .imagen-marco img {
        width: 100% !important;
        max-width: 100% !important;
        aspect-ratio: 16 / 9;
        height: auto !important;
        object-fit: cover !important;
        background-color: #ffffff;
        border: 2px solid white !important;
        border-radius: 12px;
        box-sizing: border-box;
    }
    .info-qr-flex-quito, .info-qr-flex-quito1,
    .info-qr-flex-guayas {
        display: flex !important;

        width: 100% !important;
        margin-top: 15px !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        gap: 20px !important;

        
    }
    .datos {
       flex: none !important;
        width: 100% !important;
        text-align: center;
        margin-bottom: 10px
    }
    .qr-contenedor-quito, .qr-contenedor-quito1,  
    .qr-contenedor-guayas {   
        flex-shrink: 0;
        width: 100px !important;
        height: 100px !important;
        /* Centrado automático al saltar de línea */
        margin: 10px auto !important; 
        position: static !important;
    }
    .info-qr-flex-bloque {
        flex-direction: column !important;
        text-align: center !important;
        justify-content: center !important;
    }
    
    .datos {
        text-align: center !important;
        margin-bottom: 10px;
    }
}
/* -----------------ICONOS DE REDES SOCIALES ------------------*/
.redes-iconos {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    align-items: center;
    justify-content: center; 
    width: 100%; 
    max-width: 300px;
}
.redes-iconos a {
    font-size: 55px;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}
.redes-iconos a:hover {
    transform: scale(1.1);
}
.icon-fb { color: #4267B2; }
.icon-ig { color: #E1306C; }
.icon-tk { color: #000000; }
.icon-yt { color: #FF0000; }
.qr-final-contenedor {
    width: 160px;
    height: 160px;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fila-contacto-qrs {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}
.columna-qr-tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.qr-final-contenedor {
    width: 120px;
    height: 120px;
    background-color: #ffffff;
    padding: 1px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.qr-final-contenedor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.numero-tel {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}
.tarjeta-formulario {
    flex: 0.80;
    background-color: #000024;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}
.campo label {
    display: block;
    color: #fdfdfdc7;
    font-weight: bold;
    margin-bottom: 16px;
    font-size: 15px;
}
.campo {
    margin-bottom: 17px;
}

.campo label {
    display: block;
    color: #fdfdfdc7;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 15px;
}
.campo input, 
.campo textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
    background-color: #fdfdfd;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.campo input:focus, 
.campo textarea:focus {
    border: 2px solid #ff9900;
    background-color: #ffffff;
    box-shadow: 0 0 8px rgba(255, 153, 0, 0.3);
}
.btn-entregar-negro {
    background-color: #000000;
    color: white;
    padding: 15px 60px;
    border: 2px solid #000;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: block;
    margin: 30px auto 0 auto;
    transition: all 0.3s ease;
}
.campo input[type="email"]:invalid:not(:placeholder-shown) {
    border: 2px solid #ff4d4d;
    background-color: #fff5f5;
}
.campo input[type="email"]:valid {
    border: 2px solid #28a745; 
}
.campo input:invalid {
    box-shadow: none;
}
.btn-entregar-negro:hover {
    background-color: #ff9900;
    border-color: #ff9900;
    color: #000;
}
@media (max-width: 991px) {
    .oficinas-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
    .imagen-marco img {
        height: 200px;
        width: 100%;
        object-fit: cover;
        border: 2px solid white;
        border-radius: 15px;
    }
@media (max-width: 991px) {
    .container-footer-flex {
        flex-direction: column;
        align-items: center;
    }
.info-contacto-izq {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.linea-naranja-tit {
    width: 280px;
    height: 5px;
    background-color: #ff9900;
    margin: 0 auto 40px auto;
}
.fila-contacto-qrs {
    display: flex;
    flex-direction: row;
    gap: 50px; 
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
}
.columna-qr-tel {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.redes-iconos {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    justify-content: center;
    width: 100%;
}
}
}

/*----------------------------------------------------------------*/
/*-------------------------Nosotros-------------------------------*/



/* --- CONTENEDOR PRINCIPAL NOSOTROS --- */
.container-nosotros {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* --- BLOQUE DE TEXTO INICIAL --- */
.bloque-texto-simple {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #444;
}

/* --- SECCIONES CON TÍTULOS CENTRADOS (Objetivo, Ofrecemos, etc) --- */
.seccion-objetivo, .seccion-ofrecemos, .seccion-principios, .seccion-steam-final {
    text-align: center;
    margin-bottom: 60px;
}

.seccion-objetivo h2, .seccion-ofrecemos h2, .seccion-principios h2, .seccion-steam-final h2 {
    color: #000024;
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Reutilizamos tu línea naranja */
.linea-naranja {
    width: 100px;
    height: 4px;
    background-color: #ff9900;
    margin: 0 auto 20px;
}

/* --- GRID MISIÓN Y VISIÓN --- */
.grid-mv {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.card-mv {
    flex: 1;
    min-width: 300px;
    background-color: #000024;
    color: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card-mv:hover {
    transform: translateY(-5px);
}

.card-mv h3 {
    color: #ff9900;
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 153, 0, 0.3);
    display: inline-block;
    padding-bottom: 5px;
}

/* --- LISTA "QUÉ OFRECEMOS" --- */
.lista-items {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    text-align: left;
    margin-top: 30px;
}

.lista-items li {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 5px solid #004a99;
}

.lista-items li::before {
    content: "✓ ";
    color: #ff9900;
    font-weight: bold;
}

/* --- GRID PRINCIPIOS CLAVE --- */
.grid-principios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.principio {
    background: white;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: left;
}

.principio strong {
    color: #004a99;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* --- CAJA DE VENTAJAS (STEAM) --- */
.ventajas-box {
    background-color: #eef4f9;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: left;
    border: 1px solid #d1e3f0;
}

.ventajas-box h3 {
    color: #000024;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.ventajas-box p {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.ventajas-box p strong {
    color: #ff9900;
}

/* --- CIERRE FINAL --- */
.cierre-final {
    text-align: center;
    background: linear-gradient(135deg, #000024 0%, #004a99 100%);
    color: white;
    padding: 50px 20px;
    border-radius: 15px;
    margin-top: 40px;
}

.cierre-final h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .container-nosotros { padding: 40px 15px; }
    .card-mv { padding: 25px; }
    .ventajas-box { padding: 25px; }
}
/*----------------------------------------------------------------*/
/*-------------------------Oferta Academica-------------------------------*/
/*
.oferta-educativa-seccion {
    padding: 60px 0;
    background-color: #f4f7f9;
}


.encabezado-oferta {
    text-align: center;
    margin-bottom: 40px;
}

.resolucion-texto {
    font-size: 18px;
    color: #333;
    margin-top: 15px;
}

.regimenes-badges {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-regimen {
    background-color: #ff9900;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
}

.titulo-modalidades {
    text-align: center;
    color: #000024;
    margin-bottom: 40px;
    font-size: 28px;
}

.grid-modalidades {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.card-modalidad {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    width: 45%;
    min-width: 340px;
    overflow: hidden;
}

.card-header {
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-header.ordinaria { background-color: #004a99; }
.card-header.intensiva { background-color: #000024; }

.numero-id {
    background: #ff9900;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.card-cuerpo {
    padding: 25px;
}

.enfoque {
    font-weight: bold;
    color: #ff9900;
    margin-bottom: 15px;
}

.detalles-lista {
    list-style: none;
    padding: 0;
}

.detalles-lista li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.4;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 5px;
}

.nota-ideal {
    margin-top: 20px;
    background: #fdf2e2;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    border-left: 5px solid #ff9900;
}

@media (max-width: 768px) {
    .card-modalidad {
        width: 90%;
    }
}
*/


/* Banner Principal */
.banner-oferta-educativa {
    background-image: url('img/Modo9.jpg'); /* Tu imagen de fondo */
    background-size: cover;
    background-position: center;
    height: 450px;
    position: relative;
    color: white;
}
/* Capa azul semitransparente para resaltar el texto */
.banner-overlay {
    background: rgba(0, 0, 36, 0.5); /* Azul muy oscuro con transparencia */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
/* Alineación a la derecha */
.banner-flex {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.banner-texto-derecha {
    max-width: 650px;
    text-align: center;
}

.banner-texto-derecha h1 {
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.banner-texto-derecha h1 span {
    color: #ff9900; /* Naranja institucional */
}
.resolucion-banner {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 300;
}
/* Botones de Regímenes */
.banner-botones-regimen {
    display: flex;
    gap: 15px;
    justify-content: center;
}
/* Botón Blanco (Activo como en la imagen) */
.btn-regimen-blanco {
    background-color: white;
    color: #000024;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.3s;
}
/* Botón Transparente (Sierra) */
.btn-regimen-transparente {
    background-color: transparent;
    color: white;
    padding: 12px 25px;
    border: 1px solid white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.3s;
}
.btn-regimen-transparente:hover {
    background-color: #ff9900;
    border-color: #ff9900;
}
@media (max-width: 768px) {
    .banner-flex { justify-content: center; }
    .banner-texto-derecha h1 { font-size: 2.2rem; }
    .banner-botones-regimen { flex-direction: column; align-items: center; }
}


/*-----------------------------palabra central-------------------------------------*/
.titulo-separador-central {
    text-align: center;
    padding: 60px 20px 40px;
    background-color: #ffffff;
}

.texto-modalidades {
    font-size: 3rem; /* Tamaño grande para impacto visual */
    font-weight: 800;
    color: #000024; /* Azul oscuro para 'Nuestras' y 'Educativas' */
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.texto-modalidades span {
    color: #000024; /* Azul más vibrante para 'Modalidades' como en la imagen */
    position: relative;
}

/* Línea naranja centrada debajo del texto */
.linea-decorativa-naranja {
    width: 820px;
    height: 5px;
    background-color: #ff9900;
    margin: 0 auto;
    border-radius: 10px;
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
    .texto-modalidades {
        font-size: 2rem;
    }
}




/*---------------------------------------------------------------------*/
/* Contenedor Principal */
.contenedor-flex-ordinaria {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 50px 5%;
    max-width: 1250px;
    margin: 0 auto;
}

/* Lado de la Imagen (Izquierda) */
.lado-visual-ordinaria {
    flex: 1;
    max-width: 480px;
}

.tarjeta-foto-modo10 {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    border-bottom: 7px solid #ff9900; /* Detalle naranja inferior */
}

.imagen-principal {
    width: 100%;
    display: block;
}

.overlay-titulo-ordinaria {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, #000024 85%); /* Degradado azul oscuro */
    color: white;
}

.overlay-titulo-ordinaria h1 {
    font-size: 2.8rem;
    line-height: 0.85;
    margin: 0;
    font-weight: 900;
}

.texto-naranja {
    color: #ff9900; /* Naranja institucional */
}

.bajada-azul {
    text-align: center;
    margin-top: 15px;
    color: #004a99; /* Azul fuerte */
    font-weight: bold;
    font-size: 1.1rem;
}

/* Lado de los Requisitos (Derecha) */
.lado-datos-ordinaria {
    flex: 1.2;
}

.lista-requisitos {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.item-requisito {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.icono-azul {
    width: 55px;
    height: 55px;
    background-color: #004a99; /* Azul de los iconos */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 74, 153, 0.15);
}

.texto-requisito strong {
    color: #000024;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: block;
}

.texto-requisito p {
    margin: 0;
    color: #333;
    font-size: 1rem;
}

/* Ajuste para dispositivos móviles */
@media (max-width: 900px) {
    .contenedor-flex-ordinaria {
        flex-direction: column;
        align-items: center;
    }
}


/* --- Ajustes específicos para el Bachillerato Intensivo --- */

.seccion-bachillerato-intensivo {
    background-color: #fdfdfd; /* Un fondo muy sutilmente diferente para separar las secciones */
    border-top: 1px solid #f1f1f1;
    padding-top: 30px;
}

/* Reajustamos el flex para dispositivos móviles */
@media (max-width: 900px) {
    .contenedor-flex-ordinaria.intensivo {
        flex-direction: column-reverse; /* En móvil la foto vuelve a quedar arriba */
        align-items: center;
    }
}

/* --- Ajuste de la Imagen (Ahora a la Derecha) --- */

.tarjeta-foto-modo10.right-side {
    margin-right: 0;
    margin-left: auto; /* Empuja la foto a la derecha si hay espacio */
}

/* Invertimos la alineación del texto sobre la foto para que se vea mejor a la derecha */
.overlay-titulo-ordinaria.reverse-side {
    text-align: right;
    right: 0;
    left: auto;
    padding-right: 30px;
    padding-left: 10px;
}

.overlay-titulo-ordinaria.reverse-side h1 {
    font-size: 2.5rem; /* Ajuste ligero de tamaño para la alineación a la derecha */
}



/* --- SECCIÓN FINAL SIN FONDO --- */
.beneficios-limpio {
    background-color: transparent; /* Sin fondo */
    padding: 80px 0 0 0;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.contenedor-beneficios {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px 20px;
}

/* Encabezado con líneas azules */
.encabezado-beneficios {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.encabezado-beneficios h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #000024; /* Tu azul institucional */
    text-transform: uppercase;
    text-align: center;
}

.linea-decorativa-azul {
    height: 1px;
    flex: 1;
    background-color: #eee;
    max-width: 150px;
}

/* Grid de Beneficios */
.grid-beneficios {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.card-beneficio {
    text-align: center;
    transition: transform 0.3s ease;
}

.card-beneficio:hover {
    transform: translateY(-10px);
}

.icono-circular-azul {
    width: 85px;
    height: 85px;
    background-color: #004a99; /* Icono con fondo azul de tu marca */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0, 74, 153, 0.15);
}

.emoji-beneficio {
    font-size: 35px;
}

.card-beneficio h3 {
    color: #ff9900; /* Naranja para los títulos de los beneficios */
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-beneficio p {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
}

/* --- LÍNEA NARANJA DIVISORA --- */
.separador-naranja-final {
    height: 8px;
    background-color: #ff9900;
    width: 100%;
}

/* Responsivo */
@media (max-width: 992px) {
    .grid-beneficios { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .grid-beneficios { grid-template-columns: 1fr; }
    .encabezado-beneficios h2 { font-size: 1.4rem; }
}