 /* =====================================================
   RUTA INTELIGENTE
   ESTILO EDITORIAL / BITÁCORA DE VIAJE
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4efe6;
    color: #20201e;
}

img {
    width: 100%;
    display: block;
}

button,
a {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
}


/* =====================================================
   COLORES
===================================================== */

:root {
    --crema: #f4efe6;
    --blanco: #fffdf8;
    --carbon: #20201e;
    --terracota: #d7653b;
    --arena: #d8c5a5;
    --azul: #8cb9c7;
    --gris: #6f6d67;
    --linea: #d8d1c5;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    height: 82px;
    padding: 0 4vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(244, 239, 230, 0.96);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--linea);
}

.logo {
    text-decoration: none;

    display: flex;
    flex-direction: column;

    line-height: 0.95;
}

.logo span {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    font-weight: 800;

    color: var(--terracota);
}

.logo strong {
    margin-top: 5px;

    font-size: 1rem;
    letter-spacing: 0.08em;
}

.menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.menu a {
    text-decoration: none;

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;

    position: relative;
}

.menu a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--terracota);

    transition: 0.25s ease;
}

.menu a:hover::after {
    width: 100%;
}

.menu-movil {
    display: none;

    border: 0;
    background: transparent;

    font-size: 1.8rem;
    color: var(--carbon);
}


/* =====================================================
   PORTADA
===================================================== */

.portada {
    min-height: calc(100vh - 82px);

    display: grid;
    grid-template-columns: 1fr 1fr;

    border-bottom: 1px solid var(--linea);
}

.portada-texto {
    padding: 8vw 6vw;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: var(--crema);
}

.numero-edicion {
    margin-bottom: 34px;

    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.16em;

    color: var(--gris);
}

.numero-edicion span {
    color: var(--terracota);
}

.portada h1 {
    max-width: 760px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(3.5rem, 6.6vw, 7.8rem);
    line-height: 0.86;
    letter-spacing: -0.06em;

    font-weight: 500;
}

.portada h1 em {
    color: var(--terracota);
    font-weight: 500;
}

.portada h1 > span {
    display: block;

    margin-top: 24px;

    font-size: 0.52em;
    line-height: 0.98;
    letter-spacing: -0.04em;

    max-width: 620px;
}

.portada p {
    margin-top: 34px;

    max-width: 500px;

    font-size: 0.92rem;
    line-height: 1.8;

    color: var(--gris);
}

.enlace-portada {
    margin-top: 42px;

    width: fit-content;

    text-decoration: none;

    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.11em;

    border-bottom: 2px solid var(--carbon);

    padding-bottom: 7px;

    transition: 0.2s ease;
}

.enlace-portada:hover {
    color: var(--terracota);
    border-color: var(--terracota);
}


/* =====================================================
   IMAGEN PORTADA
===================================================== */

.portada-imagen {
    position: relative;
    overflow: hidden;

    min-height: 650px;

    background: var(--arena);
}

.portada-imagen img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    position: absolute;
    inset: 0;
}

.sello-destino {
    position: absolute;
    left: 30px;
    bottom: 30px;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background: var(--terracota);
    color: var(--blanco);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    transform: rotate(-7deg);
}

.sello-destino small {
    font-size: 0.47rem;
    letter-spacing: 0.12em;
}

.sello-destino strong {
    margin-top: 7px;

    font-size: 1.3rem;
    letter-spacing: 0.04em;
}

.sello-destino span {
    margin-top: 4px;

    font-size: 0.58rem;
    letter-spacing: 0.18em;
}

.contador-portada {
    position: absolute;

    top: 28px;
    right: 30px;

    padding: 8px 11px;

    background: rgba(255, 253, 248, 0.9);

    font-size: 0.68rem;
    font-weight: 900;
}


/* =====================================================
   FRANJA
===================================================== */

.franja {
    min-height: 64px;

    padding: 16px 4vw;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;

    flex-wrap: wrap;

    background: var(--carbon);
    color: var(--blanco);
}

.franja span {
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.franja b {
    color: var(--terracota);
}


/* =====================================================
   SECCIONES
===================================================== */

.seccion {
    padding: 120px 6vw;

    border-bottom: 1px solid var(--linea);
}

.numero-seccion {
    margin-bottom: 24px;

    color: var(--terracota);

    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.titulo-seccion {
    max-width: 900px;
}

.titulo-seccion > span,
.subtitulo {
    display: block;

    margin-bottom: 18px;

    color: var(--gris);

    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.titulo-seccion h2,
.rutas-contenido h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(2.8rem, 5vw, 5.8rem);
    line-height: 0.96;
    letter-spacing: -0.05em;

    font-weight: 500;
}

.titulo-seccion h2 em,
.rutas-contenido h2 em {
    color: var(--terracota);
    font-weight: 500;
}


/* =====================================================
   MÉTODO
===================================================== */

.metodo {
    background: var(--blanco);
}

.metodo-intro {
    margin-top: 50px;

    max-width: 760px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.metodo-intro p {
    color: var(--gris);

    font-size: 0.9rem;
    line-height: 1.8;
}

.metodo-lista {
    margin-top: 70px;

    border-top: 1px solid var(--carbon);
}

.metodo-lista article {
    padding: 26px 0;

    display: grid;
    grid-template-columns: 80px 1fr;

    border-bottom: 1px solid var(--linea);
}

.metodo-lista article > span {
    color: var(--terracota);

    font-size: 0.7rem;
    font-weight: 900;
}

.metodo-lista article div {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
}

.metodo-lista h3 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 1.5rem;
    font-weight: 500;
}

.metodo-lista p {
    max-width: 580px;

    color: var(--gris);

    font-size: 0.84rem;
    line-height: 1.7;
}


/* =====================================================
   CALENDARIO
===================================================== */

.calendario {
    background: #efe6d7;
}

.linea-temporadas {
    margin-top: 75px;

    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;

    align-items: center;
}

.punto-temporada {
    min-width: 150px;

    display: flex;
    flex-direction: column;
    align-items: center;

    border: 0;
    background: transparent;

    color: var(--carbon);
}

.punto {
    width: 26px;
    height: 26px;

    border-radius: 50%;

    border: 2px solid var(--carbon);
    background: var(--crema);

    transition: 0.2s ease;
}

.punto-temporada:hover .punto,
.punto-temporada.activa .punto {
    background: var(--terracota);
    border-color: var(--terracota);

    transform: scale(1.15);
}

.punto-temporada strong {
    margin-top: 15px;

    font-size: 0.75rem;
    letter-spacing: 0.13em;
}

.punto-temporada small {
    margin-top: 6px;

    color: var(--gris);

    font-size: 0.65rem;
}

.linea {
    height: 1px;

    background: var(--carbon);
}

.resultado-temporada {
    margin: 55px auto 0;

    max-width: 760px;

    padding: 30px 0;

    border-top: 1px solid var(--carbon);
    border-bottom: 1px solid var(--carbon);

    color: var(--gris);

    font-size: 0.9rem;
    line-height: 1.8;
}

.resultado-temporada strong {
    display: block;

    margin-bottom: 10px;

    color: var(--carbon);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
}


/* =====================================================
   RUTAS
===================================================== */

.rutas {
    padding: 0;

    display: grid;
    grid-template-columns: 1.2fr 1fr;

    background: var(--carbon);
    color: var(--blanco);
}

.rutas-imagen {
    min-height: 650px;

    position: relative;
    overflow: hidden;
}

.rutas-imagen img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    position: absolute;
    inset: 0;
}

.numero-foto {
    position: absolute;

    top: 25px;
    left: 25px;

    background: var(--terracota);
    color: var(--blanco);

    padding: 10px 12px;

    font-size: 0.68rem;
    font-weight: 900;
}

.rutas-contenido {
    padding: 90px 6vw;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rutas-contenido .subtitulo {
    color: var(--arena);
}

.rutas-contenido h2 {
    color: var(--blanco);
}

.rutas-contenido p {
    margin-top: 30px;

    max-width: 500px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 0.9rem;
    line-height: 1.8;
}

.enlace-accion {
    margin-top: 38px;

    width: fit-content;

    padding: 0 0 8px;

    border: 0;
    border-bottom: 2px solid var(--terracota);

    background: transparent;
    color: var(--blanco);

    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.enlace-accion span {
    margin-left: 10px;

    color: var(--terracota);
}


/* =====================================================
   DESTINOS
===================================================== */

.destinos {
    background: var(--crema);
}

.destinos-cabecera {
    margin-bottom: 70px;
}

.mosaico-destinos {
    display: grid;
    grid-template-columns: repeat(12, 1fr);

    gap: 24px;
}

.destino {
    grid-column: span 4;

    background: var(--blanco);

    border: 1px solid var(--linea);
}

.destino-grande {
    grid-column: span 6;
    grid-row: span 2;
}

.destino-horizontal {
    grid-column: span 6;

    display: grid;
    grid-template-columns: 1fr 1fr;
}

.foto-destino {
    position: relative;

    overflow: hidden;
}

.destino:not(.destino-horizontal) .foto-destino {
    height: 300px;
}

.destino-grande .foto-destino {
    height: 500px;
}

.destino-horizontal .foto-destino {
    min-height: 280px;
}

.foto-destino img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s ease;
}

.destino:hover .foto-destino img {
    transform: scale(1.04);
}

.destino-numero {
    position: absolute;

    top: 16px;
    left: 16px;

    padding: 7px 9px;

    background: var(--blanco);

    font-size: 0.65rem;
    font-weight: 900;
}

.info-destino {
    padding: 24px;
}

.info-destino > span {
    color: var(--terracota);

    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.info-destino h3 {
    margin-top: 9px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 2rem;
    font-weight: 500;
}

.info-destino p {
    margin-top: 9px;

    max-width: 330px;

    color: var(--gris);

    font-size: 0.78rem;
    line-height: 1.6;
}

.info-destino button {
    margin-top: 20px;

    padding: 0 0 5px;

    border: 0;
    border-bottom: 1px solid var(--carbon);

    background: transparent;

    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.info-destino button:hover {
    color: var(--terracota);
    border-color: var(--terracota);
}


/* =====================================================
   NOTAS
===================================================== */
 .notas {
    background: #20201e;
    color: #fffdf8;
}

.notas .numero-seccion {
    color: #d7653b;
}

.notas .titulo-seccion > span {
    color: #d8c5a5;
}

.notas .titulo-seccion h2 {
    color: #fffdf8;
}

.notas .titulo-seccion h2 em {
    color: #d7653b;
}

.notas-grid {
    border-top-color: rgba(255,255,255,.28);
    border-left-color: rgba(255,255,255,.28);
}

.notas-grid article {
    border-right-color: rgba(255,255,255,.28);
    border-bottom-color: rgba(255,255,255,.28);
}

.notas-grid article span {
    color: #d7653b;
}

.notas-grid article h3 {
    color: #fffdf8;
}

.notas-grid {
    margin-top: 60px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--carbon);
    border-left: 1px solid var(--carbon);
}

.notas-grid article {
    min-height: 220px;

    padding: 28px;

    border-right: 1px solid var(--carbon);
    border-bottom: 1px solid var(--carbon);
}

.notas-grid article span {
    font-size: 0.66rem;
    font-weight: 900;

    color: var(--terracota);
}

.notas-grid article h3 {
    margin-top: 38px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 1.35rem;
    line-height: 1.25;

    font-weight: 500;
}


/* =====================================================
   CIERRE
===================================================== */

.cierre {
    min-height: 600px;

    padding: 100px 6vw;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: var(--terracota);
    color: var(--blanco);
}

.cierre > span {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.cierre h2 {
    margin-top: 25px;

    max-width: 900px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(3rem, 6vw, 7rem);
    line-height: 0.9;

    font-weight: 500;
}

.cierre h2 em {
    display: block;

    color: var(--carbon);

    font-weight: 500;
}

.cierre p {
    margin-top: 28px;

    max-width: 560px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.83);

    font-size: 0.86rem;
}

.cierre a {
    margin-top: 36px;

    text-decoration: none;

    padding-bottom: 6px;

    border-bottom: 2px solid var(--blanco);

    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    padding: 35px 4vw;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;

    align-items: end;

    background: var(--carbon);
    color: var(--blanco);
}

.footer > div {
    display: flex;
    flex-direction: column;
}

.footer strong {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.footer span,
.footer p {
    color: rgba(255, 255, 255, 0.55);

    font-size: 0.61rem;
    line-height: 1.5;
}

.footer span {
    margin-top: 5px;
}

.footer p:last-child {
    text-align: right;
}


/* =====================================================
   MODAL
===================================================== */

.modal {
    position: fixed;
    inset: 0;

    z-index: 3000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(32, 32, 30, 0.86);
}

.modal.activo {
    display: flex;
}

.modal-contenido {
    position: relative;

    width: min(650px, 100%);
    max-height: 85vh;

    overflow-y: auto;

    padding: 45px;

    background: var(--blanco);

    border: 1px solid var(--carbon);
}

.cerrar-modal {
    position: absolute;

    top: 15px;
    right: 18px;

    border: 0;
    background: transparent;

    font-size: 1.8rem;
}

.modal-etiqueta {
    display: block;

    margin-bottom: 12px;

    color: var(--terracota);

    font-size: 0.63rem;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.modal-contenido h2 {
    padding-right: 30px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 2.3rem;
    font-weight: 500;
}

.modal-contenido p,
.modal-contenido li {
    color: var(--gris);

    font-size: 0.84rem;
    line-height: 1.75;
}

.modal-contenido p {
    margin-top: 15px;
}

.modal-contenido ul {
    margin-top: 15px;
    padding-left: 20px;
}

.modal-contenido li {
    margin-bottom: 9px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 650px) {

    .menu-movil {
        display: block;
    }

    .header {
        position: sticky;
    }

    .menu {
        position: absolute;

        top: 82px;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 12px 4vw 20px;

        background: var(--crema);

        border-bottom: 1px solid var(--carbon);
    }

    .menu.activo {
        display: flex;
    }

    .menu a {
        padding: 13px 0;

        border-bottom: 1px solid var(--linea);
    }

    .menu a::after {
        display: none;
    }

    .portada {
        grid-template-columns: 1fr;
    }

    .portada-texto {
        min-height: 600px;

        padding: 80px 6vw;
    }

    .portada-imagen {
        min-height: 650px;
    }

    .metodo-lista article div {
        grid-template-columns: 220px 1fr;
    }

    .rutas {
        grid-template-columns: 1fr;
    }

    .rutas-imagen {
        min-height: 500px;
    }

    .destino {
        grid-column: span 6;
    }

    .destino-grande {
        grid-column: span 12;
    }

    .destino-horizontal {
        grid-column: span 12;
    }

    .notas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer {
        grid-template-columns: 1fr;
    }

    .footer p:last-child {
        text-align: left;
    }

}


/* =====================================================
   MÓVIL
===================================================== */

@media (max-width: 600px) {

    .header {
        height: 68px;
    }

    .menu {
        top: 68px;
    }

    .logo strong {
        font-size: 0.9rem;
    }

    .portada {
        min-height: auto;
    }

    .portada-texto {
        min-height: 510px;

        padding: 65px 24px;
    }

    .numero-edicion {
        margin-bottom: 24px;
    }

    .portada h1 {
        font-size: 3.3rem;
        line-height: 0.9;
    }

    .portada h1 > span {
        margin-top: 18px;
    }

    .portada p {
        margin-top: 25px;

        font-size: 0.82rem;
    }

    .enlace-portada {
        margin-top: 30px;
    }

    .portada-imagen {
        min-height: 470px;
    }

    .sello-destino {
        width: 120px;
        height: 120px;

        left: 18px;
        bottom: 18px;
    }

    .sello-destino strong {
        font-size: 1.05rem;
    }

    .contador-portada {
        top: 18px;
        right: 18px;
    }

    .franja {
        gap: 12px;

        padding: 18px;
    }

    .franja span {
        font-size: 0.52rem;
    }

    .seccion {
        padding: 80px 24px;
    }

    .titulo-seccion h2,
    .rutas-contenido h2 {
        font-size: 2.7rem;
    }

    .metodo-intro {
        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 35px;
    }

    .metodo-lista {
        margin-top: 45px;
    }

    .metodo-lista article {
        grid-template-columns: 45px 1fr;
    }

    .metodo-lista article div {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .metodo-lista h3 {
        font-size: 1.25rem;
    }

    .linea-temporadas {
        grid-template-columns: 1fr;
        gap: 0;

        margin-top: 50px;
    }

    .linea {
        width: 1px;
        height: 45px;

        margin: 0 auto;
    }

    .punto-temporada {
        min-width: auto;
    }

    .resultado-temporada {
        margin-top: 40px;
    }

    .rutas-imagen {
        min-height: 380px;
    }

    .rutas-contenido {
        padding: 70px 24px;
    }

    .mosaico-destinos {
        grid-template-columns: 1fr;
    }

    .destino,
    .destino-grande,
    .destino-horizontal {
        grid-column: auto;

        display: block;
    }

    .destino:not(.destino-horizontal) .foto-destino,
    .destino-grande .foto-destino,
    .destino-horizontal .foto-destino {
        height: 300px;
        min-height: 0;
    }

    .info-destino h3 {
        font-size: 1.7rem;
    }

    .notas-grid {
        grid-template-columns: 1fr;
    }

    .notas-grid article {
        min-height: 170px;
    }

    .cierre {
        min-height: 540px;

        padding: 80px 24px;
    }

    .cierre h2 {
        font-size: 3.2rem;
    }

    .footer {
        padding: 30px 24px;
    }

    .modal-contenido {
        padding: 38px 22px 28px;
    }

}
.resultado-temporada p {
    margin-top: 14px;
}

.resultado-temporada p:first-of-type {
    margin-top: 0;
}

.resultado-temporada strong {
    color: var(--carbon);
}

.punto-temporada.activa strong {
    color: var(--terracota);
}
/* =====================================================
   AJUSTE FINAL PARA CELULARES
   RUTA INTELIGENTE
===================================================== */

@media (max-width: 650px) {

    html {
        scroll-padding-top: 70px;
    }

    body {
        overflow-x: hidden;
    }


    /* =========================
       HEADER
    ========================= */

    .header {
        height: 66px;
        padding: 0 20px;
    }

    .logo span {
        font-size: 0.54rem;
        letter-spacing: 0.23em;
    }

    .logo strong {
        font-size: 0.88rem;
        letter-spacing: 0.06em;
    }

    .menu-movil {
        display: block;
        font-size: 1.7rem;
        line-height: 1;
    }

    .menu {
        top: 66px;
        padding: 6px 20px 18px;
    }

    .menu a {
        padding: 15px 0;
        font-size: 0.72rem;
    }


    /* =========================
       PORTADA
    ========================= */

    .portada {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .portada-texto {
        min-height: auto;
        padding: 55px 22px 52px;
    }

    .numero-edicion {
        margin-bottom: 25px;
        font-size: 0.58rem;
        letter-spacing: 0.13em;
    }

    .portada h1 {
        max-width: 100%;
        font-size: clamp(3rem, 14vw, 4rem);
        line-height: 0.88;
        letter-spacing: -0.055em;
    }

    .portada h1 > span {
        margin-top: 22px;
        font-size: 0.48em;
        line-height: 1.05;
    }

    .portada p {
        max-width: 100%;
        margin-top: 26px;
        font-size: 0.82rem;
        line-height: 1.75;
    }

    .enlace-portada {
        margin-top: 30px;
        font-size: 0.66rem;
    }

    .portada-imagen {
        width: 100%;
        min-height: 470px;
    }

    .portada-imagen img {
        object-position: center center;
    }

    .sello-destino {
        width: 112px;
        height: 112px;
        left: 18px;
        bottom: 18px;
    }

    .sello-destino small {
        font-size: 0.4rem;
    }

    .sello-destino strong {
        font-size: 1rem;
    }

    .sello-destino span {
        font-size: 0.48rem;
    }

    .contador-portada {
        top: 16px;
        right: 16px;
        font-size: 0.58rem;
    }


    /* =========================
       FRANJA
    ========================= */

    .franja {
        justify-content: flex-start;
        gap: 8px 12px;
        padding: 17px 20px;
    }

    .franja span {
        font-size: 0.48rem;
        letter-spacing: 0.09em;
    }

    .franja b {
        font-size: 0.55rem;
    }


    /* =========================
       TODAS LAS SECCIONES
    ========================= */

    .seccion {
        padding: 68px 22px;
    }

    .numero-seccion {
        margin-bottom: 17px;
        font-size: 0.62rem;
    }

    .titulo-seccion > span,
    .subtitulo {
        margin-bottom: 14px;
        font-size: 0.56rem;
        letter-spacing: 0.13em;
    }

    .titulo-seccion h2,
    .rutas-contenido h2 {
        font-size: clamp(2.35rem, 11vw, 3.15rem);
        line-height: 0.98;
    }


    /* =========================
       MI MÉTODO
    ========================= */

    .metodo-intro {
        margin-top: 32px;
        display: block;
    }

    .metodo-intro p {
        font-size: 0.82rem;
        line-height: 1.7;
    }

    .metodo-intro p + p {
        margin-top: 16px;
    }

    .metodo-lista {
        margin-top: 40px;
    }

    .metodo-lista article {
        padding: 23px 0;
        grid-template-columns: 38px 1fr;
        gap: 8px;
    }

    .metodo-lista article > span {
        padding-top: 3px;
        font-size: 0.62rem;
    }

    .metodo-lista article div {
        display: block;
    }

    .metodo-lista h3 {
        font-size: 1.25rem;
    }

    .metodo-lista p {
        margin-top: 9px;
        font-size: 0.76rem;
        line-height: 1.65;
    }


    /* =========================
       CALENDARIO
    ========================= */

    .calendario {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .linea-temporadas {
        margin-top: 44px;
        display: grid;
        grid-template-columns: 1fr;
    }

    .punto-temporada {
        width: 100%;
        min-width: 0;
        padding: 3px 0;
    }

    .punto {
        width: 23px;
        height: 23px;
    }

    .punto-temporada strong {
        margin-top: 9px;
        font-size: 0.68rem;
    }

    .punto-temporada small {
        margin-top: 4px;
        font-size: 0.58rem;
    }

    .linea {
        width: 1px;
        height: 35px;
        margin: 4px auto;
    }

    .resultado-temporada {
        margin-top: 35px;
        padding: 23px 0;
        font-size: 0.78rem;
        line-height: 1.7;
    }

    .resultado-temporada strong {
        font-size: 1.35rem;
    }

    .resultado-temporada p {
        margin-top: 13px;
    }


    /* =========================
       RUTAS
    ========================= */

    .rutas {
        display: flex;
        flex-direction: column;
    }

    .rutas-imagen {
        min-height: 390px;
    }

    .rutas-imagen img {
        object-position: center center;
    }

    .numero-foto {
        top: 16px;
        left: 16px;
        padding: 8px 10px;
        font-size: 0.58rem;
    }

    .rutas-contenido {
        padding: 60px 22px;
    }

    .rutas-contenido p {
        margin-top: 22px;
        font-size: 0.8rem;
        line-height: 1.75;
    }

    .enlace-accion {
        margin-top: 28px;
        font-size: 0.64rem;
    }


    /* =========================
       DESTINOS
    ========================= */

    .destinos-cabecera {
        margin-bottom: 42px;
    }

    .mosaico-destinos {
        display: block;
    }

    .destino,
    .destino-grande,
    .destino-horizontal {
        width: 100%;
        display: block;
        margin-bottom: 22px;
    }

    .destino:not(.destino-horizontal) .foto-destino,
    .destino-grande .foto-destino,
    .destino-horizontal .foto-destino {
        width: 100%;
        height: 310px;
        min-height: 0;
    }

    .foto-destino img {
        object-position: center;
    }

    .destino-numero {
        top: 13px;
        left: 13px;
        padding: 6px 8px;
        font-size: 0.58rem;
    }

    .info-destino {
        padding: 20px;
    }

    .info-destino > span {
        font-size: 0.56rem;
    }

    .info-destino h3 {
        margin-top: 7px;
        font-size: 1.75rem;
    }

    .info-destino p {
        margin-top: 7px;
        font-size: 0.75rem;
        line-height: 1.6;
    }

    .info-destino button {
        margin-top: 17px;
        font-size: 0.61rem;
    }


    /* =========================
       NOTAS
    ========================= */

    .notas-grid {
        margin-top: 40px;
        display: block;
        border-left: 1px solid var(--carbon);
    }

    .notas-grid article {
        min-height: auto;
        padding: 22px;
    }

    .notas-grid article span {
        font-size: 0.57rem;
    }

    .notas-grid article h3 {
        margin-top: 20px;
        font-size: 1.2rem;
        line-height: 1.25;
    }


    /* =========================
       CIERRE
    ========================= */

    .cierre {
        min-height: 520px;
        padding: 70px 22px;
    }

    .cierre > span {
        font-size: 0.54rem;
    }

    .cierre h2 {
        margin-top: 20px;
        font-size: clamp(3rem, 14vw, 4.2rem);
        line-height: 0.9;
    }

    .cierre p {
        margin-top: 23px;
        font-size: 0.78rem;
        line-height: 1.7;
    }

    .cierre a {
        margin-top: 28px;
        font-size: 0.6rem;
    }


    /* =========================
       FOOTER
    ========================= */

    .footer {
        display: block;
        padding: 30px 22px;
    }

    .footer > div {
        margin-bottom: 22px;
    }

    .footer strong {
        font-size: 0.72rem;
    }

    .footer span,
    .footer p {
        font-size: 0.57rem;
    }

    .footer p {
        margin-top: 10px;
    }


    /* =========================
       MODALES
    ========================= */

    .modal {
        padding: 12px;
        align-items: flex-end;
    }

    .modal-contenido {
        width: 100%;
        max-height: 88vh;
        padding: 38px 20px 25px;

        border-radius: 18px 18px 0 0;
        border: 0;
    }

    .cerrar-modal {
        top: 12px;
        right: 16px;
        font-size: 1.7rem;
    }

    .modal-etiqueta {
        font-size: 0.55rem;
    }

    .modal-contenido h2 {
        margin-top: 7px;
        font-size: 1.8rem;
    }

    .modal-contenido p,
    .modal-contenido li {
        font-size: 0.77rem;
        line-height: 1.65;
    }

}


/* =====================================================
   CELULARES PEQUEÑOS
   iPhone SE / Android compactos
===================================================== */

@media (max-width: 390px) {

    .header {
        padding: 0 17px;
    }

    .portada-texto {
        padding-left: 19px;
        padding-right: 19px;
    }

    .portada h1 {
        font-size: 2.85rem;
    }

    .portada h1 > span {
        font-size: 0.5em;
    }

    .portada-imagen {
        min-height: 420px;
    }

    .seccion {
        padding-left: 19px;
        padding-right: 19px;
    }

    .titulo-seccion h2,
    .rutas-contenido h2 {
        font-size: 2.3rem;
    }

    .rutas-contenido {
        padding-left: 19px;
        padding-right: 19px;
    }

    .destino:not(.destino-horizontal) .foto-destino,
    .destino-grande .foto-destino,
    .destino-horizontal .foto-destino {
        height: 270px;
    }

    .cierre h2 {
        font-size: 2.9rem;
    }

}
/* =====================================================
   PULIDO FINAL PORTADA MÓVIL
===================================================== */

@media (max-width: 650px) {

    .portada-texto {
        padding: 38px 22px 38px;
    }

    .numero-edicion {
        margin-bottom: 20px;
    }

    .portada h1 {
        font-size: clamp(2.8rem, 12.5vw, 3.55rem);
        line-height: .88;
    }

    .portada h1 > span {
        margin-top: 18px;
        font-size: .46em;
        line-height: 1.05;
    }

    .portada p {
        margin-top: 22px;
        font-size: .8rem;
        line-height: 1.65;
    }

    .enlace-portada {
        margin-top: 25px;
    }

    .portada-imagen {
        min-height: 430px;
        height: 430px;
    }

    .portada-imagen img {
        object-fit: cover;
        object-position: center center;
    }

    .sello-destino {
        width: 100px;
        height: 100px;
        left: 16px;
        bottom: 16px;
    }

    .contador-portada {
        top: 15px;
        right: 15px;
    }

}
/* =====================================================
   CALENDARIO MÓVIL - COMPACTO
===================================================== */

@media (max-width: 650px) {

    .calendario {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .linea-temporadas {
        margin-top: 42px;

        display: grid;
        grid-template-columns: auto 1fr auto 1fr auto;

        align-items: start;
        gap: 0;
    }

    .punto-temporada {
        width: 82px;
        min-width: 0;
        padding: 0;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .punto {
        width: 22px;
        height: 22px;
    }

    .punto-temporada strong {
        margin-top: 10px;
        font-size: .62rem;
        letter-spacing: .09em;
    }

    .punto-temporada small {
        margin-top: 4px;

        font-size: .52rem;
        line-height: 1.3;

        text-align: center;
        white-space: nowrap;
    }

    .linea {
        width: 100%;
        height: 1px;

        margin: 11px 0 0;

        background: var(--carbon);
    }

    .resultado-temporada {
        margin-top: 38px;
        padding: 22px 0;

        font-size: .78rem;
        line-height: 1.65;
    }

}
@media (max-width: 650px) {

    .rutas-imagen {
        min-height: 330px;
        height: 330px;
    }

    .rutas-imagen img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 45%;
    }

    .rutas-contenido {
        padding-top: 55px;
        padding-bottom: 58px;
    }

}
@media (max-width: 650px) {

    /* DESTINOS - AJUSTE FINAL MÓVIL */

    #destinos {
        scroll-margin-top: 66px;
        padding-top: 58px;
    }

    .destinos-cabecera {
        margin-bottom: 34px;
    }

    .destinos-cabecera .numero-seccion {
        display: block;
        margin-bottom: 16px;
    }

    .destinos .titulo-seccion > span {
        display: block;
        margin-bottom: 13px;
    }

    .destinos .titulo-seccion h2 {
        font-size: 2.65rem;
        line-height: .95;
    }

    .mosaico-destinos {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .destino,
    .destino-grande,
    .destino-horizontal {
        margin: 0;
    }

    .destino:not(.destino-horizontal) .foto-destino,
    .destino-grande .foto-destino,
    .destino-horizontal .foto-destino {
        height: 265px;
    }

    .info-destino {
        padding: 18px 20px 21px;
    }

    .info-destino h3 {
        font-size: 1.65rem;
    }

    .info-destino p {
        font-size: .74rem;
        line-height: 1.55;
    }

    .info-destino button {
        margin-top: 15px;
        padding-bottom: 5px;
    }

}