:root {
    --gold: #d3a75a;
    --gold-dim: #a3844c;
    --ink: #0d0b09;
    --ink-2: #17130f;
    --cream: #f5eee3;
    --paper: #fbf7f0;
    --gold: #d9a85e;
    --orange: #df6a20;
    --green: #6f7b35;
    --purple: #4a304c;
    --blue: #315d84;
    --muted: #a99f91;
    --shadow: 0 24px 80px rgba(0, 0, 0, .28);
    --radius: 28px;
    --serif: Georgia, "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    background: var(--ink)
}

body {
    margin: 0;
    font-family: var(--sans);
    background: var(--ink);
    color: var(--cream);
    overflow-x: hidden
}

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

button,
a {
    font: inherit
}

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

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    background: linear-gradient(100deg, #739723 0%, #d98210 25%, #b33e46 46%, #3d79b6 70%, #f18a13 100%);
    transition: .35s ease;
    border-bottom: 1px solid rgba(255, 255, 255, .15)
}

.site-header.scrolled {
    height: 72px;
    background: rgba(12, 10, 8, .82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px)
}

.nav {
    width: min(1400px, 100%);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 22px
}

.nav-right {
    justify-content: flex-end
}

.desktop-links {
    display: flex;
    gap: 26px;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--serif);
    letter-spacing: .32em;
    font-size: 1.55rem;
    color: #ffe1a7;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .25)
}

.logo-mark {
    width: 38px;
    height: 38px;
    border: 1.4px solid currentColor;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    letter-spacing: 0
}

.icon-btn {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.45rem;
    cursor: pointer
}

/* inicio menu */
.menu {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;

    width: min(82vw, 340px);
    height: 100vh;

    padding: 90px 30px 30px;

    background: #3b1c12;

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

    transform: translateX(-100%);
    transition: transform .35s ease;

    z-index: 99998;
}

.mobile-menu.open {
    transform: translateX(0);
}


/* X para cerrar */
.mobile-menu-close {
    position: absolute;

    top: 20px;
    right: 20px;

    width: 42px;
    height: 42px;

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

    border: none;
    background: transparent;

    color: #fff;

    font-size: 36px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    z-index: 100000;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg) scale(1.1);
    opacity: .8;
}


.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}


/* Solo mostrar menú mobile en dispositivos pequeños */
@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
}

/* Fin menu */

.hero {
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding-top: 84px;
    position: relative;
    background: #050403
}

.hero img {
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center
}

.hero-video {
    position: absolute;
    top: 55%;
    left: 50%;

    /* width: min(950px, 90vw); */
    transform: translate(-50%, -50%);

    z-index: 1;

    /* Hace que los negros se mezclen con el fondo */
    mix-blend-mode: lighten;

    /* Desvanece suavemente todos los bordes */
    -webkit-mask-image: radial-gradient(ellipse 70% 75% at center,
            #050403 45%,
            rgba(0, 0, 0, 0.9) 60%,
            rgba(0, 0, 0, 0.5) 78%,
            transparent 100%);

    mask-image: radial-gradient(ellipse 70% 75% at center,
            #050403 45%,
            rgba(0, 0, 0, 0.9) 60%,
            rgba(0, 0, 0, 0.5) 78%,
            transparent 100%);
}

@media (max-width: 700px) {
    .hero-video {
        width: min(950px, 90vw);
    }
}

.video-loop-datil-bolsas {
    width: min(450px, 40vw);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 84px 0 0;
    background: linear-gradient(to bottom, transparent 52%, rgba(7, 5, 4, .2) 72%, #0d0b09 100%);
    pointer-events: none
}

.hero-cta {
    position: absolute;
    z-index: 2;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #f5d59b
}

.hero-cta span {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(245, 213, 155, .55);
    border-radius: 50%;
    display: grid;
    place-items: center
}

.ticker {
    border-block: 1px solid rgba(217, 168, 94, .24);
    background: #100d0a;
    overflow: hidden
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
    padding: 14px 0;
    color: #e7d1a5;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase
}

.ticker-track span {
    padding: 0 30px
}

.ticker-track span::after {
    content: "✦";
    margin-left: 30px;
    color: var(--gold)
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

.section {
    padding: 110px 28px
}

.shell {
    width: min(1320px, 100%);
    margin: auto
}

.eyebrow {
    font-size: .76rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px
}

h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.7rem, 5vw, 5.7rem);
    line-height: .94;
    margin: 0
}

.lede {
    max-width: 680px;
    color: #cfc4b5;
    font-size: 1.04rem;
    line-height: 1.7;
    margin-top: 20px
}

.flavors {
    /* background: radial-gradient(circle at 50% 0, #2a1d12 0, transparent 32%), #0d0b09 */
    background: radial-gradient(circle at 50% 0, #2a1d12 0, transparent 32%), rgb(246,242,238)
}

.flavor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 52px
}

.flavor-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    min-height: 560px;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--shadow);
    isolation: isolate;
    cursor: pointer
}

.flavor-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 6, 5, .88) 0, rgba(8, 6, 5, .06) 55%);
    z-index: 1
}

.flavor-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .7, .2, 1)
}

.flavor-card:hover img {
    transform: scale(1.055)
}

.flavor-copy {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 22px
}

.flavor-copy small {
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #ddd
}

.flavor-copy h3 {
    margin: 6px 0 10px;
    font-family: var(--serif);
    font-weight: 400;
    font-size: 2rem
}

.flavor-copy button {
    border: 0;
    background: transparent;
    color: white;
    padding: 0;
    text-transform: uppercase;
    font-size: .72rem;
    letter-spacing: .16em
}

.orange {
    background: var(--orange)
}

.green {
    background: var(--green)
}

.purple {
    background: var(--purple)
}

.blue {
    background: var(--blue)
}

.editorial {
    background: var(--paper);
    color: #1b160f
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 70px
}

.round-image {
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(77, 48, 20, .25)
}

.round-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 66% 52%;
    transform: scale(1.02)
}

.editorial h2 strong {
    color: var(--green);
    font-weight: 400
}

.editorial .lede {
    color: #5e5549
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--gold);
    padding: 15px 24px;
    border-radius: 999px;
    margin-top: 24px;
    text-transform: uppercase;
    font-size: .76rem;
    letter-spacing: .13em;
    transition: .25s ease
}

.btn:hover {
    background: var(--gold);
    color: #17100a
}

.btn.solid {
    background: var(--gold);
    color: #17100a;
    font-weight: 700
}

.btn.solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(217, 168, 94, .22)
}

.mix-section {
    padding: 0 28px 110px;
    background: var(--paper);
    color: #19130e
}

.mix-card {
    width: min(1320px, 100%);
    margin: auto;
    background: #12100e;
    border-radius: 34px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
    color: white
}

.mix-card img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.mix-copy {
    padding: 64px;
    display: flex;
    justify-content: center;
    flex-direction: column
}

.mix-copy h2 {
    font-size: clamp(3rem, 5.8vw, 6.7rem)
}

.mix-copy p {
    max-width: 520px;
    color: #c9c0b4;
    line-height: 1.7
}

.bundle {
    background: var(--cream);
    color: #1c1712
}

.bundle-head {
    text-align: center;
    max-width: 880px;
    margin: auto
}

.bundle-head h2 {
    font-size: clamp(3rem, 5vw, 5.5rem)
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 46px auto 24px;
    width: min(1000px, 100%)
}

.step {
    background: #fff;
    border: 1px solid #e5d6c5;
    border-radius: 20px;
    padding: 18px;
    display: flex;
    gap: 14px;
    align-items: center
}

.step b {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1b1712;
    color: #fff;
    display: grid;
    place-items: center
}

.step strong {
    display: block
}

.step span {
    font-size: .8rem;
    color: #756a5f
}

.builder {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 22px;
    margin-top: 24px
}

.panel {
    background: #fff;
    border: 1px solid #e8d8c6;
    border-radius: 28px;
    padding: 24px
}

.panel h3 {
    margin: 0 0 18px;
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 400
}

.packs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px
}

.pack {
    border: 1px solid #eadccc;
    border-radius: 18px;
    padding: 18px 10px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    transition: .2s
}

.pack.active {
    border: 2px solid #d65a27;
    background: #fff7f2;
    transform: translateY(-2px)
}

.pack small {
    display: block;
    color: #82776d
}

.pack strong {
    display: block;
    margin: 8px 0;
    font-size: 1.05rem
}

.pack em {
    font-style: normal;
    color: #d65a27;
    font-weight: 700
}

.helper {
    margin: 16px 2px 24px;
    color: #8b775f;
    font-size: .86rem
}

.flavor-select {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px
}

.flavor-select article {
    border: 1px solid #eadccc;
    border-radius: 18px;
    overflow: hidden;
    background: #fff
}

.flavor-select img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover
}

.flavor-select .fs-body {
    padding: 12px
}

.flavor-select h4 {
    margin: 0 0 10px;
    font-size: .78rem;
    min-height: 35px
}

.counter {
    display: grid;
    grid-template-columns: 32px 1fr 32px;
    align-items: center;
    border: 1px solid #e6d6c3;
    border-radius: 999px;
    overflow: hidden
}

.counter button {
    border: 0;
    background: #f7f1e9;
    height: 34px;
    cursor: pointer
}

.counter output {
    text-align: center;
    font-weight: 700
}

.progress {
    height: 8px;
    background: #ede5da;
    border-radius: 99px;
    margin-top: 18px;
    overflow: hidden
}

.progress span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--orange), var(--purple), var(--blue));
    transition: .3s
}

.progress-label {
    font-size: .84rem;
    color: #75685c;
    margin-top: 8px
}

.summary {
    position: sticky;
    top: 92px;
    align-self: start
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #eee3d7;
    font-size: .9rem
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 16px 0
}

.summary button {
    width: 100%;
    border: 0;
    border-radius: 14px;
    padding: 15px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em
}

.cart {
    background: #e65f22;
    color: #fff
}

.wa {
    background: #1f9b53;
    color: white
}

.legal-note {
    font-size: .72rem;
    color: #8b8177;
    text-align: center;
    margin-top: 10px
}

.trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #2a241d;
    margin-top: 24px;
    border-radius: 20px;
    overflow: hidden
}

.trust div {
    background: #17130f;
    color: #efe4d5;
    padding: 20px;
    text-align: center
}

.trust strong {
    display: block;
    font-size: .8rem;
    margin-bottom: 6px
}

.trust span {
    font-size: .74rem;
    color: #a99d90
}

.natural {
    position: relative;
    min-height: 82svh;
    display: grid;
    place-items: end start;
    overflow: hidden
}

.natural img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08)
}

.natural::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 5, 3, .88), rgba(8, 5, 3, .08) 65%), linear-gradient(to top, rgba(8, 5, 3, .72), transparent 60%)
}

.natural-copy {
    position: relative;
    z-index: 2;
    padding: 80px 7vw;
    max-width: 920px
}

.natural-copy h2 {
    font-size: clamp(4rem, 8vw, 8rem);
    font-family: var(--sans);
    font-weight: 850;
    letter-spacing: -.055em
}

.natural-copy p {
    font-size: 1.15rem;
    color: #e6ded3
}

.history {
    background: #0e0c0a
}

.history-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 42px;
    align-items: center
}

.history img {
    border-radius: 28px;
    border: 1px solid rgba(217, 168, 94, .25);
    box-shadow: var(--shadow)
}

.pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 54px
}

.pillar {
    padding: 26px;
    border: 1px solid rgba(217, 168, 94, .22);
    border-radius: 22px;
    background: #15120e
}

.pillar i {
    font-style: normal;
    color: var(--gold);
    font-size: 1.7rem
}

.pillar strong {
    display: block;
    margin: 12px 0 8px
}

.pillar p {
    color: #a99e91;
    line-height: 1.6;
    font-size: .88rem
}

.instagram {
    background: #f4ede3;
    color: #1b1611
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 38px
}

.insta-grid img {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 18px
}

.insta-grid img:nth-child(1) {
    object-position: center
}

.insta-grid img:nth-child(4) {
    object-position: center
}

footer {
    background: #080706;
    padding: 76px 28px 36px;
    border-top: 1px solid rgba(217, 168, 94, .2)
}

.footer-grid {
    width: min(1320px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr 1.2fr;
    gap: 44px
}

.footer-grid h4 {
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold)
}

.footer-grid a,
.footer-grid p {
    display: block;
    color: #aaa095;
    margin: 10px 0;
    font-size: .88rem
}

.newsletter {
    display: flex;
    border-bottom: 1px solid #6f6255;
    padding-bottom: 8px
}

.newsletter input {
    flex: 1;
    background: none;
    border: 0;
    outline: none;
    color: white
}

.newsletter button {
    border: 0;
    background: none;
    color: var(--gold);
    cursor: pointer
}

.footer-bottom {
    width: min(1320px, 100%);
    margin: 44px auto 0;
    padding-top: 22px;
    border-top: 1px solid #211b15;
    color: #776f66;
    font-size: .76rem;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity .75s ease, transform .75s ease
}

.reveal.on {
    opacity: 1;
    transform: none
}

.toast {
    position: fixed;
    z-index: 80;
    right: 20px;
    bottom: 20px;
    background: #fff;
    color: #17120d;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    transform: translateY(140%);
    transition: .3s;
    max-width: 340px
}

.toast.show {
    transform: none
}


/* ========================================
   ESTILOS DE LA SECCIÓN DE TESTIMONIOS (NUEVO)
======================================== */

.testimonials-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 110px 28px;
    text-align: center;
}

.testimonials-header {
    margin-bottom: 50px;
}

.stars-rating {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.rating-number {
    color: var(--gold);
    font-weight: 600;
    margin-left: 5px;
}

.testimonials-header h2 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: 2px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
}

.heart-icon {
    color: var(--gold);
}

.testimonials-header p {
    color: var(--muted);
    font-size: 1.1rem;
}

/* Cuadrícula de tarjetas */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: var(--ink-2);
    border-radius: var(--radius);
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--shadow);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Bordes personalizados por sabor usando variables existentes */
.card-orange {
    border-color: var(--orange);
}

.card-green {
    border-color: var(--green);
}

.card-purple {
    border-color: var(--purple);
}

.card-blue {
    border-color: var(--blue);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.quote-symbol {
    font-size: 2.5rem;
    color: #444;
    line-height: 0.5;
    font-family: var(--serif);
}

.card-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: #dcdcdc;
    line-height: 1.5;
    margin-bottom: 25px;
    min-height: 60px;
}

.card-product-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
}

.verified {
    color: var(--gold);
    font-size: 0.75rem;
}

.product-img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 12px;
}

/* Etiquetas de sabores */
.flavor-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 30px;
    text-align: center;
    letter-spacing: 0.5px;
}

.tag-orange {
    background-color: rgba(223, 106, 32, 0.2);
    color: #f2a65a;
    border: 1px solid rgba(223, 106, 32, 0.4);
}

.tag-green {
    background-color: rgba(111, 123, 53, 0.2);
    color: #a3b15c;
    border: 1px solid rgba(111, 123, 53, 0.4);
}

.tag-purple {
    background-color: rgba(74, 48, 76, 0.3);
    color: #d1a3d3;
    border: 1px solid rgba(74, 48, 76, 0.5);
}

.tag-blue {
    background-color: rgba(49, 93, 132, 0.2);
    color: #8cb8ff;
    border: 1px solid rgba(49, 93, 132, 0.4);
}

/* Pie de Google */
.google-reviews-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.95rem;
    margin-top: 30px;
}

.google-logo {
    font-weight: bold;
    color: #4285F4;
    background: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.g-rating {
    color: #fff;
    font-weight: 600;
}

.g-stars {
    color: var(--gold);
}

.divider {
    color: #444;
    margin: 0 5px;
}

/* Responsive para la sección de testimonios */
@media(max-width: 980px) {
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 12px;
        gap: 16px;
    }

    .testimonial-card {
        min-width: 78vw;
        scroll-snap-align: center;
    }
}

@media(max-width: 560px) {
    .testimonial-card {
        min-width: 86vw;
    }
}


@media(max-width:980px) {
    .desktop-links {
        display: none
    }

    .menu {
        display: grid
    }

    .nav {
        grid-template-columns: 1fr auto 1fr
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: .22em
    }

    .logo-mark {
        width: 33px;
        height: 33px
    }

    .site-header {
        height: 76px;
        padding: 0 14px
    }

    .hero {
        padding-top: 76px
    }

    .hero img {
        height: calc(100svh - 76px);
        object-fit: cover
    }

    .hero::after {
        inset: 76px 0 0
    }

    .section {
        padding: 78px 18px
    }

    .flavor-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 12px
    }

    .flavor-card {
        min-width: 78vw;
        min-height: 560px;
        scroll-snap-align: center
    }

    .editorial-grid,
    .mix-card,
    .history-grid {
        grid-template-columns: 1fr
    }

    .mix-copy {
        padding: 42px 28px
    }

    .mix-card {
        min-height: 0
    }

    .mix-card img {
        max-height: 620px
    }

    .builder {
        grid-template-columns: 1fr
    }

    .summary {
        position: static
    }

    .packs {
        grid-template-columns: repeat(2, 1fr)
    }

    .pack:last-child {
        grid-column: 1/-1
    }

    .flavor-select {
        grid-template-columns: repeat(2, 1fr)
    }

    .trust {
        grid-template-columns: 1fr 1fr
    }

    .pillars {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .insta-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:560px) {
    .nav-right .icon-btn:first-child {
        display: none
    }

    .logo span:last-child {
        font-size: 1rem
    }

    .hero img {
        object-position: center top
    }

    .hero-cta {
        bottom: 18px
    }

    h2 {
        font-size: 3.1rem
    }

    .flavor-card {
        min-width: 86vw;
        min-height: 500px
    }

    .editorial-grid {
        gap: 34px
    }

    .mix-copy h2 {
        font-size: 3.8rem
    }

    .steps {
        grid-template-columns: 1fr
    }

    .packs {
        grid-template-columns: 1fr 1fr
    }

    .flavor-select {
        grid-template-columns: 1fr 1fr
    }

    .panel {
        padding: 16px
    }

    .trust {
        grid-template-columns: 1fr
    }

    .natural {
        min-height: 74svh
    }

    .natural-copy {
        padding: 50px 20px
    }

    .natural-copy h2 {
        font-size: 3.4rem
    }

    .pillars {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .insta-grid {
        gap: 8px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

.insta-mix-feature {
    margin-top: 14px;
    background: #12100e;
    color: #fff;
    border-radius: 22px;
    overflow: hidden;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center
}

.insta-mix-feature img {
    width: 100%;
    height: 300px;
    object-fit: cover
}

.insta-mix-feature>div {
    padding: 26px 30px
}

.insta-mix-feature h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 2rem;
    margin: 4px 0 10px
}

.insta-mix-feature p {
    color: #bcb2a6;
    line-height: 1.6
}

@media(max-width:560px) {
    .insta-mix-feature {
        grid-template-columns: 1fr
    }

    .insta-mix-feature img {
        height: 360px
    }
}

.workshop {
    background: linear-gradient(180deg, #15120e 0%, #211b12 100%);
    color: #f5eee3;
    border-top: 1px solid rgba(217, 168, 94, .18)
}

.workshop-head {
    max-width: 850px;
    margin-bottom: 42px
}

.workshop-head .lede {
    color: #c6baaa
}

.workshop-visual {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(217, 168, 94, .26);
    box-shadow: var(--shadow);
    background: #17130f
}

.workshop-visual img {
    width: 100%;
    object-fit: cover;
    object-position: center
}

.workshop-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 18px
}

.workshop-value {
    border: 1px solid rgba(217, 168, 94, .22);
    border-radius: 18px;
    padding: 20px;
    background: rgba(255, 255, 255, .025)
}

.workshop-value strong {
    display: block;
    color: #e3bd7c;
    margin-bottom: 7px
}

.workshop-value span {
    font-size: .82rem;
    color: #aaa095;
    line-height: 1.5
}

@media(max-width:760px) {
    .workshop-values {
        grid-template-columns: 1fr 1fr
    }

    .workshop-visual img {
        max-height: none
    }
}

@media(max-width:480px) {
    .workshop-values {
        grid-template-columns: 1fr
    }

    .workshop-head {
        margin-bottom: 26px
    }
}

/* CUSTOM DATE CURSOR */
.date-cursor {
    width: 22px;
    height: 32px;
    border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;

    background:
        radial-gradient(circle at 32% 28%,
            #d48344 0 10%,
            #9e4f24 35%,
            #4f2311 75%,
            #220e07 100%);

    position: fixed;
    top: 0;
    left: 0;

    z-index: 99999;
    pointer-events: none;

    transform: translate(-50%, -50%) rotate(-12deg);

    box-shadow:
        inset 3px 0 6px rgba(255, 255, 255, .2),
        0 4px 12px rgba(0, 0, 0, .4);

    display: none;

    transition:
        width .18s ease,
        height .18s ease,
        transform .18s ease,
        border-radius .18s ease;
}


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

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

    html,
    body,
    *,
    a,
    button,
    input,
    textarea,
    select,
    [role="button"] {
        cursor: none !important;
    }

    .date-cursor {
        display: block;
    }

    .date-cursor.is-link {
        width: 32px;
        height: 40px;

        background:
            radial-gradient(ellipse at 50% 50%,
                #d48344 0 12%,
                #9e4f24 30%,
                #4f2311 70%,
                #220e07 100%);

        transform:
            translate(-50%, -50%) rotate(-12deg) scale(1.15);
    }
}

/* WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 80px;
    height: 80px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

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

    font-size: 32px;
    text-decoration: none;

    z-index: 9999;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.30);
}

.whatsapp-float::before {
    content: "";
    position: absolute;

    width: 100%;
    height: 100%;

    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);

    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.35);
        opacity: 0;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 65px;
        height: 65px;

        right: 18px;
        bottom: 18px;

        font-size: 27px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;

        right: 15px;
        bottom: 15px;

        font-size: 25px;
    }
}

/* Instagram flotante */
/* Instagram flotante */
.instagram-float {
    position: fixed;
    right: 25px;
    bottom: 120px;

    width: 80px;
    height: 80px;

    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;

    border-radius: 50%;

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

    font-size: 32px;
    text-decoration: none;

    z-index: 9999;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.instagram-float:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.30);
}

.instagram-float::before {
    content: "";
    position: absolute;

    width: 100%;
    height: 100%;

    border-radius: 50%;
    border: 2px solid rgba(220, 39, 67, 0.5);

    animation: instagram-pulse 2s infinite;
}

@keyframes instagram-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.35);
        opacity: 0;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .instagram-float {
        width: 65px;
        height: 65px;

        right: 18px;
        bottom: 18px;

        font-size: 27px;
    }
}

@media (max-width: 480px) {
    .instagram-float {
        width: 60px;
        height: 60px;

        right: 15px;
        bottom: 100px;

        font-size: 25px;
    }
}

/* ========================================
   WEBM FLOTANTE - ESQUINA INFERIOR IZQUIERDA
======================================== */

.webm-flotante {
    position: fixed;
    left: 20px;
    top: 100px;

    width: clamp(100px, 13vw, 190px);

    z-index: 9990;

    pointer-events: none;
}

.webm-flotante video {
    display: block;
    width: 100%;
    height: auto;
    background: transparent;
    object-fit: contain;
}

.webm-flotante img {
    display: block;
    width: 80%;
    height: auto;
    background: transparent;
    object-fit: contain;
}

@media (max-width: 768px) {
    .webm-flotante {
        left: 12px;
        top: 80px;
        width: 130px;
    }
}

@media (max-width: 480px) {
    .webm-flotante {
        left: 8px;
        top: 80px;
        width: 100px;
    }
}

/* ---------- CTA ---------- */
.cta {
    border: 1px solid var(--gold-dim);
    border-radius: 20px;
    padding: 40px 40px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    background: linear-gradient(180deg, rgba(211, 167, 90, 0.06), transparent 60%);
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cta-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px 12px 12px 4px;
    background: #141210;
    border: 1.5px solid transparent;
    background-image: linear-gradient(#141210, #141210), linear-gradient(135deg, #7fa84a, #d3a75a 40%, #c1638a 70%, #6b7fc1);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon svg {
    width: 24px;
    height: 24px;
}

.cta-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cream);
}

.cta-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(180deg, #e4bd80, var(--gold));
    color: #17130d;
    border: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 18px 34px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 10px 24px -10px rgba(211, 167, 90, 0.6);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -10px rgba(211, 167, 90, 0.75);
}

.cta-btn svg {
    flex-shrink: 0;
}

.cta-btn .g-icon {
    width: 22px;
    height: 22px;
}

.cta-btn .arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform .2s ease;
}

.cta-btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .wrap {
        padding: 56px 18px 40px;
    }

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

    h1.title {
        font-size: 44px;
        gap: 10px;
    }

    .rating-row {
        gap: 10px;
    }

    .cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .card {
        transition: none;
    }
}

/* Razones para amar */
.razones-section {
    background: radial-gradient(circle at 50% -10%, #1b1712 0%, var(--bg) 55%);
    color: var(--cream);
    font-family: 'Manrope', sans-serif;
    -webkit-font-smoothing: antialiased;
    padding: 80px 32px 70px;
}

.razones-wrap {
    max-width: 1220px;
    margin: 0 auto;
}

/* ---------- Header ---------- */
.rz-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 34px;
}

.rz-eyebrow .rule {
    height: 1px;
    width: 140px;
    background: linear-gradient(90deg, transparent, var(--gold-dim));
}

.rz-eyebrow .rule.right {
    background: linear-gradient(270deg, transparent, var(--gold-dim));
}

.rz-eyebrow svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
    flex-shrink: 0;
}

.rz-header {
    text-align: center;
    margin-bottom: 60px;
}

.rz-header .num-line {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 18px;
    line-height: 0.95;
}

.rz-header .big-num {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: clamp(64px, 9vw, 110px);
    background: linear-gradient(180deg, #ecc98a, var(--gold-dim));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rz-header .rz-title {
    text-align: left;
}

.rz-header .rz-title .l1 {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(30px, 4.2vw, 46px);
    color: var(--cream);
    display: block;
    letter-spacing: 0.02em;
}

.rz-header .rz-title .l2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: clamp(13px, 1.6vw, 17px);
    letter-spacing: 0.28em;
    color: var(--grey);
    display: block;
    margin: 4px 0 2px;
}

.rz-header .rz-title .l3 {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: clamp(34px, 5vw, 54px);
    letter-spacing: 0.01em;
    background: linear-gradient(120deg, #ecc98a, var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.rz-subtitle {
    margin-top: 22px;
    font-size: 15px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--grey);
    font-weight: 600;
}

/* ---------- Content grid ---------- */
.rz-content {
    display: grid;
    grid-template-columns: 1fr 300px 1fr;
    align-items: center;
    gap: 24px;
}

.rz-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.rz-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.rz-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px solid var(--item-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: radial-gradient(circle, color-mix(in srgb, var(--item-color) 12%, transparent), transparent 70%);
}

.rz-icon svg {
    width: 26px;
    height: 26px;
    color: var(--item-color);
}

.rz-text .rz-num {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 19px;
    color: var(--item-color);
    display: block;
    margin-bottom: 2px;
}

.rz-text h3 {
    font-size: 16.5px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.25;
    margin-bottom: 8px;
}

.rz-text h3 .accent {
    color: var(--item-color);
}

.rz-text p {
    font-size: 13.8px;
    line-height: 1.5;
    color: var(--grey);
    max-width: 260px;
}

.rz-col.right .rz-item {
    flex-direction: row-reverse;
    text-align: right;
}

.rz-col.right .rz-text p {
    margin-left: auto;
}

/* ---------- Center illustration ---------- */
.rz-figure {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rz-figure svg {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.55));
}

/* ---------- Footer bar ---------- */
.rz-footer {
    margin-top: 64px;
    border: 1px solid var(--gold-dim);
    border-radius: 999px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.rz-footer .fitem {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rz-footer .fitem svg {
    width: 26px;
    height: 26px;
    color: var(--gold);
    flex-shrink: 0;
}

.rz-footer .fitem .flabel {
    font-size: 12px;
    color: var(--grey);
    letter-spacing: 0.04em;
}

.rz-footer .fitem .fvalue {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    letter-spacing: 0.12em;
    font-size: 14.5px;
    color: var(--gold);
    text-transform: uppercase;
}

.rz-footer .fdivider {
    width: 1px;
    height: 30px;
    background: var(--line);
}

.rz-tagline {
    text-align: center;
    margin-top: 34px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: 0.32em;
    font-size: 13px;
    color: var(--grey);
    text-transform: uppercase;
}

.rz-tagline svg {
    width: 13px;
    height: 13px;
    color: var(--gold);
    vertical-align: -1px;
    margin-left: 6px;
}

/* ---------- Responsive: tablet (preserve 2-column + center layout) ---------- */
@media (max-width: 1080px) and (min-width: 701px) {
    .rz-content {
        grid-template-columns: 1fr 200px 1fr;
        gap: 16px;
    }

    .rz-figure svg {
        max-width: 190px;
    }

    .rz-item {
        gap: 12px;
    }

    .rz-icon {
        width: 48px;
        height: 48px;
    }

    .rz-icon svg {
        width: 21px;
        height: 21px;
    }

    .rz-text h3 {
        font-size: 14.5px;
    }

    .rz-text p {
        font-size: 12.5px;
        max-width: 100%;
    }

    .rz-col {
        gap: 26px;
    }
}

@media (max-width: 860px) and (min-width: 701px) {
    .rz-content {
        grid-template-columns: 1fr 160px 1fr;
        gap: 12px;
    }

    .rz-figure svg {
        max-width: 150px;
    }

    .razones-section {
        padding: 64px 22px 56px;
    }
}

/* ---------- Responsive: mobile (stack) ---------- */
@media (max-width: 700px) {
    .rz-content {
        grid-template-columns: 1fr;
    }

    .rz-figure {
        order: -1;
        margin-bottom: 20px;
    }

    .rz-figure svg {
        max-width: 220px;
    }

    .rz-col.right .rz-item {
        flex-direction: row;
        text-align: left;
    }

    .rz-col.right .rz-text p {
        margin-left: 0;
    }

    .rz-header .num-line {
        flex-direction: column;
        gap: 4px;
    }

    .rz-header .rz-title {
        text-align: center;
    }
}

@media (max-width: 560px) {
    .razones-section {
        padding: 56px 18px 48px;
    }

    .rz-eyebrow .rule {
        width: 60px;
    }

    .rz-col {
        gap: 30px;
    }

    .rz-footer {
        padding: 20px 24px;
        gap: 16px;
    }

    .rz-footer .fdivider {
        display: none;
    }

    .rz-footer {
        flex-direction: column;
    }
}

@media (max-width: 380px) {
    .rz-header .big-num {
        font-size: 56px;
    }

    .rz-item {
        gap: 14px;
    }

    .rz-icon {
        width: 50px;
        height: 50px;
    }

    .rz-icon svg {
        width: 22px;
        height: 22px;
    }

    .rz-text h3 {
        font-size: 15px;
    }
}