/* ========================================
   BASE
======================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#eef3f9;
}

/* ========================================
   NAVBAR PREMIUM (APARTADOS)
======================================== */

.navbar{
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 91%;
    padding: 13px 32px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-radius: 65px;
    z-index: 1000;

    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);

    transition: 0.4s ease;
}

/* SCROLL */
.navbar.active{
    top: 10px;

    background: rgba(255,255,255,0.90);
    box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

/* ========================================
   LOGO
======================================== */

.logo-container{
    display:flex;
    align-items:center;
    gap:14px;
    transition:0.35s ease;
}

.logo-container:hover{
    transform:scale(1.02);
}

/* IMAGEN */
.logo{
    width:56px;
    height:56px;
    object-fit:cover;
    border-radius:50%;
}

/* TEXTO */
.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.logo-text h2{
    color:white;
    font-size:1rem;
    font-weight:700;
    transition:0.3s;
}

.logo-text p{
    color:#8ee8ff;   /* FECHA */
    font-size:0.78rem;
    font-weight:500;
    margin-top:3px;
    transition:0.3s;
}

/* CAMBIO AL HACER SCROLL */
.navbar.active .logo-text h2{
    color:#003B73;
}

.navbar.active .logo-text p{
    color:#00AEEF;
}

/* ========================================
   NAV LINKS PREMIUM
======================================== */

.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
}

.nav-links li{
    position:relative;
}

/* LINKS */

.nav-links a{

    position:relative;

    color:white;

    text-decoration:none;

    font-size:0.95rem;
    font-weight:600;

    display:flex;
    align-items:center;

    gap:6px;

    padding:8px 0;

    transition:0.35s ease;
}

/* LINEA ANIMADA */

.nav-links a::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:-6px;

    width:0;
    height:3px;

    border-radius:20px;

    background:#00AEEF;

    transform:translateX(-50%);

    transition:.35s ease;
}

/* HOVER */

.nav-links a:hover{

    color:#8ee8ff;
}

.nav-links a:hover::after{

    width:100%;
}

/* LINK ACTIVO */

.active-link a{

    color:#8ee8ff;
}

.active-link a::after{

    width:100%;
}

/* SCROLL NAVBAR */

.navbar.active .nav-links a{

    color:#003B73;
}

.navbar.active .nav-links a:hover{

    color:#00AEEF;
}

.navbar.active .active-link a{

    color:#00AEEF;
}

/* LINEA ACTIVA SCROLL */

.navbar.active .nav-links a::after{

    background:#00AEEF;
}

/* ICONOS */

.nav-links i{

    font-size:.75rem;

    transition:.3s ease;
}

.dropdown:hover > a i{

    transform:rotate(180deg);
}

/* ========================================
   MOBILE MENU PREMIUM
======================================== */

@media(max-width:1100px){

    .menu-toggle{
        display:block;
        z-index:1002;
    }

    .nav-links{

        position:fixed;

        top:95px;
        right:-100%;

        width:320px;
        max-width:90%;

        max-height:80vh;

        background:rgba(255,255,255,0.97);

        backdrop-filter:blur(15px);
        -webkit-backdrop-filter:blur(15px);

        flex-direction:column;

        align-items:flex-start;

        gap:0;

        padding:30px;

        border-radius:30px;

        transition:.4s ease;

        box-shadow:
        0 20px 50px rgba(0,0,0,.15);

        overflow-y:auto;
    }

    .nav-links.active{
        right:20px;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links a{

        width:100%;

        color:#003B73 !important;

        justify-content:space-between;

        padding:16px 0;

        border-bottom:1px solid #edf2f7;
    }

    /* ELIMINA LINEA AZUL LARGA */

    .nav-links a::after{
        display:none;
    }

    /* LINK ACTIVO */

    .active-link a{

        color:#00AEEF !important;

        font-weight:700;
    }

    /* DROPDOWN */

    .dropdown-menu{

        position:relative;

        top:0;
        left:0;

        width:100%;

        display:none;

        opacity:1;
        visibility:visible;

        transform:none;

        margin-top:10px;

        background:#f5f8fc;

        border-radius:16px;

        box-shadow:none;
    }

    .dropdown.active .dropdown-menu{
        display:block;
    }

    .dropdown-menu li{
        padding:0;
    }

    .dropdown-menu a{

        border:none;

        padding:14px 18px;

        color:#003B73 !important;

        font-size:.9rem;
    }

    .dropdown-menu a:hover{

        background:#eaf4ff;

        color:#00AEEF !important;
    }

    /* GIRO DE FLECHA */

    .dropdown.active > a i{
        transform:rotate(180deg);
    }

}

/* ========================================
   DROPDOWN (IMPORTANTE PARA QUE FUNCIONE)
======================================== */

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:120%;
    left:0;

    background:white;
    border-radius:12px;
    padding:10px 0;
    min-width:180px;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:0.3s ease;

    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li{
    list-style:none;
}

.dropdown-menu a{
    display:block;
    padding:10px 16px;
    color:#003B73;
    font-size:0.9rem;
}

.dropdown-menu a:hover{
    background:#eef6ff;
    color:#00AEEF;
}

/* ========================================
   HAMBURGER
======================================== */

.menu-toggle{
    display:none;
    font-size:1.6rem;
    background:none;
    border:none;
    cursor:pointer;
    color:white;
}

.navbar.active .menu-toggle{
    color:#003B73;
}

/* ========================================
   DROPDOWN
======================================== */

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:120%;
    left:0;

    background:white;
    border-radius:12px;
    padding:10px 0;
    min-width:180px;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:0.3s ease;

    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li{
    list-style:none;
}

.dropdown-menu a{
    display:block;
    padding:10px 16px;
    color:#003B73;
    font-size:0.9rem;
}

.dropdown-menu a:hover{
    background:#eef6ff;
    color:#00AEEF;
}

/* ========================================
   HAMBURGER
======================================== */

.menu-toggle{
    display:none;
    font-size:1.6rem;
    background:none;
    border:none;
    cursor:pointer;

    color:white;
}

.navbar.active .menu-toggle{
    color:#003B73;
}

/* ========================================
   HERO
======================================== */

/* HERO MISION Y VISION */

.mv-hero{
    height: 70vh;
    background: linear-gradient(135deg,#001F3F,#003B73,#0056a6);
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.mv-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.mv-content{
    position:relative;
    z-index:2;
    color:white;
    max-width:900px;
    padding:0 20px;
}

.mv-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:20px;
    backdrop-filter:blur(10px);
}

.mv-content h1{
    font-size:4rem;
    margin-bottom:20px;
}

.mv-content p{
    font-size:1.2rem;
    color:#dceeff;
}


.hero{
    position:relative;
    height:60vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    background:linear-gradient(135deg,#001d3d,#003B73,#0a4f9e);
    color:white;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.25);
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:4rem;
    font-weight:900;
}

.hero p{
    color:#cfe8ff;
}

/* ========================================
   MISION Y VISION PREMIUM
======================================== */

.mv-quote{
    padding:100px 10%;
    text-align:center;
    background:linear-gradient(135deg,#003B73,#0056a6);
}

.mv-quote h2{
    color:white;
    font-size:2.4rem;
    max-width:1000px;
    margin:auto;
    line-height:1.5;
}

.mv-intro{
    max-width:1100px;
    margin:100px auto 40px;
    text-align:center;
    padding:0 30px;
}

.mv-intro h2{
    color:#003B73;
    font-size:2.5rem;
    margin-bottom:20px;
}

.mv-intro p{
    color:#555;
    line-height:2;
    font-size:1.05rem;
}

.mv-container{
    max-width:1400px;
    margin:auto;
    padding:120px 8%;
}

.mv-header{
    text-align:center;
    margin-bottom:80px;
}

.mv-header span{
    color:#00AEEF;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.mv-header h2{
    font-size:3.5rem;
    color:#003B73;
    margin-top:10px;
}

.mv-header p{
    max-width:800px;
    margin:20px auto 0;
    line-height:1.9;
    color:#555;
}

.mv-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.mv-card{
    position:relative;
    overflow:hidden;

    background:white;

    padding:50px;

    border-radius:35px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.4s ease;
}

.mv-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 60px rgba(0,0,0,.15);
}

.mv-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:8px;
}

.mission-card::before{
    background:linear-gradient(90deg,#00AEEF,#0077ff);
}

.vision-card::before{
    background:linear-gradient(90deg,#003B73,#00AEEF);
}

.mv-icon{
    width:90px;
    height:90px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:25px;

    margin-bottom:25px;

    font-size:2.5rem;
}

.mission-card .mv-icon{
    background:#e7f8ff;
    color:#00AEEF;
}

.vision-card .mv-icon{
    background:#eaf0ff;
    color:#003B73;
}

.mv-card h3{
    font-size:2rem;
    color:#003B73;
    margin-bottom:20px;
}

.mv-card p{
    line-height:2;
    color:#555;
}

.mv-values{
    margin-top:80px;
}

.mv-values h3{
    text-align:center;
    font-size:2.5rem;
    color:#003B73;
    margin-bottom:40px;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.value-box{
    background:white;
    padding:35px 25px;
    border-radius:25px;
    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;
}

.value-box:hover{
    transform:translateY(-10px);
}

.value-box i{
    font-size:2rem;
    color:#00AEEF;
    margin-bottom:15px;
}

.value-box h4{
    color:#003B73;
    margin-bottom:10px;
}

.value-box p{
    color:#666;
    font-size:.95rem;
    line-height:1.8;
}

/* RESPONSIVE */

@media(max-width:1000px){

    .mv-grid{
        grid-template-columns:1fr;
    }

    .values-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:650px){

    .mv-header h2{
        font-size:2.4rem;
    }

    .values-grid{
        grid-template-columns:1fr;
    }

    .mv-card{
        padding:35px;
    }
}


/* ========================================
   REDES SOCIALES PREMIUM
======================================== */

.social-container{
    position:fixed;

    right:18px;
    top:50%;

    transform:translateY(-50%);

    display:flex;
    align-items:center;

    z-index:999;

    animation: socialEnter 1s ease forwards;
}

/* ENTRADA SUAVE */
@keyframes socialEnter{
    from{
        opacity:0;
        transform: translateY(-50%) translateX(40px);
    }
    to{
        opacity:1;
        transform: translateY(-50%) translateX(0);
    }
}

/* TEXTO LATERAL */
.social-text{

    background: linear-gradient(135deg,#003B73,#001F3F);

    color:white;

    writing-mode:vertical-rl;
    transform:rotate(180deg);

    padding:20px 10px;

    font-size:0.85rem;
    font-weight:700;

    letter-spacing:2px;

    border-radius:0 16px 16px 0;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 10px 25px rgba(0,0,0,0.2);

    transition:0.3s ease;
}

/* efecto hover del texto */
.social-container:hover .social-text{
    background: linear-gradient(135deg,#00AEEF,#003B73);
    transform: rotate(180deg) scale(1.03);
}

/* PANEL BLANCO (GLASS MODERNO) */
.social-bar{

    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    padding:14px;

    display:flex;
    flex-direction:column;

    gap:14px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,0.18);

    border:1px solid rgba(255,255,255,0.4);
}

/* BOTONES */
.social{

    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:16px;

    color:white;

    text-decoration:none;

    font-size:1.2rem;

    position:relative;

    transition:0.35s ease;

    overflow:hidden;
}

/* EFECTO BRILLO */
.social::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );

    transition:0.6s;
}

.social:hover::before{
    left:100%;
}

/* HOVER GENERAL */
.social:hover{
    transform:translateX(-8px) scale(1.12);
    box-shadow:0 10px 20px rgba(0,0,0,0.25);
}

/* ICONOS COLORES */
.facebook{
    background:#1877F2;
}

.instagram{
    background:linear-gradient(
        45deg,
        #F58529,
        #DD2A7B,
        #8134AF,
        #515BD4
    );
}

.tiktok{
    background:#000;
}

/* TOOLTIP OPCIONAL */
.social::after{
    content: attr(data-text);
    position:absolute;
    right:60px;

    background:#003B73;
    color:white;

    font-size:0.75rem;

    padding:6px 10px;

    border-radius:10px;

    opacity:0;
    transform:translateX(10px);

    transition:0.3s ease;

    white-space:nowrap;
}

.social:hover::after{
    opacity:1;
    transform:translateX(0);
}

/* RESPONSIVE */
@media(max-width:600px){

    .social-container{
        right:10px;
    }

    .social{
        width:45px;
        height:45px;
    }

    .social-text{
        display:none;
    }
}

/* =========================
   BOTON CHATBOT PREMIUM
========================= */

.landbot-button{
    position:fixed;
    right:25px;
    bottom:70px;

    display:flex;
    align-items:center;
    gap:12px;

    padding:12px 22px;

    border-radius:60px;

    text-decoration:none;
    font-weight:600;

    z-index:999;

    color:white;

    background: linear-gradient(
        135deg,
        #007BFF,
        #0056d6
    );

    box-shadow:0 10px 25px rgba(0,123,255,0.25);

    overflow:hidden;
    position:fixed;

    transition:0.35s ease;

    animation: floatButton 3s ease-in-out infinite;
}


/* EFECTO BRILLO (SHIMMER) */
.landbot-button::before{

    content:"";

    position:absolute;
    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.45),
        transparent
    );

    transform:skewX(-20deg);

    animation: shine 2.8s infinite;
}


/* HOVER */
.landbot-button:hover{

    transform: translateY(-6px) scale(1.05);

    box-shadow:0 18px 40px rgba(0,123,255,0.45);
}


/* ICONO */
.landbot-icon{

    width:45px;
    height:45px;

    background:white;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    flex-shrink:0;
}

.landbot-icon img{
    width:28px;
    height:28px;
    object-fit:contain;
}


/* TEXTO */
.landbot-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.landbot-text span{
    font-size:0.85rem;
    opacity:0.9;
}

.landbot-text strong{
    font-size:0.95rem;
}


/* =========================
   ANIMACIONES
========================= */

@keyframes shine{
    0%{
        left:-120%;
    }
    100%{
        left:130%;
    }
}

@keyframes floatButton{
    0%,100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-6px);
    }
}

/* ========================================
   FOOTER 
======================================== */

.footer{

    background: linear-gradient(135deg,#001F3F,#002f5f);
    color: white;

    padding: 100px 8% 35px;

    position: relative;
    overflow: hidden;
}

/* EFECTO LUZ */
.footer::before{

    content: '';

    position: absolute;
    top: -200px;
    right: -200px;

    width: 420px;
    height: 420px;

    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    filter: blur(20px);

    animation: floatLight 8s ease-in-out infinite;
}

@keyframes floatLight{
    0%,100%{
        transform: translate(0,0);
    }
    50%{
        transform: translate(-30px,30px);
    }
}

/* GRID */
.footer-container{

    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 50px;

    margin-bottom: 50px;
}

/* LOGO */
.footer-logo{

    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 20px;
}

.footer-logo img{

    width: 65px;
    height: 65px;

    border-radius: 14px;
    object-fit: cover;

    transition: 0.3s ease;
}

.footer-logo img:hover{
    transform: scale(1.05);
}

/* TEXTO LOGO */
.footer-logo h2{

    font-size: 1.25rem;
    margin-bottom: 4px;
}

.footer-logo span{

    color: #8ee8ff;
    font-size: 0.9rem;
}

/* TEXTOS */
.footer-box p{

    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* TITULOS */
.footer-box h3{

    margin-bottom: 22px;
    font-size: 1.2rem;

    color: #00AEEF;
}

/* LINKS */
.footer-box a{

    display: block;

    color: rgba(255,255,255,0.75);
    text-decoration: none;

    margin-bottom: 14px;

    transition: 0.3s ease;
}

.footer-box a:hover{

    color: #00AEEF;
    transform: translateX(6px);
}

/* REDES */
.footer-socials{

    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;

    margin-top: 15px;
}

.footer-socials a{

    width: 48px;
    height: 48px;

    border-radius: 14px;

    background: rgba(255,255,255,0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 1.1rem;

    transition: 0.35s ease;
}

.footer-socials a:hover{

    background: #00AEEF;
    transform: translateY(-6px) scale(1.05);
}

/* LINEA */
.footer-line{

    width: 100%;
    height: 1px;

    background: rgba(255,255,255,0.12);

    margin: 35px 0;
}

/* COPYRIGHT */
.footer-bottom{

    text-align: center;

    color: rgba(255,255,255,0.65);

    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   RESPONSIVE
======================================== */

@media(max-width:1000px){

    .footer-container{
        grid-template-columns: repeat(2,1fr);
        gap: 35px;
    }
}

@media(max-width:600px){

    .footer-container{
        grid-template-columns: 1fr;
    }

    .footer{
        padding: 80px 6% 30px;
    }

    .footer-logo h2{
        font-size: 1.1rem;
    }
}

/* ========================================
   HISTORIA INTRO
======================================== */

.history-intro{
    padding:120px 10% 80px;
    text-align:center;
    background:white;
}

.history-intro h2{
    font-size:3rem;
    color:#003B73;
    margin-bottom:25px;
}

.history-intro p{
    max-width:900px;
    margin:auto;
    font-size:1.1rem;
    line-height:2;
    color:#444;
}


/* ========================================
   BLOQUES HISTORIA
======================================== */

.history-section{
    padding:100px 10%;
    display:flex;
    align-items:center;
    gap:70px;
}

.history-section.reverse{
    flex-direction:row-reverse;
}

.history-image{
    flex:1;
}

.history-image img{
    width:100%;
    border-radius:25px;
    object-fit:cover;

    box-shadow:
    0 25px 50px rgba(0,0,0,.12);

    transition:.45s ease;
}

.history-image img:hover{
    transform:scale(1.03);
}

.history-content{
    flex:1;
}

.history-content h2{
    font-size:2.5rem;
    color:#003B73;
    margin-bottom:20px;
}

.history-content p{
    line-height:2;
    margin-bottom:15px;
    color:#444;
}


/* ========================================
   TARJETAS
======================================== */

.history-cards{

    padding:40px 10% 100px;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.history-card{

    background:white;

    padding:40px 30px;

    border-radius:25px;

    text-align:center;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;
}

.history-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.15);
}

.history-card i{

    font-size:2.7rem;

    color:#00AEEF;

    margin-bottom:20px;
}

.history-card h3{

    color:#003B73;

    margin-bottom:12px;
}

.history-card p{

    color:#555;

    line-height:1.8;
}


/* ========================================
   GALERIA
======================================== */

.history-gallery{

    padding:100px 10%;

    text-align:center;

    background:white;
}

.history-gallery h2{

    font-size:3rem;

    color:#003B73;

    margin-bottom:50px;
}

.gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:20px;
}

.gallery-grid img{

    width:100%;
    height:280px;

    object-fit:cover;

    border-radius:22px;

    transition:.4s ease;

    cursor:pointer;
}

.gallery-grid img:hover{

    transform:
    scale(1.05);

    box-shadow:
    0 20px 40px rgba(0,0,0,.18);
}


/* ========================================
   LEGADO
======================================== */

.history-legacy{

    padding:120px 10%;

    text-align:center;

    background:
    linear-gradient(
        135deg,
        #003B73,
        #0a4f9e
    );

    color:white;
}

.history-legacy h2{

    font-size:3rem;

    margin-bottom:30px;
}

.history-legacy p{

    max-width:900px;

    margin:0 auto 20px;

    line-height:2;

    color:#d9ecff;
}


/* ========================================
   RESPONSIVE
======================================== */

@media(max-width:1000px){

    .history-section,
    .history-section.reverse{

        flex-direction:column;
    }

    .history-cards{

        grid-template-columns:1fr;
    }

    .gallery-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:700px){

    .history-intro h2,
    .history-gallery h2,
    .history-legacy h2{

        font-size:2.2rem;
    }

    .history-content h2{

        font-size:2rem;
    }

    .gallery-grid{

        grid-template-columns:1fr;
    }

    .gallery-grid img{

        height:230px;
    }
}

/* ==========================================
   HERO
========================================== */

.directivos-hero{
    height:65vh;
    background:linear-gradient(135deg,#001F3F,#003B73,#0056a6);
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.directivos-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.25);
}

.directivos-hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:20px;
}

.directivos-hero-content span{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    color:white;
    margin-bottom:20px;
}

.directivos-hero-content h1{
    font-size:4rem;
    color:white;
    margin-bottom:20px;
}

.directivos-hero-content p{
    color:#d9ecff;
    font-size:1.1rem;
    line-height:1.9;
}

/* ==========================================
   INTRO
========================================== */

.directivos-intro{
    padding:100px 10%;
    text-align:center;
}

.directivos-intro h2{
    color:#003B73;
    font-size:3rem;
    margin-bottom:20px;
}

.directivos-intro p{
    max-width:900px;
    margin:auto;
    color:#555;
    line-height:2;
}

/* ==========================================
   DIRECTIVOS
========================================== */

.directivos-section{
    padding:20px 8% 120px;
}

.directivos-grid{
    max-width:1100px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.directivo-card{
    background:white;
    border-radius:30px;
    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;
}

.directivo-card:hover{
    transform:translateY(-10px);
}

.directivo-card img{
    width:100%;
    height:380px;
    object-fit:cover;
}

.directivo-info{
    padding:30px;
    text-align:center;
}

.cargo{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;

    background:#e7f8ff;
    color:#00AEEF;

    font-weight:600;

    margin-bottom:15px;
}

.directivo-info h3{
    color:#003B73;
    margin-bottom:15px;
    font-size:1.5rem;
}

.directivo-info p{
    color:#666;
    line-height:1.8;
}

/* ==========================================
   LIDERAZGO
========================================== */

.liderazgo-section{
    padding:120px 10%;
    background:white;
}

.liderazgo-content{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.liderazgo-content span{
    color:#00AEEF;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.liderazgo-content h2{
    color:#003B73;
    font-size:3rem;
    margin:20px 0 30px;
}

.liderazgo-content p{
    color:#555;
    line-height:2;
    margin-bottom:20px;
}

/* ==========================================
   PRINCIPIOS
========================================== */

.principios-directivos{
    padding:120px 8%;
}

.principios-directivos h2{
    text-align:center;
    color:#003B73;
    font-size:3rem;
    margin-bottom:60px;
}

.principios-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.principio{
    background:white;
    padding:40px 30px;
    text-align:center;
    border-radius:25px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.principio i{
    font-size:2.5rem;
    color:#00AEEF;
    margin-bottom:20px;
}

.principio h3{
    color:#003B73;
    margin-bottom:15px;
}

.principio p{
    color:#666;
    line-height:1.8;
}

/* ==========================================
   FRASE FINAL
========================================== */

.frase-directivos{
    padding:120px 10%;
    text-align:center;

    background:linear-gradient(
        135deg,
        #003B73,
        #0056a6
    );
}

.frase-directivos h2{
    color:white;
    max-width:1000px;
    margin:auto;
    line-height:1.6;
    font-size:2.5rem;
}

.frase-directivos p{
    color:#cfe8ff;
    margin-top:25px;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1000px){

    .directivos-grid{
        grid-template-columns:1fr;
        max-width:500px;
    }

    .principios-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .directivos-hero-content h1{
        font-size:2.8rem;
    }

    .directivos-intro h2,
    .liderazgo-content h2,
    .principios-directivos h2{
        font-size:2rem;
    }

    .frase-directivos h2{
        font-size:1.8rem;
    }

    .directivo-card img{
        height:300px;
    }
}