/* ============================================================
   PROJETO M90 — Espaço da Marys
   Brand identity rebuilt from the real cardápio
   Kraft paper · forest & leaf green · terracotta · gold
   Anton (display) · Yellowtail (script) · Quicksand (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Yellowtail&family=Quicksand:wght@400;500;600;700&display=swap');

.header-actions { display: flex; align-items: center; gap: 14px; }
.footer-copy { font-size: 13px; opacity: .7; }

/* ---------- TOKENS ---------- */
:root {
  --paper:        #ECE3D2;   /* kraft paper base */
  --paper-2:      #F4EEE0;   /* lighter cream */
  --paper-3:      #E3D7C0;   /* deeper kraft */
  --green:        #4E7A33;   /* leaf / brand primary */
  --green-bright: #6FA844;   /* sprout highlight */
  --green-deep:   #233A20;   /* forest — dark sections + headings */
  --green-deep-2: #182B16;   /* near-black green */
  --olive:        #5C6B43;   /* sage olive dark band */
  --terra:        #A8621C;   /* terracotta — accent / CTA */
  --terra-dark:   #874C10;
  --gold:         #CBA85E;   /* tan/gold on dark */
  --ink:          #2C3322;   /* body text on cream */
  --ink-soft:     #50573F;   /* secondary text on cream */
  --cream-text:   #ECE3D2;   /* text on dark */

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-script:  "Yellowtail", cursive;
  --font-body:    "Quicksand", "Helvetica Neue", sans-serif;

  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-card: 0 6px 26px rgba(35,58,32,0.10);
  --shadow-card-hover: 0 16px 44px rgba(35,58,32,0.16);
  --shadow-cta: 0 10px 28px rgba(168,98,28,0.32);

  --maxw: 1200px;
  --pad-y: 100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* paper grain overlay across the whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
h1, h2, h3 { margin: 0; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.section { position: relative; padding-top: var(--pad-y); padding-bottom: var(--pad-y); z-index: 2; }

/* ---------- SHARED TYPE ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 18px;
}
.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--terra);
  letter-spacing: 0;
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--green-deep);
  text-wrap: balance;
}
.h2 .em { color: var(--green); }
.h2 .script { font-size: 1.15em; text-transform: none; display: inline-block; line-height: .9; vertical-align: -0.06em; }

.lead {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.75;
  font-weight: 500;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.center { text-align: center; }

/* ---------- BUTTONS ---------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terra);
  color: var(--paper-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 19px 44px;
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-cta);
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn-cta:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(168,98,28,.42);
}
.btn-cta .arrow { transition: transform .2s ease; }
.btn-cta:hover .arrow { transform: translateX(4px); }
.btn-cta.large { padding: 23px 60px; font-size: 18px; }

/* ---------- SPROUT LOGO MARK ---------- */
.sprout { width: 100%; height: 100%; display: block; }

/* ============================================================
   STICKY HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 20px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-mark {
  width: 46px; height: 46px;
  flex: 0 0 auto;
  display: grid; place-items: center;
}
.brand-text { line-height: 1; display: flex; flex-direction: column; gap: 3px; }
.brand-name, .brand-sub { display: block; white-space: nowrap; }
.brand { flex: 0 0 auto; }
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--cream-text);
  transition: color .3s ease;
}
.brand-sub {
  font-family: var(--font-script);
  font-size: 17px;
  color: var(--gold);
  transition: color .3s ease;
  margin-top: 1px;
}

.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a {
  color: rgba(236,227,210,.82);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: color .2s ease;
}
.site-nav a:hover { color: var(--cream-text); }

.header-cta {
  background: var(--terra);
  color: var(--paper-2);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .2s ease, transform .2s ease;
}
.header-cta:hover { background: var(--terra-dark); transform: translateY(-1px); }

/* scrolled */
.site-header.scrolled {
  background: rgba(244,238,224,.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(35,58,32,.10);
  padding: 11px 0;
}
.site-header.scrolled .brand-name { color: var(--green-deep); }
.site-header.scrolled .brand-sub { color: var(--terra); }
.site-header.scrolled .site-nav a { color: var(--ink-soft); }
.site-header.scrolled .site-nav a:hover { color: var(--green); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; flex-direction: column;
  justify-content: center; gap: 5px; padding: 0;
}
.nav-toggle span { display: block; height: 2px; width: 24px; background: var(--cream-text); border-radius: 2px; transition: transform .3s ease, opacity .3s ease, background .3s ease; }
.site-header.scrolled .nav-toggle span { background: var(--green-deep); }
.nav-toggle.active span { background: var(--cream-text); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile slide-in menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: linear-gradient(155deg, #182B16 0%, #233A20 100%);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .28s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.mobile-menu a {
  color: var(--cream-text); font-family: var(--font-display);
  font-size: 32px; letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
}
.mobile-menu a:not(.mm-cta):active { color: var(--gold); }
.mobile-menu .mm-cta {
  margin-top: 14px; background: var(--terra); color: var(--paper-2);
  font-size: 16px; padding: 16px 34px; border-radius: var(--radius-pill); letter-spacing: .5px;
}
body.menu-open { overflow: hidden; }

/* ============================================================
   ORGANIC RIBBON WAVE (brand signature)
   ============================================================ */
.ribbon {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 120px;
  display: block;
  z-index: 3;
  pointer-events: none;
}
.ribbon.flip { top: auto; bottom: 0; transform: scaleY(-1); }
.ribbon svg { width: 100%; height: 100%; display: block; }

/* ============================================================
   S01 — HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(111,168,68,.20), transparent 46%),
    linear-gradient(150deg, #182B16 0%, #233A20 52%, #2E4A28 100%);
  overflow: hidden;
  z-index: 2;
}
/* faint leaf veins texture */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 88%, rgba(0,0,0,.30), transparent 42%);
  pointer-events: none;
}
.hero .container {
  position: relative; z-index: 4;
  display: grid;
  grid-template-columns: 54% 46%;
  align-items: center;
  gap: 32px;
  padding-top: 140px;
  padding-bottom: 90px;
}
.hero-copy { max-width: 580px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  background: rgba(236,227,210,.10);
  border: 1px solid rgba(203,168,94,.35);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 26px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 78px);
  line-height: .98;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--cream-text);
  margin-bottom: 26px;
}
.hero h1 .l1 { display: block; color: rgba(236,227,210,.78); }
.hero h1 .l2 { display: block; }
.hero h1 .leve {
  font-family: var(--font-script);
  text-transform: none;
  font-size: 1.18em;
  color: var(--gold);
  letter-spacing: 0;
}
.hero-sub {
  font-size: clamp(16px, 1.3vw, 18px); line-height: 1.7; font-weight: 500;
  color: rgba(236,227,210,.82);
  max-width: 520px; margin-bottom: 26px; text-wrap: pretty;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-bottom: 36px; }
.hero-badges span {
  font-size: 14px; font-weight: 600; color: rgba(236,227,210,.78);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-badges span::before { content: "✿"; color: var(--green-bright); font-size: 13px; }
.hero-cta-note { font-size: 14px; color: rgba(236,227,210,.6); font-style: italic; margin-top: 16px; }

.hero-image-wrap { position: relative; justify-self: end; width: 100%; }
.hero-image-wrap image-slot { width: 100%; height: 580px; }
.hero-image-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -1px; width: 30%;
  background: linear-gradient(90deg, #233A20 0%, rgba(35,58,32,0) 100%);
  pointer-events: none; z-index: 3;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
/* corner brackets like the cover */
.hero-image-wrap .bracket { position: absolute; width: 46px; height: 46px; border: 2px solid rgba(203,168,94,.7); z-index: 4; }
.hero-image-wrap .bracket.tl { top: 16px; left: 16px; border-right: none; border-bottom: none; }
.hero-image-wrap .bracket.br { bottom: 16px; right: 16px; border-left: none; border-top: none; }

.scroll-indicator {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 5; color: rgba(203,168,94,.6); font-size: 26px; text-decoration: none;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translate(-50%,0);} 50%{transform:translate(-50%,8px);} }

/* ============================================================
   S02 — SOCIAL PROOF NUMBERS
   ============================================================ */
.numbers {
  position: relative;
  background: var(--olive);
  padding: 78px 0 70px;
  z-index: 2;
}
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 2; }
.num-item { text-align: center; padding: 8px 26px; position: relative; }
.num-item + .num-item::before {
  content: ""; position: absolute; left: 0; top: 14%; bottom: 14%; width: 1px;
  background: rgba(236,227,210,.18);
}
.num-icon { font-size: 28px; margin-bottom: 10px; }
.num-value {
  font-family: var(--font-display);
  font-size: clamp(46px, 8vw, 72px); line-height: 1;
  color: var(--gold); letter-spacing: 0;
}
.num-label { font-size: 14px; font-weight: 600; color: rgba(236,227,210,.85); margin-top: 8px; line-height: 1.4; }

/* ============================================================
   S03 — PAIN POINTS
   ============================================================ */
.pain { background: var(--paper); }
.pain .container { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.pain-image { position: relative; }
.pain-image image-slot { width: 100%; height: 560px; }
.pain-list { display: flex; flex-direction: column; gap: 22px; margin-top: 14px; }
.pain-row { display: flex; gap: 18px; align-items: flex-start; }
.pain-ico {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%;
  background: var(--paper-3); border: 1px solid rgba(168,98,28,.25);
  display: grid; place-items: center; font-size: 22px;
}
.pain-row p { font-size: 17px; line-height: 1.55; font-weight: 500; color: var(--ink-soft); }
.pain-row p b { color: var(--green-deep); font-weight: 700; }
.transition-quote {
  font-size: 18px; font-weight: 600; color: var(--green);
  border-left: 4px solid var(--terra); padding-left: 20px; margin-top: 32px; line-height: 1.6;
}
.transition-quote .script { font-size: 24px; }

/* ============================================================
   S04 — SOLUTION INTRO
   ============================================================ */
.solution { background: var(--paper-2); }
.solution .narrow { max-width: 820px; margin: 0 auto; }
.solution .lead { margin: 22px auto 0; max-width: 720px; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.pillar {
  background: var(--paper);
  border: 1px solid rgba(35,58,32,.08);
  border-radius: var(--radius); box-shadow: var(--shadow-card);
  text-align: center; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.pillar-photo image-slot { width: 100%; height: 168px; display: block; }
.pillar-body { padding: 0 28px 36px; }
.pillar-ico {
  width: 62px; height: 62px; border-radius: 50%;
  margin: -31px auto 16px; position: relative; z-index: 2;
  border: 4px solid var(--paper);
  display: grid; place-items: center; font-size: 26px;
}
.pillar h3 {
  font-family: var(--font-display); font-size: 24px; letter-spacing: .5px;
  text-transform: uppercase; color: var(--green-deep); margin-bottom: 12px;
}
.pillar p { font-size: 15px; line-height: 1.65; font-weight: 500; color: var(--ink-soft); }

/* nutrition stamps */
.stamps {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 40px;
  margin-top: 56px;
}
.stamp {
  width: 110px; height: 110px; border-radius: 50%;
  border: 2px solid var(--green);
  box-shadow: 0 0 0 4px var(--paper-2), 0 0 0 5px rgba(78,122,51,.35);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; text-align: center; color: var(--green); background: transparent;
}
.stamp .s-ico { font-size: 22px; line-height: 1; }
.stamp .s-txt {
  font-family: var(--font-display); font-size: 13px; line-height: 1.05;
  letter-spacing: .5px; text-transform: uppercase; color: var(--green-deep);
}

/* ============================================================
   CTA BRIDGES (forest green band)
   ============================================================ */
.cta-band {
  position: relative;
  background:
    radial-gradient(circle at 50% -10%, rgba(111,168,68,.22), transparent 55%),
    linear-gradient(120deg, #233A20 0%, #182B16 100%);
  padding: 96px 0;
  text-align: center;
  overflow: hidden;
  z-index: 2;
}
.cta-band .container { position: relative; z-index: 4; }
.cta-band h2 {
  font-family: var(--font-display); font-size: clamp(30px, 5vw, 50px); line-height: 1.02;
  letter-spacing: .5px; text-transform: uppercase; color: var(--cream-text);
  max-width: 760px; margin: 0 auto 22px; text-wrap: balance;
}
.cta-band h2 .script { color: var(--gold); font-size: 1.15em; text-transform: none; }
.cta-band .sub { font-size: clamp(16px, 1.3vw, 18px); line-height: 1.7; font-weight: 500; color: rgba(236,227,210,.82); max-width: 620px; margin: 0 auto 40px; }
.cta-band .micro { font-size: 14px; font-style: italic; color: rgba(236,227,210,.6); margin-top: 16px; }

/* ============================================================
   S06 — PROTOCOL INFOGRAPHIC
   ============================================================ */
.protocol { background: var(--paper); }
.protocol .header { max-width: 1100px; margin: 0 auto; }
.timeline {
  position: relative; max-width: 1100px; margin: 60px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.timeline::before {
  content: ""; position: absolute; top: 24px; left: 16%; right: 16%; height: 0;
  border-top: 2px dashed var(--green-bright); z-index: 0;
}
.phase { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.phase-node {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--phase-color, var(--green)); color: var(--paper-2);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 20px;
  margin-bottom: 22px; box-shadow: 0 0 0 6px var(--paper), 0 6px 18px rgba(35,58,32,.25);
}
.phase-card {
  background: var(--paper-2); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow-card);
  border-top: 5px solid var(--phase-color, var(--green));
  width: 100%; flex: 1; display: flex; flex-direction: column;
}
.phase-badge {
  display: inline-block; align-self: flex-start;
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 16px;
  background: var(--phase-badge-bg); color: var(--phase-color);
}
.phase-card h3 { font-family: var(--font-display); font-size: 27px; letter-spacing: .5px; text-transform: uppercase; color: var(--green-deep); margin-bottom: 4px; }
.phase-card .phase-sub { font-size: 14px; font-style: italic; font-weight: 500; color: var(--ink-soft); margin-bottom: 20px; }
.phase-card ul { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.phase-card li { font-size: 14px; line-height: 1.5; font-weight: 500; color: var(--ink-soft); display: flex; gap: 10px; }
.phase-card li::before { content: "✓"; color: var(--green); font-weight: 700; flex: 0 0 auto; }
.result-chip {
  align-self: flex-start; font-size: 12px; font-weight: 700; letter-spacing: .5px;
  padding: 7px 16px; border-radius: var(--radius-pill);
  background: var(--phase-badge-bg); color: var(--phase-color);
}
.disclaimer { font-size: 13px; font-style: italic; color: var(--ink-soft); text-align: center; margin: 36px auto 0; max-width: 760px; }

/* ============================================================
   S07 — HOW IT WORKS
   ============================================================ */
.how { background: var(--paper-3); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; }
.step {
  position: relative; background: var(--paper-2); border-radius: var(--radius);
  padding: 32px 26px; box-shadow: var(--shadow-card); overflow: hidden;
  border: 1px solid rgba(35,58,32,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.step-num {
  position: absolute; top: 10px; right: 16px;
  font-family: var(--font-display); font-size: 56px; line-height: 1;
  color: var(--green); opacity: .12;
}
.step-ico { font-size: 30px; margin-bottom: 14px; }
.step h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: .5px; text-transform: uppercase; color: var(--green-deep); margin-bottom: 10px; }
.step p { font-size: 14px; line-height: 1.6; font-weight: 500; color: var(--ink-soft); }
.step-inline-cta { display: inline-block; margin-top: 14px; font-size: 14px; font-weight: 700; letter-spacing: .5px; color: var(--terra); text-decoration: none; text-transform: uppercase; }
.step-inline-cta:hover { color: var(--terra-dark); }

/* ============================================================
   S08 — CTA BRIDGE 02 (cream)
   ============================================================ */
.bridge2 { position: relative; background: var(--paper); padding: 96px 0; z-index: 2; }
.bridge2 .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.bridge2-img { position: relative; }
.bridge2-img image-slot { width: 100%; height: 470px; }
.bridge2 h2 {
  font-family: var(--font-display); font-size: clamp(30px, 5vw, 50px); line-height: 1.02;
  letter-spacing: .5px; text-transform: uppercase; color: var(--green-deep);
  max-width: 560px; margin-bottom: 20px; text-wrap: balance;
}
.bridge2 h2 .em { color: var(--green); }
.bridge2 .lead { max-width: 540px; margin-bottom: 32px; }
.bridge2-cta-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.bridge2-wa { font-size: 15px; font-weight: 600; color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 32px; }
.trust-row span { font-size: 14px; font-weight: 600; color: var(--ink-soft); display: inline-flex; gap: 7px; align-items: center; }

/* ============================================================
   S09 — TESTIMONIALS (forest green)
   ============================================================ */
.testimonials { position: relative; background: linear-gradient(160deg, #233A20 0%, #182B16 100%); z-index: 2; }
.testimonials .h2 { color: var(--cream-text); }
.testimonials .h2 .em { color: var(--gold); }
.testimonials .eyebrow { color: var(--gold); }
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.tcard {
  background: rgba(236,227,210,.06); border: 1px solid rgba(203,168,94,.22);
  border-radius: var(--radius-lg); padding: 26px 24px; display: flex; flex-direction: column;
}
.tcard-photo { margin-bottom: 22px; border-radius: 14px; overflow: hidden; }
.tcard-photo image-slot { width: 100%; height: 240px; display: block; }
.tcard .stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; margin-bottom: 14px; }
.tcard blockquote {
  font-family: var(--font-body); font-weight: 500; font-size: 16px; line-height: 1.6;
  color: rgba(236,227,210,.92); margin: 0; flex: 1;
}
.tcard .name { font-family: var(--font-script); font-size: 22px; color: var(--gold); margin-top: 20px; }
.tcard .detail { font-size: 13px; font-weight: 600; color: rgba(236,227,210,.6); margin-top: 2px; }
.result-tag {
  align-self: flex-start; margin-top: 16px; font-family: var(--font-display);
  font-size: 12px; letter-spacing: .8px; padding: 7px 14px;
  border-radius: var(--radius-pill); background: var(--terra); color: var(--paper-2);
}
.testimonials .cta-below { text-align: center; margin-top: 56px; }

/* ============================================================
   S10 — FAQ
   ============================================================ */
.faq { background: var(--paper); }
.faq .inner { max-width: 820px; margin: 0 auto; }
.faq-list { margin-top: 44px; }
.faq-item { border-bottom: 1px solid rgba(35,58,32,.14); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--font-body); font-size: 18px; font-weight: 700; color: var(--green-deep);
}
.faq-q .ind { flex: 0 0 auto; color: var(--terra); font-size: 28px; line-height: 1; transition: transform .25s ease; }
.faq-item.open .faq-q .ind { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq-a-inner { font-size: 16px; line-height: 1.65; font-weight: 500; color: var(--ink-soft); padding-bottom: 22px; padding-right: 40px; }
.faq-inline-cta { display: block; text-align: center; margin-top: 40px; font-size: 14px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--terra); text-decoration: none; }
.faq-inline-cta:hover { color: var(--terra-dark); }

/* ============================================================
   S11 — FINAL CTA
   ============================================================ */
.final {
  position: relative; min-height: 86vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
  background: linear-gradient(150deg, #182B16 0%, #233A20 60%, #2E4A28 100%);
  z-index: 2;
}
.final-bg { position: absolute; inset: 0; z-index: 0; opacity: .26; }
.final-bg image-slot { width: 100%; height: 100%; }
.final::after { content: ""; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(24,43,22,.82) 0%, rgba(35,58,32,.66) 100%); z-index: 1; }
.final .container { position: relative; z-index: 4; }
/* cover-style corner brackets */
.final .frame { position: absolute; width: 60px; height: 60px; border: 2px solid rgba(203,168,94,.6); z-index: 3; }
.final .frame.tl { top: 40px; left: 40px; border-right: none; border-bottom: none; }
.final .frame.br { bottom: 40px; right: 40px; border-left: none; border-top: none; }
.final .eyebrow { color: var(--gold); }
.final h2 {
  font-family: var(--font-display); font-size: clamp(38px, 7vw, 76px); line-height: .98;
  letter-spacing: .5px; text-transform: uppercase; color: var(--cream-text);
  margin: 0 auto 24px; max-width: 880px; text-wrap: balance;
}
.final h2 .em { font-family: var(--font-script); text-transform: none; font-size: 1.18em; color: var(--gold); }
.final .sub { font-size: clamp(16px, 1.3vw, 18px); line-height: 1.7; font-weight: 500; color: rgba(236,227,210,.82); max-width: 540px; margin: 0 auto 40px; }
.final .micro { font-family: var(--font-display); font-size: 14px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-top: 18px; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 28px; margin-top: 48px; flex-wrap: wrap; }
.logos-row .lg { color: rgba(236,227,210,.7); font-size: 13px; font-weight: 600; letter-spacing: .5px; border: 1px solid rgba(203,168,94,.4); padding: 8px 18px; border-radius: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { position: relative; background: var(--green-deep-2); color: rgba(236,227,210,.6); padding: 52px 0; font-size: 14px; z-index: 2; }
.site-footer .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.site-footer .f-brand { display: flex; align-items: center; gap: 12px; }
.site-footer .f-mark { width: 40px; height: 40px; }
.site-footer .brand-name { font-family: var(--font-display); color: var(--cream-text); font-size: 20px; letter-spacing: 1px; }
.site-footer .brand-sub { font-family: var(--font-script); color: var(--gold); font-size: 16px; }
.site-footer a { color: rgba(236,227,210,.6); text-decoration: none; font-weight: 600; }
.site-footer a:hover { color: var(--cream-text); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }

/* ============================================================
   WHATSAPP FLOAT + COOKIE + MOBILE BAR
   ============================================================ */
.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 90; display: flex; align-items: center; gap: 12px; }
.wa-float .wa-tip {
  background: var(--paper-2); color: var(--green-deep); font-size: 13px; font-weight: 700;
  padding: 9px 16px; border-radius: var(--radius-pill); box-shadow: 0 4px 16px rgba(0,0,0,.18);
  white-space: nowrap; opacity: 0; transform: translateX(8px);
  transition: opacity .2s ease, transform .2s ease; pointer-events: none;
}
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }
.wa-btn { width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 4px 16px rgba(37,211,102,.45); text-decoration: none; transition: transform .2s ease; }
.wa-btn:hover { transform: scale(1.06); }
.wa-btn svg { width: 30px; height: 30px; fill: #fff; }

.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 95;
  background: var(--green-deep); color: rgba(236,227,210,.85);
  border-radius: var(--radius); padding: 18px 22px;
  display: flex; align-items: center; gap: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,.3); max-width: 720px; margin: 0 auto;
  font-size: 14px; font-weight: 500; line-height: 1.5;
}
.cookie.hide { display: none; }
.cookie p { flex: 1; }
.cookie a { color: var(--gold); }
.cookie button {
  flex: 0 0 auto; background: var(--terra); color: var(--paper-2); border: none;
  padding: 11px 24px; border-radius: var(--radius-pill); font-family: var(--font-body);
  font-weight: 700; font-size: 13px; letter-spacing: .5px; text-transform: uppercase; cursor: pointer; transition: background .2s ease;
}
.cookie button:hover { background: var(--terra-dark); }

.mobile-cta-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 96; background: var(--paper-2); box-shadow: 0 -4px 20px rgba(35,58,32,.16); padding: 12px 16px; }
.mobile-cta-bar a { display: flex; width: 100%; justify-content: center; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* carousel hint (mobile only) */
.carousel-hint { display: none; text-align: center; color: rgba(236,227,210,.6); font-size: 13px; font-weight: 600; letter-spacing: .5px; margin-top: 18px; }

/* ============================================================
   RESPONSIVE
   xs <375 · sm 375–767 · md 768–1023 · lg 1024–1279 · xl ≥1280
   Type scales fluidly via clamp(); these queries handle LAYOUT.
   ============================================================ */

/* xl — widescreen: container capped at 1200px (--maxw), centered. Nothing to do. */

/* lg and below — 4-up steps become 2-up earlier for breathing room */
@media (max-width: 1279px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}

/* md — tablet (768–1023): nav STAYS visible (no hamburger), hero 50/50, grids 2/3-up */
@media (max-width: 1023px) {
  :root { --pad-y: 80px; }
  .hero .container { grid-template-columns: 1fr 1fr; gap: 28px; padding-top: 132px; }
  .hero-image-wrap image-slot { height: 460px; }
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .pillar-body { padding: 0 20px 30px; }
  .bridge2 .container { gap: 40px; }
}

/* sm/xs — phones (<768): full stack, hamburger, sticky CTA bar, testimonials carousel */
@media (max-width: 767px) {
  :root { --pad-y: 60px; }
  .container { padding-left: 20px; padding-right: 20px; }

  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { padding: 11px 18px; font-size: 13px; }

  .hero { min-height: auto; }
  .hero .container { grid-template-columns: 1fr; padding-top: 96px; padding-bottom: 112px; gap: 28px; }
  .hero-image-wrap { order: -1; }
  .hero-image-wrap image-slot { height: 300px; }
  .hero-image-wrap::after { display: none; }
  .scroll-indicator { display: none; }

  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 0; }
  .num-item + .num-item::before { display: none; }

  .pain .container { grid-template-columns: 1fr; gap: 34px; }
  .pain-image { order: -1; }
  .pain-image image-slot { height: 320px; }

  .pillars { grid-template-columns: 1fr; gap: 22px; }
  .pillar-body { padding: 0 28px 34px; }
  .stamps { gap: 22px 28px; }
  .stamp { width: 96px; height: 96px; }

  .timeline { grid-template-columns: 1fr; gap: 34px; }
  .timeline::before { display: none; }
  .steps { grid-template-columns: 1fr; }

  .bridge2 .container { grid-template-columns: 1fr; gap: 34px; }
  .bridge2-img { order: -1; }
  .bridge2-img image-slot { height: 300px; }

  /* S09 testimonials → horizontal snap carousel (1 card + peek of next) */
  .tcards {
    grid-template-columns: none;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    padding: 4px 20px 16px;
    margin: 0 -20px;
    scrollbar-width: none;
  }
  .tcards::-webkit-scrollbar { display: none; }
  .tcard { flex: 0 0 84%; scroll-snap-align: center; }
  .carousel-hint { display: block; }

  .final { min-height: 72vh; }
  .final .frame { width: 34px; height: 34px; }
  .final .frame.tl { top: 18px; left: 18px; }
  .final .frame.br { bottom: 18px; right: 18px; }

  .site-footer .container { flex-direction: column; align-items: flex-start; }
  .wa-float { bottom: 86px; }
  .cookie { flex-direction: column; align-items: stretch; text-align: center; }
  .mobile-cta-bar { display: block; }
  .ribbon { height: 64px; }

  /* touch targets — minimum 44–48px */
  .faq-q { padding: 17px 0; min-height: 56px; }
  .btn-cta { min-height: 52px; }
  .site-nav a, .footer-links a { padding: 6px 0; display: inline-block; }
  .step-inline-cta, .bridge2-wa, .faq-inline-cta { padding: 6px 0; display: inline-block; min-height: 32px; }
}

/* xs — very small phones (<375) */
@media (max-width: 374px) {
  :root { --pad-y: 52px; }
  .container { padding-left: 16px; padding-right: 16px; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 2px; }
  .hero-badges { gap: 10px 16px; }
  .btn-cta { width: 100%; justify-content: center; padding: 16px 24px; font-size: 14px; }
  .bridge2-cta-row .btn-cta, .cta-below .btn-cta { width: 100%; }
  .tcard { flex-basis: 88%; }
  .stamp { width: 88px; height: 88px; }
}

/* ============================================================
   MODAL — ESCOLHA DE CANAL
   ============================================================ */
.channel-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 43, 22, 0.72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.channel-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.channel-modal {
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(24,43,22,0.3);
  transform: translateY(20px);
  transition: transform 0.25s ease;
  text-align: center;
}
.channel-modal-overlay.open .channel-modal {
  transform: translateY(0);
}
.channel-modal h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 30px);
  color: var(--green-deep);
  margin: 8px 0 10px;
  line-height: 1.1;
}
.channel-modal p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0 0 28px;
}
.channel-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s;
}
.channel-modal-close:hover { background: var(--paper-3); }

.channel-options {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.channel-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 20px 20px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  font-family: var(--font-body);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  flex: 1;
  min-width: 130px;
}
.channel-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.channel-btn--telegram {
  background: #229ED9;
  color: #fff;
  border-color: #1a8abf;
}
.channel-btn--telegram:hover {
  background: #1a8abf;
}
.channel-btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #1daa52;
}
.channel-btn--soon {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(0.3);
}
.channel-btn-label {
  font-weight: 700;
  font-size: 16px;
}
.channel-btn-sub {
  font-size: 12px;
  opacity: 0.85;
}

@media (max-width: 420px) {
  .channel-modal { padding: 32px 20px 28px; }
  .channel-options { flex-direction: column; gap: 12px; }
  .channel-btn { flex-direction: row; justify-content: center; gap: 14px; padding: 18px 20px; }
}

