/* =====================================================
   VT COFFEE
   Estilos generales
===================================================== */

:root {

    /* COLORES */

    --paper: #f6f1e7;
    --green: #4e6547;
    --ochre: #c18b44;


    /* TIPOGRAFÍAS */

    --font-main: "houschka-pro", sans-serif;
    --font-hand: "playpen-sans", sans-serif;


    /* MEDIDAS */

    --ticker-height: 39px;

}



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

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    margin: 0;
    padding: 0;
}


body {
    margin: 0;
    padding: 0;

    background: var(--paper);

    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: 1.5;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}



/* =====================================================
   TIPOGRAFÍA
===================================================== */

h1,
h2,
h3,
h4 {
    margin-top: 0;

    font-family: var(--font-main);
    font-weight: 500;
    line-height: 1.1;
}


h1 {
    font-size: 48px;
}


h2 {
    font-size: 40px;
}


h3 {
    font-size: 30px;
}


h4 {
    font-size: 22px;
}


.small {
    font-size: 14px;
}


.hand {
    font-family: var(--font-hand);
    font-weight: 400;
    font-style: normal;
}


.italic {
    font-style: italic;
}


/* =====================================================
   TICKER SUPERIOR
===================================================== */

.vt-ticker {
    position: relative;
    z-index: 20;

    width: 100%;
    height: var(--ticker-height);

    overflow: hidden;

    background: #4e6547;
    color: #ffffff;

    display: flex;
    align-items: center;
}


.vt-ticker-text {
    position: absolute;

    left: 0;

    white-space: nowrap;

    font-family: var(--font-hand);
    font-size: 17px;
    font-weight: 500;
    line-height: 1;

    animation: vtTickerScroll 18s linear infinite;

    will-change: transform;
}


@keyframes vtTickerScroll {

    from {
        transform: translateX(100vw);
    }

    to {
        transform: translateX(-100%);
    }

}


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

.hero {
    position: relative;

    width: 100%;

    /*
       En monitor grande llega aproximadamente
       a los 987 px de la maqueta.

       En notebooks más bajos se adapta.
    */

    height: clamp(
        600px,
        calc(88svh - var(--ticker-height)),
        860px
    );

    overflow: hidden;

    background: #111;
}



/* =====================================================
   IMÁGENES HERO
===================================================== */

.hero-images {
    position: absolute;
    inset: 0;
}


.hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;
    object-position: center center;
}



/* FOTO 1 */

.hero-image-1 {
    opacity: 1;
}


/* FOTO 2 */

.hero-image-2 {
    opacity: 0;
}

.hero-image-3 {
    opacity: 0;
}


/*
   El fade solamente empieza
   cuando JavaScript agrega .hero--start.

   Son 3 imágenes, 5 segundos por imagen:
   ciclo total = 15 segundos.
*/

.hero.hero--start .hero-image-1,
.hero.hero--start .hero-image-2,
.hero.hero--start .hero-image-3 {
    animation: heroFade 9s linear infinite;
}

/*
   Los delays negativos ubican cada imagen
   en una fase distinta del mismo ciclo.

   Orden visual: 1 -> 2 -> 3 -> 1...
*/

.hero.hero--start .hero-image-1 {
    animation-delay: 0s;
}

.hero.hero--start .hero-image-2 {
    animation-delay: -6s;
}

.hero.hero--start .hero-image-3 {
    animation-delay: -3s;
}


/*
   Cada foto permanece visible unos 4 segundos
   y durante el último segundo cruza suavemente
   con la siguiente. Así nunca queda el fondo negro.
*/

@keyframes heroFade {

    0%,
    26.666% {
        opacity: 1;
    }

    33.333%,
    93.333% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

/* =====================================================
   LOGO
===================================================== */

.hero-logo {
    position: absolute;

    top: 18px;
    left: clamp(20px, 3vw, 45px);

    z-index: 10;

    width: 120px;
}


.hero-logo img {
    width: 100%;
    height: auto;
}

/* =====================================================
   NAVEGACIÓN HERO
===================================================== */

.hero-nav {
    position: absolute;

    top: 18px;
    right: 3%;

    z-index: 30;
}


.nav-menu {
    display: flex;
    align-items: center;

    gap: 12px;
}


.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 118px;

    padding: 9px 22px;

    border-radius: 30px;

    background: #ce6b34;
    color: #ffffff;

    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}


.nav-link--reservas {
    background: #b5523e;
}


.nav-link:hover {
    transform: translateY(-2px);
}


.nav-toggle {
    display: none;
}

@media (max-width: 768px) {

    .hero-nav {
        top: 18px;
        right: 6%;
    }


    /* HAMBURGUESA */

    .nav-toggle {
        display: flex;

        width: 44px;
        height: 44px;

        padding: 0;

        border: 0;
        border-radius: 50%;

        background: #4e6547;

        align-items: center;
        justify-content: center;
        flex-direction: column;

        gap: 5px;

        cursor: pointer;

        position: relative;
        z-index: 32;
    }


    .nav-toggle span {
        display: block;

        width: 20px;
        height: 2px;

        background: #ffffff;

        border-radius: 2px;

        transition:
            transform 0.25s ease,
            opacity 0.25s ease;
    }


    /* MENÚ CERRADO */

    .nav-menu {
        position: absolute;

        top: 54px;
        right: 0;

        width: 150px;

        display: flex;
        flex-direction: column;

        gap: 8px;

        opacity: 0;
        visibility: hidden;

        transform: translateY(-8px);

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }


    /* MENÚ ABIERTO */

    .hero-nav.is-open .nav-menu {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }


    .nav-link {
        width: 100%;
        min-width: 0;

        padding: 10px 18px;

        font-size: 14px;
    }


    /* HAMBURGUESA → X */

    .hero-nav.is-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }


    .hero-nav.is-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }


    .hero-nav.is-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

}


/* =====================================================
   ACCESIBILIDAD
   Reduce animaciones si el usuario lo solicita
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .vt-ticker-text,
    .hero-image {
        animation: none !important;
    }

    .vt-ticker-text {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-image-2 {
        display: none;
    }
    
    .hero-image-3 {
        display: none;
    }

}


/* =====================================================
   MAIN - TEST
===================================================== */

main {
    min-height: 800px;
}

/* =====================================================
   FOOTER - TEST
===================================================== */

.site-footer {
    width: 100%;
    

    background: var(--green);
}

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

.hero-text {
    position: absolute;
    z-index: 10;

    top: 54%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: min(820px, 82vw);

    text-align: center;

    color: #ffffff;
}


.hero-text p {
    margin: 0;

    font-family: var(--font-main);
    font-size: clamp(26px, 2.1vw, 34px);
    font-weight: 500;
    line-height: 1.32;

    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.38);
}


.hero-cta {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 34px;

    padding: 13px 30px;

    border-radius: 999px;

    background: #ce6b34;
    color: #ffffff;

    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 500;
    line-height: 1;

    text-decoration: none;

    overflow: visible;
}

.hero-cta::before,
.hero-cta::after {
    content: "";

    position: absolute;

    width: 46px;
    height: 46px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    pointer-events: none;

    opacity: 0;
    visibility: hidden;
}


/* HOJA - arriba izquierda */

.hero-cta::before {
    background-image: url("../graficas/icono-hoja.svg");

    top: -22px;
    left: -20px;
}


/* CORAZÓN - abajo derecha */

.hero-cta::after {
    background-image: url("../graficas/icono-corazon.svg");

    right: -20px;
    bottom: -22px;
}

@media (hover: hover) and (pointer: fine) {

    .hero-cta:hover::before,
    .hero-cta:hover::after,
    .hero-cta:focus-visible::before,
    .hero-cta:focus-visible::after {
        opacity: 1;
        visibility: visible;
    }

}


@media (min-width: 769px) {

    .hero-cta {
        padding: 16px 38px;

        font-size: 20px;
        font-weight: 500;
    }


    .hero-cta::before {
        width: 42px;
        height: 88px;

        top: -42px;
        left: -18px;
    }


    .hero-cta::after {
        width: 68px;
        height: 78px;

        right: -32px;
        bottom: -36px;
    }

}


/* =====================================================
   HERO - MOBILE
===================================================== */

@media (max-width: 768px) {

    .hero {
        height: calc(100svh - var(--ticker-height));
        min-height: 520px;
        max-height: 760px;
    }


    .hero-image {
        object-fit: cover;
        object-position: center center;
    }
    
    .hero-text {
        top: 56%;
        left: 50%;
        bottom: auto;

        transform: translate(-50%, -50%);

        width: 86%;
        max-width: 520px;

        text-align: center;
    }


    .hero-text p {
        font-size: 23px;
        font-weight: 500;
        line-height: 1.32;
    }
    
    .hero-cta {
        margin-top: 30px;

        padding: 13px 27px;

        font-size: 16px;
    }


    .hero-cta::before,
    .hero-cta::after {
        opacity: 1;
        visibility: visible;

        width: 42px;
        height: 42px;
    }
    

}

@media (max-width: 768px) {

    .vt-ticker-text {
        font-size: 16px;
    }

}

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

main {
    position: relative;

    background: var(--paper);
}



/* =====================================================
   BITÁCORA - INTRO
===================================================== */

.journal-intro {
    position: relative;

    width: min(1240px, 90%);

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.7fr 0.8fr;
    align-items: center;

    gap: 70px;

    padding-bottom: 120px;
}



/* =====================================================
   HOJA / GRÁFICA
===================================================== */

.journal-visual {
    position: relative;
    z-index: 10;

    /*
       Hace que la hoja invada suavemente el hero
    */
    margin-top: -55px;
}


.journal-card {
    position: relative;

    width: 100%;

    transform: rotate(-4.5deg);
    transform-origin: center center;
}


.journal-image {
    display: block;

    width: 100%;
    height: auto;
}



/* =====================================================
   MINI TEXTO SOBRE LA HOJA
===================================================== */

.journal-note {
    position: absolute;
    top: 49px;
    left: 120px;
    right: 78px;
    width: auto;

    display: flex;
    flex-direction: column;
    gap: 8px;

    z-index: 2;
}

.journal-note span {
    display: block;
    font-family: "playpen-sans", sans-serif;
    font-weight: 600;
    line-height: 1.22;
}

.journal-note span:first-child {
    font-size: clamp(20px, 2vw, 28px);
}

.journal-note span:last-child {
    font-size: clamp(17px, 1.5vw, 23px);
}


/* =====================================================
   STICKER ME GUSTA
===================================================== */

.journal-like {
    position: absolute;

    right: -2%;
    bottom: 2%;

    width: clamp(60px, 6.5vw, 66px);
    height: auto;

    z-index: 4;

    transform: rotate(8deg);
}



/* =====================================================
   TEXTO EDITORIAL
===================================================== */

.journal-editorial {
    max-width: 360px;

    padding-top: 30px;
}


.journal-kicker {
    margin: 0 0 22px;

    font-family: var(--font-main);
    font-size: 29px;
    font-weight: 400;
    line-height: 1.3;

    color: var(--green);
}


.journal-copy {
    margin: 0;

    font-family: var(--font-main);
    font-size: clamp(18px, 1.4vw, 22px);
    font-weight: 300;
    line-height: 1.55;

    color: var(--mineral);
}

.journal-signature {
    margin: 30px 0 0;

    font-family: var(--font-hand);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;

    color: var(--green);
}


/* =====================================================
   BITÁCORA - MOBILE
===================================================== */

@media (max-width: 768px) {

    .journal-intro {
        width: 86%;

        grid-template-columns: 1fr;

        gap: 45px;

        padding-bottom: 80px;
    }


    .journal-visual {
        margin-top: -45px;
    }


    .journal-card {
        transform: rotate(-3.5deg);
    }


    /* TEXTO SOBRE EL PAPEL */

    .journal-note {
        top: 8%;
        left: 13%;
        right: 12%;

        width: auto;

        gap: 4px;
    }


    .journal-note span {
        line-height: 1.12;
    }


    .journal-note span:first-child {
        font-size: 17px;
    }


    .journal-note span:last-child {
        font-size: 12px;
        line-height: 1.18;
    }


    .journal-like {
        right: -3%;
        bottom: 4%;

        width: 52px;
    }


    .journal-editorial {
        max-width: none;

        padding-top: 0;
    }


    .journal-kicker {
        font-size: 16px;
    }


    .journal-copy {
        font-size: 18px;
        line-height: 1.5;
    }

}


/* =====================================================
   EXPERIENCIA - FOTO FULL WIDTH
===================================================== */

.experience-photo {
    position: relative;

    width: 100%;

    height: clamp(
        620px,
        56.25vw,
        880px
    );

    overflow: hidden;

    background: #111;
}


.experience-photo-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}



/* =====================================================
   TITULAR
===================================================== */

.experience-title {
    position: absolute;
    z-index: 2;

    top: 9%;
    left: 7%;

    margin: 0;

    font-family: var(--font-main);
    font-size: clamp(46px, 5vw, 76px);
    font-weight: 500;
    line-height: 0.98;

    color: #ffffff;

    /* sombra negra, más tipo editorial / magazine */
    text-shadow:
        0 2px 3px rgba(0, 0, 0, 0.65),
        0 5px 14px rgba(0, 0, 0, 0.28);
}


/* =====================================================
   TEXTO EXPERIENCIA
===================================================== */

.experience-copy {
    position: absolute;
    z-index: 2;

    left: 50%;
    bottom: 10%;

    transform: translateX(-50%);

    width: min(760px, 82%);

    margin: 0;

    text-align: center;

    font-family: var(--font-main);

    /* un poco más grande en desktop */
    font-size: clamp(23px, 2vw, 31px);

    font-weight: 300;
    line-height: 1.42;

    color: #ffffff;

    /* misma lógica editorial */
    text-shadow:
        0 2px 3px rgba(0, 0, 0, 0.72),
        0 5px 14px rgba(0, 0, 0, 0.30);
}


@media (max-width: 768px) {

    .experience-photo {
        height: 720px;
    }


    .experience-photo-image {
        object-position: center center;
    }


    .experience-title {
        top: 8%;
        left: 7%;

        font-size: 44px;
        line-height: 1;
    }


    .experience-copy {
        bottom: 8%;

        width: 84%;

        font-size: 19px;
        line-height: 1.4;
    }

}

/* =====================================================
   QUÉ ENCUENTRAS EN VT COFFEE
===================================================== */

.home-offerings {
    position: relative;

    background: #f6f1e7;

    padding: 130px 6% 150px;
}


.offerings-grid {
    width: min(1180px, 100%);

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    column-gap: 90px;
    row-gap: 110px;
}



/* =====================================================
   BLOQUES
===================================================== */

.offering {
    position: relative;

    min-width: 0;
}


.offering-text {
    position: relative;

    z-index: 2;

    max-width: 470px;
}


.offering h2 {
    margin: 0 0 18px;

    font-family: var(--font-secondary);
    font-size: clamp(29px, 2.4vw, 38px);
    font-weight: 500;
    line-height: 1.15;

    color: var(--green);
}


.offering p {
    margin: 0;

    font-family: var(--font-main);
    font-size: clamp(18px, 1.35vw, 21px);
    font-weight: 300;
    line-height: 1.55;

    color: var(--mineral);
}



/* =====================================================
   FOTOS
===================================================== */

.offering-photo {
    display: block;

    width: 100%;
    height: auto;

    margin-top: 35px;
}



/* =====================================================
   BLOQUES CON ICONOS
===================================================== */

.offering--walk {
    padding-top: 75px;
    padding-left: 8%;
}


.offering--local {
    padding-top: 30px;
    padding-left: 12%;
}


.offering-icon {
    display: block;

    width: auto;
    height: auto;

    margin-bottom: 30px;
}


.offering-icon--silvestre {
    width: clamp(105px, 10vw, 145px);

    transform: rotate(7deg);
}


.offering-icon--star {
    width: clamp(95px, 9vw, 130px);

    transform: rotate(-8deg);
}



/* =====================================================
   PEQUEÑAS DIFERENCIAS PARA ROMPER LA RIGIDEZ
===================================================== */

.offering--cafe .offering-photo {
    width: 92%;
}


.offering--stay {
    padding-top: 15px;
}


.offering--stay .offering-photo {
    width: 94%;

    margin-left: auto;
}

/* =====================================================
   OFFERINGS - MOBILE
===================================================== */

@media (max-width: 768px) {

    .home-offerings {
        padding: 85px 7% 100px;
    }


    .offerings-grid {
        grid-template-columns: 1fr;

        row-gap: 85px;
    }


    .offering-text {
        max-width: none;
    }


    .offering h2 {
        font-size: 30px;

        margin-bottom: 15px;
    }


    .offering p {
        font-size: 18px;
        line-height: 1.5;
    }


    .offering-photo {
        margin-top: 28px;
    }


    .offering--cafe .offering-photo,
    .offering--stay .offering-photo {
        width: 100%;
    }


    .offering--walk,
    .offering--local,
    .offering--stay {
        padding-top: 0;
        padding-left: 0;
    }


    .offering-icon {
        margin-bottom: 22px;
    }


    .offering-icon--silvestre {
        width: 105px;
    }


    .offering-icon--star {
        width: 90px;
    }

}

/* =====================================================
   VT COFFEE / PARTE DEL PAISAJE
===================================================== */

.place-values {
    position: relative;

    background: #e9dfc9;

    padding: 140px 6% 160px;

    overflow: hidden;
}


.place-values-inner {
    width: min(1240px, 100%);

    margin: 0 auto;
}



/* =====================================================
   INTRO
===================================================== */

.place-values-intro {
    max-width: 820px;

    margin-bottom: 120px;
}


.place-values-intro h2 {
    margin: 0 0 34px;

    font-family: var(--font-main);
    font-size: clamp(42px, 4.5vw, 68px);
    font-weight: 500;
    line-height: 1.05;

    color: var(--green);
}


.place-values-intro p {
    margin: 0;

    max-width: 760px;

    font-family: var(--font-main);
    font-size: clamp(19px, 1.5vw, 23px);
    font-weight: 300;
    line-height: 1.6;

    color: var(--mineral);
}



/* =====================================================
   HISTORIAS GRANDES
===================================================== */

.values-story {
    display: grid;

    align-items: center;

    column-gap: 85px;
}


.values-story-image img {
    display: block;

    width: 100%;
    height: auto;
}


.values-story-text h3 {
    margin: 0 0 24px;

    font-family: var(--font-secondary);
    font-size: clamp(30px, 2.8vw, 42px);
    font-weight: 500;
    line-height: 1.15;

    color: var(--green);
}


.values-story-text p {
    margin: 0 0 20px;

    font-family: var(--font-main);
    font-size: clamp(18px, 1.35vw, 21px);
    font-weight: 300;
    line-height: 1.6;

    color: var(--mineral);
}


.values-story-text p:last-child {
    margin-bottom: 0;
}



/* =====================================================
   ENTORNO
===================================================== */

.values-story--environment {
    grid-template-columns: 1.65fr 0.85fr;

    margin-bottom: 150px;
}


.values-story--environment .values-story-image {
    width: 100%;
}



/* =====================================================
   CONSTRUCCIÓN
===================================================== */

.values-story--building {
    grid-template-columns: 0.85fr 1.15fr;

    margin-bottom: 150px;
}


.values-story--building .values-story-text {
    padding-left: 7%;
}


.values-story--building .values-story-image {
    width: 94%;

    margin-left: auto;
}



/* =====================================================
   ENERGÍA + RESIDUOS
===================================================== */

.values-small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;

    padding-top: 20px;
}


.values-small {
    position: relative;

    min-height: 390px;

    padding: 70px 20px 60px;
}


.values-small-text {
    position: relative;
    z-index: 2;

    max-width: 470px;
}


.values-small h3 {
    margin: 0 0 24px;

    font-family: var(--font-secondary);
    font-size: clamp(29px, 2.5vw, 38px);
    font-weight: 500;
    line-height: 1.15;

    color: var(--green);
}


.values-small p {
    margin: 0 0 18px;

    font-family: var(--font-main);
    font-size: clamp(18px, 1.3vw, 21px);
    font-weight: 300;
    line-height: 1.6;

    color: var(--mineral);
}


.values-small p:last-child {
    margin-bottom: 0;
}



/* =====================================================
   HOJITAS DECORATIVAS
===================================================== */

.values-leaf {
    position: absolute;

    z-index: 1;

    width: auto;
    height: auto;

    pointer-events: none;
}


.values-leaf--one {
    top: 0;
    left: -35px;

    height: 155px;

    transform: rotate(-8deg);
}


.values-leaf--two {
    right: -15px;
    bottom: -10px;

    height: 175px;

    transform: rotate(7deg);
}

/* =====================================================
   PLACE VALUES - MOBILE
===================================================== */

@media (max-width: 768px) {

    .place-values {
        padding: 95px 7% 110px;
    }


    .place-values-intro {
        margin-bottom: 80px;
    }


    .place-values-intro h2 {
        font-size: 40px;

        margin-bottom: 26px;
    }


    .place-values-intro p {
        font-size: 18px;
        line-height: 1.55;
    }



    /* HISTORIAS */

    .values-story {
        grid-template-columns: 1fr;

        row-gap: 38px;
    }


    .values-story--environment {
        margin-bottom: 100px;
    }


    .values-story--building {
        margin-bottom: 100px;
    }


    .values-story--building .values-story-text {
        padding-left: 0;
    }


    .values-story--building .values-story-image {
        width: 100%;

        margin-left: 0;
    }


    .values-story-text h3 {
        font-size: 30px;
    }


    .values-story-text p {
        font-size: 18px;
        line-height: 1.55;
    }



    /*
       En construcción queremos mantener:
       texto primero / foto después
    */

    .values-story--building .values-story-text {
        order: 1;
    }

    .values-story--building .values-story-image {
        order: 2;
    }



    /* ENERGÍA + RESIDUOS */

    .values-small-grid {
        grid-template-columns: 1fr;

        gap: 75px;

        padding-top: 10px;
    }


    .values-small {
        min-height: 0;

        padding: 55px 0;
    }


    .values-small h3 {
        font-size: 29px;
    }


    .values-small p {
        font-size: 18px;
        line-height: 1.55;
    }


    .values-leaf--one {
        top: 0;
        left: -25px;

        height: 120px;
    }


    .values-leaf--two {
        right: -15px;
        bottom: 0;

        height: 135px;
    }

}

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

.site-footer {
    background: #4e6547;
    color: #ffffff;

    min-height: 280px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 55px 7%;

    text-align: center;
}


.footer-logo {
    display: block;

    width: 115px;
    height: auto;

    margin-bottom: 28px;
}


.footer-location {
    margin: 0;

    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.65;

    color: #ffffff;
}

@media (max-width: 768px) {

    .site-footer {
        min-height: 260px;
        padding: 45px 7%;
    }

    .footer-logo {
        width: 100px;
        margin-bottom: 24px;
    }

    .footer-location {
        font-size: 15px;
    }

}


/* =====================================================
   ENTORNO / TRES LUGARES
===================================================== */

.entorno-highlights {

    --entorno-linea: #a45f49;
    --entorno-texto: #5f5b54;

    background: #f6f1e7;

    padding:
        clamp(70px, 8vw, 120px)
        clamp(28px, 6vw, 90px)
        35px;

}


.entorno-grid {

    width: min(1180px, 100%);
    margin: 0 auto;

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

    gap: clamp(38px, 4vw, 70px);

}


/* =====================================================
   CADA BLOQUE
===================================================== */

.entorno-item {

    position: relative;

    /* más espacio para que el post-it grande cuelgue */
    padding-bottom: 180px;

}


.entorno-photo-wrap {

    position: relative;

}


/* =====================================================
   LÍNEA EDITORIAL
===================================================== */

.entorno-photo-wrap::before {

    content: "";

    position: absolute;

    top: 0;
    left: -12px;

    width: 2px;
    height: 24%;

    background: var(--entorno-linea);

}


/* =====================================================
   FOTOGRAFÍA
===================================================== */

.entorno-photo {

    display: block;

    width: 100%;
    aspect-ratio: 3 / 2;

    object-fit: cover;

    box-shadow:
        0 3px 7px rgba(53, 48, 40, 0.13);

}


/* =====================================================
   POST-IT
===================================================== */

.entorno-note {

    position: absolute;

    /* antes 78%, ahora más protagonista */
    width: 84%;

    z-index: 2;

}


.entorno-note-paper {

    display: block;

    width: 100%;
    height: auto;

    filter:
        drop-shadow(
            0 3px 4px rgba(55, 48, 38, 0.16)
        );

}


/* =====================================================
   TEXTO DEL POST-IT
===================================================== */

.entorno-note-text {

    position: absolute;

    /*
    Bajamos un poco el arranque del texto
    y aumentamos márgenes laterales.
    */

    top: 15%;
    left: 15%;
    right: 15%;
    bottom: 16%;

    font-family: "playpen-sans", sans-serif;

    color: var(--entorno-texto);

}


.entorno-note-text h3 {

    margin: 0 0 12px;

    font-family: "playpen-sans", sans-serif;

    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 700;

    line-height: 1.08;

}


.entorno-note-text p {

    margin: 0;

    font-family: "playpen-sans", sans-serif;

    /* un poco más grande que antes */
    font-size: clamp(13.5px, 1.02vw, 15px);
    font-weight: 400;

    line-height: 1.42;

}


/* =====================================================
   POSICIONES CASUALES
===================================================== */

.entorno-item--salto .entorno-note {

    left: 3%;
    top: calc(100% - 28px);

    transform: rotate(-3deg);

}


.entorno-item--laguna .entorno-note {

    right: 1%;
    top: calc(100% - 18px);

    transform: rotate(2deg);

}


.entorno-item--lanin .entorno-note {

    left: 7%;
    top: calc(100% - 34px);

    transform: rotate(-1deg);

}


/* =====================================================
   PEQUEÑAS VARIACIONES DE SOMBRA
===================================================== */

.entorno-item--salto .entorno-note-paper {

    filter:
        drop-shadow(
            0 3px 4px rgba(55, 48, 38, 0.15)
        );

}


.entorno-item--laguna .entorno-note-paper {

    filter:
        drop-shadow(
            0 4px 5px rgba(55, 48, 38, 0.16)
        );

}


.entorno-item--lanin .entorno-note-paper {

    filter:
        drop-shadow(
            0 2px 4px rgba(55, 48, 38, 0.15)
        );

}


/* =====================================================
   MÓVIL
===================================================== */

@media (max-width: 768px) {

    .entorno-highlights {

        padding:
            70px
            34px
            30px;

    }


    .entorno-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .entorno-item {

        padding-bottom: 235px;

    }


    .entorno-photo-wrap::before {

        left: -10px;

        height: 22%;

    }


    .entorno-note {

        width: 84%;

    }


    .entorno-note-text {

        top: 15%;
        left: 15%;
        right: 15%;
        bottom: 16%;

    }


    .entorno-note-text h3 {

        font-size: 19px;
        margin-bottom: 11px;

    }


    .entorno-note-text p {

        font-size: 13.5px;
        line-height: 1.42;

    }


    .entorno-item--salto .entorno-note {

        left: 3%;
        top: calc(100% - 26px);

        transform: rotate(-3deg);

    }


    .entorno-item--laguna .entorno-note {

        right: 1%;
        top: calc(100% - 17px);

        transform: rotate(2deg);

    }


    .entorno-item--lanin .entorno-note {

        left: 7%;
        top: calc(100% - 30px);

        transform: rotate(-1deg);

    }

}

.footer-whatsapp {
    margin: 18px 0 0;

    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;

    color: #ffffff;
}

.footer-whatsapp a {
    text-decoration: none;
}

.footer-whatsapp a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {

    .footer-whatsapp {
        font-size: 15px;
    }

}

/* =====================================================
   HERO INTERIOR - CAJA DE TEXTO
===================================================== */

.hero--interior .hero-text {
    width: min(760px, 82vw);

    padding: 22px 32px;

    background: rgba(0, 0, 0, 0.38);
}

.hero--interior .hero-text p {
    text-shadow: none;
}

@media (max-width: 768px) {

    .hero--interior .hero-text {
        width: 86%;

        padding: 18px 22px;
    }

}
