/* ═══════════════════════════════════════════
   DESIGN SYSTEM — Receitas do Antigo Israel
   ═══════════════════════════════════════════ */

:root {
    /* Palette */
    --white:        #FFFFFF;
    --ivory:        #FCFAF6;
    --sand:         #FAF6EF;
    --sand-dark:    #F5F3EF;
    --bone:         #E7DED2;
    --earth:        #A8742A;
    --earth-dark:   #8B6626;
    --bark:         #2D1A11;
    --olive:        #3A4A2E;
    --olive-deep:   #1E2C1A;
    --charcoal:     #1F1F1F;
    --gray:         #666666;
    --gray-light:   #999999;
    --black:        #111111;

    /* Typography */
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;

    /* Hero editorial */
    --hero-bg: #F8F4EC;
    --hero-ink: #352118;
    --hero-copper: #B75E38;
    --hero-paper: #FFFDF8;

    /* Spacing scale (8px base) */
    --s-4:  4px;   --s-8:  8px;   --s-12: 12px;
    --s-16: 16px;  --s-20: 20px;  --s-24: 24px;
    --s-32: 32px;  --s-40: 40px;  --s-48: 48px;
    --s-56: 56px;  --s-64: 64px;  --s-80: 80px;
    --s-96: 96px;  --s-120:120px;

    /* Radii */
    --r-sm: 12px;
    --r-md: 18px;
    --r-lg: 22px;
    --r-xl: 28px;
    --r-full: 100px;

    /* Shadows */
    --sh-xs:  0 2px 8px rgba(31,31,31,0.04);
    --sh-sm:  0 4px 16px rgba(31,31,31,0.06);
    --sh-md:  0 8px 30px rgba(31,31,31,0.08);
    --sh-lg:  0 16px 48px rgba(31,31,31,0.12);
    --sh-xl:  0 24px 64px rgba(0,0,0,0.16);

    /* Transitions */
    --ease: cubic-bezier(.25,.46,.45,.94);
    --duration: 0.3s;
}


/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.65;
    color: var(--charcoal);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }


/* ── Container ── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--s-24);
}


/* ── Typography ── */
.title-md {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--charcoal);
}

.subtitle-sm {
    font-size: 22px;
    font-weight: 500;
    color: var(--earth);
    margin-top: var(--s-8);
}

.body-text {
    font-size: 17px;
    color: var(--gray);
    margin-top: var(--s-16);
    line-height: 1.7;
}

.text-white       { color: var(--white); }
.text-white-muted { color: rgba(255,255,255,0.65); }


/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: var(--r-sm);
    transition: transform var(--duration) var(--ease),
                box-shadow var(--duration) var(--ease),
                background var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

/* Sheen effect */
.btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s var(--ease);
}
.btn:hover::after { left: 100%; }

.btn--dark {
    background: var(--bark);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(45,26,17,0.2);
}
.btn--dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(45,26,17,0.3);
}

.btn--gold {
    background: linear-gradient(135deg, var(--earth), #C4932F);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(168,116,42,0.35);
}
.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(168,116,42,0.45);
}

.btn--xl {
    min-height: 64px;
    padding: 0 var(--s-40);
    font-size: 18px;
    letter-spacing: 0.02em;
}

.pulse { animation: pulse 2.5s infinite; }
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(168,116,42,0.5); }
    70%  { box-shadow: 0 0 0 18px rgba(168,116,42,0); }
    100% { box-shadow: 0 0 0 0 rgba(168,116,42,0); }
}


/* ── Section Heads ── */
.section-head {
    text-align: center;
    margin-bottom: var(--s-56);
}
.section-lead {
    max-width: 620px;
    margin: 12px auto 0;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
}


/* ── Scroll Reveal Animations ── */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.has-js .reveal {
    opacity: 0;
    transform: translateY(32px);
}
.has-js .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.has-js .reveal-left  { transform: translateX(-40px) translateY(0); }
.has-js .reveal-right { transform: translateX(40px)  translateY(0); }
.has-js .reveal-left.visible, .has-js .reveal-right.visible { transform: translateX(0); }
.has-js .reveal-up { transform: translateY(40px); }
.has-js .reveal-up.visible { transform: translateY(0); }

/* Stagger delays */
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }


/* ══════════════════════════════════════════════
   HERO — #FFFFFF
   ══════════════════════════════════════════════ */
.offer-bar {
    min-height: 28px;
    display: grid;
    place-items: center;
    padding: 5px var(--s-24);
    background: var(--hero-ink);
    color: #F8EBDD;
    text-align: center;
}
.offer-bar p {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.02em;
}
.offer-bar span { color: #D8895B; padding: 0 6px; }

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--hero-bg);
    padding: 28px 0 44px;
    text-align: center;
}
.hero::before {
    content: '';
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        radial-gradient(circle at 50% 47%, rgba(234, 215, 188, 0.42), transparent 25%),
        linear-gradient(180deg, rgba(255,255,255,0.45), transparent 20%);
    pointer-events: none;
}
.hero-inner {
    max-width: 820px;
    margin: 0 auto;
}
.hero-orbit {
    position: absolute;
    z-index: -1;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(183, 94, 56, 0.14);
    border-radius: 50%;
    pointer-events: none;
}
.hero-orbit--left { left: -125px; top: 114px; }
.hero-orbit--right { right: -132px; bottom: 18px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 13px;
    border: 1px solid rgba(183, 94, 56, 0.24);
    border-radius: var(--r-full);
    background: rgba(255, 253, 248, 0.65);
    color: #8D533B;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
}
.hero-eyebrow span { color: var(--hero-copper); }

.hero-title {
    margin-top: 17px;
    color: var(--hero-ink);
    font-size: clamp(42px, 4.25vw, 61px);
    font-weight: 800;
    line-height: 0.99;
    letter-spacing: -0.058em;
}
.hero-title span { color: var(--hero-copper); }

.hero-sub {
    max-width: 580px;
    margin: 15px auto 0;
    color: #806D65;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-product {
    position: relative;
    width: min(100%, 570px);
    height: 392px;
    margin: 15px auto 4px;
    isolation: isolate;
}
.product-halo {
    position: absolute;
    z-index: -1;
    width: 430px;
    height: 220px;
    left: 50%;
    bottom: 24px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(159, 89, 48, 0.2) 0%, rgba(159, 89, 48, 0.07) 42%, transparent 72%);
    filter: blur(9px);
}

.recipe-sheet {
    position: absolute;
    top: 83px;
    width: 186px;
    height: 267px;
    padding: 19px 16px 15px;
    overflow: hidden;
    border: 1px solid #E3D5C5;
    background:
        linear-gradient(90deg, transparent 0 10px, rgba(183,94,56,0.1) 10px 11px, transparent 11px),
        var(--hero-paper);
    box-shadow: 0 17px 25px rgba(65, 35, 22, 0.15);
    color: var(--hero-ink);
}
.recipe-sheet::after {
    content: '';
    position: absolute;
    z-index: 2;
    inset: 7px;
    border: 1px solid rgba(115, 75, 49, 0.12);
    pointer-events: none;
}
.recipe-sheet--left {
    left: 58px;
    transform: rotate(-9deg);
}
.recipe-sheet--right {
    right: 55px;
    transform: rotate(8deg);
}
.sheet-photo {
    position: relative;
    z-index: 1;
    height: 88px;
    margin-bottom: 11px;
    overflow: hidden;
    border: 1px solid rgba(86, 48, 28, 0.16);
    background: #D5B291;
}
.sheet-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.94) contrast(1.04);
}
.sheet-kicker {
    position: relative;
    z-index: 1;
    display: block;
    color: #A46243;
    font-size: 6px;
    font-weight: 700;
    letter-spacing: 0.12em;
}
.recipe-sheet h2 {
    position: relative;
    z-index: 1;
    margin: 7px 0 10px;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.04em;
}
.sheet-line {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 8px;
    background: #D9CABB;
}
.sheet-line--wide { width: 88%; }
.sheet-line--short { width: 62%; }
.sheet-band {
    position: absolute;
    z-index: 1;
    right: -8px;
    bottom: 16px;
    width: 132px;
    height: 37px;
    border: 7px solid var(--hero-copper);
    border-left: 0;
    opacity: 0.9;
}

.recipe-book {
    position: absolute;
    z-index: 3;
    top: 12px;
    left: 50%;
    width: 232px;
    height: 342px;
    padding: 22px 20px 16px 28px;
    overflow: hidden;
    transform: translateX(-50%);
    border: 1px solid #432114;
    background:
        linear-gradient(100deg, rgba(255,255,255,0.08), transparent 19%),
        linear-gradient(150deg, #64331E, #32160F 74%);
    box-shadow: 0 18px 30px rgba(52, 28, 17, 0.34), inset 0 0 0 4px rgba(255, 221, 178, 0.04);
    color: #FAEADA;
}
.recipe-book::after {
    content: '';
    position: absolute;
    z-index: 3;
    inset: 8px;
    border: 1px solid rgba(238, 203, 164, 0.28);
    pointer-events: none;
}
.book-spine {
    position: absolute;
    z-index: 4;
    top: 2px;
    bottom: 2px;
    left: -12px;
    width: 16px;
    border: 1px solid #32160F;
    background: linear-gradient(90deg, #1D0D09, #57301E);
    box-shadow: -6px 0 9px rgba(38, 16, 9, 0.25);
}
.book-cover-photo {
    position: absolute;
    z-index: 0;
    inset: 8px;
    overflow: hidden;
    background: #4A2516;
}
.book-cover-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(38, 15, 8, 0.68) 0%, rgba(47, 20, 10, 0.3) 48%, rgba(37, 14, 8, 0.74) 100%);
}
.book-cover-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 48% center;
    filter: saturate(1.05) contrast(1.04) brightness(1.14);
}
.book-kicker,
.book-footer {
    position: relative;
    z-index: 2;
    display: block;
    color: #F0C79F;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.14em;
}
.book-mark {
    position: absolute;
    z-index: 4;
    top: -1px;
    right: 23px;
    width: 14px;
    height: 38px;
    background: #B75E38;
}
.book-mark::after {
    content: '';
    position: absolute;
    bottom: -7px;
    border-width: 7px 7px 0;
    border-style: solid;
    border-color: #B75E38 transparent transparent;
}
.recipe-book h2 {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    color: #FFF0DD;
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 600;
    line-height: 0.78;
    letter-spacing: -0.055em;
    text-shadow: 0 2px 12px rgba(25, 8, 3, 0.48);
}
.recipe-book h2 em { font-style: italic; }
.book-rule {
    position: relative;
    z-index: 2;
    display: block;
    width: 42px;
    height: 1px;
    margin: 21px 0 12px;
    background: #D89969;
}
.recipe-book p {
    position: relative;
    z-index: 2;
    color: #E7C6A7;
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}
.book-illustration {
    position: absolute;
    z-index: 1;
    right: 15px;
    bottom: 30px;
    width: 92px;
    height: 92px;
    border: 1px solid rgba(232, 186, 137, 0.3);
    border-radius: 50%;
    opacity: 0.78;
}
.book-illustration::before,
.book-illustration::after,
.book-illustration span {
    content: '';
    position: absolute;
    border: 1px solid #D99D70;
    border-radius: 50%;
}
.book-illustration::before { inset: 16px; }
.book-illustration::after { inset: 29px; }
.book-illustration span:nth-child(1) { width: 55px; height: 1px; left: 17px; top: 44px; border: 0; background: #D99D70; }
.book-illustration span:nth-child(2) { width: 1px; height: 55px; top: 17px; left: 44px; border: 0; background: #D99D70; }
.book-illustration span:nth-child(3) { inset: 5px; }
.book-footer {
    position: absolute;
    z-index: 2;
    bottom: 18px;
    left: 28px;
    font-size: 5px;
    color: #DFB58C;
}

.recipe-phone {
    position: absolute;
    z-index: 5;
    right: 79px;
    bottom: 3px;
    width: 113px;
    height: 205px;
    padding: 9px 6px 15px;
    transform: rotate(6deg);
    border: 4px solid #171412;
    border-radius: 13px;
    background: #25211F;
    box-shadow: 11px 14px 20px rgba(39, 23, 15, 0.28);
}
.phone-camera {
    position: absolute;
    z-index: 1;
    top: 3px;
    left: 50%;
    width: 28px;
    height: 4px;
    border-radius: var(--r-full);
    transform: translateX(-50%);
    background: #090807;
}
.phone-screen {
    width: 100%;
    height: 100%;
    padding: 13px 8px 7px;
    overflow: hidden;
    background: #FFF9EF;
    color: #3B271E;
}
.phone-app {
    display: block;
    color: #AA623F;
    font-size: 5px;
    font-weight: 700;
    letter-spacing: 0.15em;
}
.phone-divider {
    display: block;
    height: 1px;
    margin: 7px 0 13px;
    background: #D6BA9E;
}
.phone-screen strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 17px;
    line-height: 0.85;
}
.phone-copy {
    display: block;
    width: 84%;
    height: 1px;
    margin-top: 8px;
    background: #D6C4B1;
}
.phone-copy--long { width: 100%; margin-top: 12px; }
.phone-copy--short { width: 63%; }
.phone-photo {
    position: relative;
    height: 52px;
    margin-top: 13px;
    overflow: hidden;
    background: #4F2A1A;
}
.phone-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(40, 16, 8, 0.22));
}
.phone-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.phone-home {
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 24px;
    height: 3px;
    border-radius: var(--r-full);
    transform: translateX(-50%);
    background: #070605;
}

/* Colagem gastronômica: conceito próprio para a abertura */
.hero-collage {
    width: min(100%, 660px);
    height: 415px;
    margin-top: 16px;
    isolation: isolate;
}
.collage-glow {
    position: absolute;
    z-index: -2;
    left: 50%;
    bottom: 11px;
    width: 440px;
    height: 165px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(128, 69, 38, 0.21), rgba(177, 96, 56, 0.08) 47%, transparent 72%);
    filter: blur(10px);
}
.recipe-photo {
    --base-transform: rotate(0deg);
    position: absolute;
    z-index: 1;
    overflow: hidden;
    border: 3px solid rgba(255, 250, 240, 0.94);
    background: #5A3020;
    box-shadow: 0 16px 30px rgba(60, 31, 19, 0.22), 0 3px 7px rgba(60, 31, 19, 0.12);
    transform: var(--base-transform);
    animation: recipe-float 7.5s ease-in-out infinite;
}
.recipe-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 45%, rgba(33, 15, 8, 0.32));
}
.recipe-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.03);
}
.recipe-photo--flatbread {
    --base-transform: rotate(-10deg);
    z-index: 1;
    top: 28px;
    left: 96px;
    width: 156px;
    height: 132px;
    border-radius: 28px 13px 31px 18px;
    animation-delay: -2.1s;
}
.recipe-photo--flatbread img { object-position: 48% 49%; }
.recipe-photo--bread {
    --base-transform: rotate(-13deg);
    z-index: 2;
    top: 187px;
    left: 36px;
    width: 151px;
    height: 143px;
    border-radius: 17px 31px 18px 28px;
    animation-delay: -5.2s;
}
.recipe-photo--bread img { object-position: 48% 45%; }
.recipe-photo--drinks {
    --base-transform: rotate(9deg);
    z-index: 1;
    top: 24px;
    right: 101px;
    width: 150px;
    height: 142px;
    border-radius: 32px 17px 28px 16px;
    animation-delay: -3.4s;
}
.recipe-photo--drinks img { object-position: 62% 47%; }
.recipe-photo--stew {
    --base-transform: rotate(10deg);
    z-index: 4;
    top: 191px;
    right: 35px;
    width: 177px;
    height: 157px;
    border-radius: 18px 34px 23px 31px;
    animation-delay: -1.3s;
}
.recipe-photo--stew img { object-position: 52% 52%; }
.recipe-photo--figs {
    --base-transform: rotate(-7deg);
    z-index: 3;
    bottom: 26px;
    left: 149px;
    width: 143px;
    height: 128px;
    border-radius: 29px 19px 32px 15px;
    animation-delay: -4.1s;
}
.recipe-photo--figs img { object-position: 52% 50%; }
.recipe-photo--feature {
    --base-transform: translateX(-50%) rotate(-1.5deg);
    z-index: 5;
    top: 51px;
    left: 50%;
    width: 244px;
    height: 304px;
    border: 5px solid rgba(255, 249, 238, 0.96);
    border-radius: 30px 62px 35px 58px / 31px 45px 39px 49px;
    box-shadow: 0 23px 38px rgba(60, 31, 19, 0.32), 0 5px 12px rgba(60, 31, 19, 0.16);
    animation: none;
}
.recipe-photo--feature::after {
    background: linear-gradient(180deg, rgba(36, 16, 7, 0.04) 28%, rgba(38, 17, 8, 0.13) 49%, rgba(29, 12, 6, 0.88) 100%);
}
.recipe-photo--feature img { object-position: 48% 51%; }
.photo-footer {
    display: none;
    position: absolute;
    z-index: 1;
    right: 7px;
    bottom: 7px;
    left: 7px;
    padding: 6px 7px;
    border: 1px solid rgba(255, 250, 240, 0.7);
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.89);
    color: #3C2419;
    line-height: 1.05;
    text-align: left;
}
.photo-footer span,
.photo-feature-copy span {
    display: block;
    color: #A85938;
    font-size: 6px;
    font-weight: 700;
    letter-spacing: 0.13em;
}
.photo-footer strong {
    display: block;
    margin-top: 3px;
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.025em;
}
.photo-feature-copy {
    position: absolute;
    z-index: 1;
    right: 23px;
    bottom: 24px;
    left: 23px;
    color: #FFF7EC;
    text-align: left;
}
.photo-feature-copy span { color: #F2C9A0; font-size: 7px; }
.photo-feature-copy strong {
    display: block;
    margin-top: 7px;
    font-family: var(--font-serif);
    font-size: 27px;
    font-weight: 600;
    line-height: 0.82;
    letter-spacing: -0.04em;
    text-shadow: 0 2px 10px rgba(29, 12, 6, 0.5);
}
.collage-badge {
    position: absolute;
    z-index: 6;
    top: 21px;
    left: calc(50% + 97px);
    display: grid;
    width: 76px;
    height: 76px;
    place-content: center;
    border: 2px solid rgba(255, 239, 217, 0.82);
    border-radius: 50%;
    background: #AD5D38;
    box-shadow: 0 10px 18px rgba(76, 37, 21, 0.2);
    color: #FFF5E7;
    line-height: 0.85;
    transform: rotate(10deg);
}
.collage-badge strong {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.06em;
}
.collage-badge span {
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
@keyframes recipe-float {
    0%, 100% { transform: var(--base-transform) translateY(0); }
    50% { transform: var(--base-transform) translateY(-8px); }
}

/* Biblioteca de sabores: nove prévias reais para provar a variedade do ebook */
.hero-collage {
    width: min(100%, 680px);
    height: 480px;
}
.recipe-photo--tabbouleh {
    --base-transform: rotate(-9deg);
    z-index: 1;
    top: 18px;
    left: 52px;
    width: 124px;
    height: 83px;
    border-radius: 22px 12px 27px 15px;
    animation-delay: -1.2s;
}
.recipe-photo--tabbouleh img { object-position: 50% 48%; }
.recipe-photo--baked-eggs {
    --base-transform: rotate(5deg);
    z-index: 1;
    top: 2px;
    left: 197px;
    width: 98px;
    height: 128px;
    border-radius: 25px 14px 22px 17px;
    animation-delay: -4.6s;
}
.recipe-photo--baked-eggs img { object-position: 50% 45%; }
.recipe-photo--falafel {
    --base-transform: rotate(-12deg);
    z-index: 3;
    top: 126px;
    left: 1px;
    width: 119px;
    height: 167px;
    border-radius: 22px 30px 17px 26px;
    animation-delay: -3.2s;
}
.recipe-photo--falafel img { object-position: 54% 52%; }
.recipe-photo--hummus-chickpeas {
    --base-transform: rotate(-6deg);
    z-index: 4;
    bottom: 47px;
    left: 73px;
    width: 149px;
    height: 111px;
    border-radius: 18px 31px 25px 15px;
    animation-delay: -5.4s;
}
.recipe-photo--hummus-chickpeas img { object-position: 50% 50%; }
.recipe-photo--hummus {
    --base-transform: rotate(8deg);
    z-index: 2;
    top: 266px;
    left: 171px;
    width: 109px;
    height: 86px;
    border-radius: 29px 17px 24px 16px;
    animation-delay: -2.4s;
}
.recipe-photo--hummus img { object-position: 50% 52%; }
.recipe-photo--hamantaschen {
    --base-transform: rotate(9deg);
    z-index: 2;
    top: 9px;
    right: 62px;
    width: 113px;
    height: 113px;
    border-radius: 31px 18px 28px 16px;
    animation-delay: -4.1s;
}
.recipe-photo--hamantaschen img { object-position: 48% 50%; }
.recipe-photo--wrap {
    --base-transform: rotate(9deg);
    z-index: 3;
    top: 115px;
    right: 3px;
    width: 156px;
    height: 111px;
    border-radius: 18px 32px 18px 27px;
    animation-delay: -1.8s;
}
.recipe-photo--wrap img { object-position: 50% 52%; }
.recipe-photo--shakshuka {
    --base-transform: rotate(10deg);
    z-index: 4;
    top: 249px;
    right: 52px;
    width: 128px;
    height: 128px;
    border-radius: 26px 18px 32px 17px;
    animation-delay: -3.8s;
}
.recipe-photo--shakshuka img { object-position: 50% 50%; }
.recipe-photo--feature {
    --base-transform: translateX(-50%) rotate(-1.5deg);
    z-index: 5;
    top: 45px;
    left: 50%;
    width: 270px;
    height: 348px;
    border: 5px solid rgba(255, 249, 238, 0.98);
    border-radius: 29px 62px 36px 57px / 31px 47px 39px 51px;
    animation: none;
}
.recipe-photo--feature::after {
    background: linear-gradient(180deg, rgba(33, 14, 7, 0.03) 24%, rgba(33, 14, 7, 0.13) 51%, rgba(28, 11, 5, 0.9) 100%);
}
.recipe-photo--feature img { object-position: 50% 48%; }
.photo-feature-copy { right: 20px; bottom: 20px; left: 20px; }
.photo-feature-copy span { font-size: 6px; }
.photo-feature-copy strong { margin-top: 6px; font-size: 26px; }
.collage-badge {
    top: 21px;
    left: calc(50% + 103px);
    width: 78px;
    height: 78px;
}
.collage-caption {
    position: absolute;
    z-index: 6;
    bottom: 7px;
    left: 50%;
    width: max-content;
    color: #856557;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transform: translateX(-50%);
}
.collage-caption span { color: var(--hero-copper); padding: 0 4px; }

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
}
.price-anchor {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}
.price-from {
    color: #8D7468;
    font-size: 11px;
    font-weight: 500;
}
.price-from s { opacity: 0.7; }
.price-value {
    color: var(--hero-ink);
    font-size: 31px;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
}
.hero .btn--xl {
    min-height: 48px;
    padding: 0 23px;
    border-radius: 9px;
    font-size: 11px;
    letter-spacing: 0.02em;
}
.hero .btn--xl span { margin-left: 7px; font-size: 14px; }
.hero-trust {
    color: #987F71;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.4;
}
.hero-trust .dot { color: var(--hero-copper); margin: 0 3px; }


/* ══════════════════════════════════════════════
   SPLIT LAYOUT (reusável)
   ══════════════════════════════════════════════ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-64);
    align-items: center;
}

.split__media {
    overflow: hidden;
    border-radius: var(--r-lg);
}

.split__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    object-fit: cover;
}

/* Prévia editorial: páginas em português + receitas fotografadas de verdade */
.editorial-book-preview {
    position: relative;
    min-height: 452px;
    overflow: visible;
    border-radius: 0;
    isolation: isolate;
}
.editorial-book-preview::before {
    content: '';
    position: absolute;
    z-index: -2;
    top: 8%;
    right: 2%;
    bottom: 7%;
    left: 2%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(168, 116, 42, 0.18), rgba(168, 116, 42, 0.05) 56%, transparent 74%);
    filter: blur(14px);
}
.editorial-book-preview img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
}
.editorial-book-spread {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 86%;
    height: 392px;
    margin: 20px auto 0;
    overflow: hidden;
    border: 7px solid #FFFDF7;
    border-radius: 24px 34px 28px 31px;
    background: #F7EEDC;
    box-shadow: 0 24px 46px rgba(69, 37, 20, 0.24), 0 6px 13px rgba(69, 37, 20, 0.13);
    transform: rotate(-2deg);
}
.editorial-book-spread::after {
    content: '';
    position: absolute;
    z-index: 3;
    top: -7px;
    bottom: -7px;
    left: 50%;
    width: 12px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(78, 46, 28, 0.16), rgba(255,255,255,0.45) 42%, rgba(89, 52, 31, 0.13));
    box-shadow: 2px 0 5px rgba(65, 36, 21, 0.12);
    pointer-events: none;
}
.editorial-page {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 18px 17px 20px;
    flex-direction: column;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.55), transparent 34%),
        #F8EEDC;
    color: #4A2B1B;
}
.editorial-page--eggs {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.72), transparent 36%),
        #FFF8EC;
}
.editorial-recipe-photo {
    height: 133px;
    overflow: hidden;
    border: 1px solid rgba(105, 59, 33, 0.18);
    border-radius: 13px 18px 14px 17px;
    background: #85502F;
    box-shadow: 0 6px 13px rgba(72, 39, 21, 0.16);
}
.editorial-page--hummus .editorial-recipe-photo img { object-position: 50% 48%; }
.editorial-page--eggs .editorial-recipe-photo img { object-position: 50% 49%; }
.editorial-page__kicker {
    margin-top: 13px;
    color: #A15B39;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.2;
}
.editorial-page h3 {
    margin-top: 5px;
    font-family: var(--font-serif);
    color: #412316;
    font-size: 28px;
    font-weight: 700;
    line-height: 0.86;
    letter-spacing: -0.045em;
}
.editorial-page__copy {
    margin-top: 9px;
    color: #745746;
    font-size: 10px;
    line-height: 1.42;
}
.editorial-page__details {
    margin-top: auto;
    padding-top: 11px;
    border-top: 1px solid rgba(119, 76, 51, 0.2);
}
.editorial-page__details span {
    display: block;
    color: #A15B39;
    font-size: 6px;
    font-weight: 700;
    letter-spacing: 0.12em;
}
.editorial-page__details strong {
    display: block;
    margin-top: 4px;
    font-family: var(--font-serif);
    color: #563221;
    font-size: 14px;
    font-weight: 700;
    line-height: 0.95;
}
.editorial-page__steps {
    display: flex;
    margin-top: auto;
    padding-top: 11px;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid rgba(119, 76, 51, 0.2);
}
.editorial-page__steps li {
    color: #6D4A37;
    font-size: 8px;
    font-weight: 600;
    line-height: 1.25;
}
.editorial-page__steps li::before {
    content: '•';
    margin-right: 5px;
    color: #B75E38;
}
.editorial-page__number {
    position: absolute;
    right: 16px;
    bottom: 8px;
    color: rgba(94, 56, 35, 0.45);
    font-family: var(--font-serif);
    font-size: 11px;
    font-weight: 700;
}
.editorial-snap {
    position: absolute;
    z-index: 4;
    overflow: hidden;
    border: 4px solid rgba(255, 251, 242, 0.96);
    background: #6B3921;
    box-shadow: 0 15px 27px rgba(63, 34, 19, 0.23), 0 4px 8px rgba(63, 34, 19, 0.12);
}
.editorial-snap img {
    object-fit: cover;
    filter: saturate(1.06) contrast(1.03);
}
.editorial-snap--tabbouleh {
    top: 2px;
    left: -14px;
    width: 123px;
    height: 87px;
    border-radius: 19px 13px 21px 15px;
    transform: rotate(-9deg);
}
.editorial-snap--tabbouleh img { object-position: 50% 50%; }
.editorial-snap--falafel {
    right: -14px;
    bottom: 30px;
    width: 120px;
    height: 145px;
    border-radius: 18px 26px 17px 24px;
    transform: rotate(8deg);
}
.editorial-snap--falafel img { object-position: 53% 52%; }
.editorial-preview__caption {
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 50%;
    color: #846252;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-align: center;
    transform: translateX(-50%);
    white-space: nowrap;
}
.editorial-preview__caption span { color: #B75E38; }

.split__text .check-list {
    margin-top: var(--s-24);
    display: flex;
    flex-direction: column;
    gap: var(--s-12);
}
.split__text .check-list li {
    display: flex;
    align-items: center;
    gap: var(--s-12);
    font-size: 17px;
    font-weight: 500;
}
.check { color: var(--earth); font-size: 18px; }


/* ══════════════════════════════════════════════
   BENEFÍCIOS — #FAF6EF
   ══════════════════════════════════════════════ */
.benefits {
    background: var(--sand);
    padding: var(--s-96) 0;
}


/* ══════════════════════════════════════════════
   CONTEÚDO — #FFFFFF
   ══════════════════════════════════════════════ */
.content {
    background: var(--white);
    padding: var(--s-96) 0;
}

/* Carousel */
.carousel-wrapper {
    position: relative;
}

.carousel {
    display: flex;
    gap: var(--s-20);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--s-8);

    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.carousel::-webkit-scrollbar { display: none; }

.card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--bone);
    border-radius: var(--r-lg);
    padding: 10px 10px 22px;
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition: transform var(--duration) var(--ease),
                box-shadow var(--duration) var(--ease),
                border-color var(--duration) var(--ease);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
    border-color: var(--earth);
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--s-8);
    margin-top: var(--s-24);
}
.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bone);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background var(--duration) var(--ease),
                transform var(--duration) var(--ease);
}
.carousel-dots .dot.active {
    background: var(--earth);
    transform: scale(1.3);
}

/* Conversas em estilo mensageiro: estrutura pronta para feedbacks reais */
.feedback-showcase {
    position: relative;
    overflow: hidden;
    background: #F8F4EC;
    padding: 104px 0 88px;
    text-align: center;
}
.feedback-showcase::before,
.feedback-showcase::after {
    content: '';
    position: absolute;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(183, 94, 56, 0.13);
    border-radius: 50%;
}
.feedback-showcase::before { top: 116px; left: -204px; }
.feedback-showcase::after { right: -210px; bottom: 78px; }
.feedback-showcase .container { position: relative; z-index: 1; }
.feedback-showcase__head {
    max-width: 860px;
    margin: 0 auto;
}
.feedback-showcase__eyebrow {
    color: #C0643C;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
}
.feedback-showcase__head h2 {
    margin-top: 16px;
    color: #42291D;
    font-size: clamp(40px, 4.1vw, 62px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.055em;
}
.feedback-showcase__head > p:last-child {
    max-width: 680px;
    margin: 19px auto 0;
    color: #806B61;
    font-size: 17px;
    line-height: 1.65;
}
.feedback-showcase__head > p:last-child strong { color: #5A3321; font-weight: 700; }
.feedback-showcase__carousel {
    position: relative;
    width: min(100%, 620px);
    max-width: calc(100% - 32px);
    margin: 44px auto 0;
    padding: 0 78px;
}
.feedback-track {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.feedback-track::-webkit-scrollbar { display: none; }
.feedback-slide {
    display: grid;
    padding: 0 0 18px;
    flex: 0 0 100%;
    place-items: center;
    scroll-snap-align: start;
}
.feedback-slide__label {
    margin-bottom: 12px;
    padding: 5px 10px;
    border: 1px solid rgba(183, 94, 56, 0.2);
    border-radius: 100px;
    color: #B55E38;
    background: rgba(255,253,248,0.68);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.11em;
}
.feedback-phone {
    width: min(100%, 334px);
    min-height: 563px;
    overflow: hidden;
    border: 10px solid #F1E6D3;
    border-radius: 32px;
    background: #091412;
    box-shadow: 0 22px 42px rgba(61, 33, 19, 0.19), 0 6px 13px rgba(61, 33, 19, 0.12);
    color: #EDF2EF;
    text-align: left;
}
.feedback-phone__status {
    display: flex;
    height: 25px;
    padding: 7px 12px 0;
    align-items: center;
    justify-content: space-between;
    background: #101D1A;
    color: rgba(239, 246, 242, 0.87);
    font-size: 8px;
    font-weight: 700;
}
.feedback-phone__contact {
    display: flex;
    height: 55px;
    padding: 8px 12px;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: #14231F;
}
.feedback-avatar {
    display: grid;
    width: 31px;
    height: 31px;
    flex-shrink: 0;
    place-items: center;
    border: 2px solid rgba(255,255,255,0.14);
    border-radius: 50%;
    background: #80624D;
    color: #FFF8ED;
    font-size: 9px;
    font-weight: 700;
}
.feedback-avatar--olive { background: #58694C; }
.feedback-avatar--copper { background: #B36342; }
.feedback-phone__contact div { min-width: 0; }
.feedback-phone__contact strong,
.feedback-phone__contact small { display: block; }
.feedback-phone__contact strong { font-size: 11px; line-height: 1.1; }
.feedback-phone__contact small { margin-top: 3px; color: rgba(237,242,239,0.58); font-size: 8px; }
.feedback-phone__menu { margin-left: auto; color: rgba(237,242,239,0.8); font-size: 22px; line-height: 1; }
.feedback-phone__chat {
    display: flex;
    min-height: 432px;
    padding: 14px 11px;
    flex-direction: column;
    gap: 8px;
    background-color: #0A1512;
    background-image:
        radial-gradient(circle at 12px 12px, rgba(237,225,206,0.035) 0 1px, transparent 1.5px),
        radial-gradient(circle at 38px 31px, rgba(237,225,206,0.025) 0 1px, transparent 1.6px);
    background-size: 46px 46px;
}
.feedback-bubble {
    max-width: 89%;
    padding: 8px 9px 7px;
    border-radius: 8px 10px 10px 10px;
    background: #27332F;
    color: rgba(246,249,247,0.94);
    font-size: 10px;
    line-height: 1.34;
    box-shadow: 0 1px 0 rgba(0,0,0,0.22);
}
.feedback-bubble strong { font-weight: 700; }
.feedback-bubble--out {
    align-self: flex-end;
    border-radius: 10px 8px 10px 10px;
    background: #265B44;
}
.feedback-phone__input {
    display: flex;
    height: 51px;
    padding: 8px 10px;
    align-items: center;
    gap: 8px;
    background: #101D1A;
}
.feedback-phone__input > span {
    flex: 1;
    padding: 9px 10px;
    border-radius: 8px;
    background: #24302D;
    color: rgba(237,242,239,0.48);
    font-size: 10px;
}
.feedback-phone__input i {
    display: block;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: #B96B43;
}
.feedback-nav {
    position: absolute;
    z-index: 2;
    top: 55%;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #40271B;
    box-shadow: 0 9px 18px rgba(64,39,27,0.18);
    color: #FFF7EB;
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform var(--duration) var(--ease), background var(--duration) var(--ease);
}
.feedback-nav:hover { background: #B65F39; transform: translateY(-50%) scale(1.06); }
.feedback-nav--prev { left: 0; }
.feedback-nav--next {
    right: 0;
    outline: 2px solid #CDA767;
    outline-offset: 4px;
}
.feedback-nav span { font-size: 21px; line-height: 1; }
.feedback-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 3px;
}
.feedback-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #DCCBBB;
    cursor: pointer;
    transition: width var(--duration) var(--ease), background var(--duration) var(--ease);
}
.feedback-dots button.active {
    width: 26px;
    border-radius: 99px;
    background: #BF653D;
}
.card__media {
    height: 164px;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 14px;
    background: var(--sand-dark);
}
.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease);
}
.card:hover .card__media img { transform: scale(1.06); }
.card__eyebrow {
    display: block;
    margin: 0 12px 6px;
    color: var(--earth);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.card__icon {
    font-size: 36px;
    display: block;
    margin-bottom: var(--s-16);
}
.card__title {
    margin-left: 12px;
    margin-right: 12px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--s-8);
}
.card__text {
    margin-left: 12px;
    margin-right: 12px;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}


/* ══════════════════════════════════════════════
   RECEITAS — #2D1A11 (marrom escuro)
   ══════════════════════════════════════════════ */
.recipes {
    background: var(--bark);
    padding: var(--s-96) 0 var(--s-80);
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-24);
}

@media (min-width: 993px) {
    .recipe-grid {
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: 150px;
        gap: var(--s-16);
    }
    .recipe {
        min-height: 0;
        display: flex;
        flex-direction: column;
    }
    .recipe__img {
        height: auto;
        min-height: 0;
        flex: 1;
    }
    .recipe:nth-child(1) { grid-column: 1 / span 4; grid-row: 1 / span 2; }
    .recipe:nth-child(2) { grid-column: 5 / span 5; grid-row: 1 / span 2; }
    .recipe:nth-child(3) { grid-column: 10 / span 3; grid-row: 1; }
    .recipe:nth-child(4) { grid-column: 10 / span 3; grid-row: 2; }
    .recipe:nth-child(5) { grid-column: 1 / span 3; grid-row: 3 / span 2; }
    .recipe:nth-child(6) { grid-column: 4 / span 3; grid-row: 3; }
    .recipe:nth-child(7) { grid-column: 7 / span 3; grid-row: 3 / span 2; }
    .recipe:nth-child(8) { grid-column: 10 / span 3; grid-row: 3; }
    .recipe:nth-child(9) { grid-column: 4 / span 3; grid-row: 4; }
    .recipe__info { padding: 14px 16px; }
    .recipe__info h3 { font-size: 16px; line-height: 1.2; }
    .recipe__tag { margin-bottom: 2px; font-size: 10px; }
}

.recipe {
    position: relative;
    height: 310px;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #352118;
    box-shadow: var(--sh-md);
    transition: transform var(--duration) var(--ease),
                box-shadow var(--duration) var(--ease);
}
.recipe:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--sh-xl);
}

.recipe__img {
    height: 100%;
    overflow: hidden;
}
.recipe__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.recipe:hover .recipe__img img {
    transform: scale(1.08);
}

.recipe__info {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 36px var(--s-20) var(--s-20);
    background: linear-gradient(180deg, transparent, rgba(32, 14, 8, 0.92) 86%);
}
.recipe__tag {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #F0C49B;
    display: block;
    margin-bottom: var(--s-4);
}
.recipe__info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

.more-text {
    text-align: center;
    margin-top: var(--s-40);
    font-size: 18px;
    font-style: italic;
    color: rgba(255,255,255,0.5);
}

@media (min-width: 993px) {
    .recipe {
        height: auto;
        min-height: 0;
        display: block;
    }
    .recipe__img {
        height: 100%;
        min-height: 0;
    }
    .recipe__info {
        padding: 30px 16px 14px;
    }
}


/* ══════════════════════════════════════════════
   ACESSO — caderno digital de sabores
   ══════════════════════════════════════════════ */
.how-it-works {
    position: relative;
    overflow: hidden;
    background: #F8F4EC;
    padding: 112px 0;
}
.how-it-works::before {
    content: '';
    position: absolute;
    top: -230px;
    left: -175px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(183, 94, 56, 0.13);
    border-radius: 50%;
}
.how-it-works::after {
    content: '';
    position: absolute;
    right: -120px;
    bottom: -170px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(183, 94, 56, 0.11);
    border-radius: 50%;
}
.access-library {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(48px, 7vw, 92px);
    align-items: center;
}
.access-library__visual {
    position: relative;
    min-height: 462px;
    padding: 16px 26px 32px 0;
    isolation: isolate;
}
.access-library__visual::before {
    content: '';
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 23px;
    left: 3%;
    height: 115px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(99, 49, 25, 0.28), rgba(99, 49, 25, 0.07) 52%, transparent 72%);
    filter: blur(13px);
}
.access-library__photo {
    position: relative;
    width: min(100%, 398px);
    height: 420px;
    margin-left: auto;
    overflow: hidden;
    border: 7px solid #FFFDF7;
    border-radius: 31px 48px 29px 41px;
    background: #553020;
    box-shadow: 0 25px 48px rgba(74, 38, 21, 0.27), 0 6px 14px rgba(74, 38, 21, 0.14);
    transform: rotate(2deg);
}
.access-library__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(38, 17, 8, 0.03) 26%, rgba(38, 17, 8, 0.18) 54%, rgba(31, 13, 6, 0.87) 100%);
}
.access-library__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    filter: saturate(1.04) contrast(1.03);
}
.access-library__photo-copy {
    position: absolute;
    z-index: 1;
    right: 29px;
    bottom: 27px;
    left: 29px;
    color: #FFF7EC;
}
.access-library__photo-copy span {
    display: block;
    color: #F5C79D;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.15em;
}
.access-library__photo-copy strong {
    display: block;
    margin-top: 8px;
    font-family: var(--font-serif);
    font-size: 51px;
    font-weight: 700;
    line-height: 0.74;
    letter-spacing: -0.06em;
}
.access-library__photo-copy p {
    margin-top: 12px;
    color: rgba(255,247,236,0.82);
    font-size: 11px;
    line-height: 1.3;
}
.access-library__mini {
    position: absolute;
    z-index: 2;
    bottom: 35px;
    left: -6px;
    width: 151px;
    height: 184px;
    overflow: hidden;
    border: 5px solid #FFFDF7;
    border-radius: 23px 31px 20px 28px;
    background: #5A3321;
    box-shadow: 0 16px 28px rgba(65, 35, 20, 0.25), 0 4px 9px rgba(65, 35, 20, 0.12);
    transform: rotate(-8deg);
}
.access-library__mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% 52%;
    filter: saturate(1.06) contrast(1.03);
}
.access-library__caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    color: #936F5E;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1.35;
    text-align: center;
}
.access-library__eyebrow {
    color: var(--hero-copper);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
}
.access-library__content h2 {
    max-width: 650px;
    margin-top: 12px;
    color: var(--hero-ink);
    font-size: clamp(38px, 3.35vw, 50px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.05em;
}
.access-library__lead {
    max-width: 600px;
    margin-top: 18px;
    color: #725F56;
    font-size: 17px;
    line-height: 1.7;
}
.access-library__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}
.access-card {
    position: relative;
    min-height: 158px;
    padding: 20px 20px 18px;
    overflow: hidden;
    border: 1px solid rgba(112, 74, 51, 0.12);
    border-radius: 17px;
    background: rgba(255, 253, 248, 0.8);
    box-shadow: 0 8px 18px rgba(69, 37, 20, 0.045);
}
.access-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 35px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: #C06A42;
}
.access-card__number {
    display: block;
    color: #C47A56;
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}
.access-card h3 {
    margin-top: 12px;
    color: #41281C;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.025em;
}
.access-card p {
    margin-top: 6px;
    color: #806C62;
    font-size: 12px;
    line-height: 1.45;
}


/* ══════════════════════════════════════════════
   VALOR — motivo concreto para comprar
   ══════════════════════════════════════════════ */
.value-stack {
    position: relative;
    overflow: hidden;
    background: #F3E9DC;
    padding: var(--s-96) 0;
}
.value-stack::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -130px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(183, 94, 56, 0.15);
    border-radius: 50%;
}
.value-stack__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: var(--s-64);
    align-items: center;
}
.value-stack__eyebrow {
    color: var(--hero-copper);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
}
.value-stack__intro h2 {
    margin-top: 12px;
    color: var(--hero-ink);
    font-size: clamp(34px, 3.1vw, 46px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.045em;
}
.value-stack__intro > p:not(.value-stack__eyebrow) {
    max-width: 550px;
    margin-top: var(--s-20);
    color: #725F56;
    font-size: 17px;
    line-height: 1.7;
}
.value-stack__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: var(--s-28);
    color: var(--hero-ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.value-stack__link span { color: var(--hero-copper); font-size: 18px; }
.value-stack__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-16);
}
.value-card {
    min-height: 154px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--s-24);
    border: 1px solid rgba(104, 66, 44, 0.12);
    border-radius: 20px;
    background: rgba(255,255,255,0.64);
    box-shadow: 0 12px 30px rgba(65, 38, 22, 0.06);
}
.value-card strong {
    color: var(--hero-ink);
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.03em;
}
.value-card span {
    margin-top: 9px;
    color: #79665C;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}
.value-card--highlight {
    justify-content: center;
    border-color: transparent;
    background: linear-gradient(145deg, #5B2F1E, #351A11);
}
.value-card--highlight strong {
    color: #FFF0DE;
    font-family: var(--font);
    font-size: 58px;
    font-weight: 800;
    letter-spacing: -0.06em;
}
.value-card--highlight span { color: #E9C5A1; margin-top: 2px; }


/* BÔNUS — mini e-book complementar da oferta */
.morning-bonus {
    position: relative;
    overflow: hidden;
    background: linear-gradient(118deg, #492417 0%, #6F301F 53%, #9E492B 100%);
    padding: var(--s-120) 0;
}
.morning-bonus::before,
.morning-bonus::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.morning-bonus::before {
    top: -252px;
    right: -204px;
    width: 640px;
    height: 640px;
    border: 1px solid rgba(255, 220, 177, 0.23);
}
.morning-bonus::after {
    bottom: -275px;
    left: -225px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(240, 164, 96, 0.26), rgba(240, 164, 96, 0));
}
.morning-bonus__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.94fr);
    gap: clamp(46px, 7vw, 100px);
    align-items: center;
}
.morning-bonus__copy { min-width: 0; max-width: 580px; }
.morning-bonus__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 218, 177, 0.3);
    border-radius: 100px;
    color: #FFD6AC;
    background: rgba(48, 20, 12, 0.2);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}
.morning-bonus__eyebrow span { color: #FFD38F; font-size: 13px; }
.morning-bonus__claim {
    display: inline-flex;
    margin-top: 18px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 221, 179, 0.34);
    border-radius: 100px;
    color: #592614;
    background: #FFD096;
    box-shadow: 0 8px 18px rgba(33, 12, 6, 0.17);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
}
.morning-bonus__claim span { padding: 0 6px; color: #FFE4BE; }
.morning-bonus__copy h2 {
    margin-top: 10px;
    color: #FFF7EC;
    font-size: clamp(43px, 4.35vw, 64px);
    font-weight: 700;
    line-height: 1.01;
    letter-spacing: -0.055em;
}
.morning-bonus__copy h2 em {
    color: #FFD29A;
    font-style: normal;
}
.morning-bonus__mobile-break { display: none; }
.morning-bonus__lead {
    max-width: 530px;
    margin-top: 21px;
    color: rgba(255, 239, 222, 0.8);
    font-size: 17px;
    line-height: 1.7;
}
.morning-bonus__lead strong { color: #FFF1DD; }
.morning-bonus__items {
    display: grid;
    gap: 8px;
    margin-top: 30px;
}
.morning-bonus__item {
    display: grid;
    grid-template-columns: 37px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px 15px 12px 11px;
    border: 1px solid rgba(255, 230, 198, 0.16);
    border-radius: 12px;
    background: rgba(35, 15, 9, 0.17);
}
.morning-bonus__item > span {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 50%;
    color: #6A2E1B;
    background: #F8C98F;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.morning-bonus__item strong,
.morning-bonus__item small { display: block; }
.morning-bonus__item strong {
    color: #FFF5E9;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}
.morning-bonus__item small {
    margin-top: 2px;
    color: rgba(255, 235, 215, 0.67);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.35;
}
.morning-bonus__included {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 23px;
    color: rgba(255, 239, 222, 0.82);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}
.morning-bonus__included span {
    display: grid;
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 50%;
    color: #562515;
    background: #FFD096;
    font-size: 10px;
    font-weight: 700;
}
.morning-bonus__cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 23px;
    padding: 12px 15px;
    border-radius: 8px;
    color: #572515;
    background: #FFD096;
    box-shadow: 0 10px 20px rgba(41, 16, 9, 0.18);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.morning-bonus__cta span { color: #8A3D24; font-size: 18px; transition: transform var(--duration) var(--ease); }
.morning-bonus__cta:hover span { transform: translateX(4px); }
.morning-bonus__visual {
    position: relative;
    min-height: 530px;
    isolation: isolate;
}
.morning-bonus__halo {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 454px;
    height: 454px;
    border-radius: 50%;
    border: 1px solid rgba(255, 227, 190, 0.2);
    background: radial-gradient(circle, rgba(255, 219, 165, 0.46), rgba(255, 219, 165, 0.05) 66%, transparent 67%);
    transform: translate(-50%, -50%);
}
.morning-book {
    position: absolute;
    top: 24px;
    left: 35px;
    z-index: 2;
    width: 325px;
    height: 458px;
    overflow: hidden;
    border: 9px solid #FFF8EC;
    border-radius: 9px 25px 13px 28px;
    box-shadow: 0 31px 51px rgba(30, 12, 7, 0.38), 0 6px 14px rgba(30, 12, 7, 0.22);
    transform: rotate(-5deg);
}
.morning-book::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(39, 23, 15, 0.08) 10%, rgba(37, 20, 12, 0.78) 93%);
}
.morning-book img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.morning-book figcaption {
    position: absolute;
    right: 25px;
    bottom: 26px;
    left: 25px;
    z-index: 1;
}
.morning-book figcaption span,
.morning-book figcaption strong,
.morning-book figcaption small { display: block; }
.morning-book figcaption span {
    color: #EAC6A6;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
}
.morning-book figcaption strong {
    margin-top: 9px;
    color: #FFF7EA;
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 700;
    line-height: 0.86;
    letter-spacing: -0.04em;
}
.morning-book figcaption small {
    margin-top: 14px;
    color: #EFC8A9;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
}
.morning-photo {
    position: absolute;
    z-index: 3;
    overflow: hidden;
    margin: 0;
    border: 7px solid #FFF8EC;
    border-radius: 15px 25px 17px 23px;
    background: #FFF8EC;
    box-shadow: 0 20px 34px rgba(30, 12, 7, 0.28);
}
.morning-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.morning-photo figcaption {
    position: absolute;
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 6px 7px;
    border-radius: 8px;
    color: #FFF9EF;
    background: rgba(49, 28, 18, 0.76);
    font-size: 7px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
}
.morning-photo--figs {
    top: 3px;
    right: 0;
    width: 230px;
    height: 176px;
    transform: rotate(6deg);
}
.morning-photo--drink {
    right: 15px;
    bottom: 22px;
    width: 190px;
    height: 222px;
    transform: rotate(7deg);
}
.morning-bonus__seal {
    position: absolute;
    top: 204px;
    left: -5px;
    z-index: 4;
    display: grid;
    width: 110px;
    height: 110px;
    place-content: center;
    border: 3px solid #FFF3DD;
    border-radius: 50%;
    color: #542314;
    background: #FFD096;
    box-shadow: 0 10px 20px rgba(30, 12, 7, 0.28);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.04em;
    text-align: center;
    transform: rotate(-12deg);
}
.morning-bonus__seal b { font-size: 17px; line-height: 0.95; }

.bonus-pack {
    position: relative;
    z-index: 1;
    margin-top: var(--s-96);
    padding-top: var(--s-64);
    border-top: 1px solid rgba(255, 228, 195, 0.21);
}
.bonus-pack__head {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.bonus-pack__head p {
    color: #FFD39F;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}
.bonus-pack__head p span { padding-right: 6px; color: #FFE4B8; }
.bonus-pack__head h3 {
    margin-top: 12px;
    color: #FFF8EC;
    font-size: clamp(31px, 3.2vw, 46px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.045em;
}
.bonus-pack__head > span {
    display: block;
    margin-top: 14px;
    color: rgba(255, 237, 218, 0.72);
    font-size: 14px;
    line-height: 1.5;
}
.bonus-pack__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 36px;
}
.bonus-pack__card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 231, 201, 0.17);
    border-radius: 19px;
    background: rgba(43, 17, 10, 0.28);
    box-shadow: 0 15px 28px rgba(29, 10, 5, 0.12);
}
.bonus-pack__media {
    position: relative;
    height: 172px;
    overflow: hidden;
    background: #3B170D;
}
.bonus-pack__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(42, 15, 8, 0.66) 100%);
}
.bonus-pack__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.bonus-pack__card:hover .bonus-pack__media img { transform: scale(1.06); }
.bonus-pack__media span {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    border: 2px solid rgba(255, 248, 235, 0.85);
    border-radius: 50%;
    color: #5D2817;
    background: #FFD096;
    font-size: 10px;
    font-weight: 700;
}
.bonus-pack__content { padding: 18px 17px 19px; }
.bonus-pack__content > p {
    color: #F1B67E;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
}
.bonus-pack__content h4 {
    margin-top: 9px;
    color: #FFF7EC;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -0.035em;
}
.bonus-pack__content > span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 236, 217, 0.68);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.45;
}


/* ══════════════════════════════════════════════
   OFERTA — Verde oliva degradê (impacto máximo)
   ══════════════════════════════════════════════ */
.offer {
    background: linear-gradient(160deg, var(--olive-deep) 0%, var(--olive) 60%, #4A5E3A 100%);
    padding: var(--s-120) 0;
    position: relative;
    overflow: hidden;
}
.offer__glow {
    position: absolute;
    top: -120px; right: -120px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(168,116,42,0.15), transparent 70%);
    pointer-events: none;
}

.offer-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.offer__badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: #D4B872;
    font-size: 14px;
    font-weight: 600;
    padding: var(--s-8) var(--s-24);
    border-radius: var(--r-full);
    border: 1px solid rgba(212,184,114,0.3);
    margin-bottom: var(--s-24);
    letter-spacing: 0.04em;
}

.offer__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--s-32);
}

.offer__pricing {
    margin-bottom: var(--s-32);
}
.offer__from {
    font-size: 20px;
    color: rgba(255,255,255,0.55);
    margin-bottom: var(--s-4);
}
.offer__from s { text-decoration: line-through; }
.offer__amount {
    font-size: 88px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.04em;
}
.offer__cents {
    font-size: 40px;
    font-weight: 700;
    vertical-align: super;
}

.offer__perks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--s-12) var(--s-24);
    margin-top: var(--s-32);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

.offer__seal {
    margin-top: var(--s-24);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
}


/* ══════════════════════════════════════════════
   FAQ — #F5F3EF
   ══════════════════════════════════════════════ */
.faq {
    background: var(--sand-dark);
    padding: var(--s-96) 0;
}

.faq-inner { max-width: 760px; margin: 0 auto; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--s-16);
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--bone);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color var(--duration) var(--ease),
                box-shadow var(--duration) var(--ease);
}
.faq-item:hover,
.faq-item[open] {
    border-color: var(--earth);
    box-shadow: var(--sh-sm);
}

.faq-item summary {
    padding: var(--s-20) var(--s-24);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s-16);
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

/* Toggle icon */
.faq-toggle {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background var(--duration) var(--ease),
                transform var(--duration) var(--ease);
}
.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--charcoal);
    border-radius: 2px;
    transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}
.faq-toggle::before { width: 14px; height: 2px; }
.faq-toggle::after  { width: 2px; height: 14px; }

.faq-item[open] .faq-toggle {
    background: var(--earth);
    transform: rotate(45deg);
}
.faq-item[open] .faq-toggle::before,
.faq-item[open] .faq-toggle::after { background: var(--white); }

.faq-answer {
    padding: 0 var(--s-24) var(--s-24);
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}


/* ══════════════════════════════════════════════
   FOOTER — fechamento editorial da oferta
   ══════════════════════════════════════════════ */
.footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% -120%, rgba(166, 92, 54, 0.28), transparent 46%),
        linear-gradient(155deg, #311B12, #17100D 72%);
    padding: 80px 0 28px;
}
.footer::before,
.footer::after {
    content: '';
    position: absolute;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(239, 188, 138, 0.1);
    border-radius: 50%;
}
.footer::before { top: -190px; left: -130px; }
.footer::after { right: -155px; bottom: -210px; }
.footer-inner { position: relative; z-index: 1; text-align: center; }
.footer-brand > p {
    color: #E2A16E;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
}
.footer-brand h2 {
    margin-top: 13px;
    color: #FFF8ED;
    font-family: var(--font-serif);
    font-size: clamp(38px, 3.8vw, 54px);
    font-weight: 700;
    line-height: 0.88;
    letter-spacing: -0.05em;
}
.footer-brand > span {
    display: block;
    margin-top: 14px;
    color: rgba(255, 241, 225, 0.66);
    font-size: 14px;
}
.footer-trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 920px;
    margin: 44px auto 0;
    border-top: 1px solid rgba(255, 244, 230, 0.12);
    border-bottom: 1px solid rgba(255, 244, 230, 0.12);
}
.footer-trust li {
    display: flex;
    min-width: 0;
    padding: 20px 22px;
    align-items: center;
    gap: 11px;
    text-align: left;
}
.footer-trust li + li { border-left: 1px solid rgba(255, 244, 230, 0.1); }
.footer-trust__mark {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    background: #DE9965;
    box-shadow: 0 0 0 4px rgba(222, 153, 101, 0.12);
    transform: rotate(45deg);
}
.footer-trust strong,
.footer-trust small { display: block; }
.footer-trust strong {
    color: #FFF7EC;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}
.footer-trust small {
    margin-top: 3px;
    color: rgba(255, 241, 225, 0.54);
    font-size: 10px;
    line-height: 1.25;
}
.footer-copy {
    display: flex;
    margin-top: 28px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.footer-copy p {
    color: rgba(255, 241, 225, 0.42);
    font-size: 11px;
}
.footer-copy__meta { color: rgba(255, 217, 181, 0.63) !important; }
.footer-copy__meta span { padding: 0 6px; color: #D88B5C; }


/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 992px) {
    .hero-title  { font-size: clamp(42px, 6vw, 54px); }
    .title-md    { font-size: 34px; }

    .split {
        grid-template-columns: 1fr;
        gap: var(--s-40);
        text-align: center;
    }
    .split__media { max-width: 480px; margin: 0 auto; }
    .split__media img { width: 100%; }
    .editorial-book-preview { min-height: 464px; }
    .editorial-book-spread { width: 88%; }
    .check-list { align-items: center; }

    .access-library { grid-template-columns: 1fr; gap: var(--s-56); }
    .access-library__visual { width: min(100%, 500px); margin: 0 auto; }
    .access-library__content { max-width: 680px; margin: 0 auto; text-align: center; }
    .access-library__lead { margin-right: auto; margin-left: auto; }

    .feedback-showcase__carousel { width: min(100%, 580px); }

    .value-stack__inner {
        grid-template-columns: 1fr;
        gap: var(--s-40);
    }
    .value-stack__intro { max-width: 680px; margin: 0 auto; text-align: center; }
    .value-stack__intro > p:not(.value-stack__eyebrow) { margin-right: auto; margin-left: auto; }

    .morning-bonus__inner { grid-template-columns: 1fr; gap: var(--s-48); }
    .morning-bonus__copy { max-width: 680px; margin: 0 auto; text-align: center; }
    .morning-bonus__eyebrow { justify-content: center; }
    .morning-bonus__lead { margin-right: auto; margin-left: auto; }
    .morning-bonus__items {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        max-width: 680px;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }
    .morning-bonus__item { min-height: 83px; padding: 10px 8px; border: 1px solid rgba(255, 230, 198, 0.16); border-radius: 13px; background: rgba(35, 15, 9, 0.17); }
    .morning-bonus__included { justify-content: center; }
    .morning-bonus__visual { width: min(100%, 540px); margin: 0 auto; }

    .bonus-pack { margin-top: var(--s-80); }
    .bonus-pack__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 700px; margin-right: auto; margin-left: auto; }
    .bonus-pack__media { height: 194px; }

    .card-grid, .recipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card { flex: 0 0 260px; }
}

/* Mobile */
@media (max-width: 640px) {
    .container { padding: 0 var(--s-20); }

    .offer-bar { min-height: 30px; }
    .offer-bar p { font-size: 9px; }
    .hero { padding: 25px 0 40px; }
    .hero-title {
        font-size: clamp(32px, 8.5vw, 36px);
        letter-spacing: -0.065em;
    }
    .hero-title br { display: none; }
    .hero-sub { max-width: 390px; font-size: 13px; }
    .hero-eyebrow { font-size: 8px; }
    .hero-orbit { opacity: 0.72; transform: scale(0.68); }
    .hero-orbit--left { left: -140px; top: 180px; }
    .hero-orbit--right { right: -145px; bottom: 85px; }

    .hero-product {
        width: min(100%, 450px);
        height: 340px;
        margin-top: 12px;
    }
    .product-halo { width: 320px; height: 170px; bottom: 9px; }
    .recipe-sheet {
        top: 75px;
        width: 150px;
        height: 215px;
        padding: 15px 13px 12px;
    }
    .recipe-sheet--left { left: 4%; }
    .recipe-sheet--right { right: 4%; }
    .sheet-photo { height: 57px; margin-bottom: 7px; }
    .sheet-kicker { font-size: 5px; }
    .recipe-sheet h2 { margin: 6px 0 8px; font-size: 19px; }
    .sheet-line { margin-top: 6px; }
    .sheet-band { bottom: 12px; width: 105px; height: 31px; border-width: 5px; }

    .recipe-book {
        top: 10px;
        width: 194px;
        height: 286px;
        padding: 18px 16px 12px 22px;
    }
    .book-spine { left: -10px; width: 13px; }
    .book-kicker { font-size: 6px; }
    .book-mark { right: 18px; width: 11px; height: 31px; }
    .book-mark::after { bottom: -6px; border-width: 6px 5.5px 0; }
    .recipe-book h2 { margin-top: 34px; font-size: 30px; }
    .book-rule { margin: 17px 0 9px; }
    .recipe-book p { font-size: 11px; }
    .book-footer { bottom: 14px; left: 22px; }

    .recipe-phone {
        right: 9%;
        bottom: 5px;
        width: 86px;
        height: 157px;
        padding: 7px 4px 12px;
        border-width: 3px;
        border-radius: 10px;
    }
    .phone-camera { top: 2px; width: 22px; height: 3px; }
    .phone-screen { padding: 10px 6px 5px; }
    .phone-divider { margin: 5px 0 10px; }
    .phone-screen strong { font-size: 13px; }
    .phone-copy { margin-top: 6px; }
    .phone-copy--long { margin-top: 9px; }
    .phone-photo { height: 39px; margin-top: 10px; }
    .phone-home { bottom: 3px; width: 18px; height: 2px; }

    .hero-collage {
        width: min(100%, 450px);
        height: 342px;
        margin-top: 16px;
    }
    .collage-glow { width: 315px; height: 122px; bottom: 3px; }
    .recipe-photo--flatbread {
        top: 13px;
        left: 7%;
        width: 118px;
        height: 96px;
    }
    .recipe-photo--bread {
        top: 160px;
        left: 0;
        width: 112px;
        height: 108px;
    }
    .recipe-photo--drinks {
        top: 11px;
        right: 7%;
        width: 111px;
        height: 106px;
    }
    .recipe-photo--stew {
        top: 167px;
        right: 0;
        width: 132px;
        height: 119px;
    }
    .recipe-photo--figs {
        bottom: 9px;
        left: 13%;
        width: 111px;
        height: 98px;
    }
    .recipe-photo--feature {
        top: 38px;
        width: 193px;
        height: 240px;
        border-width: 4px;
    }
    .recipe-photo:not(.recipe-photo--feature) .photo-footer { display: none; }
    .photo-feature-copy { right: 15px; bottom: 14px; left: 15px; }
    .photo-feature-copy span { font-size: 6px; }
    .photo-feature-copy strong { margin-top: 5px; font-size: 24px; }
    .collage-badge {
        top: 14px;
        left: calc(50% + 66px);
        width: 59px;
        height: 59px;
    }
    .collage-badge strong { font-size: 21px; }
    .collage-badge span { font-size: 6px; }

    .hero-collage {
        width: min(100%, 520px);
        height: 395px;
    }
    .recipe-photo--tabbouleh {
        top: 10px;
        left: 2%;
        width: 105px;
        height: 70px;
    }
    .recipe-photo--baked-eggs {
        top: 0;
        left: 28%;
        width: 85px;
        height: 112px;
    }
    .recipe-photo--falafel {
        top: 105px;
        left: 0;
        width: 98px;
        height: 137px;
    }
    .recipe-photo--hummus-chickpeas {
        bottom: 35px;
        left: 10%;
        width: 119px;
        height: 89px;
    }
    .recipe-photo--hummus {
        top: 245px;
        left: 29%;
        width: 92px;
        height: 72px;
    }
    .recipe-photo--hamantaschen {
        top: 8px;
        right: 3%;
        width: 97px;
        height: 97px;
    }
    .recipe-photo--wrap {
        top: 100px;
        right: 0;
        width: 126px;
        height: 91px;
    }
    .recipe-photo--shakshuka {
        top: 233px;
        right: 6%;
        width: 104px;
        height: 104px;
    }
    .recipe-photo--feature {
        top: 31px;
        width: 240px;
        height: 310px;
        border-width: 4px;
    }
    .photo-feature-copy { right: 18px; bottom: 19px; left: 18px; }
    .photo-feature-copy strong { font-size: 27px; }
    .collage-badge {
        top: 12px;
        left: calc(50% + 81px);
        width: 66px;
        height: 66px;
    }
    .collage-caption { bottom: 5px; font-size: 8px; }

    .split__media { max-width: 100%; }
    .split__media img { width: 100%; }
    .editorial-book-preview { min-height: 380px; }
    .editorial-book-spread {
        width: 100%;
        height: 335px;
        margin-top: 0;
        border-width: 5px;
        border-radius: 20px 28px 22px 26px;
    }
    .editorial-book-spread::after { top: -5px; bottom: -5px; width: 9px; }
    .editorial-page { padding: 13px 11px 16px; }
    .editorial-recipe-photo { height: 104px; border-radius: 10px 14px 11px 13px; }
    .editorial-page__kicker { margin-top: 9px; font-size: 7px; }
    .editorial-page h3 { font-size: 24px; }
    .editorial-page__copy { margin-top: 7px; font-size: 9px; }
    .editorial-page__details,
    .editorial-page__steps { padding-top: 8px; }
    .editorial-page__details strong { font-size: 12px; }
    .editorial-page__steps li { font-size: 7px; }
    .editorial-page__number { right: 11px; bottom: 6px; font-size: 9px; }
    .editorial-snap--tabbouleh { top: -7px; left: -8px; width: 91px; height: 64px; }
    .editorial-snap--falafel { right: -8px; bottom: 22px; width: 95px; height: 115px; }
    .editorial-preview__caption { bottom: 1px; font-size: 6px; }

    .access-library__visual { min-height: 398px; padding: 8px 20px 30px 0; }
    .access-library__photo {
        width: calc(100% - 34px);
        height: 365px;
        border-width: 5px;
        border-radius: 26px 38px 25px 33px;
    }
    .access-library__photo-copy { right: 21px; bottom: 20px; left: 21px; }
    .access-library__photo-copy strong { font-size: 45px; }
    .access-library__photo-copy p { margin-top: 10px; font-size: 10px; }
    .access-library__mini { bottom: 30px; left: -2px; width: 112px; height: 137px; border-width: 4px; }
    .access-library__caption { font-size: 6px; }
    .access-library__content h2 { font-size: 32px; }
    .access-library__lead { margin-top: 14px; font-size: 16px; }
    .access-library__cards { gap: 10px; margin-top: 24px; }
    .access-card { min-height: 142px; padding: 16px 15px; border-radius: 14px; }
    .access-card::before { left: 15px; width: 29px; }
    .access-card__number { font-size: 21px; }
    .access-card h3 { margin-top: 9px; font-size: 14px; }
    .access-card p { font-size: 11px; }

    .feedback-showcase { padding: var(--s-64) 0; }
    .feedback-showcase__eyebrow { font-size: 9px; }
    .feedback-showcase__head h2 { margin-top: 12px; font-size: 34px; }
    .feedback-showcase__head > p:last-child { margin-top: 14px; font-size: 15px; }
    .feedback-showcase__carousel { width: min(100%, 310px); margin-top: 32px; padding: 0; }
    .feedback-phone { width: 310px; min-height: 536px; border-width: 8px; border-radius: 27px; }
    .feedback-phone__chat { min-height: 411px; padding: 12px 9px; gap: 7px; }
    .feedback-bubble { padding: 7px 8px 6px; font-size: 9px; }
    .feedback-nav { top: 55%; width: 42px; height: 42px; }
    .feedback-nav--prev { left: -40px; }
    .feedback-nav--next { right: -40px; outline-offset: 3px; }
    .feedback-nav span { font-size: 18px; }
    .feedback-dots { margin-top: 2px; }
    .feedback-dots button { width: 8px; height: 8px; }
    .feedback-dots button.active { width: 22px; }
    .hero .price-value { font-size: 30px; }
    .hero .price-anchor { flex-direction: row; gap: 8px; }

    .benefits, .content, .recipes, .how-it-works, .value-stack, .faq {
        padding: var(--s-64) 0;
    }

    .title-md   { font-size: 28px; }
    .subtitle-sm { font-size: 18px; }

    .card-grid, .recipe-grid {
        grid-template-columns: 1fr;
    }

    .card { flex: 0 0 260px; }
    .card__media { height: 138px; }
    .section-lead { font-size: 15px; }

    .value-stack__intro h2 { font-size: 32px; }
    .value-stack__intro > p:not(.value-stack__eyebrow) { font-size: 16px; }
    .value-stack__grid { gap: 10px; }
    .value-card { min-height: 138px; padding: 18px; border-radius: 16px; }
    .value-card strong { font-size: 22px; }
    .value-card--highlight strong { font-size: 48px; }

    .morning-bonus { padding: var(--s-64) 0; }
    .morning-bonus__inner { gap: 30px; }
    .morning-bonus__copy { width: min(100%, 350px); max-width: 350px; }
    .morning-bonus__eyebrow { font-size: 9px; letter-spacing: 0.1em; }
    .morning-bonus__eyebrow span { font-size: 12px; }
    .morning-bonus__claim { margin-top: 15px; padding: 8px 11px; font-size: 9px; }
    .morning-bonus__copy h2 { max-width: 100%; margin-top: 12px; font-size: 34px; overflow-wrap: anywhere; }
    .morning-bonus__mobile-break { display: inline; }
    .morning-bonus__lead { max-width: 100%; margin-top: 16px; font-size: 15px; overflow-wrap: anywhere; }
    .morning-bonus__items { grid-template-columns: 1fr; gap: 0; margin-top: 24px; }
    .morning-bonus__item { min-height: 0; padding: 11px 4px; border: 0; border-bottom: 1px solid rgba(255, 230, 198, 0.18); border-radius: 0; background: transparent; }
    .morning-bonus__item strong { font-size: 13px; }
    .morning-bonus__item small { font-size: 10px; }
    .morning-bonus__included { margin-top: 19px; justify-content: flex-start; text-align: left; font-size: 11px; }
    .morning-bonus__cta { margin-top: 19px; font-size: 10px; }
    .morning-bonus__visual { order: -1; width: min(100%, 350px); min-height: 407px; }
    .morning-bonus__halo { width: 304px; height: 304px; }
    .morning-book { top: 29px; left: 17px; width: 233px; height: 330px; border-width: 6px; border-radius: 8px 21px 11px 24px; }
    .morning-book figcaption { right: 17px; bottom: 17px; left: 17px; }
    .morning-book figcaption span { font-size: 6px; }
    .morning-book figcaption strong { margin-top: 7px; font-size: 29px; }
    .morning-book figcaption small { margin-top: 11px; font-size: 6px; }
    .morning-photo { border-width: 4px; border-radius: 11px 18px 13px 19px; }
    .morning-photo figcaption { right: 5px; bottom: 5px; left: 5px; padding: 4px 5px; border-radius: 5px; font-size: 5px; }
    .morning-photo--figs { top: 4px; right: 1px; width: 138px; height: 106px; }
    .morning-photo--drink { right: 7px; bottom: 14px; width: 126px; height: 149px; }
    .morning-bonus__seal { top: 165px; left: -3px; width: 76px; height: 76px; border-width: 2px; font-size: 7px; }
    .morning-bonus__seal b { font-size: 12px; }

    .bonus-pack { margin-top: var(--s-56); padding-top: var(--s-48); }
    .bonus-pack__head { max-width: 340px; }
    .bonus-pack__head p { font-size: 8px; }
    .bonus-pack__head h3 { margin-top: 10px; font-size: 29px; }
    .bonus-pack__head > span { margin-top: 10px; font-size: 12px; }
    .bonus-pack__grid { grid-template-columns: 1fr; gap: 12px; width: min(100%, 340px); margin-top: 26px; }
    .bonus-pack__card { display: grid; grid-template-columns: 116px 1fr; min-height: 132px; border-radius: 15px; }
    .bonus-pack__media { height: 100%; min-height: 132px; }
    .bonus-pack__media span { top: 8px; left: 8px; width: 29px; height: 29px; border-width: 1px; font-size: 8px; }
    .bonus-pack__content { padding: 15px 13px; }
    .bonus-pack__content > p { font-size: 7px; }
    .bonus-pack__content h4 { margin-top: 7px; font-size: 16px; }
    .bonus-pack__content > span { margin-top: 7px; font-size: 10px; line-height: 1.35; }

    .btn--xl {
        width: 100%;
        max-width: 100%;
    }

    .offer { padding: var(--s-80) 0; }
    .offer__amount { font-size: 64px; }
    .offer__cents  { font-size: 28px; }
    .offer__title  { font-size: 28px; }
    .offer__perks  { flex-direction: column; align-items: center; gap: var(--s-8); }

    .footer { padding: 64px 0 24px; }
    .footer-brand h2 { font-size: 40px; }
    .footer-brand > span { font-size: 13px; }
    .footer-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 34px; }
    .footer-trust li { padding: 16px 12px; gap: 9px; }
    .footer-trust li:nth-child(odd) { border-left: 0; }
    .footer-trust li:nth-child(n + 3) { border-top: 1px solid rgba(255, 244, 230, 0.1); }
    .footer-trust strong { font-size: 11px; }
    .footer-trust small { font-size: 9px; }
    .footer-copy { margin-top: 22px; flex-direction: column; gap: 7px; }
    .footer-copy p { font-size: 10px; }
}

@media (max-width: 420px) {
    .hero-collage { height: 360px; }
    .recipe-photo--bread { display: none; }
    .recipe-photo--flatbread { left: 2%; }
    .recipe-photo--drinks { right: 2%; }
    .recipe-photo--stew { right: -2%; }
    .recipe-photo--figs { left: 6%; }
    .recipe-photo--baked-eggs,
    .recipe-photo--hummus { display: none; }
    .recipe-photo--tabbouleh { left: -1%; width: 88px; height: 59px; }
    .recipe-photo--falafel { top: 112px; left: 0; width: 92px; height: 128px; }
    .recipe-photo--hummus-chickpeas { bottom: 31px; left: 7%; width: 105px; height: 79px; }
    .recipe-photo--hamantaschen { right: 1%; width: 84px; height: 84px; }
    .recipe-photo--wrap { top: 108px; right: 0; width: 109px; height: 79px; }
    .recipe-photo--shakshuka { top: 226px; right: 5%; width: 94px; height: 94px; }
    .recipe-photo--feature { top: 32px; width: 215px; height: 280px; }
    .photo-feature-copy strong { font-size: 25px; }
    .collage-badge { top: 13px; left: calc(50% + 69px); width: 58px; height: 58px; }
    .collage-caption { bottom: 5px; }

    .editorial-book-preview { min-height: 344px; }
    .editorial-book-spread { height: 305px; }
    .editorial-recipe-photo { height: 86px; }
    .editorial-page h3 { font-size: 21px; }
    .editorial-page__copy { display: none; }
    .editorial-page__details { margin-top: 9px; }
    .editorial-page__details strong { font-size: 11px; }
    .editorial-page__steps { margin-top: 9px; }
    .editorial-snap--tabbouleh { display: none; }
    .editorial-snap--falafel { right: -5px; bottom: 17px; width: 83px; height: 102px; }

    .access-library__visual { min-height: 355px; padding-right: 12px; }
    .access-library__photo { width: calc(100% - 20px); height: 329px; }
    .access-library__photo-copy { right: 18px; bottom: 17px; left: 18px; }
    .access-library__photo-copy span { font-size: 7px; }
    .access-library__photo-copy strong { font-size: 40px; }
    .access-library__mini { bottom: 25px; left: -2px; width: 93px; height: 113px; }
    .access-library__caption { font-size: 5px; }
    .access-library__content h2 { font-size: 30px; }
    .access-card { min-height: 146px; padding: 15px 13px; }
    .access-card::before { left: 13px; }

    .feedback-showcase__head h2 { font-size: 31px; }
    .feedback-showcase__head > p:last-child { font-size: 14px; }
    .feedback-showcase__carousel { width: min(100%, 270px); }
    .feedback-phone { width: 270px; min-height: 520px; }
    .feedback-phone__status { height: 23px; }
    .feedback-phone__contact { height: 51px; }
    .feedback-phone__chat { min-height: 396px; }
    .feedback-phone__input { height: 47px; }
    .feedback-bubble { font-size: 8.5px; }
    .feedback-nav--prev { left: -38px; }
    .feedback-nav--next { right: -38px; }

    .morning-bonus__copy h2 { font-size: 31px; }
    .morning-bonus__visual { width: min(100%, 302px); min-height: 370px; }
    .morning-bonus__halo { width: 270px; height: 270px; }
    .morning-book { top: 29px; left: 11px; width: 204px; height: 288px; }
    .morning-book figcaption strong { font-size: 25px; }
    .morning-photo--figs { width: 116px; height: 88px; }
    .morning-photo--drink { right: 3px; width: 112px; height: 133px; }
    .morning-bonus__seal { top: 147px; width: 68px; height: 68px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
    .has-js .reveal,
    .has-js .reveal-left,
    .has-js .reveal-right,
    .has-js .reveal-up {
        opacity: 1;
        transform: none;
    }
}
