/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: 'Inter', sans-serif;
    margin:0;
}

/* HERO */
.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
    color:white;
    min-height:100vh;
}

/* VIDEO */
.video-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

/* OVERLAY */
.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    z-index:-1;
}

/* NAVBAR */
.navbar{
    position:absolute;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    padding:25px 60px;
    z-index:10;
}

.navbar h2{
    font-weight:600;
    letter-spacing:3px;
}

.navbar a{
    color:white;
    margin-left:30px;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.navbar a:hover{
    opacity:0.7;
}

/* CONTENIDO */
.content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:0 80px;
    animation:fadeUp 1.2s ease;
}

/* TEXTO SCRIPT */
.script-text{
    font-family: 'Playfair Display', serif;
    font-style:italic;
    font-size:40px;
    font-weight:300;
    margin-bottom:10px;
}

/* TITULO */
.content h1{
    font-family: 'Playfair Display', serif;
    font-size:75px;
    font-weight:300;
    line-height:1.1;
    max-width:900px;
}

/* SUBTEXTO */
.subtitle{
    margin-top:20px;
    max-width:500px;
    color:#ddd;
    font-size:16px;
}

/* BOTONES */
.buttons{
    margin-top:30px;
}

.buttons button{
    padding:14px 25px;
    margin-right:15px;
    border:none;
    cursor:pointer;
    font-size:14px;
    transition:0.3s;
}

.btn1{
    background:white;
    color:black;
}

.btn1:hover{
    background:#ddd;
}

.btn2{
    background:transparent;
    border:1px solid white;
    color:white;
}

.btn2:hover{
    background:white;
    color:black;
}

/* ANIMACION */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.logo img{
    height:75px;
}
.menu{
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
}

.menu span{
    font-size:14px;
}

.hamburger{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.hamburger div{
    width:20px;
    height:2px;
    background:white;
}
.nav-links{
    display:flex;
    align-items:center;
}
.nav-right{
    display:flex;
    align-items:center;
    gap:30px;
}

/* HEADER */
.menu-header{
    display:flex;
    justify-content:flex-end;
    font-size:18px;
    cursor:pointer;
}


/* IZQUIERDA */
.menu-left h2{
    font-size:48px;
    font-weight:300;
    margin-bottom:20px;
    transition:0.3s;
    cursor:pointer;
    color: #e8dccc;
}

.menu-left h2:hover{
    opacity:0.6;
}

/* DERECHA */
.menu-right p{
    margin-bottom:10px;
    font-size:16px;
}
.overlay{
    pointer-events:none;
}
.menu-right{
    max-width:400px;
    line-height:1.8;
    justify-content: center; 
    align-items: center;
}
.close-btn{
    background:none;
    border:none;
    color:white;
    font-size:18px;
    cursor:pointer;
    transition:0.3s;
}

.close-btn:hover{
    opacity:0.6;
}
.menu-header{
    display:flex;
    justify-content:flex-end;
    padding:20px 40px;
    z-index:10000;
}


.programs h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.programs .description {
    color: gray;
    margin-bottom: 40px;
}

/* CARD */
.card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* OVERLAY OSCURO */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

/* TEXTO */
.card h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    color: white;
    font-size: 22px;
    text-align: center;
}

/* HOVER */
.card:hover img {
    transform: scale(1.05);
    transition: 0.3s;
}

/* SECCIÓN DESTINOS */
.destinations-section {
    padding: 80px 8%;
    background: #fff;
}

.section-intro {
    margin-bottom: 60px;
}

.dest-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 12px;
    display: block;
}

.dest-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.2;
    max-width: 500px;
}

/* ITEM */
.dest-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #eee;
}

/* IMAGEN DERECHA EN EL 2DO */
.dest-reverse {
    direction: rtl;
}

.dest-reverse > * {
    direction: ltr;
}

/* SIN BORDE EN EL ULTIMO */
.dest-last {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* IMAGEN */
.dest-img-wrap {
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4 / 3;
}

.dest-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.dest-img-wrap:hover img {
    transform: scale(1.04);
}

/* NUMERO */
.dest-num {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 300;
    color: #eee;
    line-height: 1;
    margin-bottom: -10px;
    display: block;
}

/* TAG */
.dest-tag {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 16px;
    display: block;
}

/* TITULO */
.dest-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 16px;
}

/* DESCRIPCION */
.dest-info p {
    font-size: 15px;
    color: #777;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 420px;
}

/* FEATURES */
.dest-features {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.dest-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
}

.dest-feature .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ccc;
    flex-shrink: 0;
}

/* BOTON */
.dest-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 4px;
    transition: opacity 0.3s;
}

.dest-cta:hover {
    opacity: 0.5;
}
/* ===== PROGRAMAS ===== */
.programs-section{
    padding:80px 10%;
    background:#f5f5f5;
}

.programs-title{
    text-align:center;
    margin-bottom:50px;
}

.programs-title h2{
    font-size:40px;
    font-family:'Playfair Display', serif;
}

.programs-title p{
    color:#777;
    margin-top:10px;
}

/* GRID */
.programs-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:15px;
}

/* CARD */
.card{
    position:relative;
    overflow:hidden;
    border-radius:5px;
    height:250px;
    cursor:pointer;
}

/* IMAGEN */
.card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

/* OVERLAY */
.card::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.4);
}

/* TEXTO */
.card h3{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    color:white;
    font-size:22px;
    text-align:center;
    z-index:2;
}

/* HOVER */
.card:hover img{
    transform:scale(1.05);
}
.careers{
    padding:80px 10%;
    background:#f9f9f9;
    text-align:center;
}

.careers h2{
    font-size:40px;
    margin-bottom:40px;
}

.careers-grid{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:20px;
}

.career-card{
    background:white;
    padding:30px;
    border-radius:10px;
    transition:0.3s;
    cursor:pointer;
}

.career-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}
.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    padding:80px 10%;
    gap:30px;
    background:#fff;
}

.feature{
    text-align:center;
}

.feature h3{
    font-size:20px;
    margin-bottom:10px;
}
.testimonials{
    padding:80px 10%;
    background:#f5f5f5;
    text-align:center;
}

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:40px;
}

.testimonial{
    background:white;
    padding:30px;
    border-radius:10px;
}
.cta{
    background:#1e3a5f;
    color:white;
    text-align:center;
    padding:80px 20px;
    margin:0; 
}

.cta button{
    margin-top:20px;
    padding:15px 30px;
    border:none;
    background:white;
    color:black;
    cursor:pointer;
}
.cta-section{
    background:#f5f5f5;
    padding:100px 20px 60px;
    display:flex;
    justify-content:center;
    
}

/* CAJA */
.cta-box{
    background:transparent;
    color:white;
    padding:60px 80px;
    border-radius:15px;
    text-align:center;
    max-width:800px;
    width:100%;

    box-shadow:none;
}

/* TEXTO */
.cta-box h2{
    font-size:30px;
    margin-bottom:20px;
    color: #2f4a6d;
}

/* BOTON */
.cta-box button{
    padding:14px 30px;
    border:none;
    background:white;
    color:black;
    cursor:pointer;
    font-weight:500;
    transition:0.3s;
}

.cta-box button:hover{
    background:#ddd;
}
@media(max-width:768px){

    .programs-grid{
        grid-template-columns:1fr;
    }

    .features{
        grid-template-columns:1fr;
    }

    .testimonials-grid{
        grid-template-columns:1fr;
    }

    .dest-item{
        grid-template-columns:1fr;
    }

    .content h1{
        font-size:40px;
    }

    .navbar{
        padding:20px;
    }

}
.footer{
    background:#1e3a5f; /* tu azul */
    color:white;
    border-top:1px solid rgba(255,255,255,0.2);
    padding:60px 10% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap:40px;
    margin-bottom:40px;
}

.footer-left h2{
    font-family:'Playfair Display', serif;
    font-size:30px;
}

.footer-links{
    display:flex;
    justify-content:space-between;
}

.footer-links h4{
    margin-bottom:15px;
    font-size:14px;
    text-transform:uppercase;
    opacity:0.7;
}

.footer-links a{
    display:block;
    margin-bottom:8px;
    color:white;
    text-decoration:none;
    font-size:14px;
    opacity:0.8;
    transition:0.3s;
}

.footer-links a:hover{
    opacity:1;
}

.footer-social h4{
    margin-bottom:15px;
}

.footer-social p{
    margin-bottom:8px;
    cursor:pointer;
    opacity:0.8;
}

.footer-social p:hover{
    opacity:1;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.2);
    padding-top:15px;
    text-align:center;
    font-size:13px;
    opacity:0.7;
}

/* HEADER */
.menu-header {
    display: flex;
    justify-content: flex-end;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}


/* IZQUIERDA */
.menu-left h2 {
    font-size: 60px;
    font-weight: 300;
    margin: 15px 0;
}

/* DERECHA */
.menu-right {
    text-align: right;
}

.menu-right p {
    margin: 10px 0;
    font-size: 18px;
}
.alumni{
    position:relative;
    background:#0f2742;
    color:white;
    padding:180px 10%;
    text-align:center;
    overflow:hidden;
}

/* TEXTO */
.alumni-content{
    max-width:1000px;
    margin:0 auto;
    position:relative;
    z-index:2;
}

.alumni-tag{
    font-size:11px;
    letter-spacing:3px;
    opacity:0.6;
    margin-bottom:20px;
    display:block;
}


.alumni-content h2{
    font-family:'Playfair Display', serif;
    font-size:55px;
    font-weight:300;
    line-height:1.2;
    letter-spacing:-1px;
    margin-bottom:40px;
}

/* BOTON */
.alumni-content button{
    padding:14px 35px;
    border:none;
    background:#e5e5e5;
    color:black;
    font-size:14px;
    cursor:pointer;
    transition:0.3s;
}

.alumni-content button:hover{
    background:white;
}


/* POSICIONES DESORDENADAS (ESTILO GLION) */
.img1{
    top:80px;
    left:8%;
}

.img2{
    top:40px;
    right:10%;
}

.img3{
    bottom:60px;
    left:15%;
}
.alumni-content h2{
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}
/* ESTADO INICIAL (oculto) */
.reveal{
    opacity:0;
    transition: all 1s ease;
}

/* CUANDO APARECE */
.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.alumni-img{
    position:absolute;
    width:180px;
    border-radius:12px;
    object-fit:cover;
    opacity:0.9;

    will-change: transform;
    transition: none
}


/* MENU FULL */
.menu-full {
    position: fixed;
    inset: 0;
    background: #9c7758;
    z-index: 999;
    opacity: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.menu-full.active {
    opacity: 1;
    visibility: visible;
}

/* HEADER */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
}

.menu-logo img {
    height: 60px;
}

/* BOTÓN CERRAR */
.close-btn {
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* CONTENIDO */
.menu-content{
    flex:1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    min-height: 70vh
}

/* IZQUIERDA */
.menu-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.menu-left h2 {
    font-size: 32px;
    font-weight: 300;
    color: #e8dccc;
    transition: 0.3s;
}

.menu-left .active {
    color: white;
}

.menu-left h2:hover {
    opacity: 0.6;
}

/* DERECHA */
.menu-right {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end; 
}

/* CARD */
.campus-card {
    width: 380px;
    text-decoration: none;
    color: white;
    transition: 0.4s;
}

.img-container {
    overflow: hidden;
}

.img-container img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.6s;
}

.campus-card h3 {
    margin-top: 15px;
    font-size: 24px;
}

.campus-card p {
    font-size: 14px;
    opacity: 0.8;
}


.campus-card:hover img {
    transform: scale(1.1);
}

.campus-card:hover {
    transform: translateY(-5px);
}
.alumni-content{
    opacity: 0;
    transform: translateY(80px);
    transition: all 1.2s ease;
}

.alumni-content.active{
    opacity: 1;
    transform: translateY(0);
}
.volver-container{
    margin-bottom:10px;
}

.btn-volver{
    background:none;
    border:none;
    font-size:13px;
    cursor:pointer;
    color:#1e3a5f;
    font-weight:500;
    padding:0;
}

.btn-volver:hover{
    opacity:0.6;
}
.menu-programas{
    display: grid;
    grid-template-columns: repeat(2, 320px); 
    gap: 80px; 
}

.menu-programas .col{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-subtitle{
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.7;
}

.menu-programas p{
    margin: 0;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.menu-programas p:hover{
    opacity: 0.6;
}
.menu-full{
    color: white;
}
