/* ============================================================
   PALETA V3: BRANCO + VERDE + LARANJA
   Laranja = ação e destaque (CTAs, números, eyebrows, badges).
   Verde = identidade e estrutura (títulos, ícones, bordas, selo).
   Verde nunca em botão de compra; laranja nunca em texto longo.
   ============================================================ */
:root {
  --green-deep:  #0B6458;   /* revelação, price-card, CTA final, títulos claros */
  --green-mid:   #158F7C;   /* ícones, timeline, bordas de card */
  --green-pale:  #E8F5EE;   /* espelho, prova, histórias, oferta, bio */
  --green-light: #7FD9C4;   /* acentos verdes sobre fundo escuro */
  --off-white:   #F7FAF7;   /* cards sobre fundo branco */
  --white:       #FFFFFF;

  --orange:      #F2790F;   /* CTAs, números grandes, destaques */
  --orange-h:    #D96A0C;   /* hover e laranja em texto pequeno sobre claro */
  --orange-soft: #FFB25C;   /* acentos laranja sobre fundo verde escuro */

  --text-dark:  #1B2B28;
  --text-mid:   #4A5E5A;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --max-w:     1180px;
  --section-py: 64px;
}

/* ============================================================
   RESET E BASE (tipografia para 40 a 65 anos: corpo 18px+)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   COMPONENTES BASE
   ============================================================ */
.eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
  color: var(--orange-h);
}
.eyebrow--center { text-align: center; }
.s-reveal .eyebrow { color: var(--orange-soft); }

.section-title {
  font-size: clamp(27px, 6.5vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--green-deep);
  margin-bottom: 32px;
}
.section-title--light  { color: var(--white); }
.section-title--center { text-align: center; }
.txt-orange { color: var(--orange-soft); }

/* CTA: laranja em todas as seções, mínimo 48px de altura no mobile */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  width: 100%;
  max-width: 460px;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(242, 121, 15, 0.35);
}
.btn-primary:hover {
  background: var(--orange-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(242, 121, 15, 0.45);
}
.btn-primary:active { transform: translateY(0); }
.btn-xl { font-size: 17px; min-height: 58px; padding: 18px 28px; max-width: 500px; }

.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cta-micro {
  font-size: 14px;
  color: var(--text-mid);
  text-align: center;
  margin-top: 8px;
}
.cta-micro--light { color: rgba(255, 255, 255, 0.72); }

/* Divisores de onda finos (40 a 56px), fill = cor da PRÓXIMA seção */
.wave { display: block; width: 100%; line-height: 0; pointer-events: none; }
.wave svg { display: block; width: 100%; height: 48px; }

/* Citação da Cláudia (fundo claro: verde estrutural) */
.claudia-quote {
  border-left: 4px solid var(--green-mid);
  padding: 14px 18px;
  margin-top: 20px;
}
.claudia-quote p {
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.claudia-quote footer {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-deep);
}
/* Na revelação (fundo verde escuro), a citação clareia */
.s-reveal .claudia-quote { border-left-color: var(--green-light); }
.s-reveal .claudia-quote p { color: rgba(255, 255, 255, 0.92); }
.s-reveal .claudia-quote footer { color: var(--green-light); }

.claudia-quote--big {
  max-width: 640px;
  margin: 40px auto 36px;
  text-align: center;
  border-left: none;
  border-top: 3px solid var(--green-mid);
  padding-top: 22px;
}
.claudia-quote--big p { font-size: clamp(19px, 3vw, 24px); font-weight: 600; }

/* ============================================================
   STICKY CTA (mobile)
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--orange);
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  text-align: center;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   1. HERO (#FFFFFF)
   ============================================================ */
.s-hero { background: var(--white); }
.hero__center {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 0 40px;
}
.hero__headline {
  font-size: clamp(30px, 8vw, 58px);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero__highlight { color: var(--orange); display: block; }
.hero__sub {
  font-size: clamp(18px, 2.6vw, 21px);
  color: var(--text-mid);
  max-width: 700px;
  margin: 0 auto 28px;
  font-weight: 500;
  line-height: 1.6;
}
.hero__sub strong { color: var(--green-deep); font-weight: 700; }

.vsl-wrap {
  background: linear-gradient(160deg, var(--green-deep) 0%, #084A40 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 760px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(11, 100, 88, 0.22);
  cursor: pointer;
}
.vsl-inner { text-align: center; color: rgba(255, 255, 255, 0.75); }
.vsl-play  { font-size: 54px; line-height: 1; margin-bottom: 10px; color: var(--orange-soft); }
.vsl-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   2. ESPELHO (#E8F5EE)
   ============================================================ */
.s-mirror { background: var(--green-pale); padding-top: var(--section-py); }

.mirror-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.mirror-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.55;
  box-shadow: 0 2px 12px rgba(11, 100, 88, 0.08);
  border-left: 4px solid var(--green-mid);
  quotes: "\201C" "\201D";
}
.mirror-card::before { content: open-quote; color: var(--green-mid); font-weight: 900; }
.mirror-card::after  { content: close-quote; color: var(--green-mid); font-weight: 900; }

.mirror-close {
  text-align: center;
  font-size: clamp(18px, 3vw, 22px);
  max-width: 640px;
  margin: 36px auto 0;
  color: var(--text-dark);
}
.mirror-close strong { color: var(--green-deep); }

/* ============================================================
   3. REVELAÇÃO (#0B6458: âncora escura, destaques laranja)
   ============================================================ */
.s-reveal { background: var(--green-deep); padding-top: var(--section-py); }

.reveal-body { max-width: 760px; margin-bottom: 44px; }
.reveal-body p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  margin-bottom: 18px;
}
.reveal-body strong { color: var(--orange-soft); }

/* Autoexame interativo */
.selfexam {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  margin-bottom: 40px;
}
.selfexam__title {
  font-size: clamp(20px, 3.4vw, 26px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.selfexam__intro {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
  font-size: 17px;
}
.selfexam__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.step { display: flex; gap: 14px; align-items: flex-start; }
.step__num {
  background: var(--orange);
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  padding-top: 6px;
  line-height: 1.55;
}
.step__text strong { color: var(--white); }

.selfexam__question {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.selfexam__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.exam-opt {
  min-height: 48px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.exam-opt:hover { border-color: var(--orange-soft); }
.exam-opt.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.exam-result {
  border-radius: var(--radius);
  padding: 16px 18px;
  animation: fadeUp 0.3s ease;
}
.exam-result p { font-size: 17px; color: rgba(255, 255, 255, 0.9); line-height: 1.6; }
.exam-result strong { color: var(--white); }
.exam-result--mild { background: rgba(125, 220, 111, 0.14); border-left: 4px solid #7DDC6F; }
.exam-result--mod  { background: rgba(255, 178, 92, 0.14);  border-left: 4px solid var(--orange-soft); }
.exam-result--sev  { background: rgba(255, 122, 133, 0.14); border-left: 4px solid #FF7A85; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mini-bloco anti-cirurgia */
.antisurgery {
  background: rgba(0, 0, 0, 0.24);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  max-width: 760px;
}
.antisurgery h3 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.antisurgery p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
}
.antisurgery p strong { color: var(--orange-soft); }

/* ============================================================
   4. ANTES E DEPOIS (#FFFFFF): grade densa de quadrados
   ============================================================ */
.s-beforeafter { background: var(--white); padding-top: var(--section-py); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 980px;
  margin: 0 auto;
}
.ba-grid .ba-item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(11, 100, 88, 0.14);
  aspect-ratio: 1 / 1;
}
.ba-grid .ba-item picture { display: block; width: 100%; height: 100%; }
.ba-grid .ba-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.s-beforeafter .disclaimer-line { margin: 18px auto 28px; max-width: 640px; }

/* ============================================================
   5. PROVA RÁPIDA (#E8F5EE)
   ============================================================ */
.s-proof { background: var(--green-pale); padding-top: var(--section-py); }

.proof-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 40px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 22px;
  border-top: 4px solid var(--orange);
  text-align: center;
}
.stat-quote {
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.3;
  margin-bottom: 10px;
}
.stat-who {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.proof-subtitle {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

/* Grade de prints: colunas fluidas, prints legíveis, toque para ampliar */
.print-grid { columns: 1; column-gap: 14px; }
.print {
  display: block;
  width: 100%;
  margin-bottom: 14px;
  break-inside: avoid;
  border: none;
  padding: 0;
  background: none;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(11, 100, 88, 0.14);
}
.print img { width: 100%; }

.disclaimer-line {
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 8px;
  text-align: center;
}

/* ============================================================
   6. O QUE MUDA (#FFFFFF)
   ============================================================ */
.s-changes { background: var(--white); padding-top: var(--section-py); }

.changes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.change-card {
  background: var(--off-white);
  border: 1px solid rgba(21, 143, 124, 0.14);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.change-icon { font-size: 30px; margin-bottom: 10px; }
.change-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.change-card p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.6;
  font-style: italic;
}

/* ============================================================
   7. HISTÓRIAS REAIS (#E8F5EE, cards brancos com borda verde)
   ============================================================ */
.s-stories { background: var(--green-pale); padding-top: var(--section-py); }

.stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}
.story-card {
  background: var(--white);
  border-left: 4px solid var(--green-mid);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: 0 2px 14px rgba(11, 100, 88, 0.1);
}
.story-card .print { margin-bottom: 0; box-shadow: none; }
.story-card figcaption {
  font-size: 15px;
  font-weight: 600;
  color: var(--green-deep);
  text-align: center;
  padding: 12px 6px 4px;
}

/* ============================================================
   8. JORNADA (#FFFFFF)
   ============================================================ */
.s-journey { background: var(--white); padding-top: var(--section-py); }

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto 36px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-deep), var(--green-mid));
}
.timeline__item {
  position: relative;
  padding: 0 0 28px 56px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: 11px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  z-index: 1;
}
.timeline__item--green .timeline__dot { border: 5px solid var(--green-mid); }
.timeline__item--gold  .timeline__dot { border: 5px solid var(--orange); }

.timeline__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.timeline__item--green .timeline__badge { background: var(--green-mid); color: var(--white); }
.timeline__item--gold  .timeline__badge { background: var(--orange); color: var(--white); }

.timeline__body {
  border-radius: var(--radius);
  padding: 18px 20px;
  background: var(--off-white);
}
.timeline__item--green .timeline__body { border-left: 4px solid var(--green-mid); }
.timeline__item--gold  .timeline__body { border-left: 4px solid var(--orange); }

.timeline__body h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.timeline__body p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.65;
}
.timeline__body strong { color: var(--text-dark); }
.timeline__body em { color: var(--green-deep); }

/* Card de destaque máximo */
.journey-highlight {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(242, 121, 15, 0.08);
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.journey-highlight p {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.55;
}
.journey-highlight strong { color: var(--orange-h); }

/* ============================================================
   9. OFERTA (#E8F5EE, price-card #0B6458)
   ============================================================ */
.s-offer { background: var(--green-pale); padding-top: var(--section-py); }

.offer-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

/* Stack de valor: lista empilhada, nunca tabela espremida */
.value-stack {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(11, 100, 88, 0.08);
}
.stack-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(11, 100, 88, 0.08);
}
.stack-label { font-size: 16px; color: var(--text-dark); line-height: 1.45; }
.stack-val   { font-size: 15px; font-weight: 800; color: var(--green-deep); }
.stack-row--bonus .stack-label { color: var(--text-mid); }
.stack-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  background: var(--green-deep);
  color: var(--white);
  font-weight: 800;
  font-size: 17px;
}
.stack-total span:last-child { font-size: 24px; color: var(--orange-soft); }

/* Price-card escuro: o parcelamento é o número grande, em laranja */
.price-card {
  background: linear-gradient(160deg, var(--green-deep) 0%, #07463D 100%);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  scroll-margin-top: 20px;
}
.price-from { font-size: 17px; color: rgba(255, 255, 255, 0.6); }
.price-from s { text-decoration-color: var(--orange); }
.price-main {
  font-size: clamp(30px, 7vw, 42px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.1;
}
.price-or { font-size: 15px; color: rgba(255, 255, 255, 0.45); }
.price-installment {
  font-size: clamp(34px, 9vw, 60px);
  font-weight: 400;
  color: var(--orange-soft);
  line-height: 1.15;
  margin-bottom: 8px;
}
.price-installment strong { font-weight: 900; }
.price-compare {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  max-width: 340px;
  margin-bottom: 16px;
}

/* ============================================================
   10. GARANTIA (#FFFFFF, selo verde)
   ============================================================ */
.s-guarantee { background: var(--white); padding-top: var(--section-py); }

.guarantee-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 860px;
  margin: 0 auto;
}
.seal {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--green-deep), var(--green-mid));
  border: 4px solid var(--green-pale);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(11, 100, 88, 0.28);
}
.seal__num  { font-size: 56px; font-weight: 900; color: var(--white); line-height: 1; }
.seal__days { font-size: 15px; color: var(--green-light); font-weight: 700; }
.seal__text {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  line-height: 1.4;
}

.guarantee-text { text-align: center; }
.guarantee-text h2 {
  font-size: clamp(25px, 5vw, 38px);
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 16px;
}
.guarantee-text > p {
  font-size: 18px;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.guarantee-text strong { color: var(--text-dark); }

.guarantee-note {
  background: var(--green-pale);
  border-radius: var(--radius);
  border-left: 4px solid var(--green-mid);
  padding: 18px 20px;
  margin-bottom: 24px;
  text-align: left;
}
.guarantee-note p { font-size: 17px; color: var(--text-mid); line-height: 1.65; }

/* ============================================================
   11. BIO (#E8F5EE)
   ============================================================ */
.s-bio { background: var(--green-pale); padding-top: var(--section-py); }

.bio-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
.bio-photo { text-align: center; }
/* Foto atual tem fundo teal: moldura branca/verde integra ao fundo claro */
.bio-photo img {
  max-width: 300px;
  margin: 0 auto;
  border: 6px solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 2px rgba(21, 143, 124, 0.4), 0 12px 32px rgba(11, 100, 88, 0.18);
}
.bio-content h2 {
  font-size: clamp(27px, 5.5vw, 42px);
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.bio-credential {
  font-size: 16px;
  font-weight: 700;
  color: var(--orange-h);
  margin-bottom: 20px;
}
.bio-content > p {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.claudia-quote--bio { margin: 24px 0; }
.claudia-quote--bio p { color: var(--text-dark); font-size: 19px; font-weight: 600; }
.claudia-quote--bio footer { color: var(--text-mid); font-weight: 500; }

.partner-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 4px solid var(--green-mid);
  box-shadow: 0 2px 12px rgba(11, 100, 88, 0.08);
}
.partner-block h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.partner-block p { font-size: 16px; color: var(--text-mid); line-height: 1.65; }

/* ============================================================
   12. FAQ (#FFFFFF)
   ============================================================ */
.s-faq { background: var(--white); padding-top: var(--section-py); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(11, 100, 88, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(11, 100, 88, 0.06);
}
.faq-q {
  width: 100%;
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.45;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--off-white); }
.faq-q[aria-expanded="true"] { color: var(--green-deep); background: var(--green-pale); }
.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--green-mid);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { border-top: 1px solid rgba(11, 100, 88, 0.08); padding: 16px 20px 20px; }
.faq-a p { font-size: 17px; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   13. CTA FINAL (#0B6458, CTA laranja)
   ============================================================ */
.s-final {
  background: linear-gradient(165deg, var(--green-deep) 0%, #07463D 100%);
  padding: var(--section-py) 0;
  text-align: center;
}
.s-final .section-title { max-width: 820px; margin-left: auto; margin-right: auto; color: var(--white); }
.final-text {
  font-size: clamp(17px, 2.6vw, 20px);
  color: rgba(255, 255, 255, 0.87);
  max-width: 660px;
  margin: 0 auto 32px;
  line-height: 1.75;
}
.final-price { margin-bottom: 20px; }
.final-install {
  font-size: clamp(30px, 7vw, 50px);
  color: var(--orange-soft);
  font-weight: 400;
}
.final-install strong { font-weight: 900; }
.final-or { font-size: 15px; color: rgba(255, 255, 255, 0.55); margin-top: 4px; }
.final-tagline {
  font-size: clamp(17px, 2.5vw, 21px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
}
.final-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* ============================================================
   FOOTER (verde escuro)
   ============================================================ */
.footer {
  background: #063B33;
  padding: 32px 0 96px; /* espaço extra para o sticky CTA no mobile */
  text-align: center;
}
.footer p { font-size: 13px; color: rgba(255, 255, 255, 0.45); line-height: 1.8; }
.footer a { color: rgba(255, 255, 255, 0.65); text-decoration: underline; text-underline-offset: 2px; }
.footer a:hover { color: var(--white); }
.footer__disclaimer {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  max-width: 520px;
  margin: 0 auto 12px;
}

/* ============================================================
   LIGHTBOX (toque para ampliar prints e antes/depois)
   ============================================================ */
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 26, 22, 0.94);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox__img {
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  border-radius: var(--radius);
}
.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

/* ============================================================
   TABLET: 768px+
   ============================================================ */
@media (min-width: 768px) {
  :root { --section-py: 88px; }

  .btn-primary { width: auto; }
  .sticky-cta { display: none; }
  .footer { padding-bottom: 32px; }

  .mirror-grid  { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ba-grid      { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .proof-stats  { grid-template-columns: repeat(3, 1fr); }
  .print-grid   { columns: 2; }
  .changes-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stories-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }

  .stack-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .stack-val { white-space: nowrap; }

  .offer-layout { flex-direction: row; align-items: stretch; }
  .value-stack  { flex: 1.2; display: flex; flex-direction: column; }
  .value-stack .stack-row { flex: 1; justify-content: space-between; }
  .value-stack .stack-total { margin-top: auto; }
  .price-card   { flex: 1; justify-content: center; min-width: 320px; }

  .guarantee-inner { flex-direction: row; align-items: flex-start; text-align: left; gap: 44px; }
  .guarantee-seal  { flex-shrink: 0; }
  .guarantee-text  { text-align: left; }

  .bio-inner { flex-direction: row; align-items: flex-start; gap: 44px; }
  .bio-photo { flex-shrink: 0; }
  .bio-photo img { max-width: 340px; }

  .selfexam { padding: 32px 28px; }
  .selfexam__options { flex-direction: row; }
  .exam-opt { flex: 1; }
}

/* ============================================================
   DESKTOP: 1024px+
   ============================================================ */
@media (min-width: 1024px) {
  :root { --section-py: 104px; }
  .container { padding: 0 40px; }

  .changes-grid { grid-template-columns: repeat(3, 1fr); }
  .print-grid   { columns: 3; }
  .hero__center { padding: 64px 0 56px; }
}

/* ============================================================
   LARGE: 1440px+
   ============================================================ */
@media (min-width: 1440px) {
  .print-grid { columns: 4; }
  .bio-photo img { max-width: 400px; }
}
