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

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#0b0b0b;

    color:#f7f1e8;

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

    overflow-x:hidden;
}

img{

    width:100%;

    display:block;
}

a{

    text-decoration:none;

    color:inherit;
}

/* ======================================================
GLOBAL
====================================================== */

.carta-page{

    width:100%;
}

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

.hero{

    position:relative;

    min-height:82vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background-image:
        linear-gradient(
            to top,
            rgba(0,0,0,.78),
            rgba(0,0,0,.34)
        ),
        url("../../assets/img/CARTA/fortaleza-gastronomica-medieval-fuego-vino.webp");

    background-size:cover;

    background-repeat:no-repeat;

    background-position:72% center;
}

.hero::after{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(
            circle at bottom right,
            rgba(255,120,20,.14),
            transparent 42%
        );
}

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

.hero-content{

    position:relative;

    z-index:2;

    width:100%;

    max-width:1100px;

    margin:0 auto;

    padding:
        5rem
        1.5rem
        4rem;
}

.hero-subtitle{

    display:inline-block;

    margin-bottom:1.4rem;

    padding:
        .42rem
        .8rem;

    border:
        1px solid rgba(255,255,255,.10);

    background:
        rgba(255,255,255,.03);

    font-size:.68rem;

    letter-spacing:.22em;

    text-transform:uppercase;

    color:
        rgba(255,255,255,.72);

    transition:
        all .3s ease;
}

.hero-subtitle:hover{

    border-color:
        rgba(214,161,93,.34);

    color:
        #d6a15d;
}

.hero-content h1{

    font-size:
        clamp(4rem,14vw,6.2rem);

    line-height:.9;

    letter-spacing:-.07em;

    font-weight:400;

    color:#f7f1e8;

    text-shadow:
        0 10px 30px rgba(0,0,0,.32);
}

.hero-highlight{

    margin-top:1rem;

    font-size:
        clamp(2rem,7vw,3rem);

    line-height:.94;

    letter-spacing:-.05em;

    color:#d2ad7c;
}

.hero-content p{

    margin-top:1.5rem;

    max-width:500px;

    font-size:1rem;

    line-height:1.75;

    color:
        rgba(255,255,255,.82);
}

/* ======================================================
BUTTONS
====================================================== */

.buttons{

    display:flex;

    flex-direction:column;

    gap:.8rem;

    margin-top:2rem;
}

.btn-primary,
.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:.7rem;

    width:100%;

    padding:
        1rem
        1.8rem;

    border-radius:6px;

    text-transform:uppercase;

    letter-spacing:.14em;

    font-size:.76rem;

    font-weight:600;

    transition:
        all .3s ease;
}

.btn-primary{

    background:#8b1028;

    border:
        1px solid #8b1028;

    color:#f7f1e8;
}

.btn-primary:hover{

    background:#6E0F1F;
}

.btn-secondary{

    border:
        1px solid rgba(214,161,93,.14);

    background:
        rgba(255,255,255,.02);

    color:
        rgba(247,241,232,.82);

    backdrop-filter:
        blur(4px);
}

.btn-secondary:hover{

    border:
        1px solid rgba(214,161,93,.28);

    background:
        rgba(255,255,255,.05);
}

.btn-icon{

    display:flex;

    align-items:center;

    justify-content:center;
}

/* ======================================================
ESENCIAS
====================================================== */

.esencias{

    position:relative;

    z-index:5;

    margin-top:-2.5rem;

    padding:
        0
        1rem
        2rem;

    background:transparent;
}

.esencias-card{

    max-width:1200px;

    margin:0 auto;

    padding:
        2.5rem
        1.5rem;

    border-radius:30px;

    border:
        1px solid rgba(214,161,93,.10);

    background:
        linear-gradient(
            135deg,
            #15110d 0%,
            #1b1510 50%,
            #120d09 100%
        );

    box-shadow:
        0 20px 60px rgba(0,0,0,.45);
}

.esencias-grid{

    display:grid;

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

    gap:0;
}

.esencia-item{

    position:relative;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:flex-start;

    text-align:center;

    padding:
        1rem
        1.4rem;
}

.esencia-item:not(:last-child)::after{

    content:"";

    position:absolute;

    top:10%;
    right:0;

    width:1px;

    height:80%;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(214,161,93,.22),
            transparent
        );
}

.esencia-icon{

    width:72px;

    height:72px;

    margin:
        0 auto
        1.3rem;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#d6a15d;
}

.esencia-icon svg{

    width:72px;

    height:72px;

    stroke-width:1.5;

    color:#d6a15d;
}

.esencia-item h3{

    min-height:3.2rem;

    margin-bottom:.8rem;

    font-size:1.6rem;

    font-weight:400;

    line-height:1.05;

    letter-spacing:-.03em;

    color:#f7f1e8;
}

.esencia-item p{

    max-width:220px;

    margin:0 auto;

    font-size:.92rem;

    line-height:1.7;

    color:
        rgba(247,241,232,.70);
}

/* ======================================================
LECHAZO
====================================================== */

.lechazo-monumento{

    padding:
        0
        1rem
        2.6rem;

    background:#0b0b0b;
}

.lechazo-content{

    display:grid;

    grid-template-columns:
        1fr
        1fr;

    align-items:stretch;

    max-width:1200px;

    margin:0 auto;

    overflow:hidden;

    border-radius:34px;

    border:
        1px solid rgba(214,161,93,.08);

    background:
        linear-gradient(
            135deg,
            #1b0d07 0%,
            #24120b 42%,
            #130905 100%
        );

    box-shadow:
        0 18px 50px rgba(0,0,0,.42);
}

.lechazo-text{

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:
        2rem
        1.8rem
        1.9rem;
}

.lechazo-label{

    margin-bottom:.8rem;

    color:#d6a15d;

    font-size:.7rem;

    letter-spacing:.22em;

    text-transform:uppercase;
}

.lechazo-text h2{

    font-size:
        clamp(4.4rem,14vw,7rem);

    line-height:.84;

    letter-spacing:-.085em;

    font-weight:400;
}

.lechazo-divider{

    margin:
        1.2rem
        0;
}

.lechazo-divider span{

    display:block;

    width:72px;

    height:2px;

    background:
        linear-gradient(
            to right,
            #d6a15d,
            transparent
        );
}

.lechazo-description{

    max-width:390px;

    font-size:1rem;

    line-height:1.75;

    color:
        rgba(247,241,232,.82);
}

.lechazo-price{

    margin-top:1.4rem;

    font-size:2rem;

    line-height:1.1;

    color:#f7f1e8;

    letter-spacing:-.04em;
}

.lechazo-price span{

    margin-left:.35rem;

    font-size:1rem;

    color:#d6a15d;
}

.lechazo-visual{

    position:relative;

    min-height:520px;
}

.lechazo-image{

    position:absolute;

    inset:0;

    background-image:
        linear-gradient(
            to left,
            rgba(0,0,0,.04),
            rgba(0,0,0,.14)
        ),
        url("../../assets/img/CARTA/lechazo-horno-lena.webp");

    background-size:cover;

    background-repeat:no-repeat;

    background-position:center;
}

/* ======================================================
COMPARTIR
====================================================== */

.compartir-section{

    padding:
        0
        1rem
        3rem;

    background:#0b0b0b;
}

.compartir-card{

    max-width:1200px;

    margin:0 auto;
}

.compartir-grid{

    display:grid;

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

    gap:1rem;

    margin-top:1.8rem;
}

.compartir-item{

    overflow:hidden;

    border-radius:24px;

    background:
        linear-gradient(
            135deg,
            #1b0d07 0%,
            #24120b 42%,
            #130905 100%
        );

    border:
        1px solid rgba(214,161,93,.08);
}

.compartir-image img{

    height:220px;

    object-fit:cover;
}

.compartir-info{

    padding:
        1.2rem
        1rem
        1.3rem;
}

.compartir-info h3{

    font-size:2rem;

    line-height:.95;

    letter-spacing:-.05em;
}

.compartir-price{

    margin-top:1rem;

    color:#d6a15d;

    font-size:1rem;
}

.bodega-banner{

    position:relative;

    overflow:hidden;

    display:flex;

    align-items:flex-end;

    margin-top:2rem;

    min-height:260px;

    border-radius:30px;

    background:
        linear-gradient(
            to right,
            rgba(0,0,0,.84) 0%,
            rgba(0,0,0,.38) 36%,
            rgba(0,0,0,.06) 100%
        ),
        url("../../assets/img/CARTA/vino-medieval-bodega-romantica.webp");

    background-size:cover;

    background-position:center;
}

.bodega-overlay{

    position:absolute;

    inset:0;
}

.bodega-content{

    position:relative;

    z-index:2;

    width:100%;

    padding:
        2rem
        1.6rem;
}

.bodega-label{

    display:inline-block;

    margin-bottom:.55rem;

    color:#d6a15d;

    font-size:.62rem;

    letter-spacing:.22em;

    text-transform:uppercase;
}

.bodega-content h2{

    max-width:340px;

    font-size:
        clamp(2.4rem,5vw,4rem);

    line-height:.88;

    letter-spacing:-.06em;
}

.bodega-link{

    display:inline-flex;

    align-items:center;

    gap:.45rem;

    margin-top:1rem;

    color:#d6a15d;

    font-size:.72rem;

    letter-spacing:.16em;

    text-transform:uppercase;
}

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

.footer{

    padding:
        5rem
        1rem
        3rem;

    background:
        linear-gradient(
            to bottom,
            #050505 0%,
            #0a0a0a 100%
        );
}

.footer-inner{

    max-width:1200px;

    margin:0 auto;

    padding-top:2rem;

    border-top:
        1px solid rgba(214,161,93,.08);

    text-align:center;
}

.footer p{

    color:
        rgba(255,255,255,.42);

    font-size:.78rem;

    letter-spacing:.04em;
}

/* ======================================================
DESKTOP
====================================================== */

@media(min-width:981px){

    .buttons{

        flex-direction:row;
    }

    .btn-primary,
    .btn-secondary{

        width:auto;

        min-width:240px;
    }

}

/* ======================================================
TABLET
====================================================== */

@media(max-width:980px){

    .compartir-grid{

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

    .lechazo-content{

        grid-template-columns:1fr;
    }

    .lechazo-visual{

        order:-1;

        min-height:300px;
    }

}

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

@media(max-width:768px){

    .hero{

        background-position:72% center;
    }

    .esencias{

        margin-top:-1.2rem;

        padding:0 .8rem 1rem;
    }

    .esencias-card{

        padding:1.4rem 1rem;
        border-radius:24px;
    }

    .esencias-grid{

        gap:.8rem;
    }

    .esencia-item{

        padding:.25rem;
    }

    .esencia-icon{

        width:42px;
        height:42px;
        margin:0 auto .6rem;
    }

    .esencia-icon svg{

        width:42px;
        height:42px;
    }

    .esencia-item h3{

        font-size:1rem;
        line-height:1;
        margin-bottom:.45rem;
    }

    .esencia-item p{

        font-size:.75rem;
        line-height:1.35;
    }

    .hero-content{

        padding:
            4.5rem
            1.4rem
            4rem;
    }

    .hero-content h1{

        font-size:4rem;
    }

    .hero-highlight{

        font-size:2.4rem;
    }

    .hero-content p{

        max-width:320px;
    }

.esencias-grid{

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

    gap:1.5rem;
}

.esencia-item{

    padding:
        .5rem;
}

.esencia-item::after{

    display:none;
}

.esencia-item h3{

    min-height:auto;

    font-size:1.25rem;
}

.esencia-icon{

    width:56px;

    height:56px;

    margin:
        0 auto
        1rem;
}

.esencia-item p{

    font-size:.85rem;

    line-height:1.5;
}

    .lechazo-text{

        padding:
            1.6rem
            1.4rem
            1.7rem;
    }

    .lechazo-text h2{

        font-size:5.2rem;
    }

    .lechazo-visual{

        min-height:260px;
    }

    .compartir-grid{

        display:flex;

        gap:1rem;

        overflow-x:auto;

        padding-bottom:.5rem;

        scroll-snap-type:x mandatory;
    }

    .compartir-item{

        min-width:260px;

        scroll-snap-align:start;
    }

    .bodega-banner{

        min-height:200px;
    }

}

@media(max-width:420px){

    .hero-content h1{

        font-size:3.5rem;
    }

    .hero-highlight{

        font-size:2.1rem;
    }

    .lechazo-text h2{

        font-size:4.3rem;
    }

    .lechazo-price{

        font-size:1.6rem;
    }

    .lechazo-price span{

        font-size:.92rem;
    }

}

/* ======================================================
CTA FINAL
====================================================== */

.cta-final{

    padding:0 1rem 4rem;

    display:flex;

    justify-content:center;
}

.cta-final .btn-primary{

    width:auto;

    min-width:260px;
}


/* COMPACTAR ESENCIAS MOBILE */

@media(max-width:768px){

.esencias{

    margin-top:-1rem;

    padding:0 .7rem .6rem;
}

.esencias-card{

    padding:1rem .8rem;

    border-radius:22px;
}

.esencias-grid{

    gap:.6rem !important;
}

.esencia-item{

    padding:.15rem !important;
}

.esencia-icon{

    width:36px !important;
    height:36px !important;

    margin:0 auto .45rem !important;
}

.esencia-icon svg{

    width:36px !important;
    height:36px !important;
}

.esencia-item h3{

    min-height:auto;

    font-size:.95rem !important;

    line-height:.95;

    margin-bottom:.25rem;
}

.esencia-item p{

    font-size:.72rem !important;

    line-height:1.25;
}

}
