/* ==================================================
   VARIABLES
================================================== */

:root {

    --azul: #082f53;

    --azul-oscuro: #061f38;

    --dorado: #d79b3c;

    --dorado-claro: #efb654;

    --arena: #f4eee6;

    --texto: #17334d;

    --gris: #66717a;

}



/* ==================================================
   RESET
================================================== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    width: 100%;

    overflow-x: hidden;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: var(--arena);

    color: var(--texto);

    -webkit-text-size-adjust: 100%;

}


a {

    color: inherit;

    text-decoration: none;

}


img {

    max-width: 100%;

}



/* ==================================================
   HERO
================================================== */

.hero {

    position: relative;

    width: 100%;

    min-height: 500px;

    background-image:
        url("../img/humahuaca/portada.jpg");

    background-size: cover;

    background-position: center;

    color: white;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5,31,54,0.16) 0%,
            rgba(5,31,54,0.03) 43%,
            rgba(5,31,54,0.80) 100%
        );

}


.hero-contenido {

    position: relative;

    z-index: 2;

    width: 100%;

    min-height: 500px;

    padding:
        22px 18px 44px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: space-between;

    text-align: center;

}



/* ==================================================
   BACK
================================================== */

.volver {

    position: absolute;

    z-index: 10;

    top: 18px;

    left: 14px;

    padding:
        8px 13px;

    border:
        1px solid
        rgba(239,182,84,0.78);

    border-radius: 24px;

    background:
        rgba(5,31,54,0.50);

    color: white;

    font-size: 11px;

    font-weight: 700;

    backdrop-filter:
        blur(6px);

    -webkit-backdrop-filter:
        blur(6px);

}



/* ==================================================
   BRAND
================================================== */

.marca {

    font-size: 30px;

    font-weight: 700;

    letter-spacing: -1px;

}


.marca span {

    color: var(--dorado-claro);

}



/* ==================================================
   HERO TEXT
================================================== */

.hero-texto {

    width: 100%;

    max-width: 620px;

}


.tipo {

    display: block;

    color: var(--dorado-claro);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2.5px;

}


.hero h1 {

    margin-top: 8px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 58px;

    line-height: 0.95;

    font-weight: 500;

}


.hero h1 span {

    display: block;

    color: var(--dorado-claro);

}


.separador {

    width: 55px;

    height: 2px;

    margin: 15px auto 0;

    background: var(--dorado-claro);

}


.hero-texto p {

    max-width: 500px;

    margin:
        13px auto 0;

    color:
        rgba(255,255,255,0.94);

    font-size: 14px;

    line-height: 1.5;

}



/* ==================================================
   QUICK INFO
================================================== */

.datos {

    position: relative;

    z-index: 5;

    width:
        min(760px, calc(100% - 28px));

    margin:
        -29px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    overflow: hidden;

    border-radius: 18px;

    background:
        rgba(255,253,249,0.98);

    box-shadow:
        0 10px 26px
        rgba(5,31,54,0.12);

}


.dato {

    min-width: 0;

    min-height: 92px;

    padding:
        12px 5px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-right:
        1px solid #e8ddcf;

    text-align: center;

}


.dato:last-child {

    border-right: none;

}


.dato-icono {

    color: #b98642;

    font-size: 19px;

}


.dato span:not(.dato-icono) {

    margin-top: 4px;

    color: #83776b;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.9px;

    text-transform: uppercase;

}


.dato strong {

    margin-top: 4px;

    color: var(--azul);

    font-size: 13px;

}



/* ==================================================
   MAIN BACKGROUND
================================================== */

.contenido {

    position: relative;

    width: 100%;

    padding:
        52px 0 25px;

    background:
        radial-gradient(
            circle at 0% 25%,
            rgba(214,157,70,0.10),
            transparent 23%
        ),
        radial-gradient(
            circle at 100% 65%,
            rgba(17,68,101,0.07),
            transparent 27%
        ),
        linear-gradient(
            180deg,
            #f7f1e9 0%,
            #efe5d9 55%,
            #f7f2eb 100%
        );

}



/* ==================================================
   SECTIONS
================================================== */

.seccion {

    width:
        min(900px, calc(100% - 28px));

    margin:
        0 auto;

}


.titulo-seccion {

    text-align: center;

}


.titulo-seccion > span {

    color: #bb7b2c;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

}


.titulo-seccion h2 {

    margin-top: 6px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: var(--azul);

    font-size: 34px;

    line-height: 1.08;

    font-weight: 500;

}


.titulo-seccion p {

    max-width: 580px;

    margin:
        10px auto 0;

    color: var(--gris);

    font-size: 13px;

    line-height: 1.55;

}



/* ==================================================
   EXPERIENCE
================================================== */

.experiencia {

    padding-bottom: 34px;

}


.carrusel {

    width: 100%;

    margin-top: 22px;

    display: flex;

    gap: 10px;

    overflow-x: auto;

    scroll-snap-type:
        x mandatory;

    scroll-behavior: smooth;

    scrollbar-width: none;

    -webkit-overflow-scrolling:
        touch;

}


.carrusel::-webkit-scrollbar {

    display: none;

}


.slide {

    flex:
        0 0 78%;

    height: 300px;

    overflow: hidden;

    border-radius: 18px;

    scroll-snap-align: center;

    box-shadow:
        0 9px 24px
        rgba(8,47,83,0.08);

}


.slide img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

}


.puntos {

    margin-top: 12px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 7px;

}


.punto {

    width: 8px;

    height: 8px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #c8beb2;

}


.punto.activo {

    width: 27px;

    border-radius: 8px;

    background: var(--dorado);

}


.ayuda {

    margin-top: 7px;

    color: #817a71;

    font-size: 10px;

    text-align: center;

}



/* ==================================================
   INCLUDED
================================================== */

.incluye {

    padding:
        29px 0 36px;

}


.incluye-grid {

    width: 100%;

    margin-top: 20px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

}


.incluye-item {

    min-width: 0;

    padding:
        16px 10px;

    border:
        1px solid
        rgba(184,125,52,0.15);

    border-radius: 16px;

    background:
        rgba(255,253,249,0.80);

    text-align: center;

    box-shadow:
        0 7px 18px
        rgba(8,47,83,0.04);

}


.incluye-icono {

    margin-bottom: 7px;

    font-size: 28px;

    line-height: 1;

}


.incluye-item strong {

    display: block;

    color: var(--azul);

    font-size: 14px;

}


.incluye-item p {

    margin-top: 4px;

    color: var(--gris);

    font-size: 9px;

    line-height: 1.35;

}



/* ==================================================
   ROUTE
================================================== */

.recorrido {

    padding:
        34px 0 30px;

}


.recorrido-lista {

    width: 100%;

    margin-top: 21px;

    display: flex;

    flex-direction: column;

    gap: 9px;

}


.parada {

    width: 100%;

    min-height: 128px;

    padding:
        8px 12px 8px 9px;

    display: grid;

    grid-template-columns:
        38px 142px minmax(0, 1fr);

    align-items: center;

    gap: 10px;

    border:
        1px solid
        rgba(184,125,52,0.15);

    border-radius: 16px;

    background:
        rgba(255,253,249,0.84);

    box-shadow:
        0 6px 16px
        rgba(8,47,83,0.045);

}


.numero {

    width: 33px;

    height: 33px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--azul);

    color: white;

    font-size: 13px;

    font-weight: 700;

}


.parada-imagen {

    width: 100%;

    height: 108px;

    overflow: hidden;

    border-radius: 12px;

}


.parada-imagen img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

}


.parada-texto {

    min-width: 0;

}


.parada-texto h3 {

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: var(--azul);

    font-size: 21px;

    line-height: 1.05;

    font-weight: 500;

}


.parada-texto span {

    display: block;

    margin-top: 3px;

    color: #c38632;

    font-size: 10px;

    font-weight: 700;

}


.parada-texto p {

    margin-top: 5px;

    color: #59666f;

    font-size: 11px;

    line-height: 1.4;

}



/* ==================================================
   HORNOCAL
================================================== */

.hornocal {

    margin-top: 14px;

    padding:
        26px 20px 21px;

    border:
        1px solid
        rgba(184,125,52,0.16);

    border-radius: 22px;

    background:
        rgba(255,253,249,0.76);

    box-shadow:
        0 8px 22px
        rgba(8,47,83,0.05);

}


.hornocal-galeria {

    width: 100%;

    margin-top: 19px;

}


.hornocal-principal {

    width: 100%;

    height: 300px;

    overflow: hidden;

    border-radius: 16px;

}


.hornocal-principal img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

}


.hornocal-secundarias {

    width: 100%;

    margin-top: 7px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 7px;

}


.hornocal-secundarias img {

    width: 100%;

    height: 135px;

    display: block;

    object-fit: cover;

    border-radius: 13px;

}



/* ==================================================
   ENGLISH GUIDE
================================================== */

.guia-ingles {

    width:
        min(850px, calc(100% - 28px));

    margin:
        20px auto 11px;

    padding: 20px;

    display: grid;

    grid-template-columns:
        54px 1fr;

    align-items: center;

    gap: 15px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #79512c,
            #b17839
        );

    color: white;

    box-shadow:
        0 10px 26px
        rgba(87,55,25,0.12);

}


.guia-icono {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.12);

}


.guia-icono svg {

    width: 27px;

    height: 27px;

    fill: none;

    stroke: #ffe0a4;

    stroke-width: 1.7;

}


.guia-texto > span {

    color: #ffe0a4;

    font-size: 7px;

    letter-spacing: 1.8px;

    font-weight: 700;

}


.guia-texto h2 {

    margin-top: 4px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;

    font-weight: 500;

}


.guia-texto p {

    margin-top: 5px;

    color:
        rgba(255,255,255,0.87);

    font-size: 10px;

    line-height: 1.45;

}


.guia-texto small {

    display: block;

    margin-top: 5px;

    color: #ffe0a4;

    font-size: 8px;

}



/* ==================================================
   TRIP TYPE
================================================== */

.modalidad {

    width:
        min(800px, calc(100% - 28px));

    margin:
        0 auto 8px;

    padding: 17px;

    display: grid;

    grid-template-columns:
        46px 1fr;

    gap: 12px;

    align-items: center;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #082d50,
            #0b3c66
        );

    color: white;

}


.modalidad-icono {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border:
        1px solid
        rgba(239,181,75,0.65);

    color: #efb54b;

    font-size: 15px;

}


.modalidad-texto > span {

    color: #efb54b;

    font-size: 7px;

    letter-spacing: 1.6px;

}


.modalidad h2 {

    margin-top: 3px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;

    font-weight: 500;

}


.modalidad p {

    margin-top: 3px;

    color:
        rgba(255,255,255,0.74);

    font-size: 9px;

}



/* ==================================================
   RESERVATION
================================================== */

.reserva {

    padding:
        49px 20px;

    background:
        linear-gradient(
            145deg,
            #082d50,
            #0a385f
        );

    color: white;

    text-align: center;

}


.reserva > span {

    color: #efb54b;

    font-size: 8px;

    letter-spacing: 2px;

}


.reserva h2 {

    margin-top: 7px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 34px;

    font-weight: 500;

}


.reserva p {

    max-width: 450px;

    margin:
        9px auto 0;

    color:
        rgba(255,255,255,0.75);

    font-size: 11px;

    line-height: 1.5;

}


.boton-whatsapp {

    width:
        min(340px, 100%);

    min-height: 51px;

    margin:
        19px auto 0;

    padding:
        10px 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border-radius: 27px;

    background: #25bf61;

    color: white;

    font-size: 11px;

    font-weight: 700;

}


.whatsapp-icono {

    width: 24px;

    height: 24px;

}


.whatsapp-icono svg {

    width: 100%;

    height: 100%;

    fill: white;

}


.whatsapp-icono .telefono {

    fill: #25bf61;

}



/* ==================================================
   FOOTER
================================================== */

footer {

    width: 100%;

    padding:
        27px 20px;

    background:
        linear-gradient(
            135deg,
            #061f38,
            #08345b
        );

    color: white;

    text-align: center;

}


footer strong {

    font-size: 21px;

}


footer strong span {

    color: var(--dorado-claro);

}


footer p {

    margin-top: 6px;

    color:
        rgba(255,255,255,0.68);

    font-size: 9px;

}



/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {


    /* HERO */

    .hero {

        min-height: 430px;

    }


    .hero-contenido {

        min-height: 430px;

        padding:
            calc(
                14px +
                env(safe-area-inset-top)
            )
            13px
            26px;

    }


    .volver {

        top:
            calc(
                9px +
                env(safe-area-inset-top)
            );

        left: 9px;

        padding:
            6px 10px;

        font-size: 9px;

    }


    .marca {

        font-size: 24px;

    }


    .tipo {

        font-size: 7px;

        letter-spacing: 1.8px;

    }


    .hero h1 {

        font-size: 42px;

        line-height: 0.96;

    }


    .hero-texto p {

        max-width: 320px;

        margin-top: 11px;

        font-size: 11px;

        line-height: 1.45;

    }



    /* QUICK INFO */

    .datos {

        width:
            calc(100% - 22px);

        margin-top: -21px;

        border-radius: 14px;

    }


    .dato {

        min-height: 74px;

        padding:
            8px 2px;

    }


    .dato-icono {

        font-size: 16px;

    }


    .dato span:not(.dato-icono) {

        margin-top: 3px;

        font-size: 7px;

    }


    .dato strong {

        margin-top: 3px;

        font-size: 10px;

    }



    /* CONTENT */

    .contenido {

        padding-top: 42px;

    }


    .seccion {

        width:
            calc(100% - 20px);

    }



    /* TITLES */

    .titulo-seccion > span {

        font-size: 7px;

        letter-spacing: 1.6px;

    }


    .titulo-seccion h2 {

        margin-top: 5px;

        font-size: 27px;

    }


    .titulo-seccion p {

        max-width: 330px;

        margin-top: 7px;

        font-size: 10px;

        line-height: 1.45;

    }



    /* EXPERIENCE */

    .experiencia {

        padding-bottom: 24px;

    }


    .carrusel {

        margin-top: 16px;

        gap: 7px;

    }


    .slide {

        flex:
            0 0 82%;

        height: 205px;

        border-radius: 14px;

    }


    .puntos {

        margin-top: 9px;

    }


    .punto {

        width: 7px;

        height: 7px;

    }


    .punto.activo {

        width: 24px;

    }


    .ayuda {

        font-size: 8px;

    }



    /* INCLUDED */

    .incluye {

        padding:
            25px 0 27px;

    }


    .incluye-grid {

        margin-top: 15px;

        gap: 6px;

    }


    .incluye-item {

        min-height: 100px;

        padding:
            10px 5px;

        border-radius: 13px;

    }


    .incluye-icono {

        margin-bottom: 4px;

        font-size: 22px;

    }


    .incluye-item strong {

        font-size: 10px;

    }


    .incluye-item p {

        margin-top: 3px;

        font-size: 7.5px;

        line-height: 1.3;

    }



    /* ROUTE */

    .recorrido {

        padding:
            26px 0 22px;

    }


    .recorrido-lista {

        margin-top: 16px;

        gap: 7px;

    }


    .parada {

        min-height: 106px;

        padding: 7px;

        grid-template-columns:
            29px 105px minmax(0, 1fr);

        gap: 7px;

        border-radius: 13px;

    }


    .numero {

        width: 28px;

        height: 28px;

        font-size: 10px;

    }


    .parada-imagen {

        height: 92px;

        border-radius: 10px;

    }


    .parada-texto h3 {

        font-size: 16px;

        line-height: 1.05;

    }


    .parada-texto span {

        margin-top: 2px;

        font-size: 8px;

    }


    .parada-texto p {

        margin-top: 3px;

        font-size: 8px;

        line-height: 1.3;

    }



    /* HORNOCAL */

    .hornocal {

        width:
            calc(100% - 20px);

        margin-top: 10px;

        padding:
            16px 12px 13px;

        border-radius: 16px;

    }


    .hornocal .titulo-seccion h2 {

        font-size: 25px;

    }


    .hornocal .titulo-seccion p {

        max-width: 310px;

        font-size: 9px;

    }


    .hornocal-galeria {

        margin-top: 13px;

    }


    .hornocal-principal {

        height: 185px;

        border-radius: 12px;

    }


    .hornocal-secundarias {

        margin-top: 5px;

        gap: 5px;

    }


    .hornocal-secundarias img {

        height: 80px;

        border-radius: 9px;

    }



    /* ENGLISH GUIDE */

    .guia-ingles {

        width:
            calc(100% - 20px);

        margin:
            15px auto 9px;

        padding: 13px;

        grid-template-columns:
            42px 1fr;

        gap: 10px;

        border-radius: 15px;

    }


    .guia-icono {

        width: 40px;

        height: 40px;

    }


    .guia-icono svg {

        width: 22px;

        height: 22px;

    }


    .guia-texto > span {

        font-size: 6px;

    }


    .guia-texto h2 {

        margin-top: 3px;

        font-size: 18px;

    }


    .guia-texto p {

        margin-top: 4px;

        font-size: 8.5px;

        line-height: 1.35;

    }


    .guia-texto small {

        margin-top: 4px;

        font-size: 7px;

    }



    /* TRIP TYPE */

    .modalidad {

        width:
            calc(100% - 20px);

        margin:
            0 auto 5px;

        padding: 12px;

        grid-template-columns:
            37px 1fr;

        gap: 8px;

        border-radius: 14px;

    }


    .modalidad-icono {

        width: 35px;

        height: 35px;

        font-size: 12px;

    }


    .modalidad-texto > span {

        font-size: 6px;

    }


    .modalidad h2 {

        font-size: 17px;

    }


    .modalidad p {

        font-size: 7.5px;

    }



    /* RESERVATION */

    .reserva {

        padding:
            41px 15px;

    }


    .reserva > span {

        font-size: 7px;

    }


    .reserva h2 {

        font-size: 28px;

    }


    .reserva p {

        max-width: 315px;

        font-size: 9px;

    }


    .boton-whatsapp {

        width: 100%;

        max-width: 320px;

        min-height: 49px;

        font-size: 10px;

    }


    .whatsapp-icono {

        width: 22px;

        height: 22px;

    }

}



/* ==================================================
   VERY SMALL PHONES
================================================== */

@media (max-width: 370px) {


    .parada {

        grid-template-columns:
            26px 92px minmax(0, 1fr);

        gap: 6px;

    }


    .numero {

        width: 25px;

        height: 25px;

        font-size: 9px;

    }


    .parada-imagen {

        height: 84px;

    }


    .parada-texto h3 {

        font-size: 14px;

    }


    .parada-texto p {

        font-size: 7.5px;

    }

}