 * {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #17324d;
    background: #ffffff;
}

a {
    text-decoration: none;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e7edf3;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 16px 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icono {
    font-size: 34px;
}

.logo h2 {
    margin: 0;
    color: #0c3d66;
    font-size: 21px;
}

.logo p {
    margin: 3px 0 0;
    color: #7b8997;
    font-size: 12px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu a {
    color: #25435e;
    font-size: 14px;
    font-weight: bold;
}

.menu a:hover {
    color: #00a6a6;
}

/* PORTADA */

.hero {
    min-height: 78vh;

    display: flex;
    align-items: center;

    color: white;

    background:
        linear-gradient(
            90deg,
            rgba(4, 38, 66, 0.96),
            rgba(4, 63, 90, 0.82)
        );
}

.hero-contenido {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 110px 24px;
}

.etiqueta,
.mini-titulo {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.etiqueta {
    color: #63e6e2;
}

.hero h1 {
    max-width: 820px;

    margin: 18px 0 24px;

    font-size: clamp(50px, 7vw, 88px);
    line-height: 0.98;
    letter-spacing: -2px;
}

.hero h1 span {
    display: block;
    color: #67e1d3;
}

.hero-descripcion {
    max-width: 700px;

    font-size: 20px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.9);
}

.hero-botones {
    margin-top: 32px;

    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-principal,
.btn-secundario {
    display: inline-block;

    padding: 15px 24px;

    border-radius: 10px;

    font-weight: bold;

    transition: 0.25s;
}

.btn-principal {
    background: #21c7b7;
    color: #063750;
}

.btn-secundario {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: white;
}

.btn-principal:hover,
.btn-secundario:hover {
    transform: translateY(-3px);
}

/* BUSCADOR */

.buscador {
    margin-top: -55px;
    position: relative;
    z-index: 5;

    padding: 0 24px;
}

.buscador-contenido {
    max-width: 1100px;
    margin: auto;

    padding: 32px;

    background: white;

    border-radius: 20px;

    box-shadow: 0 20px 60px rgba(10, 44, 70, 0.15);
}

.buscador-contenido h2 {
    margin: 8px 0 26px;
    color: #0c3d66;
    font-size: 32px;
}

.mini-titulo {
    color: #00a6a6;
}

.buscador-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1.2fr auto;

    gap: 12px;
}

.campo {
    min-height: 74px;

    padding: 15px 18px;

    display: flex;
    align-items: center;
    gap: 12px;

    border: 1px solid #e1e9ef;
    border-radius: 12px;
}

.campo > span {
    font-size: 25px;
}

.campo small,
.campo strong {
    display: block;
}

.campo small {
    margin-bottom: 4px;
    color: #8694a0;
}

.campo strong {
    color: #17324d;
}

.btn-buscar {
    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #0c3d66;
    color: white;

    font-weight: bold;
}

/* SECCIONES */

.destinos,
.aerolineas {
    max-width: 1200px;
    margin: auto;
    padding: 110px 24px;
}

.destinos > h2,
.aerolineas > h2 {
    margin: 10px 0;

    color: #0c3d66;

    font-size: 42px;
}

.seccion-descripcion {
    max-width: 680px;

    color: #697c8d;

    font-size: 17px;
    line-height: 1.7;
}

.destinos-grid {
    margin-top: 45px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.destino {
    overflow: hidden;

    border-radius: 18px;

    background: white;

    border: 1px solid #e4ebf1;

    box-shadow: 0 12px 35px rgba(15, 54, 82, 0.08);
}

.destino-imagen {
    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #b8eee8, #dbeafe);
}

.destino-imagen span {
    font-size: 70px;
}

.destino-info {
    padding: 24px;
}

.destino-info p {
    margin: 0 0 8px;

    color: #00a6a6;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 1.5px;
}

.destino-info h3 {
    margin: 0;

    color: #0c3d66;

    font-size: 28px;
}

.destino-info > span {
    display: block;

    margin: 5px 0 20px;

    color: #7b8c9b;
}

.destino-info a {
    color: #0c8f91;
    font-weight: bold;
}

/* TEMPORADAS */

.temporadas {
    padding: 110px 24px;

    background: #f2f7f9;
}

.seccion-cabecera {
    max-width: 750px;
    margin: auto;

    text-align: center;
}

.seccion-cabecera h2 {
    margin: 10px 0;

    color: #0c3d66;

    font-size: 42px;
}

.seccion-cabecera p {
    color: #697c8d;

    font-size: 17px;
    line-height: 1.7;
}

.temporadas-grid {
    max-width: 1100px;
    margin: 45px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.temporada-card {
    padding: 34px;

    border-radius: 18px;

    background: white;

    box-shadow: 0 12px 35px rgba(15, 54, 82, 0.07);
}

.temporada-card > span {
    font-size: 38px;
}

.temporada-card h3 {
    color: #0c3d66;
    font-size: 22px;
}

.temporada-card p {
    color: #697c8d;
    line-height: 1.7;
}

/* AEROLINEAS */

.comparacion-grid {
    margin-top: 45px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.comparacion-grid div {
    padding: 28px;

    border-radius: 16px;

    background: #f8fbfc;

    border: 1px solid #e4ecef;
}

.comparacion-grid span {
    font-size: 34px;
}

.comparacion-grid h3 {
    color: #0c3d66;
}

.comparacion-grid p {
    color: #697c8d;
    line-height: 1.6;
}

/* CONSEJOS */

.consejos {
    padding: 110px 24px;

    background:
        linear-gradient(
            135deg,
            #0a3c61,
            #07536c
        );

    color: white;
}

.consejos-contenido {
    max-width: 900px;
    margin: auto;
}

.consejos h2 {
    margin: 10px 0 20px;

    font-size: 44px;
}

.consejos-contenido > p {
    max-width: 700px;

    color: rgba(255,255,255,0.85);

    font-size: 18px;
    line-height: 1.7;
}

.consejos-lista {
    margin-top: 35px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 14px;
}

.consejos-lista div {
    padding: 15px 18px;

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 10px;

    background: rgba(255,255,255,0.06);
}

/* FOOTER */

footer {
    padding: 50px 24px;

    display: flex;
    justify-content: space-between;
    gap: 30px;

    background: #062b46;
    color: white;
}

footer > div {
    max-width: 500px;
}

footer h2 {
    margin-top: 0;
}

footer p {
    color: #b8cad6;
    line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu {
        width: 100%;
        overflow-x: auto;
    }

    .buscador-grid {
        grid-template-columns: 1fr 1fr;
    }

    .destinos-grid,
    .temporadas-grid {
        grid-template-columns: 1fr;
    }

    .comparacion-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    footer {
        flex-direction: column;
    }
}

@media (max-width: 600px) {

    .hero-contenido {
        padding: 80px 20px 120px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-descripcion {
        font-size: 17px;
    }

    .hero-botones {
        flex-direction: column;
    }

    .btn-principal,
    .btn-secundario {
        text-align: center;
    }

    .buscador {
        padding: 0 16px;
    }

    .buscador-contenido {
        padding: 24px;
    }

    .buscador-grid {
        grid-template-columns: 1fr;
    }

    .btn-buscar {
        min-height: 55px;
    }

    .destinos,
    .temporadas,
    .aerolineas,
    .consejos {
        padding: 75px 20px;
    }

    .destinos > h2,
    .aerolineas > h2,
    .seccion-cabecera h2,
    .consejos h2 {
        font-size: 34px;
    }

    .comparacion-grid,
    .consejos-lista {
        grid-template-columns: 1fr;
    }
}
.campo select,
.campo input {
    border: none;
    outline: none;
    background: transparent;
    color: #17324d;
    font-size: 15px;
    font-weight: bold;
    width: 100%;
}

.btn-buscar {
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.resultado-viaje {
    margin-top: 30px;
}

.resultado-card {
    padding: 32px;
    border-radius: 18px;
    background: #f5f9fb;
    border: 1px solid #dfe9ef;
}

.resultado-card > h2 {
    color: #0c3d66;
    font-size: 34px;
    margin: 8px 0 20px;
}

.resultado-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.resultado-grid div {
    background: white;
    padding: 20px;
    border-radius: 12px;
}

.resultado-grid span {
    font-size: 28px;
}

.resultado-grid h3 {
    color: #0c3d66;
    margin-bottom: 8px;
}

.resultado-grid p {
    color: #677b8c;
    line-height: 1.6;
}

.consejo-destino {
    margin-top: 18px;
    padding: 18px;
    border-left: 4px solid #21c7b7;
    background: white;
    line-height: 1.6;
}

.acciones-viaje {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.accion-whatsapp,
.accion-llamar {
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: bold;
}

.accion-whatsapp {
    background: #25D366;
    color: white;
}

.accion-llamar {
    background: #0c3d66;
    color: white;
}

@media (max-width: 900px) {

    .resultado-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .resultado-grid {
        grid-template-columns: 1fr;
    }

    .acciones-viaje {
        flex-direction: column;
    }

    .accion-whatsapp,
    .accion-llamar {
        text-align: center;
    }
}
/* =====================================
   BOTONES - APRENDE ANTES DE DESPEGAR
===================================== */

.botones-academia {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 850px;
}

.botones-academia .btn-academia {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 58px;
    padding: 14px 20px;

    border-radius: 12px;

    background: #ffffff;
    color: #0c3d66;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    border: 1px solid rgba(255,255,255,0.35);

    transition: all 0.25s ease;
}

.botones-academia .btn-academia:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}


/* PLANEAR VIAJE */

.botones-academia .destacado-academia {
    background: #20c7b5;
    color: #063750;
    border: none;
}


/* WHATSAPP */

.botones-academia .whatsapp-academia {
    background: #25D366;
    color: #ffffff;
    border: none;
}


/* CELULAR */

@media (max-width: 650px) {

    .botones-academia {
        grid-template-columns: 1fr;
    }

}
/* ===== VENTANAS EDUCATIVAS ===== */

.modal-guia {
    position: fixed;
    inset: 0;
    background: rgba(5, 27, 56, 0.75);
    backdrop-filter: blur(7px);

    display: none;
    align-items: center;
    justify-content: center;

    padding: 25px;
    z-index: 9999;
}

.modal-guia.modal-activo {
    display: flex;
}

.modal-contenido {
    position: relative;
    background: #ffffff;
    width: min(1000px, 95%);
    max-height: 88vh;
    overflow-y: auto;

    padding: 45px;
    border-radius: 22px;

    box-shadow: 0 25px 70px rgba(0,0,0,.3);
}

.cerrar-modal {
    position: absolute;
    top: 18px;
    right: 22px;

    border: none;
    background: #eef4f7;

    width: 42px;
    height: 42px;
    border-radius: 50%;

    font-size: 27px;
    cursor: pointer;
}

.etiqueta-guia {
    color: #1aa899;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.modal-contenido h2 {
    color: #0c3d66;
    font-size: 36px;
    margin: 12px 0;
}

.modal-contenido > div > p {
    color: #607587;
    line-height: 1.7;
}

.guia-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.guia-card {
    padding: 22px;
    background: #f4f8fa;
    border-radius: 14px;
}

.guia-card > span {
    font-size: 30px;
}

.guia-card h3 {
    color: #0c3d66;
}

.guia-card p {
    color: #617687;
    line-height: 1.6;
}

.tip-guia {
    margin-top: 25px;
    padding: 20px;
    background: #e9faf7;
    border-radius: 12px;
    color: #17495a;
}

.pasos-viaje {
    margin-top: 25px;
}

.pasos-viaje > div {
    display: grid;
    grid-template-columns: 55px 1fr;
    column-gap: 15px;

    padding: 17px 0;
    border-bottom: 1px solid #e4eaee;
}

.pasos-viaje span {
    grid-row: 1 / 3;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0c3d66;
    color: white;

    border-radius: 50%;
    font-weight: bold;
}

.pasos-viaje h3,
.pasos-viaje p {
    margin: 0;
}

.pasos-viaje h3 {
    color: #0c3d66;
}

.pasos-viaje p {
    color: #617687;
    margin-top: 5px;
}

@media (max-width: 650px) {

    .modal-contenido {
        padding: 35px 20px;
    }

    .guia-cards {
        grid-template-columns: 1fr;
    }

    .modal-contenido h2 {
        font-size: 28px;
    }
}/* ==============================
   MODAL EDUCATIVO
============================== */

.modal-guia {
    position: fixed;
    inset: 0;

    background: rgba(6, 28, 50, 0.78);
    backdrop-filter: blur(6px);

    display: none;
    align-items: center;
    justify-content: center;

    padding: 24px;

    z-index: 99999;
}

.modal-guia.modal-activo {
    display: flex;
}

.modal-contenido {
    position: relative;

    width: min(950px, 95%);
    max-height: 88vh;

    overflow-y: auto;

    background: #ffffff;

    padding: 46px;

    border-radius: 22px;

    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.cerrar-modal {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #eef4f7;
    color: #17324d;

    font-size: 26px;

    cursor: pointer;
}

.cerrar-modal:hover {
    background: #dfe9ef;
}

.etiqueta-guia {
    display: inline-block;

    color: #00a6a6;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.modal-contenido h2 {
    color: #0c3d66;

    font-size: 38px;

    margin: 8px 0 18px;
}

.modal-contenido p {
    color: #617687;

    line-height: 1.7;
}

.guia-cards {
    margin-top: 28px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}

.guia-card {
    padding: 24px;

    background: #f5f9fb;

    border: 1px solid #e1eaef;

    border-radius: 14px;
}

.guia-card > span {
    font-size: 30px;
}

.guia-card h3 {
    color: #0c3d66;

    margin: 12px 0 8px;
}

.guia-card p {
    margin-bottom: 0;
}

.tip-guia {
    margin-top: 24px;

    padding: 18px 20px;

    background: #e8faf7;

    border-left: 4px solid #21c7b7;

    border-radius: 10px;

    color: #17495a;
}

.tip-guia a {
    color: #0c706f;
    font-weight: bold;
}


/* PASOS PLANEAR VIAJE */

.pasos-viaje {
    margin-top: 26px;

    display: grid;

    gap: 12px;
}

.pasos-viaje > div {
    display: grid;
    grid-template-columns: 55px 1fr;

    column-gap: 15px;

    padding: 18px;

    background: #f6f9fb;

    border-radius: 12px;
}

.pasos-viaje > div > span {
    grid-row: 1 / 3;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0c3d66;
    color: white;

    border-radius: 50%;

    font-weight: bold;
}

.pasos-viaje h3 {
    margin: 0;

    color: #0c3d66;
}

.pasos-viaje p {
    margin: 5px 0 0;
}


/* CELULAR */

@media (max-width: 650px) {

    .modal-guia {
        padding: 12px;
    }

    .modal-contenido {
        width: 100%;

        padding: 40px 18px 24px;

        border-radius: 16px;
    }

    .modal-contenido h2 {
        font-size: 29px;
    }

    .guia-cards {
        grid-template-columns: 1fr;
    }

}
/* =====================================
   MODAL PREMIUM - VIAJA INTELIGENTE
===================================== */

.modal-guia {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(3, 25, 45, 0);
    backdrop-filter: blur(0px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .35s ease,
        background .35s ease,
        backdrop-filter .35s ease;
}

.modal-guia.modal-activo {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    background: rgba(3, 25, 45, 0.78);
    backdrop-filter: blur(8px);
}


/* VENTANA */

.modal-contenido {
    position: relative;

    width: min(920px, 94%);
    max-height: 88vh;
    overflow-y: auto;

    padding: 50px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f5fbff 100%
        );

    border-radius: 26px;

    box-shadow:
        0 35px 100px rgba(0,0,0,.35);

    transform:
        translateY(50px)
        scale(.92);

    opacity: 0;

    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        opacity .35s ease;
}


/* ANIMACIÓN AL ABRIR */

.modal-activo .modal-contenido {
    transform:
        translateY(0)
        scale(1);

    opacity: 1;
}


/* X CERRAR */

.cerrar-modal {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: #eaf2f6;
    color: #0b3859;

    font-size: 30px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    z-index: 100;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}

.cerrar-modal:hover {
    background: #ff5a5f;
    color: white;

    transform: rotate(90deg) scale(1.08);
}


/* ETIQUETA SUPERIOR */

.etiqueta-guia {
    display: inline-block;

    padding: 8px 14px;

    background: #e4faf7;
    color: #05877f;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 12px;
}


/* TITULO */

.modal-contenido h2 {
    margin: 5px 0 15px;

    color: #0b3859;

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.1;
}


/* TEXTO */

.modal-contenido > #contenidoGuia > p {
    max-width: 720px;

    color: #657b8c;

    font-size: 17px;
    line-height: 1.7;
}


/* TARJETAS */

.guia-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-top: 30px;
}

.guia-card {
    position: relative;

    padding: 25px;

    background: white;

    border: 1px solid #e2edf3;

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(10,60,90,.07);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* EFECTO AL PASAR MOUSE */

.guia-card:hover {
    transform: translateY(-8px);

    border-color: #24c7b6;

    box-shadow:
        0 20px 45px rgba(10,60,90,.15);
}

.guia-card > span {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin-bottom: 12px;

    background: #e9f8f7;

    border-radius: 15px;

    font-size: 27px;

    transition: transform .3s ease;
}

.guia-card:hover > span {
    transform: scale(1.15) rotate(-5deg);
}

.guia-card h3 {
    margin: 4px 0 8px;

    color: #0b3859;

    font-size: 20px;
}

.guia-card p {
    margin: 0;

    color: #667d8e;

    line-height: 1.6;
}


/* CONSEJO */

.tip-guia {
    margin-top: 25px;

    padding: 20px 22px;

    background:
        linear-gradient(
            135deg,
            #e7faf7,
            #edf8ff
        );

    border-left: 5px solid #20c7b5;

    border-radius: 13px;

    color: #174c5e;

    line-height: 1.6;
}

.tip-guia a {
    color: #078a80;
    font-weight: 800;
}


/* PASOS DE VIAJE */

.pasos-viaje {
    display: grid;

    gap: 13px;

    margin-top: 28px;
}

.pasos-viaje > div {
    display: grid;

    grid-template-columns: 58px 1fr;

    column-gap: 16px;

    padding: 19px;

    background: white;

    border: 1px solid #e3edf2;

    border-radius: 15px;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.pasos-viaje > div:hover {
    transform: translateX(8px);

    box-shadow:
        0 12px 30px rgba(10,60,90,.10);
}

.pasos-viaje > div > span {
    grid-row: 1 / 3;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #0c496c,
            #087e88
        );

    color: white;

    border-radius: 50%;

    font-weight: 800;
}

.pasos-viaje h3 {
    margin: 0;

    color: #0b3859;
}

.pasos-viaje p {
    margin: 5px 0 0;

    color: #667d8e;
}


/* SCROLL BONITO */

.modal-contenido::-webkit-scrollbar {
    width: 7px;
}

.modal-contenido::-webkit-scrollbar-thumb {
    background: #aac3cf;
    border-radius: 20px;
}


/* CELULAR */

@media (max-width: 650px) {

    .modal-guia {
        padding: 10px;
    }

    .modal-contenido {
        width: 100%;
        max-height: 92vh;

        padding:
            52px
            20px
            25px;

        border-radius: 20px;
    }

    .guia-cards {
        grid-template-columns: 1fr;
    }

    .cerrar-modal {
        width: 42px;
        height: 42px;

        top: 12px;
        right: 12px;
    }
}