/* ============================================================
   Nutrir com Amor — Guia de Introdução Alimentar
   Design system: warm, soft, watercolor maternal aesthetic
   ============================================================ */

:root {
  /* Surfaces — warm creams */
  --bg:        #FBF6EE;
  --bg-warm:   #F8F0E3;
  --card:      #F4EBDA;
  --card-soft: #FAF3E8;
  --white:     #FFFDF9;

  /* Greens — sage */
  --green:      #7C8A56;
  --green-dark: #62703F;
  --green-deep: #515D34;

  /* Accents — terracotta / peach */
  --coral:       #CE7C4E;
  --coral-soft:  #E49A6C;
  --peach:       #F3C9A2;
  --peach-soft:  #F8DCBF;
  --blush:       #EFC3B0;

  /* Ink + neutrals */
  --ink:      #45402F;
  --ink-soft: #6C6552;
  --muted:    #948B77;
  --line:     #E7DCC6;
  --line-2:   #EFE6D5;

  --star: #E0A93C;

  /* Type */
  --serif:  "Playfair Display", Georgia, serif;
  --sans:   "Nunito Sans", system-ui, sans-serif;
  --script: "Dancing Script", cursive;

  --shadow-sm: 0 2px 10px rgba(80, 66, 40, 0.06);
  --shadow:    0 14px 38px rgba(95, 78, 48, 0.10);
  --shadow-lg: 0 30px 70px rgba(95, 78, 48, 0.16);

  --container: 1180px;
  --radius: 18px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 20px; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.12; color: var(--ink); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* Decorative watercolor washes (background atmosphere) */
.wash { position: fixed; border-radius: 50%; filter: blur(60px); opacity: .55; z-index: 0; pointer-events: none; }
.wash-1 { width: 360px; height: 360px; top: -120px; left: -120px;
  background: radial-gradient(circle at 40% 40%, var(--peach), transparent 70%); }
.wash-2 { width: 320px; height: 320px; top: 240px; right: -140px;
  background: radial-gradient(circle at 50% 50%, #cdd7b0, transparent 70%); opacity: .4; }
.wash-3 { width: 300px; height: 300px; bottom: 8%; left: -120px;
  background: radial-gradient(circle at 50% 50%, var(--blush), transparent 70%); opacity: .35; }

/* ----------  Placeholder images (warm, labeled) ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.35) 0 2px, transparent 2px 14px),
    linear-gradient(135deg, var(--peach-soft), #ecd6bd 55%, #e7cdb0);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px; letter-spacing: .04em;
  color: rgba(120, 86, 56, .72);
  padding: 6px 10px; line-height: 1.4; max-width: 88%;
}
.ph.green {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.3) 0 2px, transparent 2px 14px),
    linear-gradient(135deg, #d7ddbf, #c4ccaa);
}
.ph.green::after { color: rgba(86, 96, 54, .8); }

/* ----------  Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 800; font-size: 16px;
  padding: 15px 30px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn .heart { color: #f4cbb6; font-size: 15px; }
.btn-primary {
  background: var(--green); color: #fbf7ec;
  box-shadow: 0 12px 26px rgba(98, 112, 63, .32);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(98, 112, 63, .4); }
.btn-lg { font-size: 18px; padding: 19px 38px; }
.btn-ghost {
  background: transparent; color: var(--green-dark);
  border: 1.5px solid var(--green); font-weight: 700;
}
.btn-ghost:hover { background: rgba(124,138,86,.1); }

/* ----------  Pills / eyebrows ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: #ECE3CF; color: var(--green-dark);
  font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
}
.pill .heart { color: var(--coral); }

.trust {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  color: var(--ink-soft); font-size: 14px; font-weight: 600;
}
.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust svg { width: 16px; height: 16px; color: var(--green); }
.trust .sep { color: var(--line); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 246, 238, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 220, 198, .7);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--green-dark); white-space: nowrap; }
.brand svg { width: 26px; height: 26px; color: var(--green); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 700; color: var(--ink-soft); transition: color .15s; }
.nav-links a:hover { color: var(--green-dark); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-btn { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; color: var(--green-dark); }
.menu-btn svg { width: 26px; height: 26px; }

/* mobile drawer */
.drawer { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 64px 0 30px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0 40px;
  align-items: center;
}
.hero-text    { grid-column: 1; grid-row: 1; }
.book-stage   { grid-column: 2; grid-row: 1; align-self: center; }

.hero h1 { font-size: clamp(40px, 5vw, 60px); margin: 20px 0 18px; }
.hero h1 .accent { color: var(--coral); display: block; }
.hero .lead { font-size: 19px; color: var(--ink-soft); max-width: 480px; }

.hero-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 30px 0 32px; }
.feat { text-align: center; }
.feat .ico {
  width: 50px; height: 50px; margin: 0 auto 10px;
  border-radius: 14px; background: #ECE3CF;
  display: flex; align-items: center; justify-content: center; color: var(--green-dark);
}
.feat .ico svg { width: 24px; height: 24px; }
.feat p { font-size: 12.5px; font-weight: 700; color: var(--ink-soft); line-height: 1.35; }
.feat p b { color: var(--ink); }

.hero-cta { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }

/* bloco de preço dentro do hero (abaixo do primeiro botão) */
.hero-price { display: flex; flex-direction: column; gap: 2px; }
.hero-price .price-old { font-size: 14px; }
.hero-price .price-now { font-size: 44px; }
.hero-price .price-now small { font-size: 18px; }
.hero-price .price-inst { font-size: 13px; }

/* ===== seção de vídeo (prévia dentro do celular) ===== */
#video-preview { display: flex; flex-direction: column; align-items: center; }
.video-head { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 36px; }

.phone-stage { display: flex; justify-content: center; width: 100%; }
.phone {
  position: relative;
  width: min(330px, 84vw);
  background: #2b2a25;
  border-radius: 38px;
  padding: 12px;
  box-shadow:
    0 0 0 2px #3a3833,
    0 30px 60px rgba(95, 78, 48, 0.28),
    inset 0 0 0 1px rgba(255,255,255,.06);
}
.phone-notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 24px; background: #2b2a25; border-radius: 0 0 14px 14px; z-index: 2;
}
.phone-video {
  width: 100%; height: auto;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  background: #000;
  object-fit: cover;
  display: block;
}

/* bloco de compra movido para baixo do vídeo — centralizado */
#video-preview .hero-cta { align-items: center; text-align: center; padding-top: 0; margin-top: 36px; }
#video-preview .hero-price { align-items: center; text-align: center; }
#video-preview .trust { justify-content: center; }

/* book mockup */
.book-stage { position: relative; display: flex; justify-content: center; align-items: center; min-height: 480px; }
.ebook-cover {
  width: 100%; max-width: 440px;
  filter: drop-shadow(0 30px 60px rgba(95, 78, 48, 0.22));
}
.mini-book-img {
  width: 120px; flex: none;
  filter: drop-shadow(0 10px 22px rgba(95, 78, 48, 0.18));
}
.book {
  position: relative; width: 330px; aspect-ratio: 330/452;
  border-radius: 6px 14px 14px 6px;
  background: linear-gradient(120deg, #fffdf8, #fbf3e8);
  box-shadow: var(--shadow-lg), -14px 0 0 -2px #efe3cf, -16px 0 22px rgba(95,78,48,.18);
  transform: rotate(-3deg);
  padding: 30px 28px; overflow: hidden;
}
.book::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 14px;
  background: linear-gradient(90deg, rgba(124,138,86,.18), transparent); }
.book .b-eyebrow { text-align: center; font-size: 11px; font-weight: 800; letter-spacing: .22em; color: var(--coral); text-transform: uppercase; margin-bottom: 14px; position: relative; }
.book .b-eyebrow::before, .book .b-eyebrow::after { content: ""; position: absolute; top: 50%; width: 26px; height: 1px; background: var(--peach); }
.book .b-eyebrow::before { left: 6px; } .book .b-eyebrow::after { right: 6px; }
.book h3 { font-size: 30px; text-align: center; line-height: 1.18; color: var(--green-deep); }
.book .b-title-accent { color: var(--coral); display: inline-block; background: var(--peach-soft); padding: 2px 14px; border-radius: 8px; margin-top: 8px; white-space: nowrap; }
.book .b-sub { text-align: center; font-size: 13px; color: var(--ink-soft); margin: 16px 0 16px; font-style: italic; }
.book .b-photo { aspect-ratio: 1/.86; border-radius: 50% 50% 46% 46%/ 60% 60% 40% 40%; }
.b-badge {
  position: absolute; top: 36px; right: -6px; z-index: 3;
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--coral); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; text-align: center; line-height: 1.1;
  box-shadow: 0 12px 24px rgba(206,124,78,.4);
  border: 3px dashed rgba(255,255,255,.6);
}
.b-badge small { font-size: 12px; display: block; margin-top: 3px; }

/* ============================================================
   BÔNUS
   ============================================================ */
.bonus-card {
  position: relative;
  background: linear-gradient(150deg, #f7ece0, #f3e2d2 60%, #efd9c4);
  border: 1px solid var(--peach-soft);
  border-radius: 30px;
  padding: 46px 50px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 46px;
  align-items: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.bonus-card::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(243,201,162,.5), transparent 70%);
  top: -120px; right: -80px;
  pointer-events: none;
}
.bonus-flag {
  position: absolute;
  top: 26px; right: -42px;
  background: var(--coral);
  color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  padding: 7px 56px;
  transform: rotate(45deg);
  box-shadow: 0 6px 14px rgba(206,124,78,.34);
  z-index: 2;
}
.bonus-media { position: relative; display: flex; justify-content: center; align-items: center; }
.bonus-cover {
  width: 100%; max-width: 300px;
  filter: drop-shadow(0 26px 50px rgba(95, 78, 48, 0.26));
}
.bonus-content { position: relative; z-index: 1; }
.bonus-content h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 16px 0 14px;
  line-height: 1.16;
}
.bonus-content h2 .accent { color: var(--coral); }
.bonus-lead { font-size: 16px; color: var(--ink-soft); margin-bottom: 22px; max-width: 560px; }
.bonus-list { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.bonus-list li {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 8px 0; border-bottom: 1px dashed var(--line);
  font-size: 15px; color: var(--ink); font-weight: 600;
}
.bonus-list li:last-child { border-bottom: none; }
.bonus-tag {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); color: var(--green-dark);
  border: 1px solid var(--line);
  font-size: 14px; font-weight: 800;
  padding: 11px 20px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.bonus-tag .heart { color: var(--coral); }

/* ============================================================
   BENEFITS BAR
   ============================================================ */
.benefits { position: relative; z-index: 1; margin-top: 84px; }
.benefits-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 26px; padding: 38px 34px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  box-shadow: var(--shadow-sm);
}
.benefit { display: flex; gap: 16px; }
.benefit .ico { flex: none; width: 52px; height: 52px; border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center; color: var(--green); box-shadow: var(--shadow-sm); }
.benefit .ico svg { width: 26px; height: 26px; }
.benefit h3 { font-family: var(--sans); font-size: 17px; font-weight: 800; margin-bottom: 5px; }
.benefit p { font-size: 14px; color: var(--ink-soft); line-height: 1.45; }

/* ============================================================
   CONTENT / RECIPES
   ============================================================ */
section { position: relative; z-index: 1; }
.section { padding: 84px 0; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 42px); margin: 16px 0; }

.content-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 54px; align-items: center; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 4px; margin: 8px 0 26px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 16px; color: var(--ink); font-weight: 600; }
.checklist li:last-child { border-bottom: none; }
.check { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.check svg { width: 14px; height: 14px; }

/* recipe cards */
.recipes { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.rcard { background: var(--card-soft); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.rcard.feature { background: linear-gradient(160deg, #f7ece0, #f3e2d2); }
.rc-pad { padding: 16px; }
.rc-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--coral); background: var(--white); padding: 5px 11px; border-radius: 999px; margin-bottom: 12px; }
.rc-script { font-family: var(--script); font-weight: 700; font-size: 30px; line-height: 1; color: var(--green-deep); }
.rc-script .c { color: var(--coral); }
.rc-photo { aspect-ratio: 1/.78; border-radius: 14px; margin-top: 12px; }
.rc-title { font-family: var(--serif); font-size: 22px; color: var(--green-deep); }
.rc-title .c { color: var(--coral); }
.rc-sub { font-size: 12px; font-weight: 800; color: var(--ink); text-transform: uppercase; letter-spacing: .04em; margin: 14px 0 7px; }
.rc-list { list-style: none; font-size: 12.5px; color: var(--ink-soft); }
.rc-list li { padding: 4px 0; padding-left: 14px; position: relative; line-height: 1.35; }
.rc-list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--peach); }
.rc-note { font-size: 11px; color: var(--ink-soft); background: var(--white); border-radius: 10px; padding: 9px 11px; margin-top: 10px; line-height: 1.4; }
.rc-note b { color: var(--coral); }
.rc-foot { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: var(--muted); border-top: 1px solid var(--line); padding: 9px 16px; }

/* ============================================================
   RECIPE CAROUSEL
   ============================================================ */
.recipe-carousel-wrap {
  max-width: var(--container);
  margin: 44px auto 0;
}

.recipe-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 28px 18px;
  -webkit-overflow-scrolling: touch;
  /* Barra de rolagem visível (desktop) */
  scrollbar-width: auto;
  scrollbar-color: var(--green) var(--line-2);
}
.recipe-carousel::-webkit-scrollbar {
  height: 14px;
}
.recipe-carousel::-webkit-scrollbar-track {
  background: var(--line-2);
  border-radius: 999px;
  margin: 0 28px;
}
.recipe-carousel::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 999px;
  border: 3px solid var(--line-2);
}
.recipe-carousel::-webkit-scrollbar-thumb:hover {
  background: var(--green-dark);
}

.rcard-cat {
  flex: 0 0 290px;
  background: var(--card-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.rcat-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.rcat-body {
  padding: 16px;
  flex: 1;
}

.rcat-title {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--green-deep);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}

.rcat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.rcat-list li {
  font-size: 12.5px;
  color: var(--ink-soft);
  padding: 5px 0 5px 16px;
  position: relative;
  border-bottom: 1px dotted var(--line-2);
  line-height: 1.35;
}
.rcat-list li:last-child { border-bottom: none; }
.rcat-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--peach);
}

.carousel-hint {
  display: none;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: .04em;
}

/* ============================================================
   AUTHOR
   ============================================================ */
.author-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 30px;
  padding: 44px; display: grid; grid-template-columns: 150px 1.4fr 1fr; gap: 40px; align-items: center;
  box-shadow: var(--shadow-sm);
}
.author-photo { width: 150px; height: 150px; border-radius: 50%; border: 5px solid var(--white); box-shadow: var(--shadow); }
.author-info .eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--coral); }
.author-info h3 { font-size: 26px; margin: 8px 0 12px; }
.author-info p { font-size: 15px; color: var(--ink-soft); }
.signature { font-family: var(--script); font-size: 30px; color: var(--green-dark); margin-top: 14px; line-height: 1; }
.crn { font-size: 11px; letter-spacing: .14em; color: var(--muted); font-weight: 700; }
.creds { display: flex; flex-direction: column; gap: 22px; border-left: 1px solid var(--line); padding-left: 32px; }
.cred { display: flex; gap: 14px; align-items: flex-start; }
.cred .ico { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; color: var(--green); box-shadow: var(--shadow-sm); }
.cred .ico svg { width: 20px; height: 20px; }
.cred p { font-size: 13.5px; color: var(--ink-soft); font-weight: 600; line-height: 1.4; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.testi-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi { background: var(--card-soft); border: 1px solid var(--line); border-radius: 18px; padding: 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.stars { display: flex; gap: 3px; margin-bottom: 12px; color: var(--star); }
.stars svg { width: 16px; height: 16px; }
.testi blockquote { font-size: 14px; color: var(--ink); font-style: italic; line-height: 1.55; flex: 1; }
.testi .who { display: flex; align-items: center; gap: 11px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.testi .who .av { width: 40px; height: 40px; border-radius: 50%; flex: none; }
.testi .who b { display: block; font-size: 14px; }
.testi .who small { font-size: 12px; color: var(--muted); }
.dots { display: flex; gap: 7px; justify-content: center; margin-top: 24px; }
.dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.dots i.on { background: var(--coral); width: 22px; border-radius: 999px; }

/* ============================================================
   PRICING
   ============================================================ */
.price-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 30px;
  padding: 40px; display: grid; grid-template-columns: 1fr auto auto; gap: 40px; align-items: center;
  box-shadow: var(--shadow);
}
.price-left { display: flex; gap: 26px; align-items: center; }
.mini-book { width: 110px; height: 150px; border-radius: 6px 10px 10px 6px; flex: none;
  background: linear-gradient(150deg, #f6e8d8, #efd9c4); box-shadow: var(--shadow); transform: rotate(-4deg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 10px; text-align: center; }
.mini-book span { font-family: var(--serif); font-size: 13px; color: var(--green-deep); line-height: 1.1; }
.mini-book span .c { color: var(--coral); }
.price-left h3 { font-size: 26px; margin-bottom: 8px; }
.price-left p { font-size: 14px; color: var(--ink-soft); max-width: 280px; }
.price-mid { text-align: center; }
.price-old { font-size: 15px; color: var(--muted); }
.price-old s { color: var(--muted); }
.price-now { font-family: var(--serif); font-size: 56px; color: var(--coral); line-height: 1; margin: 4px 0; }
.price-now small { font-size: 22px; vertical-align: super; }
.price-inst { font-size: 13px; color: var(--ink-soft); }
.price-right { display: flex; flex-direction: column; gap: 18px; align-items: center; }
.price-trust { display: flex; gap: 18px; }
.price-trust div { text-align: center; font-size: 11px; font-weight: 700; color: var(--ink-soft); display: flex; flex-direction: column; align-items: center; gap: 6px; max-width: 86px; }
.price-trust svg { width: 22px; height: 22px; color: var(--green); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; margin-top: 30px; }
.faq-item { background: var(--card-soft); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 17px 20px; text-align: left; font-size: 15px; font-weight: 700; color: var(--ink); }
.faq-q .chev { flex: none; width: 22px; height: 22px; color: var(--green); transition: transform .25s; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 20px 18px; font-size: 14px; color: var(--ink-soft); }

/* ============================================================
   FINAL CTA + FOOTER
   ============================================================ */
.final {
  background: linear-gradient(120deg, var(--green), var(--green-dark));
  border-radius: 30px; padding: 50px; color: #f7f3e6;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.final .ftxt { position: relative; max-width: 560px; }
.final h2 { color: #fdfaf0; font-size: clamp(26px, 3vw, 36px); }
.final p { color: rgba(247,243,230,.85); margin-top: 12px; }
.final .fcta { position: relative; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.final .btn-primary { background: #fbf7ec; color: var(--green-dark); }
.final .btn-primary:hover { background: #fff; }
.final .btn-primary .heart { color: var(--coral); }
.final .trust { color: rgba(247,243,230,.9); }
.final .trust svg { color: var(--peach); }
.final .trust .sep { color: rgba(255,255,255,.3); }

.site-footer { padding: 40px 0 50px; text-align: center; color: var(--muted); font-size: 13px; }
.site-footer .brand { justify-content: center; margin-bottom: 12px; color: var(--green-dark); }
.footer-logo { height: 56px; width: auto; display: block; }
.footer-links { margin-top: 14px; display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 12px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; transition: color .15s; }
.footer-links a:hover { color: var(--green-dark); }
.footer-links .sep { color: var(--line); }

/* Página interna (termos / privacidade) */
.legal-page { max-width: 780px; margin: 60px auto 80px; padding: 0 28px; }
.legal-page h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 8px; }
.legal-page .legal-date { font-size: 13px; color: var(--muted); margin-bottom: 36px; }
.legal-page h2 { font-size: 20px; margin: 32px 0 10px; color: var(--green-deep); }
.legal-page p, .legal-page li { font-size: 15px; color: var(--ink-soft); line-height: 1.75; }
.legal-page ul { margin: 10px 0 10px 20px; }
.legal-page ul li { margin-bottom: 6px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 40px; font-size: 14px; font-weight: 700; color: var(--green-dark); }
.legal-back:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-grid {
    display: flex; flex-direction: column; gap: 20px;
  }
  .hero-text     { order: 1; }
  .book-stage    { order: 2; min-height: 0; margin-bottom: 0; }
  .hero-cta      { order: 3; }
  .hero-features { order: 4; margin: 0; }
  .content-grid { grid-template-columns: 1fr; gap: 36px; }
  .author-card { grid-template-columns: 1fr; text-align: center; gap: 26px; justify-items: center; padding: 36px 28px; }
  .creds { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 26px; width: 100%; max-width: 420px; }
  .testi-grid { grid-template-columns: 1fr; gap: 30px; }
  .price-card { grid-template-columns: 1fr; text-align: center; gap: 26px; justify-items: center; }
  .price-left { flex-direction: column; text-align: center; }
  .price-left p { max-width: none; }

  /* Bônus empilhado */
  .bonus-card { grid-template-columns: 1fr; gap: 30px; text-align: center; justify-items: center; padding: 40px 32px; }
  .bonus-media { order: -1; }
  .bonus-content .pill { margin: 0 auto; }
  .bonus-lead { max-width: none; }
  .bonus-list { text-align: left; max-width: 480px; }
}

@media (max-width: 980px) {
  .nav-links, .nav-cta .btn { display: none; }
  .menu-btn { display: flex; }
  .nav-cta { gap: 0; }
  .drawer { display: block; position: fixed; inset: 76px 0 auto 0; z-index: 99;
    background: var(--bg); border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .3s ease; box-shadow: var(--shadow); }
  .drawer.open { transform: translateY(0); }
  .drawer a { display: block; padding: 15px 28px; font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--line-2); }
  .drawer .btn { margin: 18px 28px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }

  .benefits-card { grid-template-columns: 1fr 1fr; gap: 26px 20px; padding: 30px 24px; }
  .benefits { margin-top: 56px; }
  .hero-features { grid-template-columns: 1fr 1fr; gap: 24px 14px; }
  .recipes { grid-template-columns: 1fr; }

  /* Bônus mobile */
  .bonus-card { padding: 34px 22px; border-radius: 22px; }
  .bonus-cover { max-width: 230px; }
  .bonus-content h2 { font-size: 25px; }
  .bonus-flag { top: 22px; right: -46px; padding: 6px 56px; font-size: 11px; }
  /* Depoimentos lado a lado, deslizáveis por toque */
  .testi-grid { grid-template-columns: minmax(0, 1fr); }
  .testi-grid > * { min-width: 0; }
  .testi-cards {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
    min-width: 0;
  }
  .testi-cards::-webkit-scrollbar { display: none; }
  .testi {
    flex: 0 0 76%;
    scroll-snap-align: start;
    padding: 18px;
  }
  .testi blockquote { font-size: 13.5px; }
  .price-trust { flex-wrap: wrap; justify-content: center; }
  .faq-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .final { padding: 36px 26px; }
  .hero { padding-top: 6px; }
  .container { padding: 0 20px; }

  /* Carrossel mobile: deslize por toque, sem barra visível */
  .rcard-cat { flex: 0 0 260px; scroll-snap-align: start; }
  .recipe-carousel {
    padding: 6px 20px 20px; gap: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .recipe-carousel::-webkit-scrollbar { display: none; }
  .recipe-carousel-wrap { margin-top: 32px; }
  .carousel-hint { display: block; }

  /* Espaçamento FAQ: sobrescreve inline style="padding-top:0" */
  #faq { padding-top: 52px !important; padding-bottom: 0 !important; }
  #faq + section { padding-top: 48px !important; }
  #faq > .pill { display: block; text-align: center; }

  /* Remove blobs decorativos fixos que aparecem no rodapé em mobile */
  .wash-1, .wash-2, .wash-3 { display: none; }

  /* Fix overflows */
  .book-stage { overflow: visible; border-radius: 0; padding: 10px 0; margin-top: -10px; }
  .hero-cta   { margin-top: -24px; }
  .ebook-cover { max-width: 280px; }
  .price-card { padding: 26px 16px; border-radius: 20px; overflow: hidden; }
  .mini-book-img { width: 180px; }
  .price-right { width: 100%; align-items: stretch; }
  .price-right .btn-lg { white-space: normal; text-align: center; justify-content: center; width: 100%; font-size: 16px; padding: 16px 20px; }
  .price-now { font-size: 44px; }
  .final { overflow: hidden; padding: 34px 22px; }
  .final .fcta { width: 100%; }
  .final .fcta .btn-lg { white-space: normal; text-align: center; justify-content: center; width: 100%; font-size: 16px; padding: 16px 20px; }
  .final .trust { font-size: 12px; gap: 8px; }
  .final .trust svg { width: 14px; height: 14px; }

  /* Centralizar títulos e cabeçalhos em mobile */
  .hero-text { text-align: center; }
  .hero h1 .accent { display: block; }
  .hero .lead { max-width: none; font-size: 16.5px; line-height: 1.45; }
  .hero-cta { align-items: center; }
  .hero-price { align-items: center; text-align: center; }
  .hero .trust { justify-content: center; }

  .section-head { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .section-head .pill { align-self: center; }
  .section-head h2 { text-align: center; }
  .section-head .btn-ghost { align-self: center; }

  .testi-grid > .section-head { text-align: center; align-items: center; }

  section > .container > .pill,
  section.section > .container > .pill { display: flex; margin: 0 auto 0; }

  .price-card h3,
  .price-left > div > h3 { text-align: center; }

  .final .ftxt h2,
  .final .ftxt p { text-align: center; }
  .final { flex-direction: column; align-items: center; text-align: center; }
  .final .fcta { align-items: center; }
  .final .trust { justify-content: center; }
}

@media (max-width: 460px) {
  .benefits-card { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .book { width: 280px; }
  .b-badge { width: 80px; height: 80px; font-size: 13px; top: 20px; }
}
