/* ============================================================
   VIDA SEM AÇÚCAR — Página 1 (Sales page v2)
   Estética quente, culinária, creme/bege — alinhada ao Instagram
   Yeseva One (display) · Caveat (acento) · Poppins (UI)
   Mobile-first
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&family=Caveat:wght@600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Proteção de conteúdo: bloqueia seleção de texto e long-press no mobile */
html, body {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* Proteção de conteúdo: bloqueia o "arrastar" de imagens */
img {
  -webkit-user-drag: none;
  user-drag: none;
}

:root {
  --bg:        #FFF8EF;
  --bg-2:      #FAF3E7;
  --card:      #F6E6D2;
  --card-2:    #F4DDC2;
  --cream:     #FFFDF8;
  --white:     #FFFFFF;
  --ink:       #3A2418;   /* marrom forte */
  --ink-2:     #6B442E;   /* marrom médio */
  --ink-soft:  #8A6B54;
  --caramel:   #B9783F;
  --caramel-d: #9C5F2C;
  --orange:    #D98C5F;
  --olive:     #7B8A58;
  --olive-soft:#EDEFE1;
  --rose:      #C98A72;
  --line:      #ECDCC4;
  --line-2:    #E3CFB2;
  --shadow-sm: 0 4px 18px rgba(90,55,28,0.08);
  --shadow-md: 0 14px 40px rgba(90,55,28,0.14);
  --shadow-lg: 0 26px 60px rgba(90,55,28,0.20);
  --maxw: 1140px;
  --wrapx: 22px;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,h2,h3,h4,p,ul,ol,figure,blockquote { margin: 0; padding: 0; }
ul,ol { list-style: none; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.serif { font-family: 'Yeseva One', Georgia, serif; font-weight: 400; }
.hand  { font-family: 'Caveat', cursive; font-weight: 700; }
.wrap  { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--wrapx); }

/* Center the whole page like a wide sheet; on desktop keep it airy */
.stage { min-height: 100vh; }

/* ── Kicker / eyebrow ─────────────────────────── */
.kicker { font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--caramel); }
.kicker.olive { color: var(--olive); }
.section-title { font-family: 'Yeseva One', serif; color: var(--ink); letter-spacing: -0.01em; line-height: 1.08; }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 17px; line-height: 1.1; text-align: center;
  padding: 18px 26px; border-radius: 16px; width: 100%;
  transition: transform .14s ease, box-shadow .14s ease, background .18s;
}
.btn svg { flex-shrink: 0; }
.btn-primary { background: var(--caramel); color: #fff; box-shadow: 0 8px 0 var(--caramel-d), var(--shadow-sm); }
.btn-primary:hover { transform: translateY(3px); box-shadow: 0 5px 0 var(--caramel-d), var(--shadow-sm); }
.btn-primary:active { transform: translateY(8px); box-shadow: 0 0 0 var(--caramel-d); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--line-2); box-shadow: none; }
.btn-ghost:hover { background: var(--card); border-color: var(--caramel); }
.hero-ctas .btn-ghost { border-width: 1px; border-color: var(--line); font-weight: 600; }
.btn-cream { background: var(--cream); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-cream:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

@media (min-width: 620px) {
  .btn { width: auto; }
}

.pulse { position: relative; }
.pulse::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(185,120,63,0.5); animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(185,120,63,0.45);} 70%{box-shadow:0 0 0 16px rgba(185,120,63,0);} 100%{box-shadow:0 0 0 0 rgba(185,120,63,0);} }
@media (prefers-reduced-motion: reduce){ .pulse::after{ animation: none; } }

/* ── Chips / selos ────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-size: 12.5px; font-weight: 700; padding: 8px 13px; border-radius: 999px;
}
.chip-olive { background: var(--olive-soft); color: var(--olive); }
.chip-cream { background: var(--cream); color: var(--ink-2); box-shadow: var(--shadow-sm); }
.chip-caramel { background: var(--caramel); color: #fff; }
.chip-dark { background: var(--ink); color: var(--cream); }

/* ══════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 300;
  background: rgba(255,248,239,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 14px; padding: 12px var(--wrapx); max-width: var(--maxw); margin: 0 auto; }
.hbrand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.hbrand .mark { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; border: 2px solid var(--caramel); flex-shrink: 0; }
.hbrand .mark img { width: 100%; height: 100%; object-fit: cover; }
.hbrand .txt .nm { font-family: 'Yeseva One', serif; font-size: 18px; color: var(--ink); line-height: 1; }
.hbrand .txt .sub { font-size: 9.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--caramel); margin-top: 3px; }

.hnav { display: none; align-items: center; gap: 22px; }
.hnav a { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.hnav a:hover { color: var(--caramel); }

/* country selector */
.country { position: relative; }
.country-btn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border-radius: 999px; border: 1.5px solid var(--line-2); background: var(--cream); font-size: 13px; font-weight: 700; color: var(--ink); }
.country-btn .flag { font-size: 15px; line-height: 1; }
.country-btn .chev { width: 14px; height: 14px; opacity: 0.6; transition: transform .2s; }
.country.open .country-btn .chev { transform: rotate(180deg); }
.country-menu { position: absolute; right: 0; top: calc(100% + 8px); background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md); overflow: hidden; min-width: 190px; display: none; }
.country.open .country-menu { display: block; }
.country-menu button { display: flex; align-items: center; gap: 10px; width: 100%; padding: 12px 15px; font-size: 13.5px; font-weight: 600; color: var(--ink); text-align: left; }
.country-menu button:hover { background: var(--bg-2); }
.country-menu button .flag { font-size: 16px; }
.country-menu button .cur { margin-left: auto; font-size: 12px; color: var(--ink-soft); font-weight: 700; }

.hcta { display: none; }
@media (min-width: 900px) {
  .hnav { display: flex; }
  .hcta { display: inline-flex; padding: 11px 20px; border-radius: 12px; background: var(--caramel); color: #fff; font-size: 14px; font-weight: 700; box-shadow: 0 4px 0 var(--caramel-d); }
  .hcta:hover { transform: translateY(2px); box-shadow: 0 2px 0 var(--caramel-d); }
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero { position: relative; overflow: hidden; padding: 34px 0 46px; background:
  radial-gradient(120% 80% at 85% 0%, rgba(217,140,95,0.14), transparent 55%),
  radial-gradient(90% 60% at 10% 100%, rgba(123,138,88,0.10), transparent 60%),
  var(--bg); }
.hero-grid { display: grid; gap: 34px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.hero h1 { font-family: 'Yeseva One', serif; font-size: clamp(33px, 8.4vw, 58px); line-height: 1.04; color: var(--ink); letter-spacing: -0.015em; margin-top: 16px; text-wrap: balance; }
.hero h1 .hl { color: var(--caramel); }
.hero h1 .scribble { font-family: 'Caveat', cursive; font-weight: 700; color: var(--orange); font-size: 1.28em; display: inline-block; transform: rotate(-3deg); line-height: 0.7; }
.hero .lede { font-size: 17.5px; line-height: 1.6; color: var(--ink-2); margin-top: 18px; max-width: 540px; }
.hero .lede b { color: var(--ink); font-weight: 700; }

.hero-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; max-width: 460px; }
.hero-selos { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }

/* hero collage of instagram recipe cards */
.hero-media { position: relative; margin-top: 6px; }
.collage { position: relative; height: clamp(360px, 92vw, 520px); max-width: 520px; margin: 0 auto; }
.collage figure { position: absolute; margin: 0; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid #fff; }
.collage figure img { width: 100%; height: 100%; object-fit: cover; }
.collage .c1 { width: 60%; aspect-ratio: 4/5; left: 0; top: 6%; transform: rotate(-5deg); z-index: 2; }
.collage .c2 { width: 55%; aspect-ratio: 4/5; right: 0; top: 0; transform: rotate(4deg); z-index: 1; }
.collage .c3 { width: 52%; aspect-ratio: 4/5; left: 20%; bottom: 0; transform: rotate(-1deg); z-index: 3; }
.collage .float-badge {
  position: absolute; z-index: 4; right: 2%; bottom: 12%;
  background: var(--cream); border-radius: 16px; padding: 11px 15px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px; transform: rotate(3deg);
}
.collage .float-badge .st { color: var(--caramel); font-size: 14px; letter-spacing: 1px; }
.collage .float-badge .n { font-size: 12.5px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.collage .float-badge .s { font-size: 10.5px; color: var(--ink-soft); }

@media (min-width: 860px) {
  .hero { padding: 56px 0 68px; }
  .hero-grid { grid-template-columns: 1.02fr 0.98fr; align-items: center; }
  .hero-ctas { flex-direction: row; }
  .collage { height: 540px; max-width: none; }
}

/* ══════════════════════════════════════════════
   Generic section
   ══════════════════════════════════════════════ */
.section { padding: 52px 0; }
.section.tight { padding: 40px 0; }
.section-cream { background: var(--cream); }
.section-bg2 { background: var(--bg-2); }
.section-ink { background: var(--ink); color: var(--cream); }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.sec-head h2 { font-family: 'Yeseva One', serif; font-size: clamp(27px, 6vw, 40px); line-height: 1.08; letter-spacing: -0.012em; margin-top: 12px; color: var(--ink); text-wrap: balance; }
.section-ink .sec-head h2 { color: var(--cream); }
.sec-head .scribble { font-family: 'Caveat', cursive; color: var(--caramel); font-size: 1.28em; display: inline-block; transform: rotate(-2deg); line-height: 0.7; }
.section-ink .sec-head .scribble { color: var(--card-2); }
.sec-head p { font-size: 15.5px; color: var(--ink-2); margin-top: 14px; line-height: 1.6; }
.section-ink .sec-head p { color: rgba(255,253,248,0.78); }

/* ── Checklist (para você se…) ────────────────── */
.checklist { display: grid; gap: 13px; max-width: 620px; margin: 0 auto; }
.check-item { display: flex; gap: 15px; align-items: flex-start; background: var(--card); border: 1px solid var(--line-2); border-radius: 16px; padding: 17px 18px; box-shadow: 0 3px 0 var(--line-2); }
.check-item .tick { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 9px; background: var(--olive); color: #fff; display: grid; place-items: center; }
.check-item p { font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.check-cta { text-align: center; margin-top: 26px; }
.check-cta .hand { font-size: 26px; color: var(--caramel); display: inline-block; transform: rotate(-1.5deg); }

/* ── Categorias grid ──────────────────────────── */
.cats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.cat {
  position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 1/1;
  display: flex; align-items: flex-end; padding: 14px; color: #fff;
  box-shadow: var(--shadow-sm);
}
.cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cat .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(58,36,24,0) 38%, rgba(58,36,24,0.82) 100%); }
.cat .nm { position: relative; z-index: 1; font-family: 'Yeseva One', serif; font-size: 16px; line-height: 1.15; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.cat.solid { background: linear-gradient(150deg, var(--caramel), var(--orange)); align-items: center; justify-content: center; text-align: center; }
.cat.solid .em { position: relative; z-index: 1; font-size: 34px; }
.cat.solid .nm { position: absolute; bottom: 14px; left: 14px; right: 14px; }
@media (min-width: 680px) { .cats { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 940px) { .cats { grid-template-columns: repeat(3, 1fr); } .cat .nm { font-size: 18px; } }

/* ── Categorias — versão textual (sem foto), estilo cards premium ── */
.cats-text { display: grid; grid-template-columns: 1fr; gap: 14px; }
.cat-text {
  background: var(--cream); border: 1px solid var(--line-2); border-radius: 16px;
  padding: 18px; display: flex; gap: 14px; align-items: flex-start;
  box-shadow: 0 3px 0 var(--line-2);
}
.cat-text .ic {
  flex: 0 0 34px; width: 34px; height: 34px; border-radius: 10px;
  background: var(--olive); color: #fff; display: grid; place-items: center; margin-top: 1px;
}
.cat-text h3 { font-family: 'Yeseva One', serif; font-size: 17px; color: var(--ink); line-height: 1.2; }
.cat-text p { font-size: 13.5px; color: var(--ink-2); margin-top: 5px; line-height: 1.5; }
@media (min-width: 640px) { .cats-text { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 1000px) { .cats-text { grid-template-columns: repeat(4, 1fr); } }

/* ── Receitas exemplo (instagram cards) ───────── */
.recipes { display: grid; grid-template-columns: 1fr; gap: 22px; }
.recipe-card { background: var(--cream); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.recipe-card .pic { position: relative; }
.recipe-card .pic img { width: 100%; height: auto; display: block; }
.recipe-card .selo { position: absolute; top: 14px; left: 14px; }
.recipe-card .cap { padding: 16px 18px 20px; }
.recipe-card .cap h3 { font-family: 'Yeseva One', serif; font-size: 20px; color: var(--ink); line-height: 1.18; }
.recipe-card .cap .desc { font-size: 13.5px; color: var(--ink-soft); margin-top: 7px; font-style: italic; line-height: 1.45; }
.recipe-card .cap .tags { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
@media (min-width: 720px) { .recipes { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1020px) { .recipes { grid-template-columns: repeat(3, 1fr); } }
.recipes-cta { text-align: center; margin-top: 30px; }

/* ── Prova social ─────────────────────────────── */
.social-top { text-align: center; }
.avatars { display: inline-flex; margin: 0 auto; }
.avatars img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 3px solid var(--bg); margin-left: -12px; box-shadow: var(--shadow-sm); }
.avatars img:first-child { margin-left: 0; }
.social-num { font-family: 'Yeseva One', serif; font-size: clamp(26px, 6vw, 36px); color: var(--ink); margin-top: 16px; line-height: 1.1; }
.social-num b { color: var(--caramel); }
.social-stars { color: var(--caramel); font-size: 20px; letter-spacing: 2px; margin-top: 8px; }
.social-sub { font-size: 14px; color: var(--ink-2); margin-top: 6px; }

.testis { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 34px; }
.testi { background: var(--card); border: 1px solid var(--line-2); border-radius: 20px; padding: 22px; box-shadow: 0 4px 0 var(--line-2); }
.testi .qs { color: var(--caramel); font-size: 15px; letter-spacing: 1px; }
.testi blockquote { font-size: 15.5px; color: var(--ink); line-height: 1.55; margin-top: 12px; font-weight: 500; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding-top: 15px; border-top: 1px dashed var(--line-2); }
.testi .who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi .who .nm { font-size: 14px; font-weight: 800; color: var(--ink); }
.testi .who .rl { font-size: 12px; color: var(--ink-soft); }
.testi .who .vf { margin-left: auto; }
@media (min-width: 760px) { .testis { grid-template-columns: repeat(3, 1fr); } }

/* ── Diferenciais ─────────────────────────────── */
.diffs { display: grid; grid-template-columns: 1fr; gap: 14px; }
.diff { background: var(--cream); border: 1px solid var(--line); border-radius: 18px; padding: 22px; display: flex; gap: 16px; align-items: flex-start; box-shadow: var(--shadow-sm); }
.diff .ic { flex: 0 0 52px; width: 52px; height: 52px; border-radius: 14px; background: var(--card); display: grid; place-items: center; font-size: 26px; }
.diff h3 { font-family: 'Yeseva One', serif; font-size: 19px; color: var(--ink); line-height: 1.15; }
.diff p { font-size: 14px; color: var(--ink-2); margin-top: 6px; line-height: 1.5; }
@media (min-width: 760px) { .diffs { grid-template-columns: repeat(2, 1fr); gap: 18px; } }

/* ── Produto (o que você recebe) ──────────────── */
.produto-grid { display: grid; grid-template-columns: 1fr; gap: 34px; align-items: center; }
.produto-media { position: relative; text-align: center; }
.produto-media img { width: 100%; max-width: 440px; margin: 0 auto; filter: drop-shadow(0 26px 40px rgba(0,0,0,0.28)); }
.produto-media .tag { position: absolute; top: 6%; left: 4%; background: var(--olive); color: #fff; font-size: 12px; font-weight: 800; padding: 8px 14px; border-radius: 999px; transform: rotate(-7deg); box-shadow: var(--shadow-md); letter-spacing: 0.3px; }
.receive { display: grid; gap: 12px; }
.receive li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; color: var(--cream); font-weight: 500; }
.receive li .ck { flex: 0 0 26px; width: 26px; height: 26px; border-radius: 8px; background: var(--caramel); color: #fff; display: grid; place-items: center; margin-top: 1px; }
.receive li b { color: #fff; font-weight: 700; }
@media (min-width: 900px) { .produto-grid { grid-template-columns: 0.95fr 1.05fr; gap: 44px; } .produto-media { order: 2; } }

/* ── Bônus ────────────────────────────────────── */
.bonus-list { display: grid; grid-template-columns: 1fr; gap: 12px; max-width: 720px; margin: 0 auto; }
.bonus { display: flex; gap: 15px; align-items: center; background: var(--cream); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; box-shadow: var(--shadow-sm); }
.bonus .em { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px; background: var(--card); display: grid; place-items: center; font-size: 24px; }
.bonus .info { flex: 1; }
.bonus .info .t { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.bonus .info .d { font-size: 12.5px; color: var(--ink-soft); margin-top: 3px; line-height: 1.4; }
.bonus .val { flex: 0 0 auto; text-align: right; }
.bonus .val .old { font-size: 12px; color: var(--ink-soft); text-decoration: line-through; }
.bonus .val .free { display: inline-block; margin-top: 4px; background: var(--olive); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 0.06em; padding: 4px 9px; border-radius: 999px; }
.bonus-total { text-align: center; margin-top: 22px; font-size: 14px; color: var(--ink-2); }
.bonus-total b { color: var(--caramel); }

/* ── Oferta ───────────────────────────────────── */
.offer-card {
  max-width: 520px; margin: 0 auto; background: var(--cream);
  border: 3px dashed var(--line-2); border-radius: 26px; padding: 42px 26px 30px;
  text-align: center; position: relative; box-shadow: var(--shadow-md);
}
.offer-tab { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); background: var(--ink); color: var(--card-2); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; padding: 10px 22px; border-radius: 999px; white-space: nowrap; box-shadow: var(--shadow-md); }
.offer-card .intro { font-size: 15px; color: var(--ink-2); }
.offer-card .from { font-size: 15px; color: var(--ink-soft); margin-top: 10px; }
.offer-card .from s { opacity: 0.8; }
.price { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-top: 4px; color: var(--ink); }
.price .cur { font-family: 'Yeseva One', serif; font-size: 26px; }
.price .int { font-family: 'Yeseva One', serif; font-size: 80px; line-height: 0.95; letter-spacing: -0.03em; }
.price .cents { font-family: 'Yeseva One', serif; font-size: 30px; }
.offer-card .install { font-size: 14px; color: var(--ink-2); margin-top: 6px; }
.offer-card .install b { color: var(--ink); }
.offer-card .perday { font-family: 'Caveat', cursive; font-weight: 700; font-size: 22px; color: var(--caramel); margin-top: 8px; transform: rotate(-1.5deg); }
.offer-card .btn { margin-top: 22px; }
.offer-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px; margin-top: 18px; }
.offer-trust span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink-soft); font-weight: 600; }
.offer-pay { width: 210px; margin: 16px auto 0; opacity: 0.9; }

/* ── Garantia ─────────────────────────────────── */
.guarantee { max-width: 620px; margin: 26px auto 0; background: var(--card); border: 1px solid var(--line-2); border-radius: 20px; padding: 24px; display: flex; gap: 18px; align-items: center; box-shadow: var(--shadow-sm); }
.guarantee .shield { flex: 0 0 64px; width: 64px; height: 64px; border-radius: 50%; background: var(--olive); color: #fff; display: grid; place-items: center; }
.guarantee h3 { font-family: 'Yeseva One', serif; font-size: 22px; color: var(--ink); line-height: 1.05; }
.guarantee p { font-size: 14px; color: var(--ink-2); margin-top: 6px; line-height: 1.5; }

/* ── FAQ ──────────────────────────────────────── */
.faq { max-width: 720px; margin: 0 auto; }
.faq details { background: var(--cream); border: 1px solid var(--line); border-radius: 16px; margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 20px; display: flex; align-items: center; gap: 14px; font-size: 15.5px; font-weight: 700; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q { flex: 1; line-height: 1.35; }
.faq summary .plus { flex: 0 0 24px; width: 24px; height: 24px; position: relative; transition: transform .22s; }
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; background: var(--caramel); border-radius: 2px; }
.faq summary .plus::before { top: 11px; left: 3px; right: 3px; height: 2.5px; }
.faq summary .plus::after { left: 11px; top: 3px; bottom: 3px; width: 2.5px; transition: opacity .22s; }
.faq details[open] summary .plus::after { opacity: 0; }
.faq details[open] summary .plus { transform: rotate(180deg); }
.faq .a { padding: 0 20px 20px; font-size: 14.5px; color: var(--ink-2); line-height: 1.62; }

/* ── CTA final ────────────────────────────────── */
.final { position: relative; overflow: hidden; text-align: center; padding: 64px 0; background:
  radial-gradient(100% 80% at 50% 0%, rgba(217,140,95,0.22), transparent 60%),
  linear-gradient(180deg, var(--card), var(--card-2)); }
.final h2 { font-family: 'Yeseva One', serif; font-size: clamp(28px, 6.6vw, 44px); line-height: 1.06; color: var(--ink); letter-spacing: -0.015em; text-wrap: balance; }
.final h2 .scribble { font-family: 'Caveat', cursive; color: var(--caramel); font-size: 1.24em; display: inline-block; transform: rotate(-2deg); line-height: 0.7; }
.final p { font-size: 16px; color: var(--ink-2); margin-top: 16px; max-width: 520px; margin-inline: auto; line-height: 1.55; }
.final .btn { margin-top: 26px; max-width: 420px; margin-inline: auto; }
.final .note { font-size: 12px; color: var(--ink-soft); margin-top: 14px; }

/* ── Footer ───────────────────────────────────── */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 44px 0 40px; text-align: center; }
.foot-brand { display: inline-flex; align-items: center; gap: 12px; }
.foot-brand .mark { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; border: 2.5px solid var(--caramel); }
.foot-brand .mark img { width: 100%; height: 100%; object-fit: cover; }
.foot-brand .nm { font-family: 'Yeseva One', serif; font-size: 20px; color: var(--ink); text-align: left; line-height: 1; }
.foot-brand .sub { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--caramel); margin-top: 5px; text-align: left; }
.foot-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin-top: 24px; }
.foot-links a { font-size: 13.5px; color: var(--ink-2); font-weight: 600; }
.foot-links a:hover { color: var(--caramel); }
.foot-legal { max-width: 560px; margin: 24px auto 0; font-size: 11.5px; color: var(--ink-soft); line-height: 1.65; }
.foot-legal-more { color: var(--caramel-d); font-weight: 600; text-decoration: underline; }
.foot-legal-more:hover { color: var(--caramel); }
.foot-copy { font-size: 12px; color: var(--ink-soft); margin-top: 18px; }

/* ══════════════════════════════════════════════
   STICKY MOBILE CTA
   ══════════════════════════════════════════════ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 320;
  background: rgba(255,253,248,0.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-2);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 26px rgba(90,55,28,0.12);
  transform: translateY(120%); transition: transform .3s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta-inner { display: flex; align-items: center; gap: 12px; max-width: 560px; margin: 0 auto; }
.sticky-cta .price-mini { flex-shrink: 0; line-height: 1.25; }
.sticky-cta .price-mini .l { font-size: 14px; color: var(--ink); font-weight: 600; }
.sticky-cta .price-mini .p { font-size: 11.5px; color: var(--ink-soft); font-weight: 500; margin-top: 2px; }
.sticky-cta .btn {
  flex: 1; padding: 15px 18px; font-size: 15.5px; box-shadow: 0 5px 0 var(--caramel-d); border-radius: 13px;
  animation: ctaPulse 1.9s ease-in-out infinite; transform-origin: center;
}
.sticky-cta .btn:hover { transform: translateY(2px); box-shadow: 0 3px 0 var(--caramel-d); animation-play-state: paused; }
@keyframes ctaPulse {
  0%   { transform: scale(1);     box-shadow: 0 5px 0 var(--caramel-d); }
  50%  { transform: scale(1.025); box-shadow: 0 6px 14px rgba(184, 112, 49, 0.35); }
  100% { transform: scale(1);     box-shadow: 0 5px 0 var(--caramel-d); }
}
@media (prefers-reduced-motion: reduce) { .sticky-cta .btn { animation: none; } }
body.has-sticky { padding-bottom: 78px; }
@media (min-width: 900px) { .sticky-cta { display: none; } body.has-sticky { padding-bottom: 0; } }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; } }

/* ══════════════════════════════════════════════
   ROUND 2 ADDITIONS
   ══════════════════════════════════════════════ */

/* ── "Ver receita completa" button on cards ───── */
.recipe-card .cap .open-recipe {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
  font-size: 14px; font-weight: 700; color: var(--caramel); width: 100%;
  justify-content: center; padding: 12px 14px; border-radius: 12px;
  background: var(--card); border: 1px solid var(--line-2); transition: background .15s, color .15s;
}
.recipe-card .cap .open-recipe:hover { background: var(--caramel); color: #fff; border-color: var(--caramel); }
.recipe-card .cap .open-recipe svg { transition: transform .15s; }
.recipe-card .cap .open-recipe:hover svg { transform: translateX(3px); }

/* ── Author card (foto real da Juliana) ───────── */
.author-card { max-width: 760px; margin: 0 auto 34px; background: var(--card); border: 1px solid var(--line-2); border-radius: 24px; padding: 20px; display: grid; grid-template-columns: 1fr; gap: 18px; box-shadow: var(--shadow-sm); align-items: center; }
.author-card .photo { border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; max-height: 320px; }
.author-card .photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.author-card .abody .kicker { color: var(--caramel); }
.author-card .abody h3 { font-family: 'Yeseva One', serif; font-size: 24px; color: var(--ink); line-height: 1.1; margin-top: 6px; }
.author-card .abody .ig { font-size: 13px; color: var(--ink-soft); font-weight: 600; margin-top: 2px; }
.author-card .abody p { font-size: 14.5px; color: var(--ink-2); margin-top: 12px; line-height: 1.55; }
.author-card .abody .astats { display: flex; gap: 22px; margin-top: 16px; flex-wrap: wrap; }
.author-card .abody .astats .n { font-family: 'Yeseva One', serif; font-size: 22px; color: var(--caramel); line-height: 1; }
.author-card .abody .astats .l { font-size: 11px; color: var(--ink-soft); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 3px; }
@media (min-width: 720px) { .author-card { grid-template-columns: 240px 1fr; gap: 26px; padding: 22px; } .author-card .photo { max-height: none; } }

/* ── Horizontal carousels (videos + insta) ────── */
.carousel { position: relative; }
.h-track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 2px 14px; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.h-track::-webkit-scrollbar { display: none; }
.h-track > * { scroll-snap-align: start; flex: 0 0 auto; }
.car-arrow {
  display: none; position: absolute; top: 42%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; background: var(--cream); color: var(--ink);
  box-shadow: var(--shadow-md); place-items: center; border: 1px solid var(--line);
}
.car-arrow:hover { background: var(--caramel); color: #fff; }
.car-arrow.prev { left: -10px; }
.car-arrow.next { right: -10px; }
.car-arrow:disabled { opacity: 0; pointer-events: none; }
@media (min-width: 1024px) { .car-arrow { display: grid; } }

/* ── Video cards (9:16) ───────────────────────── */
.vid-card { width: 240px; background: var(--cream); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.vid-poster { position: relative; aspect-ratio: 9/16; background: var(--ink); overflow: hidden; cursor: pointer; }
.vid-poster img { width: 100%; height: 100%; object-fit: cover; }
.vid-poster video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; }
.vid-poster .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(58,36,24,0.15) 0%, transparent 30%, transparent 60%, rgba(58,36,24,0.72) 100%); pointer-events: none; }
.vid-poster .selo { position: absolute; top: 12px; left: 12px; z-index: 2; }
.vid-poster .play { position: absolute; inset: 0; margin: auto; width: 62px; height: 62px; border-radius: 50%; background: rgba(255,253,248,0.94); display: grid; place-items: center; z-index: 2; box-shadow: var(--shadow-md); transition: transform .15s; }
.vid-poster:hover .play { transform: scale(1.08); }
.vid-poster .play svg { margin-left: 3px; color: var(--caramel); }
.vid-poster .vtitle { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2; color: #fff; font-family: 'Yeseva One', serif; font-size: 15px; line-height: 1.2; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.vid-card .vfoot { padding: 12px 14px; }
.vid-card .vfoot .open-recipe { display: inline-flex; align-items: center; justify-content: center; gap: 6px; width: 100%; font-size: 13.5px; font-weight: 700; color: var(--caramel); padding: 10px; border-radius: 10px; background: var(--card); border: 1px solid var(--line-2); }
.vid-card .vfoot .open-recipe:hover { background: var(--caramel); color: #fff; }
.vids-note { text-align: center; font-size: 12.5px; color: var(--ink-soft); margin-top: 6px; }

/* ── Instagram latest header pill ─────────────── */
.insta-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--caramel); background: var(--card); padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line-2); }
.insta-live { width: 8px; height: 8px; border-radius: 50%; background: var(--olive); box-shadow: 0 0 0 0 rgba(123,138,88,0.5); animation: livep 2s infinite; }
@keyframes livep { 0%{box-shadow:0 0 0 0 rgba(123,138,88,0.5);} 70%{box-shadow:0 0 0 8px rgba(123,138,88,0);} 100%{box-shadow:0 0 0 0 rgba(123,138,88,0);} }
@media (prefers-reduced-motion: reduce){ .insta-live{ animation: none; } }

/* ── Countdown ────────────────────────────────── */
.countdown { display: inline-flex; align-items: center; gap: 8px; background: var(--card); border: 1px solid var(--line-2); color: var(--caramel-d); font-size: 13px; font-weight: 700; padding: 8px 14px; border-radius: 999px; margin-bottom: 6px; }
.countdown b { font-variant-numeric: tabular-nums; letter-spacing: 0.5px; }

/* ── Recipe modal ─────────────────────────────── */
.rmodal { position: fixed; inset: 0; z-index: 500; display: none; }
.rmodal.open { display: block; }
.rmodal-backdrop { position: absolute; inset: 0; background: rgba(45,26,16,0.62); backdrop-filter: blur(3px); opacity: 0; transition: opacity .25s; }
.rmodal.open .rmodal-backdrop { opacity: 1; }
.rmodal-panel {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%) translateY(100%);
  width: 100%; max-width: 640px; max-height: 94vh;
  background: var(--bg); border-radius: 26px 26px 0 0; transition: transform .32s cubic-bezier(.22,.61,.36,1);
  display: flex; flex-direction: column; overflow: hidden;
  isolation: isolate;
}
.rmodal.open .rmodal-panel { transform: translateX(-50%) translateY(0); }
.rmodal-close {
  position: absolute; top: max(12px, env(safe-area-inset-top)); right: max(12px, env(safe-area-inset-right)); z-index: 6;
  width: 44px; height: 44px; border-radius: 50%; background: var(--cream); box-shadow: var(--shadow-md);
  display: grid; place-items: center; color: var(--ink);
  transform: translateZ(0); -webkit-transform: translateZ(0); will-change: transform;
}
.rmodal-scroll { flex: 1 1 auto; min-height: 0; overflow-y: auto; }
.rmodal-hero { position: relative; }
.rmodal-hero img { width: 100%; max-height: 320px; object-fit: cover; }
.rmodal-body { padding: 22px var(--wrapx) 30px; }
.rmodal .crumbs { font-size: 12px; color: var(--ink-soft); font-weight: 600; display: flex; gap: 7px; flex-wrap: wrap; }
.rmodal .crumbs .sep { opacity: 0.5; }
.rmodal .crumbs .here { color: var(--caramel); }
.rmodal h2 { font-family: 'Yeseva One', serif; font-size: clamp(24px, 6vw, 32px); color: var(--ink); line-height: 1.1; margin-top: 10px; letter-spacing: -0.01em; }
.rmodal .rselos { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.rmodal .rdesc { font-size: 15px; color: var(--ink-2); margin-top: 14px; line-height: 1.55; font-style: italic; }
.rmodal .rmeta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.rmodal .rmeta .m { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px; text-align: center; flex: 1; min-width: 90px; }
.rmodal .rmeta .m .v { font-family: 'Yeseva One', serif; font-size: 17px; color: var(--ink); }
.rmodal .rmeta .m .l { font-size: 10.5px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
.rpanel { background: var(--cream); border: 1px solid var(--line); border-radius: 18px; padding: 22px; margin-top: 20px; box-shadow: var(--shadow-sm); }
.rpanel h3 { font-family: 'Yeseva One', serif; font-size: 21px; color: var(--ink); }
.ing-list { margin-top: 14px; display: flex; flex-direction: column; }
.ing-list li { display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--ink); cursor: pointer; }
.ing-list li:last-child { border-bottom: 0; }
.ing-list li .bx { flex: 0 0 20px; width: 20px; height: 20px; border-radius: 6px; border: 2px solid var(--line-2); margin-top: 2px; display: grid; place-items: center; color: #fff; font-size: 12px; }
.ing-list li.on .bx { background: var(--olive); border-color: var(--olive); }
.ing-list li.on { opacity: 0.55; text-decoration: line-through; }
.steps-list { margin-top: 16px; display: flex; flex-direction: column; gap: 16px; counter-reset: st; }
.steps-list li { display: flex; gap: 15px; align-items: flex-start; }
.steps-list li .num { counter-increment: st; flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%; background: var(--caramel); color: #fff; font-family: 'Yeseva One', serif; font-size: 18px; display: grid; place-items: center; }
.steps-list li .num::before { content: counter(st); }
.steps-list li p { font-size: 15px; color: var(--ink); line-height: 1.55; padding-top: 7px; }
.rtip { background: var(--olive-soft); border: 1px solid #d7dcc4; border-radius: 16px; padding: 18px 20px; margin-top: 18px; }
.rtip .hand { font-size: 22px; color: var(--olive); }
.rtip p { font-size: 14px; color: #46512f; margin-top: 2px; line-height: 1.5; }
.rcta { margin-top: 22px; background: var(--ink); color: var(--cream); border-radius: 20px; padding: 26px 22px; text-align: center; }
.rcta .hand { font-size: 26px; color: var(--card-2); display: inline-block; transform: rotate(-1.5deg); }
.rcta h3 { font-family: 'Yeseva One', serif; font-size: 22px; color: #fff; line-height: 1.15; margin-top: 4px; }
.rcta p { font-size: 14px; color: rgba(255,253,248,0.82); margin-top: 10px; line-height: 1.5; }
.rcta .btn { margin-top: 18px; }
.rcta .mini { margin-top: 12px; font-size: 12px; color: rgba(255,253,248,0.6); }
body.modal-open { overflow: hidden; }

@media (min-width: 640px) {
  .rmodal-panel { bottom: auto; top: 50%; transform: translateX(-50%) translateY(-46%); border-radius: 26px; margin: 0 auto; }
  .rmodal.open .rmodal-panel { transform: translateX(-50%) translateY(-50%); }
  .rmodal-hero img { border-radius: 26px 26px 0 0; }
}

/* ── Offer highlights row (stronger offer) ────── */
.offer-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 520px; margin: 0 auto 26px; }
.offer-highlights li { display: flex; gap: 10px; align-items: center; background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; font-size: 13.5px; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm); }
.offer-highlights li .ic { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 6px; background: var(--olive); color: #fff; display: grid; place-items: center; }
@media (max-width: 380px) { .offer-highlights { grid-template-columns: 1fr; } }

/* ── Footer round 2 (proteção) ────────────────── */
.protection { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; padding: 10px 16px; border: 1.5px solid var(--line-2); border-radius: 12px; background: var(--cream); cursor: pointer; text-decoration: none; }
.protection:hover { border-color: var(--caramel); }
.protection .badge { display: flex; flex-direction: column; align-items: center; line-height: 1; color: var(--ink-2); }
.protection .badge .up { font-size: 7px; font-weight: 800; letter-spacing: 0.1em; }
.protection .badge .dm { font-size: 13px; font-weight: 900; letter-spacing: 0.12em; }
.protection .ptxt { font-size: 11px; font-weight: 700; color: var(--ink-2); text-align: left; letter-spacing: 0.02em; }

/* ── Extra responsive polish ──────────────────── */
@media (max-width: 430px) {
  :root { --wrapx: 16px; }
  .hero h1 { font-size: 33px; }
  .btn { font-size: 16px; padding: 16px 20px; }
  .offer-card { padding: 40px 18px 26px; }
  .price .int { font-size: 68px; }
  .guarantee { flex-direction: column; text-align: center; }
  .guarantee .shield { margin: 0 auto; }
  .vid-card { width: 210px; }
}
@media (min-width: 431px) and (max-width: 767px) {
  .vid-card { width: 232px; }
}

/* ── ROUND 3: hero mobile-first image + photo crop ── */
@media (max-width: 859px) { .hero-media { display: none; } }

/* ── Hero carousel: vitrine de receitas (mesmo padrão visual do .recipe-card) ── */
.hero-img-mobile { display: block; margin-top: 16px; border-radius: 20px; overflow: hidden; border: 4px solid #fff; box-shadow: var(--shadow-md); position: relative; height: 380px; }
.hic-track { position: relative; width: 100%; height: 100%; }
.hic-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease;
  display: flex; flex-direction: column; background: var(--cream); cursor: pointer;
  pointer-events: none;
}
.hic-slide.active { opacity: 1; pointer-events: auto; }
.hic-slide .pic { position: relative; flex: 0 0 190px; overflow: hidden; }
.hic-slide .pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hic-slide .cap { flex: 1 1 auto; min-height: 0; padding: 14px 16px 16px; display: flex; flex-direction: column; }
.hic-slide .cap h3 {
  font-family: 'Yeseva One', serif; font-size: 17px; color: var(--ink); line-height: 1.22;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hic-slide .cap .desc {
  font-size: 12.5px; color: var(--ink-soft); font-style: italic; margin-top: 5px; line-height: 1.42;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hic-slide .cap .cat-tag { font-size: 10.5px; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.75; margin-top: 6px; }
.hic-slide .cap .open-recipe {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px; margin-top: 12px;
  font-size: 13.5px; font-weight: 700; color: var(--caramel); width: 100%;
  padding: 11px 12px; border-radius: 12px; background: var(--card); border: 1px solid var(--line-2);
  transition: background .15s, color .15s;
}
.hic-slide .cap .open-recipe:hover { background: var(--caramel); color: #fff; border-color: var(--caramel); }
.hic-slide .cap .open-recipe svg { transition: transform .15s; }
.hic-slide .cap .open-recipe:hover svg { transform: translateX(3px); }
.hic-dots { position: absolute; right: 12px; top: 164px; z-index: 3; display: flex; gap: 6px; }
.hic-dots .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.55); transition: background .3s, width .3s; }
.hic-dots .dot.active { background: #fff; width: 18px; border-radius: 3px; }
@media (min-width: 480px) and (max-width: 859px) {
  .hero-img-mobile { height: 410px; }
  .hic-slide .pic { flex-basis: 210px; }
  .hic-dots { top: 184px; }
}
@media (min-width: 860px) { .hero-img-mobile { display: none; } }
.hbrand .mark img, .foot-brand .mark img { object-position: 50% 16%; }

/* (hero-features removed per user feedback) */

/* ── Topo mobile enxuto (só mobile, desktop intocado) ──
   Header colapsa a altura zero (sem logo, sem nome, sem linha divisória,
   sem espaço vazio); o seletor de país vira um badge pequeno, absoluto,
   flutuando sobre o canto superior direito do hero. */
@media (max-width: 768px) {
  .site-header {
    position: relative;
    height: 0;
    padding: 0;
    margin: 0;
    border-bottom: none;
    background: transparent;
    backdrop-filter: none;
    overflow: visible;
    z-index: 250;
  }
  .hbrand { display: none; }
  .header-inner { padding: 0; max-width: none; margin: 0; }
  .country { position: absolute; top: 14px; right: 16px; z-index: 260; }
  .country-btn { padding: 5px 10px; gap: 5px; font-size: 11px; }
  .country-btn .flag { font-size: 12px; }
  .country-btn .chev { width: 11px; height: 11px; }
  .hero { padding-top: 14px; }
}
