/* ════════════════════════════════════════════════════════
   ENSALADAS EN TARRO — CSS limpo do zero
   ════════════════════════════════════════════════════════ */

/* Proteção de conteúdo */
img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }
a img, button img { pointer-events: auto; }
::selection { background: transparent; }

:root {
  --forest : #1A4D2E;
  --green  : #266038;
  --sage   : #E6EEE1;
  --cream  : #FAF7F0;
  --terra  : #C4603A;
  --gold   : #C4963A;
  --ink    : #1C1C1C;
  --muted  : #555550;
  --quiet  : #9A9991;
  --line   : #E2DDD5;
  --white  : #FFFFFF;

  --serif  : 'Fraunces', Georgia, serif;
  --sans   : 'Outfit', system-ui, sans-serif;
  --hand   : 'Caveat', cursive;

  --w      : 1160px;
  --wn     : 720px;
  --gap    : 24px;
}

/* BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
b { font-weight: 700; }

/* CONTAINER */
.container {
  max-width: var(--w);
  margin: 0 auto;
  padding: 96px var(--gap);
}
.container.narrow { max-width: var(--wn); }
.container.center { text-align: center; }

/* LABELS */
.label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
}
.label.light { color: rgba(255,255,255,.5); }

/* HEADINGS */
h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.04em;
  color: var(--ink);
  text-wrap: balance;
}
h2.white { color: #fff; }
h2 em { font-style: italic; font-weight: 400; color: var(--gold); }

/* BOTÃO PRIMÁRIO */
.btn-primary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--terra);
  color: #fff;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 18px 36px;
  border-radius: 10px;
  min-height: 70px;
  box-shadow: 0 6px 24px rgba(196,96,58,.28);
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(196,96,58,.36); }
.btn-primary span { font-size: 12px; font-weight: 400; opacity: .82; }

.link-arrow {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--forest);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color .15s;
}
.link-arrow:hover { color: var(--terra); }

/* ─────────────────── NAV ─────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gap);
  box-shadow: 0 2px 16px rgba(0,0,0,.14);
}
.nav-logo { color: #fff; }
.nl-main {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.nav-cta {
  background: var(--terra);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 9px 18px;
  border-radius: 6px;
  transition: background .15s;
}
.nav-cta:hover { background: #a84e2e; }

/* ─────────────────── HERO ─────────────────── */
.hero {
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 80px 56px 80px var(--gap);
  max-width: 560px;
  margin-left: auto;
}
.hero-left .label { color: var(--gold); margin-bottom: 0; }
.hero-left h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -.04em;
  color: #fff;
}
.hero-left h1 em { font-style: italic; font-weight: 400; color: var(--gold); }
.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  max-width: 400px;
}
.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: -8px;
}
.hero-checks li {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  font-weight: 500;
  padding-left: 4px;
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--forest) 0%, transparent 25%);
  pointer-events: none;
}

/* ─────────────────── FOOD PREVIEW ─────────────────── */
.food-preview {
  background: var(--cream);
  padding: 56px var(--gap);
}
.fp-grid {
  max-width: var(--w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.fp-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
}
.fp-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}
.fp-card:hover img { transform: scale(1.04); }
.fp-card figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 14px 14px;
  background: linear-gradient(to top, rgba(20,45,28,.92), transparent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
}

/* ─────────────────── DOR ─────────────────── */
.pain { background: var(--white); }
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.pain-left h2 { margin-bottom: 28px; }
.pain-note {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--forest);
  font-weight: 600;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  line-height: 1.6;
}
.pain-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 48px;
}
blockquote {
  background: var(--cream);
  border-left: 3px solid var(--terra);
  border-radius: 0 12px 12px 0;
  padding: 16px 18px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─────────────────── PARA TI ─────────────────── */
.for-you { background: var(--forest); }
.for-you.container,
.for-you .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.for-you h2 { margin-bottom: 0; }
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  width: 100%;
  text-align: left;
}
.check-list li {
  font-size: 16px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 15px 18px 15px 50px;
  position: relative;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--forest);
  font-size: 11px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─────────────────── SEGREDO (teaser, sem revelar o método) ── */
.secret { background: var(--cream); }
.secret-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.secret-text { display: flex; flex-direction: column; gap: 20px; }
.secret-text h2 { margin: 0; }
.secret-lead {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--forest);
  line-height: 1.55;
  font-weight: 400;
}
.secret-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}
.secret-visual { position: relative; }
.secret-jar {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 56px rgba(26,77,46,.15);
}
.secret-jar img {
  width: 100%;
  height: auto;
  display: block;
}
.secret-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,38,22,.92) 0%, transparent 100%);
  padding: 40px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.secret-pill {
  display: inline-block;
  background: var(--gold);
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  width: fit-content;
}
.secret-overlay p {
  font-size: 14px;
  color: rgba(255,255,255,.82);
  font-style: italic;
  line-height: 1.5;
}

/* ─────────────────── RECEITAS ─────────────────── */
.recipes { background: var(--white); padding-top: 0; }
.recipes-header {
  background: var(--forest);
  text-align: center;
  padding: 88px var(--gap) 80px;
}
.recipes-header h2 { margin-bottom: 20px; }
.recipes-sub {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.recipes > .container { padding-top: 56px; }

/* ── 3 cards grandes em destaque ── */
.salads-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.sf-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.sf-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,77,46,.12); }
.sf-img {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.sf-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .45s ease;
}
.sf-card:hover .sf-img img { transform: scale(1.03); }
.sf-dias {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--forest);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .03em;
}
.sf-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sf-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terra);
  background: rgba(196,96,58,.1);
  padding: 3px 9px;
  border-radius: 4px;
  width: fit-content;
}
.sf-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--forest);
  line-height: 1.15;
}
.sf-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Mini grid 4 col ── */
.more-label {
  font-size: 13px;
  color: var(--quiet);
  font-style: italic;
  margin-bottom: 16px;
}
.salads-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 0;
}
.sm-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .18s;
}
.sm-card:hover { transform: translateY(-3px); }
.sm-img {
  background: var(--cream);
  overflow: hidden;
}
.sm-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s;
}
.sm-card:hover .sm-img img { transform: scale(1.03); }
.sm-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sm-body b { font-size: 13px; color: var(--forest); line-height: 1.3; }
.sm-body small { font-size: 11px; color: var(--quiet); }

/* Card +53 */
.sm-card--more {
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  min-height: 200px;
}
.sm-more {
  text-align: center;
  color: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.sm-more strong {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.sm-more b { font-size: 14px; }
.sm-more small { font-size: 11px; opacity: .6; line-height: 1.4; max-width: 110px; }

.recipes-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 52px;
  text-align: center;
}
.recipes-cta-note {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 540px;
}
.recipes-cta-note strong { color: var(--forest); font-weight: 700; }

/* ─────────────────── BÔNUS ─────────────────── */
.bonuses { background: var(--sage); }
.bonuses-top {
  max-width: 560px;
  margin-bottom: 52px;
}
.bonuses-top h2 { margin: 8px 0 12px; }
.bonuses-sub { font-size: 16px; color: var(--muted); line-height: 1.65; }
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(26,77,46,.12); }
.bonus-img {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.bonus-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s;
}
.bonus-card:hover .bonus-img img { transform: scale(1.03); }
.bonus-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--hand);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background: var(--terra);
  padding: 2px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.bonus-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bonus-body h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--forest);
  line-height: 1.2;
}
.bonus-body p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─────────────────── FACILIDADE ─────────────────── */
.ease { background: var(--white); }
.ease-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.ease-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(26,77,46,.14);
}
.ease-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.ease-text h2 { margin-bottom: 16px; }
.ease-text > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.ease-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ease-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ease-list li > span {
  font-size: 22px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--sage);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ease-list li div { padding-top: 2px; }
.ease-list b { display: block; font-size: 15px; color: var(--forest); margin-bottom: 2px; }
.ease-list small { font-size: 13px; color: var(--quiet); }

/* ─────────────────── DEPOIMENTOS ─────────────────── */
.testimonials { background: var(--forest); padding-bottom: 0; }
.testimonials .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.testimonials h2 { margin-bottom: 0; }

/* Stats bar */
.social-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 20px 36px;
  gap: 32px;
}
.ss-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ss-item strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.ss-item span {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ss-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

/* Grid de fotos */
.prova-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 var(--gap);
}
.prova-item {
  overflow: hidden;
  border-radius: 16px;
  border: 3px solid rgba(255,255,255,.12);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.prova-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}
.prova-item:hover img { transform: scale(1.03); }

/* ─────────────────── OFERTA ─────────────────── */
.offer { background: var(--cream); }
.offer-card {
  background: var(--white);
  border-radius: 20px;
  padding: 56px 52px;
  box-shadow: 0 16px 52px rgba(26,77,46,.09);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.offer-card h2 { margin-top: 4px; }
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.offer-list li {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ck {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--forest);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bonus-line { }
.ck-bonus {
  flex-shrink: 0;
  background: rgba(196,150,58,.14);
  color: #7A5C1E;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.price-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.price-block small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--quiet);
}
.price-num { display: flex; align-items: flex-start; gap: 4px; }
.p-curr {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--quiet);
  margin-top: 14px;
}
.p-val {
  font-family: var(--serif);
  font-size: 96px;
  font-weight: 900;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -.04em;
}
.p-val sup { font-size: 38px; vertical-align: super; }
.price-sub { font-size: 13px; color: var(--quiet); }
.btn-offer { width: 100%; max-width: 100%; font-size: 17px; min-height: 76px; border-radius: 12px; }
.offer-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
}
.currency-note {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  background: rgba(38,96,56,.08);
  border: 1px solid rgba(38,96,56,.18);
  border-radius: 8px;
  padding: 12px 18px;
  margin-top: 8px;
  line-height: 1.5;
}
.guarantee {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--sage);
  border-radius: 12px;
  padding: 20px 24px;
}
.guarantee-badge {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.guarantee strong { color: var(--forest); }

/* ─────────────────── FAQ ─────────────────── */
.faq { background: var(--white); }
.faq-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
  margin: 0 0 40px;
  text-align: center;
}
details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
details:first-of-type { border-top: 1px solid var(--line); }
summary {
  font-size: 16px;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--terra);
  flex-shrink: 0;
  transition: transform .2s;
}
details[open] summary::after { transform: rotate(45deg); }
details p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  padding-top: 14px;
}

/* ─────────────────── FECHAMENTO ─────────────────── */
.closing { background: var(--forest); }
.closing .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.closing h2 { margin-bottom: 0; }
.closing-sub {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  max-width: 440px;
  line-height: 1.65;
}
.closing-lock { font-size: 12px; color: rgba(255,255,255,.38); }

/* ─────────────────── FOOTER ─────────────────── */
footer {
  background: var(--ink);
  text-align: center;
  padding: 32px var(--gap);
  font-size: 12px;
  color: rgba(255,255,255,.36);
  line-height: 1.75;
}
footer b { display: block; color: rgba(255,255,255,.65); font-size: 13px; margin-bottom: 6px; }

/* ─────────────────── STICKY MOBILE ─────────────────── */
.sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  padding: 12px 16px;
  z-index: 200;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}
.sticky span { font-size: 13px; color: rgba(255,255,255,.7); }
.sticky b { color: #fff; }
.sticky a {
  background: var(--terra);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 8px;
  letter-spacing: .04em;
  white-space: nowrap;
}

/* ══════════════ RESPONSIVO ══════════════ */
@media (max-width: 960px) {
  .salads-featured { grid-template-columns: 1fr 1fr; }
  /* Hero empilhado */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 64px var(--gap) 48px;
    max-width: 100%;
    margin: 0;
  }
  .hero-right { height: auto; }
  .hero-img { height: auto; object-fit: initial; }
  .hero-right::after {
    background: linear-gradient(to bottom, var(--forest) 0%, transparent 20%);
  }

  /* 2 colunas de foto */
  .fp-grid { grid-template-columns: 1fr 1fr; }
  .fp-card:nth-child(3),
  .fp-card:nth-child(4) { display: none; }

  /* Dor */
  .pain-grid { grid-template-columns: 1fr; gap: 40px; }
  .pain-right { padding-top: 0; }

  /* Segredo */
  .secret-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Receitas 2 col */
  .recipes-grid { grid-template-columns: 1fr 1fr; }

  /* Bonus 1 col */
  .bonuses-grid { grid-template-columns: 1fr; }

  /* Facilidade */
  .ease-grid { grid-template-columns: 1fr; gap: 40px; }
  .ease-photo { order: -1; }

  /* Prova social */
  .prova-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .social-stats { gap: 20px; padding: 16px 20px; }
  .ss-item strong { font-size: 22px; }
}

@media (max-width: 600px) {
  .container { padding: 64px 16px; }

  /* Hero */
  .hero-left { padding: 48px 16px 36px; gap: 20px; }
  .hero-left h1 { font-size: clamp(34px, 10vw, 52px); }
  .hero-desc { font-size: 16px; }

  /* Fotos preview: 2 col no mobile */
  .food-preview { padding: 28px 16px; }
  .fp-grid { gap: 8px; grid-template-columns: 1fr 1fr; }
  .fp-card:nth-child(3) { display: none; }
  .fp-card:nth-child(4) { display: none; }

  /* Receitas: 1 col no mobile */
  .salads-featured { grid-template-columns: 1fr; gap: 16px; }

  /* Bonus: 1 col, imagem menor */
  .bonuses-grid { gap: 14px; }
  .bonus-body { padding: 16px 18px 20px; }

  /* Oferta */
  .offer-card { padding: 32px 16px; }
  .p-val { font-size: 72px; }
  .p-val sup { font-size: 30px; }

  /* Check list */
  .check-list li { font-size: 14px; padding: 13px 14px 13px 44px; }

  /* Prova social */
  .prova-grid { grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 12px; }
  .social-stats { flex-direction: column; gap: 12px; padding: 20px 16px; }
  .ss-divider { width: 60px; height: 1px; }

  /* Sticky */
  .sticky { display: flex; }
  body { padding-bottom: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
