 :root {
    --azul-oscuro: #0b2338;
    --azul: #123b5d;
    --azul-claro: #eaf3f8;
    --verde: #28b487;
    --verde-oscuro: #188363;
    --verde-suave: #e5f7f1;
    --blanco: #ffffff;
    --fondo: #f6f8f9;
    --texto: #18222d;
    --gris: #6d7882;
    --borde: #dfe6ea;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--texto);
    background: var(--blanco);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font: inherit;
}

.contenedor {
    width: min(1180px, 90%);
    margin: 0 auto;
}

/* HEADER */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid var(--borde);
    backdrop-filter: blur(12px);
}

.navegacion {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.marca {
    display: flex;
    align-items: center;
    gap: 12px;
}

.marca-icono {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--azul), var(--verde));
    color: var(--blanco);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    font-weight: 900;
}

.marca-texto {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.marca-texto strong {
    color: var(--azul-oscuro);
    font-size: 1.15rem;
    letter-spacing: 0.07em;
}

.marca-texto span {
    color: var(--gris);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    margin-top: 5px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.menu a {
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--azul-oscuro);
    transition: 0.2s;
}

.menu a:hover {
    color: var(--verde);
}

.menu-movil {
    display: none;
    border: 0;
    background: none;
    color: var(--azul-oscuro);
    font-size: 1.9rem;
    cursor: pointer;
}

/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 88px;
    background:
        radial-gradient(circle at 90% 10%, rgba(40,180,135,0.18), transparent 30%),
        radial-gradient(circle at 10% 20%, rgba(18,59,93,0.08), transparent 28%),
        linear-gradient(180deg, #fbfdfd 0%, #f1f7f5 100%);
}

.hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(18,59,93,0.05);
    right: -170px;
    bottom: -170px;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.etiqueta {
    display: inline-block;
    color: var(--verde);
    font-size: 0.77rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    margin-bottom: 18px;
}

.hero h1 {
    color: var(--azul-oscuro);
    font-size: clamp(3.1rem, 6vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    max-width: 720px;
}

.hero h1 span {
    display: block;
    color: var(--verde);
}

.hero-texto > p {
    margin-top: 26px;
    max-width: 650px;
    color: var(--gris);
    font-size: 1.08rem;
    line-height: 1.75;
}

.hero-botones {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn-principal {
    background: var(--azul-oscuro);
    color: var(--blanco);
    box-shadow: 0 12px 25px rgba(11,35,56,0.14);
}

.btn-principal:hover {
    transform: translateY(-2px);
    background: var(--azul);
}

.btn-secundario {
    background: var(--blanco);
    color: var(--azul-oscuro);
    border: 1px solid var(--borde);
}

.btn-secundario:hover {
    border-color: var(--verde);
    color: var(--verde-oscuro);
}

.btn-verde {
    background: var(--verde);
    color: var(--blanco);
}

.btn-verde:hover {
    background: var(--verde-oscuro);
}

.hero-mini {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-mini div {
    display: flex;
    flex-direction: column;
}

.hero-mini strong {
    color: var(--azul-oscuro);
}

.hero-mini span {
    color: var(--gris);
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
}

.hero-imagen-principal {
    width: 100%;
}

.foto-placeholder {
    width: 100%;
    min-height: 420px;
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(18,59,93,0.1), rgba(40,180,135,0.16));
    border: 1px solid var(--borde);
    display: grid;
    place-items: center;
    color: var(--gris);
    text-align: center;
    padding: 30px;
}

.foto-placeholder.grande {
    min-height: 500px;
}

.hero-tarjeta-flotante {
    position: absolute;
    left: -34px;
    bottom: 30px;
    width: min(320px, 84%);
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--borde);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 20px 50px rgba(11,35,56,0.14);
}

.hero-tarjeta-flotante span {
    color: var(--verde);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.hero-tarjeta-flotante strong {
    display: block;
    margin-top: 8px;
    color: var(--azul-oscuro);
    font-size: 1.1rem;
}

.hero-tarjeta-flotante p {
    color: var(--gris);
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.55;
}

/* SECCIONES */

.seccion {
    padding: 95px 0;
}

.encabezado-seccion {
    max-width: 760px;
    margin-bottom: 50px;
}

.encabezado-seccion h2,
.vuelos-contenido h2,
.contacto h2,
.cta h2 {
    color: var(--azul-oscuro);
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.encabezado-seccion > p,
.vuelos-contenido > p,
.contacto p {
    margin-top: 18px;
    color: var(--gris);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* APRENDER */

.aprender {
    background: var(--blanco);
}

.aprende-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.aprende-card {
    min-height: 310px;
    padding: 30px;
    border-radius: 22px;
    background: #f8faf9;
    border: 1px solid var(--borde);
    display: flex;
    flex-direction: column;
    transition: 0.25s;
}

.aprende-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(11,35,56,0.08);
}

.numero {
    color: var(--verde);
    font-size: 0.82rem;
    font-weight: 900;
}

.aprende-card h3 {
    margin-top: 35px;
    font-size: 1.4rem;
    color: var(--azul-oscuro);
}

.aprende-card p {
    margin-top: 12px;
    color: var(--gris);
    flex: 1;
}

.btn-texto {
    margin-top: 22px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--verde-oscuro);
    font-weight: 800;
    cursor: pointer;
    text-align: left;
}

/* VUELOS */

.vuelos {
    background: var(--azul-claro);
}

.vuelos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.lista-check {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    margin: 28px 0 32px;
}

.lista-check li {
    position: relative;
    padding-left: 28px;
    color: var(--azul-oscuro);
    font-weight: 700;
}

.lista-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--verde);
    font-weight: 900;
}

/* SEGURIDAD */

.seguridad {
    background: var(--azul-oscuro);
    color: var(--blanco);
}

.encabezado-claro h2 {
    color: var(--blanco);
}

.encabezado-claro > p {
    color: rgba(255,255,255,0.7);
}

.seguridad-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.seguridad-grid article {
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
}

.seguridad-grid article > span {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--verde);
    color: var(--blanco);
    font-weight: 900;
}

.seguridad-grid h3 {
    margin-top: 22px;
    font-size: 1.35rem;
}

.seguridad-grid p {
    margin-top: 12px;
    color: rgba(255,255,255,0.68);
}

/* DESTINOS */

.destinos {
    background: var(--fondo);
}

.destinos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.destino-card {
    overflow: hidden;
    background: var(--blanco);
    border-radius: 22px;
    border: 1px solid var(--borde);
    transition: 0.25s;
}

.destino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(11,35,56,0.09);
}

.destino-foto {
    min-height: 240px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(18,59,93,0.08), rgba(40,180,135,0.16));
    color: var(--gris);
}

.destino-info {
    padding: 26px;
}

.destino-info > span {
    color: var(--verde);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.destino-info h3 {
    margin-top: 7px;
    font-size: 1.65rem;
    color: var(--azul-oscuro);
}

.destino-info p {
    margin-top: 10px;
    color: var(--gris);
}

/* CTA */

.cta {
    padding: 72px 0;
    background: var(--verde-suave);
}

.cta-contenido {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.cta h2 {
    max-width: 760px;
}

/* CONTACTO */

.contacto {
    background: var(--blanco);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.datos {
    border-top: 1px solid var(--borde);
}

.dato {
    padding: 23px 0;
    border-bottom: 1px solid var(--borde);
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.dato span {
    color: var(--gris);
}

.dato strong {
    color: var(--azul-oscuro);
    text-align: right;
}

/* FOOTER */

.footer {
    padding: 36px 0;
    background: #071c2c;
    color: var(--blanco);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer p,
.footer span {
    color: rgba(255,255,255,0.62);
}

.footer-derecha {
    display: flex;
    flex-direction: column;
    text-align: right;
}

/* MODAL */

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(5,20,32,0.72);
}

.modal.activo {
    display: flex;
}

.modal-caja {
    position: relative;
    width: min(620px, 100%);
    max-height: 88vh;
    overflow-y: auto;
    background: var(--blanco);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.24);
}

.modal-cerrar {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: #edf1f3;
    color: var(--azul-oscuro);
    font-size: 1.6rem;
    cursor: pointer;
}

.modal-caja h2 {
    color: var(--azul-oscuro);
    font-size: 2rem;
    padding-right: 55px;
}

#modalContenido {
    margin-top: 20px;
    color: var(--gris);
}

#modalContenido p + p {
    margin-top: 12px;
}

#modalContenido ul {
    margin-top: 16px;
    padding-left: 20px;
}

/* TABLET */

@media (max-width: 900px) {

    .menu {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        padding: 22px 5%;
        background: var(--blanco);
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid var(--borde);
    }

    .menu.activo {
        display: flex;
    }

    .menu-movil {
        display: block;
    }

    .hero-grid,
    .vuelos-grid,
    .contacto-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 680px;
    }

    .aprende-grid,
    .seguridad-grid,
    .destinos-grid {
        grid-template-columns: 1fr;
    }

    .hero-tarjeta-flotante {
        left: 20px;
    }

    .cta-contenido {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* CELULAR */

@media (max-width: 600px) {

    .contenedor {
        width: 90%;
    }

    .navegacion {
        min-height: 70px;
    }

    .marca-icono {
        width: 42px;
        height: 42px;
    }

    .marca-texto strong {
        font-size: 1rem;
    }

    .marca-texto span {
        font-size: 0.64rem;
    }

    .hero {
        padding: 54px 0 64px;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 12vw, 3.7rem);
        line-height: 1.02;
    }

    .hero-texto > p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-botones {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-mini {
        gap: 18px;
    }

    .hero-mini div {
        width: 45%;
    }

    .foto-placeholder,
    .foto-placeholder.grande {
        min-height: 310px;
        border-radius: 18px;
    }

    .hero-tarjeta-flotante {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: 14px;
    }

    .seccion {
        padding: 68px 0;
    }

    .encabezado-seccion h2,
    .vuelos-contenido h2,
    .contacto h2,
    .cta h2 {
        font-size: 2.25rem;
    }

    .aprende-card,
    .seguridad-grid article,
    .destino-info {
        padding: 24px;
    }

    .lista-check {
        grid-template-columns: 1fr;
    }

    .destino-foto {
        min-height: 210px;
    }

    .dato {
        flex-direction: column;
        gap: 5px;
    }

    .dato strong {
        text-align: left;
    }

    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-derecha {
        text-align: left;
    }

    .modal {
        padding: 12px;
        align-items: flex-end;
    }

    .modal-caja {
        width: 100%;
        max-height: 88vh;
        border-radius: 22px 22px 0 0;
        padding: 28px 22px;
    }
}
/* IMAGEN REAL DE PORTADA */

.hero-imagen-principal .foto-placeholder {
    padding: 0;
}

.hero-imagen-principal img {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 600px) {

    .hero-imagen-principal img {
        height: 330px;
    }

}
/* IMÁGENES DE DESTINOS */

.destino-foto {
    padding: 0;
    overflow: hidden;
}

.destino-foto img {
    width: 100%;
    height: 240px;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.destino-card:hover .destino-foto img {
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .destino-foto img {
        height: 220px;
    }
}
/* ========================================
   NUEVA PORTADA VALMO
======================================== */

.hero {
    padding: 32px 0 70px;
    background: #eef7fb;
}

.hero-banner {
    position: relative;
    min-height: 650px;
    border-radius: 28px;
    overflow: hidden;
    background: var(--azul-oscuro);
}

.hero-fondo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(4, 28, 48, 0.94) 0%,
        rgba(4, 28, 48, 0.76) 38%,
        rgba(4, 28, 48, 0.22) 72%,
        rgba(4, 28, 48, 0.08) 100%
    );
}

.hero-contenido {
    position: relative;
    z-index: 2;
    width: 58%;
    padding: 70px 60px 150px;
}

.hero-etiqueta {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(30, 202, 157, 0.85);
    color: white;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.hero-contenido h1 {
    margin-top: 28px;
    max-width: 650px;
    color: white;
    font-size: clamp(3rem, 5.2vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero-contenido h1 span {
    display: block;
    color: #25dfb5;
}

.hero-contenido p {
    max-width: 520px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.65;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 28px;
    padding: 0 26px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 100px;
    color: white;
    font-weight: 800;
    transition: 0.25s ease;
}

.hero-btn:hover {
    background: white;
    color: var(--azul-oscuro);
    transform: translateY(-2px);
}

.hero-beneficios {
    position: absolute;
    z-index: 3;
    left: 60px;
    right: 60px;
    bottom: 36px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;

    color: white;
}

.beneficio {
    padding: 4px 28px;
    border-right: 1px solid rgba(255,255,255,.3);
}

.beneficio:first-child {
    padding-left: 0;
}

.beneficio:last-child {
    border-right: 0;
}

.beneficio strong,
.beneficio span {
    display: block;
}

.beneficio strong {
    font-size: 1rem;
}

.beneficio span {
    margin-top: 3px;
    color: rgba(255,255,255,.68);
    font-size: .88rem;
}


/* ========================================
   PORTADA TABLET
======================================== */

@media (max-width: 900px) {

    .hero-banner {
        min-height: 700px;
    }

    .hero-contenido {
        width: 75%;
        padding: 60px 45px 175px;
    }

    .hero-beneficios {
        left: 45px;
        right: 45px;
    }

}


/* ========================================
   PORTADA CELULAR
======================================== */

@media (max-width: 600px) {

    .hero {
        padding: 14px 0 50px;
    }

    .hero .contenedor {
        width: 94%;
    }

    .hero-banner {
        min-height: 670px;
        border-radius: 20px;
    }

    .hero-fondo {
        object-position: 62% center;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(4,28,48,.55) 0%,
            rgba(4,28,48,.72) 38%,
            rgba(4,28,48,.96) 100%
        );
    }

    .hero-contenido {
        width: 100%;
        padding: 42px 24px 220px;
    }

    .hero-etiqueta {
        font-size: .68rem;
        padding: 8px 13px;
    }

    .hero-contenido h1 {
        margin-top: 22px;
        max-width: 100%;
        font-size: clamp(2.55rem, 12vw, 3.45rem);
        line-height: 1;
        letter-spacing: -0.04em;
    }

    .hero-contenido p {
        max-width: 100%;
        margin-top: 20px;
        font-size: .98rem;
        line-height: 1.6;
    }

    .hero-btn {
        width: 100%;
        margin-top: 24px;
    }

    .hero-beneficios {
        left: 24px;
        right: 24px;
        bottom: 25px;
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .beneficio,
    .beneficio:first-child {
        padding: 0 0 10px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.2);
    }

    .beneficio:last-child {
        border-bottom: 0;
    }

    .beneficio strong {
        font-size: .92rem;
    }

    .beneficio span {
        font-size: .8rem;
    }

}
/* ========================================
   NUEVA SECCIÓN DE VUELOS
======================================== */

.vuelos {
    background: #eef7fb;
    padding: 30px 0 85px;
}

.vuelos-nuevo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;

    padding: 20px;
    border-radius: 28px;

    background: rgba(255,255,255,.55);
}

.vuelos-foto {
    width: 100%;
    height: 430px;
    border-radius: 22px;
    overflow: hidden;
}

.vuelos-foto img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.vuelos-info {
    padding: 20px 25px 20px 0;
}

.vuelos-info h2 {
    max-width: 620px;
    margin: 0;

    color: var(--azul-oscuro);

    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.vuelos-descripcion {
    margin-top: 16px;

    color: var(--gris);
    font-size: 1.05rem;
    line-height: 1.65;
}

.vuelos-opciones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 12px;
    margin-top: 28px;
}

.vuelo-opcion {
    min-height: 105px;

    padding: 17px;

    display: flex;
    align-items: center;
    gap: 12px;

    background: white;

    border: 1px solid var(--borde);
    border-radius: 14px;
}

.vuelo-icono {
    flex-shrink: 0;

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    color: white;
    background: var(--verde);

    border-radius: 12px;

    font-size: 1.2rem;
    font-weight: 900;
}

.vuelo-opcion strong {
    color: var(--azul-oscuro);
    font-size: .92rem;
}

.vuelo-opcion p {
    margin-top: 2px;

    color: var(--gris);
    font-size: .78rem;
    line-height: 1.35;
}

.btn-consejos {
    margin-top: 26px;

    min-height: 52px;
    padding: 0 25px;

    border: 0;
    border-radius: 100px;

    background: var(--verde);
    color: white;

    font-size: .95rem;
    font-weight: 800;

    cursor: pointer;

    transition: .25s ease;
}

.btn-consejos:hover {
    background: var(--verde-oscuro);
    transform: translateY(-2px);
}


/* TABLET */

@media (max-width: 900px) {

    .vuelos-nuevo {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vuelos-info {
        padding: 10px 15px 25px;
    }

    .vuelos-opciones {
        grid-template-columns: 1fr;
    }

}


/* CELULAR */

@media (max-width: 600px) {

    .vuelos {
        padding: 18px 0 55px;
    }

    .vuelos .contenedor {
        width: 94%;
    }

    .vuelos-nuevo {
        display: block;

        padding: 10px;

        border-radius: 20px;
    }

    .vuelos-foto {
        height: 260px;
        border-radius: 17px;
    }

    .vuelos-info {
        padding: 30px 12px 18px;
    }

    .vuelos-info h2 {
        font-size: 2.25rem;
        line-height: 1.03;
    }

    .vuelos-descripcion {
        font-size: .96rem;
    }

    .vuelos-opciones {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 24px;
    }

    .vuelo-opcion {
        min-height: 82px;
    }

    .btn-consejos {
        width: 100%;
    }

}
/* ========================================
   AJUSTE FINAL DE TIPOGRAFÍA RESPONSIVE
======================================== */

/* ESCRITORIO */

body {
    font-size: 15px;
}

p {
    font-size: 0.96rem;
    line-height: 1.65;
}

.hero-contenido h1 {
    font-size: clamp(2.8rem, 4.6vw, 4.5rem);
}

.encabezado-seccion h2,
.vuelos-info h2,
.contacto h2,
.cta h2 {
    font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.aprende-card h3,
.seguridad-grid h3 {
    font-size: 1.2rem;
}

.destino-info h3 {
    font-size: 1.45rem;
}


/* ========================================
   CELULAR
======================================== */

@media (max-width: 600px) {

    body {
        font-size: 14px;
    }

    /* PORTADA */

    .hero-contenido {
        padding: 38px 22px 215px;
    }

    .hero-contenido h1 {
        font-size: clamp(2.15rem, 9.5vw, 2.75rem);
        line-height: 1.03;
        letter-spacing: -0.035em;
    }

    .hero-contenido p {
        font-size: 0.91rem;
        line-height: 1.55;
    }

    .hero-etiqueta,
    .etiqueta {
        font-size: 0.65rem;
        letter-spacing: 0.11em;
    }

    .hero-btn {
        min-height: 48px;
        font-size: 0.9rem;
    }

    .beneficio strong {
        font-size: 0.84rem;
    }

    .beneficio span {
        font-size: 0.74rem;
    }


    /* TÍTULOS DE TODAS LAS SECCIONES */

    .encabezado-seccion h2,
    .vuelos-info h2,
    .contacto h2,
    .cta h2 {
        font-size: 1.85rem;
        line-height: 1.08;
        letter-spacing: -0.025em;
    }

    .encabezado-seccion > p,
    .vuelos-descripcion,
    .contacto p {
        font-size: 0.9rem;
        line-height: 1.6;
    }


    /* TARJETAS APRENDER */

    .aprende-card {
        min-height: auto;
        padding: 21px;
    }

    .aprende-card h3 {
        margin-top: 20px;
        font-size: 1.12rem;
    }

    .aprende-card p {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .btn-texto {
        font-size: 0.87rem;
    }


    /* VUELOS */

    .vuelos-info h2 {
        font-size: 1.85rem;
    }

    .vuelo-opcion {
        min-height: 72px;
        padding: 13px;
    }

    .vuelo-opcion strong {
        font-size: 0.86rem;
    }

    .vuelo-opcion p {
        font-size: 0.74rem;
    }

    .btn-consejos {
        min-height: 48px;
        font-size: 0.87rem;
    }


    /* VIAJE SEGURO */

    .seguridad-grid article {
        padding: 21px;
    }

    .seguridad-grid h3 {
        margin-top: 16px;
        font-size: 1.08rem;
    }

    .seguridad-grid p {
        font-size: 0.86rem;
        line-height: 1.55;
    }


    /* DESTINOS */

    .destino-info {
        padding: 21px;
    }

    .destino-info > span {
        font-size: 0.68rem;
    }

    .destino-info h3 {
        font-size: 1.3rem;
    }

    .destino-info p {
        font-size: 0.86rem;
        line-height: 1.55;
    }


    /* CONTACTO */

    .dato {
        padding: 17px 0;
    }

    .dato span {
        font-size: 0.8rem;
    }

    .dato strong {
        font-size: 0.88rem;
    }


    /* MODALES */

    .modal-caja h2 {
        font-size: 1.55rem;
        line-height: 1.1;
    }

    #modalContenido {
        font-size: 0.88rem;
        line-height: 1.55;
    }


    /* FOOTER */

    .footer {
        font-size: 0.82rem;
    }
}


/* ========================================
   CELULARES PEQUEÑOS
======================================== */

@media (max-width: 380px) {

    .hero-contenido h1 {
        font-size: 2rem;
    }

    .encabezado-seccion h2,
    .vuelos-info h2,
    .contacto h2,
    .cta h2 {
        font-size: 1.7rem;
    }

    body {
        font-size: 13.5px;
    }
}
/* ========================================
   NUEVA IDENTIDAD - GUÍA EDUCATIVA
======================================== */

.marca-personal {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.05;
}

.marca-principal {
    color: var(--azul-oscuro);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.marca-subtitulo {
    margin-top: 4px;
    color: #667784;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

@media (max-width: 600px) {

    .marca-principal {
        font-size: 1.05rem;
    }

    .marca-subtitulo {
        font-size: 0.58rem;
    }
}
/* ========================================
   SECCIÓN PERSONAL - SOBRE ESTA GUÍA
======================================== */

.sobre-guia {
    background: #ffffff;
}

.sobre-guia .encabezado-seccion {
    max-width: 760px;
}

.sobre-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 38px;
}

.sobre-grid article {
    padding: 28px;
    border: 1px solid #dfe7ec;
    border-radius: 18px;
    background: #f8fbfc;
}

.sobre-grid article > span {
    display: inline-block;
    margin-bottom: 18px;
    color: #12b98a;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.sobre-grid h3 {
    margin-bottom: 10px;
    color: #08263c;
    font-size: 1.15rem;
}

.sobre-grid p {
    margin: 0;
    color: #61727e;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sobre-grid article {
        padding: 22px;
    }
}
/* ========================================
   NUEVO DISEÑO PERSONAL
======================================== */

.header-nuevo {
    background: #ffffff;
    border-bottom: 1px solid #e7edf1;
    position: relative;
    z-index: 20;
}

.nav-nuevo {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.marca-personal {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.05;
}

.marca-personal strong {
    color: #08243b;
    font-size: 1.45rem;
    font-weight: 900;
}

.marca-personal span {
    margin-top: 5px;
    color: #536979;
    font-size: .72rem;
    font-weight: 700;
}

.menu-nuevo {
    display: flex;
    align-items: center;
    gap: 34px;
}

.menu-nuevo a {
    color: #09233b;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 700;
    position: relative;
}

.menu-nuevo a.activo::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 3px;
    border-radius: 10px;
    background: #2b85ff;
}

.hero-personal {
    position: relative;
    min-height: 540px;
    overflow: hidden;
}

.hero-personal-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-personal-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 45, 76, .92) 0%,
            rgba(3, 60, 95, .78) 42%,
            rgba(3, 60, 95, .15) 75%
        );
}

.hero-personal-contenido {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 80px;
    color: white;
}

.hero-personal-etiqueta {
    display: inline-flex;
    padding: 10px 20px;
    background: rgba(5, 69, 105, .75);
    border-radius: 30px;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .16em;
}

.hero-personal h1 {
    max-width: 720px;
    margin: 24px 0 18px;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: .98;
    letter-spacing: -.045em;
    color: white;
}

.hero-personal p {
    max-width: 650px;
    color: rgba(255,255,255,.95);
    font-size: 1.15rem;
    line-height: 1.55;
}

.hero-personal-botones {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

.btn-principal,
.btn-secundario {
    min-height: 54px;
    padding: 0 26px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
}

.btn-principal {
    background: #1678f2;
    color: white;
}

.btn-secundario {
    border: 2px solid rgba(255,255,255,.9);
    color: white;
    background: rgba(0,0,0,.08);
}

.beneficios-personales {
    padding: 28px 0;
    background: #ffffff;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e3e9ee;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(7, 42, 66, .07);
}

.beneficios-grid article {
    padding: 28px 22px;
    text-align: center;
    border-right: 1px solid #e6ecf0;
}

.beneficios-grid article:last-child {
    border-right: none;
}

.beneficio-icono {
    width: 54px;
    height: 54px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #e8f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1684f8;
    font-size: 1.5rem;
    font-weight: 900;
}

.beneficios-grid h3 {
    margin: 0 0 8px;
    color: #09243c;
    font-size: 1rem;
}

.beneficios-grid p {
    margin: 0;
    color: #657785;
    font-size: .83rem;
    line-height: 1.45;
}

@media (max-width: 800px) {

    .menu-nuevo {
        display: none;
    }

    .hero-personal {
        min-height: 650px;
    }

    .hero-personal-img {
        object-position: 62% center;
    }

    .hero-personal-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3,45,76,.45) 0%,
                rgba(3,45,76,.65) 40%,
                rgba(3,45,76,.96) 100%
            );
    }

    .hero-personal-contenido {
        padding-top: 65px;
    }

    .hero-personal h1 {
        font-size: 2.7rem;
    }

    .hero-personal p {
        font-size: .95rem;
    }

    .hero-personal-botones {
        flex-direction: column;
    }

    .btn-principal,
    .btn-secundario {
        width: 100%;
    }

    .beneficios-grid {
        grid-template-columns: 1fr 1fr;
    }

    .beneficios-grid article:nth-child(2) {
        border-right: none;
    }

    .beneficios-grid article {
        border-bottom: 1px solid #e6ecf0;
    }

}

@media (max-width: 500px) {

    .hero-personal h1 {
        font-size: 2.25rem;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .beneficios-grid article {
        border-right: none;
    }
}
/* ========================================
   FOOTER PERSONAL
======================================== */

.footer-nuevo {
    background: #062338;
    color: #ffffff;
    padding: 38px 0 22px;
}

.footer-contenido {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.footer-identidad {
    display: flex;
    flex-direction: column;
}

.footer-identidad strong {
    font-size: 1rem;
    font-weight: 900;
}

.footer-identidad span {
    margin-top: 5px;
    color: rgba(255,255,255,.7);
    font-size: .78rem;
}

.footer-menu {
    display: flex;
    gap: 18px;
}

.footer-menu a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: .78rem;
}

.footer-copy {
    text-align: right;
    color: rgba(255,255,255,.75);
    font-size: .78rem;
}

.footer-aviso {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.2);
    text-align: center;
    color: rgba(255,255,255,.6);
    font-size: .7rem;
}

@media (max-width: 700px) {

    .footer-contenido {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-identidad {
        align-items: center;
    }

    .footer-menu {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-copy {
        text-align: center;
    }
}
/* =====================================================
   VIAJA MEJOR - DISEÑO FINAL
===================================================== */

.header-viaja {
    background: #fff;
    border-bottom: 1px solid #e7edf2;
    position: relative;
    z-index: 30;
}

.nav-viaja {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.marca-viaja {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.marca-viaja strong {
    color: #08243d;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -.035em;
}

.marca-viaja span {
    color: #607586;
    font-size: .68rem;
    font-weight: 700;
    margin-top: 5px;
}


.menu-viaja {
    display: flex;
    align-items: center;
    gap: 29px;
}

.menu-viaja a {
    position: relative;
    color: #071c3c;
    text-decoration: none;
    font-size: .82rem;
    font-weight: 700;
}

.menu-viaja a.activo {
    color: #1379ff;
}

.menu-viaja a.activo::after {
    content: "";
    position: absolute;
    height: 3px;
    left: 0;
    right: 0;
    bottom: -11px;
    background: #1379ff;
    border-radius: 10px;
}


/* HERO */

.hero-viaja {
    position: relative;
    min-height: 535px;
    overflow: hidden;
}

.hero-viaja-fondo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-viaja-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2, 54, 91, .94) 0%,
            rgba(2, 74, 117, .76) 38%,
            rgba(2, 74, 117, .15) 72%
        );
}

.hero-viaja-contenido {
    position: relative;
    z-index: 2;
    padding-top: 75px;
    padding-bottom: 100px;
    color: #fff;
}

.hero-viaja-etiqueta {
    display: inline-flex;
    padding: 9px 18px;
    border-radius: 100px;
    background: rgba(5, 79, 122, .80);

    color: #fff;

    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.hero-viaja h1 {
    max-width: 720px;
    margin: 22px 0 17px;

    color: #fff;

    font-size: clamp(2.7rem, 4.6vw, 4.5rem);
    line-height: .98;

    letter-spacing: -.045em;
}

.hero-viaja h1 span {
    color: #35e0d4;
}

.hero-viaja-contenido > p {
    max-width: 590px;

    color: rgba(255,255,255,.94);

    font-size: 1rem;
    line-height: 1.6;
}

.hero-viaja-botones {
    display: flex;
    gap: 14px;
    margin-top: 27px;
}

.boton-azul,
.boton-borde {
    min-height: 51px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    border-radius: 100px;

    text-decoration: none;

    font-size: .9rem;
    font-weight: 800;

    transition: .25s ease;
}

.boton-azul {
    background: #147df5;
    color: #fff;
}

.boton-azul:hover {
    transform: translateY(-2px);
    background: #086ce1;
}

.boton-borde {
    color: #fff;

    border: 2px solid rgba(255,255,255,.9);

    background: rgba(0,0,0,.06);
}

.boton-borde:hover {
    background: rgba(255,255,255,.14);
}


/* BENEFICIOS */

.beneficios-viaja {
    position: relative;
    z-index: 5;

    background: #fff;

    padding: 0 0 48px;
}

.beneficios-caja {
    margin-top: -28px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border: 1px solid #e4e9ee;
    border-radius: 18px;

    background: #fff;

    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(19, 53, 79, .09);
}

.beneficio-viaja {
    min-height: 165px;

    padding: 23px 18px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-right: 1px solid #e5ebef;

    text-align: center;
    text-decoration: none;

    transition: .25s ease;
}

.beneficio-viaja:last-child {
    border-right: none;
}

.beneficio-viaja:hover {
    background: #f8fbfd;
}

.beneficio-circulo {
    width: 50px;
    height: 50px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    font-size: 1.4rem;
    font-weight: 900;
}

.beneficio-circulo.azul {
    background: #dcedff;
    color: #137bf7;
}

.beneficio-circulo.verde {
    background: #d9f7ef;
    color: #11b58b;
}

.beneficio-circulo.naranja {
    background: #ffe8dd;
    color: #ec6727;
}

.beneficio-circulo.morado {
    background: #ede2ff;
    color: #6935c8;
}

.beneficio-viaja h3 {
    color: #071b3c;

    font-size: .95rem;
    font-weight: 900;

    margin: 0 0 8px;
}

.beneficio-viaja p {
    color: #63798a;

    font-size: .78rem;
    line-height: 1.45;

    margin: 0;
}


/* PERSPECTIVA */

.perspectiva {
    padding: 55px 0;

    background:
        linear-gradient(
            180deg,
            #f6fbff,
            #edf7ff
        );
}

.perspectiva-contenido {
    max-width: 800px;

    margin: auto;

    text-align: center;
}

.perspectiva span {
    color: #4176a5;

    font-size: .68rem;
    font-weight: 900;

    letter-spacing: .12em;
}

.perspectiva h2 {
    margin: 15px 0 10px;

    color: #071b43;

    font-size: clamp(1.8rem, 3vw, 2.8rem);

    letter-spacing: -.035em;
}

.perspectiva p {
    max-width: 690px;

    margin: auto;

    color: #5e7487;

    font-size: .9rem;
    line-height: 1.6;
}


/* FOOTER */

.footer-viaja {
    background: #05263d;
    color: #fff;

    padding: 31px 0 18px;
}

.footer-viaja-arriba {
    display: grid;

    grid-template-columns:
        1fr auto;

    align-items: center;

    gap: 30px;
}

.footer-marca {
    display: flex;
    flex-direction: column;
}

.footer-marca strong {
    font-size: .95rem;
}

.footer-marca span {
    margin-top: 4px;

    color: rgba(255,255,255,.72);

    font-size: .72rem;
}

.footer-menu {
    display: flex;
    gap: 16px;
}

.footer-menu a {
    color: rgba(255,255,255,.86);

    text-decoration: none;

    font-size: .73rem;
}

.footer-linea {
    margin-top: 22px;

    padding-top: 15px;

    border-top:
        1px solid rgba(255,255,255,.22);

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.footer-linea p {
    margin: 0;

    color: rgba(255,255,255,.61);

    font-size: .65rem;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 850px) {

    .menu-viaja {
        display: none;
    }

    .hero-viaja {
        min-height: 580px;
    }

    .hero-viaja-fondo {
        object-position: 65% center;
    }

    .beneficios-caja {
        grid-template-columns: repeat(2, 1fr);
    }

    .beneficio-viaja:nth-child(2) {
        border-right: none;
    }

}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 600px) {

    .nav-viaja {
        min-height: 64px;
    }

    .marca-viaja strong {
        font-size: 1.12rem;
    }

    .marca-viaja span {
        font-size: .57rem;
    }


    .hero-viaja {
        min-height: 590px;
    }

    .hero-viaja-fondo {
        object-position: 66% center;
    }

    .hero-viaja-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3,49,80,.42) 0%,
                rgba(3,49,80,.58) 35%,
                rgba(3,49,80,.94) 100%
            );
    }

    .hero-viaja-contenido {
        padding-top: 58px;
        padding-bottom: 110px;
    }

    .hero-viaja-etiqueta {
        padding: 8px 14px;

        font-size: .58rem;
    }

    .hero-viaja h1 {
        max-width: 330px;

        margin-top: 18px;

        font-size: 2.25rem;
        line-height: 1.02;
    }

    .hero-viaja h1 br {
        display: none;
    }

    .hero-viaja-contenido > p {
        max-width: 325px;

        font-size: .84rem;
        line-height: 1.55;
    }

    .hero-viaja-botones {
        flex-direction: column;

        max-width: 310px;
    }

    .boton-azul,
    .boton-borde {
        width: 100%;

        min-height: 47px;

        font-size: .82rem;
    }


    .beneficios-viaja {
        padding-bottom: 38px;
    }

    .beneficios-caja {
        width: 92%;

        margin-top: -35px;

        grid-template-columns:
            repeat(2, 1fr);

        border-radius: 15px;
    }

    .beneficio-viaja {
        min-height: 135px;

        padding: 17px 9px;
    }

    .beneficio-circulo {
        width: 42px;
        height: 42px;

        font-size: 1.1rem;
    }

    .beneficio-viaja h3 {
        font-size: .82rem;
    }

    .beneficio-viaja p {
        font-size: .68rem;
    }


    .perspectiva {
        padding: 42px 20px;
    }

    .perspectiva h2 {
        font-size: 1.65rem;
        line-height: 1.1;
    }

    .perspectiva p {
        font-size: .8rem;
    }


    .footer-viaja-arriba {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .footer-marca {
        align-items: center;
    }

    .footer-menu {
        justify-content: center;

        flex-wrap: wrap;
    }

    .footer-linea {
        flex-direction: column;

        text-align: center;

        gap: 8px;
    }

}
/* ========================================
   AJUSTE FINO VIAJA MEJOR
======================================== */

/* Escritorio */
.hero-viaja {
    min-height: 500px;
}

.hero-viaja-contenido {
    padding-top: 62px;
    padding-bottom: 90px;
}

.hero-viaja h1 {
    max-width: 650px;
    font-size: clamp(2.6rem, 4.1vw, 4rem);
}

.hero-viaja-contenido > p {
    max-width: 570px;
    font-size: .92rem;
}

.hero-viaja-etiqueta {
    font-size: .62rem;
}

.boton-azul,
.boton-borde {
    min-height: 48px;
    font-size: .84rem;
}

/* El menú normal se mantiene en PC */
@media (min-width: 901px) {

    .menu-viaja {
        display: flex !important;
    }

    .menu-movil {
        display: none !important;
    }
}

/* Tablet y celular */
@media (max-width: 900px) {

    .menu-viaja {
        display: none;
    }

    .menu-movil {
        display: block;
    }
}

/* CELULAR */
@media (max-width: 600px) {

    .hero-viaja {
        min-height: 520px;
    }

    .hero-viaja-contenido {
        padding-top: 42px;
        padding-bottom: 85px;
    }

    .hero-viaja-etiqueta {
        font-size: .53rem;
        padding: 7px 12px;
    }

    .hero-viaja h1 {
        max-width: 300px;
        margin: 16px 0 14px;
        font-size: 1.95rem;
        line-height: 1.03;
    }

    .hero-viaja-contenido > p {
        max-width: 300px;
        font-size: .76rem;
        line-height: 1.5;
    }

    .hero-viaja-botones {
        max-width: 285px;
        gap: 9px;
        margin-top: 20px;
    }

    .boton-azul,
    .boton-borde {
        min-height: 43px;
        font-size: .74rem;
    }

    .beneficios-caja {
        margin-top: -25px;
    }

    .beneficio-viaja {
        min-height: 120px;
        padding: 14px 8px;
    }

    .beneficio-circulo {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .beneficio-viaja h3 {
        font-size: .76rem;
    }

    .beneficio-viaja p {
        font-size: .62rem;
    }
}
/* AJUSTE FINAL HERO */

.hero-viaja {
    min-height: 470px;
}

.hero-viaja-contenido {
    padding-top: 58px;
    padding-bottom: 78px;
}

@media (max-width: 600px) {

    .hero-viaja {
        min-height: 500px;
    }

    .hero-viaja-fondo {
        object-position: 68% center;
    }

    .hero-viaja-contenido {
        padding-top: 38px;
        padding-bottom: 75px;
    }

    .hero-viaja h1 {
        font-size: 1.85rem;
        max-width: 290px;
    }

    .hero-viaja-contenido > p {
        font-size: .74rem;
        max-width: 290px;
    }

    .hero-viaja-etiqueta {
        font-size: .5rem;
    }

    .boton-azul,
    .boton-borde {
        font-size: .72rem;
        min-height: 42px;
    }
}
/* =========================================
   PULIDO FINAL PORTADA VIAJA MEJOR
========================================= */

/* Header */
.header-viaja {
    min-height: 68px;
}

.nav-viaja {
    min-height: 68px;
}

/* Hero un poco más compacto */
.hero-viaja {
    min-height: 455px;
}

.hero-viaja-fondo {
    object-position: center center;
}

.hero-viaja-contenido {
    padding-top: 55px;
    padding-bottom: 70px;
}

.hero-viaja h1 {
    max-width: 600px;
    font-size: clamp(2.45rem, 3.8vw, 3.7rem);
}

.hero-viaja-contenido > p {
    max-width: 570px;
    font-size: .88rem;
}

/* Tarjetas más compactas */
.beneficio-viaja {
    min-height: 145px;
    padding: 20px 14px;
}


/* =========================
   CELULAR
========================= */

@media (max-width: 600px) {

    .header-viaja,
    .nav-viaja {
        min-height: 60px;
    }

    .marca-viaja strong {
        font-size: 1rem;
    }

    .marca-viaja span {
        font-size: .54rem;
    }

    .hero-viaja {
        min-height: 480px;
    }

    /* Mantiene al viajero visible */
    .hero-viaja-fondo {
        object-position: 65% center;
    }

    .hero-viaja-contenido {
        padding-top: 38px;
        padding-bottom: 65px;
    }

    .hero-viaja-etiqueta {
        font-size: .48rem;
        padding: 7px 11px;
    }

    .hero-viaja h1 {
        max-width: 280px;
        font-size: 1.8rem;
        line-height: 1.02;
    }

    .hero-viaja-contenido > p {
        max-width: 275px;
        font-size: .71rem;
        line-height: 1.5;
    }

    .hero-viaja-botones {
        max-width: 270px;
    }

    .boton-azul,
    .boton-borde {
        min-height: 40px;
        font-size: .69rem;
    }

    /* 4 beneficios en cuadrícula 2 x 2 */
    .beneficio-viaja {
        min-height: 112px;
        padding: 12px 7px;
    }

    .beneficio-circulo {
        width: 36px;
        height: 36px;
        margin-bottom: 7px;
        font-size: .9rem;
    }

    .beneficio-viaja h3 {
        margin-bottom: 4px;
        font-size: .72rem;
    }

    .beneficio-viaja p {
        font-size: .59rem;
        line-height: 1.35;
    }
}
/* =========================================
   AJUSTE FINAL IPHONE / CELULAR
========================================= */

@media (max-width: 600px) {

    .hero-viaja {
        min-height: 455px;
    }

    .hero-viaja-contenido {
        padding-top: 34px;
        padding-bottom: 55px;
    }

    .hero-viaja-etiqueta {
        font-size: .46rem;
        padding: 6px 11px;
    }

    .hero-viaja h1 {
        max-width: 275px;
        margin: 15px 0 13px;
        font-size: 1.72rem;
        line-height: 1.03;
    }

    .hero-viaja-contenido > p {
        max-width: 275px;
        font-size: .69rem;
        line-height: 1.48;
    }

    .hero-viaja-botones {
        max-width: 270px;
        margin-top: 18px;
        gap: 8px;
    }

    .boton-azul,
    .boton-borde {
        min-height: 39px;
        font-size: .68rem;
    }

    .beneficios-caja {
        margin-top: -20px;
    }

}
/* =========================================
   MENU MOVIL
========================================= */

.menu-movil {
    display: none;
    border: 0;
    background: transparent;
    color: #08243d;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
}

@media (max-width: 900px) {

    .nav-viaja {
        position: relative;
    }

    .menu-movil {
        display: block;
        position: relative;
        z-index: 100;
    }

    .menu-viaja {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        padding: 10px;

        background: #ffffff;

        border: 1px solid #e2e9ee;
        border-radius: 16px;

        box-shadow: 0 18px 45px rgba(5, 36, 61, .14);

        z-index: 99;
    }

    .menu-viaja.activo {
        display: flex;
    }

    .menu-viaja a {
        width: 100%;
        padding: 13px 14px;

        color: #08243d;

        font-size: .82rem;
        font-weight: 800;

        border-radius: 10px;
    }

    .menu-viaja a:hover {
        background: #f1f7fb;
    }

    .menu-viaja a.activo::after {
        display: none;
    }

    .menu-viaja a.activo {
        color: #147df5;
        background: #edf6ff;
    }

}