/* =========================================================
   DECODIFIQUE SUA FOME — Landing page
   Identidade: PONTO DE EQUILÍBRIO (brand book)
   Paleta: Yellow Vitality / Dark Ground / Blue Balance / Black Clarity
   Tipografia: Anton (títulos, stand-in de Thyga) + Inter (corpo/marca)
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-alt: #F1F4F4;      /* faixa clara fria */
  --ink: #25282A;              /* Black Clarity — texto */
  --heading: #2E3C40;          /* Dark Ground — títulos */
  --muted: #66808B;            /* Blue Equilibrium — texto secundário */
  --border: #E4E9E9;
  --primary: #2E3C40;          /* Dark Ground — botões/estrutura */
  --primary-hover: #223033;
  --accent: #F0E87B;           /* Yellow Vitality */
  --accent-deep: #E4DB5A;      /* amarelo hover */
  --blue: #779FB5;             /* Blue Balance — eyebrows, checks, links */
  --green: #E2E99C;            /* Green Wellbeing */
  --tint-blue: #E7EFF3;        /* faixa azul suave (Blue Balance clareado) */
  --tint-green: #F3F6E1;       /* faixa verde suave (Green Wellbeing clareado) */
  --positive: #5F87A0;         /* check */
  --negative: #97A7AD;         /* X (neutro) */
  --dark: #2E3C40;             /* painel escuro */
  --on-dark: #EAF0F0;          /* texto sobre escuro */

  --font-display: "Anton", "Arial Narrow", "Inter", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --container: 1120px;
  --reading: 660px;

  --radius-card: 12px;
  --radius-btn: 8px;

  --shadow: 0 18px 40px -24px rgba(37, 40, 42, .30);
  --shadow-hover: 0 22px 52px -22px rgba(37, 40, 42, .36);

  --hair: 1px solid var(--border);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 66px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3 { margin: 0; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

ul, ol { margin: 0; padding: 0; list-style: none; }

strong { font-weight: 600; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: rgba(240, 232, 123, .5); color: var(--ink); }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}
.container-narrow { max-width: 780px; }

.section {
  position: relative;
  padding-block: clamp(72px, 10vw, 128px);
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.band-alt { background: var(--surface-alt); }
.band-blue { background: var(--tint-blue); }
.band-green { background: var(--tint-green); }
.band-dark { background: var(--dark); color: var(--on-dark); }
.band-yellow { background: var(--accent); color: var(--heading); }

/* ---------- Icons ---------- */
.icon {
  width: 24px; height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.icon-sm { width: 18px; height: 18px; }
.icon-check { color: var(--positive); }
.icon-x { color: var(--negative); }

/* ---------- Eyebrow / heads / hairline ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--blue);
  margin: 0 0 1.1rem;
  display: inline-block;
}
.eyebrow-light { color: var(--accent); }

.section-head { max-width: 780px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head-center { margin-inline: auto; text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: .005em;
  color: var(--heading);
}
.band-dark .section-title { color: #FFFFFF; }
.band-yellow .section-title { color: var(--heading); }
.title-soft { display: block; color: var(--muted); margin-top: .18em; }

.section-intro {
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: 1.075rem;
  line-height: 1.6;
}
.section-intro strong { color: var(--ink); }

.dropcap {
  float: left;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 3.1em;
  line-height: .82;
  padding: .04em .1em 0 0;
  color: var(--heading);
}

.hairline {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--border);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--ease);
}
.hairline.is-visible { transform: scaleX(1); }
.hairline-top { margin-bottom: clamp(32px, 6vw, 56px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1;
  padding: 1rem 1.65rem;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease),
              box-shadow .2s var(--ease);
}
.btn .icon { transition: transform .25s var(--ease); }
.btn:hover .icon-sm { transform: translateX(3px); }

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-accent {
  background: var(--accent);
  color: var(--heading);
}
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-1px); }

.btn-glow { animation: ctaGlow 2.6s var(--ease) infinite; }
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240, 232, 123, 0); }
  50% { box-shadow: 0 0 0 7px rgba(240, 232, 123, .5); }
}

.btn-ghost {
  background: transparent;
  color: var(--heading);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--heading); background: rgba(46, 60, 64, .05); }

.btn-sm { padding: .62rem 1.05rem; font-size: .9rem; }
.btn-lg { padding: 1.15rem 2rem; font-size: 1.1rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -.01em;
  color: var(--heading);
}
.wordmark em { font-style: normal; font-weight: 400; color: var(--muted); }
.wordmark-mark { width: 28px; height: 28px; color: var(--heading); }
.wordmark-mark svg { width: 100%; height: 100%; fill: currentColor; stroke: none; }

/* ---------- Section 1 — Hero ---------- */
.hero { padding-top: clamp(28px, 4vw, 46px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 360px);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero-copy { max-width: 620px; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  line-height: .98;
  letter-spacing: .005em;
  color: var(--heading);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: normal;
  color: var(--heading);
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-position: 0 92%;
  background-size: 100% .34em;
  padding: 0 .04em;
}

.hero-lead { font-size: 1.15rem; margin-bottom: 1.05rem; color: var(--ink); }
.hero-sub { color: var(--muted); margin-bottom: 1.9rem; }
.hero-sub strong { color: var(--ink); }

.hero-cta { margin-bottom: 1.8rem; }
.hero-reassure { margin-top: .9rem; font-size: .9rem; color: var(--muted); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.4rem;
  padding-top: 1.4rem;
  border-top: var(--hair);
}
.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-row .icon { color: var(--blue); }

.hero-price { margin-top: 1rem; font-size: .95rem; color: var(--muted); }

/* Hero media / video (VSL vertical 9:16 — player customizado) */
.hero-media { margin: 0; width: 100%; max-width: 360px; justify-self: center; }
.video-frame {
  background: var(--surface);
  border: var(--hair);
  border-radius: var(--radius-card);
  padding: clamp(10px, 1.4vw, 16px);
  box-shadow: var(--shadow);
}
.video-stage {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(165deg, #37474C, #2A363B);
}
.video-stage iframe {
  /* !important em tudo: a API do YouTube injeta estilos inline no iframe que
     sobrescreveriam o recorte — o !important garante que o crop seja aplicado */
  position: absolute !important;
  left: 0 !important;
  top: -20% !important;      /* empurra a barra de título (e o degradê do hover) para fora da vista */
  width: 100% !important;
  height: 140% !important;   /* 100% + 2×20%: só a tarja preta (topo/base) é cortada; o vídeo 9:16 continua inteiro */
  border: 0 !important;
  z-index: 0;
  pointer-events: none;      /* o player do YouTube não recebe nenhum clique (título não clicável) */
}
.video-yt { position: absolute; inset: 0; }

/* camada transparente: captura o clique de play/pausa e impede interação com o YouTube */
.video-guard { position: absolute; inset: 0; z-index: 1; cursor: pointer; }

/* overlay de pausa */
.video-paused {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center;
  background: rgba(37, 40, 42, .40);
  opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s var(--ease);
  pointer-events: none;
}
.is-paused .video-paused { opacity: 1; visibility: visible; }
.play-ring-mark { position: relative; display: grid; place-items: center; width: 84px; height: 84px; color: var(--accent); }

/* poster inicial */
.video-poster {
  position: absolute; inset: 0; z-index: 4;
  display: grid; place-items: center;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(119, 159, 181, .35), transparent 60%),
    linear-gradient(165deg, #37474C, #2A363B);
}

.play-btn {
  position: relative;
  width: 92px; height: 92px;
  border: 0; background: transparent; cursor: pointer;
  display: grid; place-items: center;
  color: var(--accent);
}
.play-ring { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; }
.play-ring-inner { opacity: .5; animation: playPulse 2.4s var(--ease) infinite; transform-origin: center; }
@keyframes playPulse { 0%,100% { opacity: .25; transform: scale(.94); } 50% { opacity: .6; transform: scale(1.05); } }
.play-tri { position: relative; width: 28px; height: 28px; fill: currentColor; stroke: none; margin-left: 4px; }
.play-btn:hover { color: var(--accent-deep); }
.video-caption {
  position: absolute; bottom: 16px;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(234, 240, 240, .72);
}

/* controle de volume próprio */
.video-controls {
  position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  padding: 7px 12px 7px 10px;
  background: rgba(37, 40, 42, .55);
  backdrop-filter: blur(6px);
  border-radius: 999px;
}
.video-controls[hidden] { display: none; }
.vc-mute {
  flex: none; display: grid; place-items: center;
  width: 30px; height: 30px; padding: 0;
  background: transparent; border: 0; cursor: pointer;
  color: var(--accent);
}
.vc-mute .icon { width: 20px; height: 20px; }
.vc-ic-off { display: none; }
.is-muted .vc-ic-on { display: none; }
.is-muted .vc-ic-off { display: inline; }

.vc-vol-slider {
  -webkit-appearance: none; appearance: none;
  flex: 1; height: 4px; border-radius: 999px; cursor: pointer; margin: 0;
  background: linear-gradient(to right, var(--accent) var(--pct, 50%), rgba(255,255,255,.28) var(--pct, 50%));
}
.vc-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); border: 0; cursor: pointer;
}
.vc-vol-slider::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); border: 0; cursor: pointer;
}
.vc-vol-slider::-moz-range-track { background: transparent; }
.vc-vol-slider:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.video-under { margin-top: 1rem; font-size: 1.02rem; color: var(--muted); text-align: center; }

/* ---------- Section 2 — Problem ---------- */
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 30px);
}
.id-card {
  padding: 26px 24px 28px;
  border: var(--hair);
  border-radius: var(--radius-card);
  background: var(--surface);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.id-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow); }
.id-icon {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--surface-alt);
  color: var(--heading);
  margin-bottom: 18px;
}
.id-title { font-family: var(--font-body); font-size: 1.16rem; font-weight: 700; line-height: 1.25; color: var(--heading); margin-bottom: .55rem; }
.id-card p { font-size: .95rem; color: var(--muted); margin: 0; }

/* Cycle */
.cycle-block { margin-top: clamp(48px, 7vw, 76px); }
.cycle-label { text-align: center; color: var(--muted); font-size: 1.05rem; margin-bottom: 1.6rem; }
.cycle {
  position: relative;
  overflow-x: auto;
  padding-bottom: 46px;
  scrollbar-width: thin;
}
.cycle-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-width: max-content;
  margin-inline: auto;
  padding-inline: 12px;
}
.cycle-node {
  border: var(--hair);
  border-radius: 999px;
  padding: .55rem 1.15rem;
  background: var(--surface);
  font-weight: 500;
  font-size: .95rem;
  white-space: nowrap;
  color: var(--ink);
}
.cycle-node-active { border-color: var(--blue); background: var(--blue); color: #fff; }
.cycle-arrow { color: var(--muted); display: inline-flex; }
.cycle-return {
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  width: 100%; height: 42px;
  stroke: var(--blue);
  opacity: .7;
}
.cycle-return-path { stroke-width: 1.6; stroke-dasharray: 6 7; animation: cycleDash 18s linear infinite; }
.cycle-return-head { stroke-width: 1.6; }
@keyframes cycleDash { to { stroke-dashoffset: -260; } }
.cycle-caption { text-align: center; color: var(--blue); font-weight: 600; font-size: 1rem; margin-top: .2rem; }

.prob-stanza {
  max-width: var(--reading);
  margin: clamp(48px, 7vw, 72px) auto 0;
  text-align: center;
}
.prob-stanza p { font-size: 1.1rem; margin-bottom: .5rem; color: var(--ink); }
.prob-stanza p:last-child { color: var(--muted); }

/* Turn note */
.turn-note {
  max-width: 720px;
  margin: clamp(40px, 6vw, 60px) 0 0;
  padding: 1.1rem 0 1.1rem 1.6rem;
  border-left: 4px solid var(--accent);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.32;
  color: var(--muted);
  font-weight: 400;
}
.turn-note strong { color: var(--heading); font-weight: 700; }
.turn-note-center { margin-inline: auto; }

/* ---------- Section 3 — Signals ---------- */
.section-head-signals {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  max-width: 940px;
}
.index-numeral {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.6rem, 9vw, 7rem);
  line-height: .8;
  color: var(--accent);
  -webkit-text-stroke: 2px var(--heading);
}

.signals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 24px);
}
.signal-card {
  padding: 24px 22px 26px;
  border: var(--hair);
  border-radius: var(--radius-card);
  background: var(--surface);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.signal-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow); }
.signal-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.signal-num { font-family: var(--font-display); font-size: 1.15rem; color: var(--blue); }
.signal-icon {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--surface-alt);
  color: var(--heading);
}
.signal-title { font-family: var(--font-body); font-size: 1.16rem; font-weight: 700; color: var(--heading); margin-bottom: .45rem; }
.signal-card p { font-size: .92rem; color: var(--muted); margin: 0; }

.signal-card-manifesto {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--heading);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.signal-card-manifesto:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: var(--shadow); }
.signal-manifesto {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--heading);
  margin-bottom: .5rem;
}
.signal-card-manifesto p:last-child { color: rgba(37, 40, 42, .72); font-size: .92rem; }

/* ---------- Section 4 — Learn ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 30px);
  margin-bottom: clamp(40px, 6vw, 60px);
}
.pillar-card {
  padding: 30px 28px;
  background: var(--surface);
  border: var(--hair);
  border-radius: var(--radius-card);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pillar-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow); }
.pillar-icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--heading);
  margin-bottom: 18px;
}
.pillar-title { font-family: var(--font-body); font-size: 1.25rem; font-weight: 700; line-height: 1.2; color: var(--heading); margin-bottom: .6rem; }
.pillar-card p { color: var(--muted); font-size: .98rem; margin: 0; }

.learn-more { max-width: 900px; margin-bottom: clamp(40px, 6vw, 56px); }
.learn-more-label { font-weight: 700; font-size: 1.15rem; color: var(--heading); margin-bottom: 1.2rem; }
.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem 2.4rem;
}
.checklist li { display: grid; grid-template-columns: 24px 1fr; gap: .7rem; align-items: start; font-size: 1rem; }
.checklist .icon { margin-top: 2px; }

.not-included {
  background: var(--dark);
  color: var(--on-dark);
  border-radius: var(--radius-card);
  padding: clamp(30px, 4vw, 44px);
}
.not-included-label {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
.not-included-label em { color: var(--accent); font-style: normal; }
.not-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem 2.4rem;
}
.not-list li {
  display: grid; grid-template-columns: 22px 1fr; gap: .7rem; align-items: center;
  color: rgba(234, 240, 240, .82);
}
.not-list .icon-x { color: rgba(234, 240, 240, .55); }

.section-cta { margin-top: clamp(44px, 6vw, 64px); text-align: center; }
.section-cta-line { font-weight: 500; font-size: 1.2rem; color: var(--heading); margin-bottom: 1.4rem; }

/* ---------- Section 5 — How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.5vw, 30px);
  position: relative;
  margin-bottom: clamp(48px, 7vw, 72px);
}
.steps::before {
  content: "";
  position: absolute;
  top: 30px; left: 8%; right: 8%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: left; }
.step-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--accent);
  -webkit-text-stroke: 1.6px var(--heading);
  display: block;
  margin-bottom: .3rem;
}
.step-icon {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--heading);
  margin-bottom: 14px;
}
.step-title { font-family: var(--font-body); font-size: 1.2rem; font-weight: 700; color: var(--heading); margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .93rem; margin: 0; }

.colofao {
  max-width: 820px;
  margin-inline: auto;
  border-top: var(--hair);
}
.colofao li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem .2rem;
  border-bottom: var(--hair);
}
.colofao-main { display: inline-flex; align-items: center; gap: .8rem; font-weight: 600; font-size: 1.05rem; color: var(--heading); }
.colofao-main .icon { color: var(--blue); }
.colofao-note { color: var(--muted); font-size: .92rem; text-align: right; }

/* ---------- Section 6 — For you / not ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: var(--hair);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface);
  max-width: 960px;
  margin-inline: auto;
}
.compare-col { padding: clamp(28px, 4vw, 44px); }
.compare-yes { border-right: var(--hair); }
.compare-no { background: rgba(46, 60, 64, .03); }
.compare-title {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-body);
  font-size: 1.3rem; font-weight: 700;
  color: var(--heading);
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: var(--hair);
}
.compare-col ul { display: grid; gap: .7rem; }
.compare-col li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}
.compare-col li::before {
  content: "";
  position: absolute; left: 0; top: .58em;
  width: 9px; height: 9px; border-radius: 50%;
}
.compare-yes li { color: var(--ink); }
.compare-yes li::before { background: var(--blue); }
.compare-no li { color: var(--muted); }
.compare-no li::before { background: var(--negative); border-radius: 1px; }

/* ---------- Section 7 — Rafael ---------- */
.rafael-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.portrait { margin: 0; }
.portrait-mount {
  background: var(--surface);
  border: var(--hair);
  padding: 16px;
  box-shadow: var(--shadow);
  border-radius: 6px;
}
.portrait-ph {
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  background:
    radial-gradient(120% 80% at 50% 10%, rgba(119, 159, 181, .22), transparent 55%),
    linear-gradient(160deg, #EEF3F3, #DDE7E7);
}
.portrait-img { aspect-ratio: 4 / 5; object-fit: cover; object-position: center 20%; width: 100%; border-radius: 3px; display: block; }
.portrait-monogram { font-family: var(--font-display); font-size: 3.4rem; color: var(--accent); -webkit-text-stroke: 2px var(--heading); }
.portrait-ph-label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.portrait-badge { margin-top: 1.2rem; text-align: center; font-size: .9rem; color: var(--muted); }
.portrait-badge strong { color: var(--heading); }

.rafael-copy { max-width: 600px; }
.rafael-copy > p { color: var(--muted); margin-bottom: 1rem; }
.rafael-copy > p strong { color: var(--ink); }
.rafael-copy .section-title { margin-bottom: 1.4rem; }
.pull-quote {
  margin: 2rem 0;
  padding: 2.2rem 0 0 1.6rem;   /* padding-top abre espaço p/ a aspa acima do texto */
  border-left: 4px solid var(--accent);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.32;
  font-weight: 500;
  color: var(--heading);
  position: relative;
}
.pull-quote::before {
  content: "\201C";
  position: absolute;
  left: 1.4rem;
  top: 0;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--accent);
  font-family: Georgia, serif;
}
.rafael-close { font-weight: 600; font-size: 1.1rem; color: var(--heading) !important; }

/* ---------- Section 8 — Offer ---------- */
.band-dark .eyebrow { color: var(--accent); }

.offer-card {
  max-width: 940px;
  margin: 0 auto clamp(40px, 6vw, 60px);
  background: var(--surface);
  color: var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  overflow: hidden;
}
.offer-body { padding: clamp(30px, 4vw, 46px); }
.offer-includes-label { font-weight: 700; font-size: 1.2rem; color: var(--heading); margin-bottom: 1.4rem; }
.offer-list { display: grid; gap: 1rem; }
.offer-list li { display: grid; grid-template-columns: 24px 1fr; gap: .8rem; align-items: start; font-size: 1rem; line-height: 1.45; color: var(--muted); }
.offer-list li strong { color: var(--ink); }
.offer-list .icon { margin-top: 2px; }

.offer-buy {
  padding: clamp(30px, 4vw, 46px);
  background: var(--surface-alt);
  border-left: var(--hair);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.offer-price-label { font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.offer-price { margin: 0; line-height: 1; }
.offer-price-value { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.6rem, 5vw, 3.4rem); color: var(--heading); }
.offer-price-tag { font-size: 1rem; color: var(--muted); }
.offer-installment { margin: .5rem 0 1.4rem; color: var(--muted); }
.offer-installment strong { color: var(--heading); }
.offer-payment { margin-top: .9rem; font-size: .85rem; color: var(--muted); }
.offer-microtrust { margin-top: .5rem; font-size: .8rem; color: var(--muted); }

/* Guarantee */
.guarantee {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}
.seal {
  position: relative;
  width: 118px; height: 118px;
  display: grid; place-items: center;
  color: var(--accent);
  flex: none;
}
.seal-ring { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; }
.seal-ring circle:last-child { opacity: .55; }
.seal-number { font-family: var(--font-display); font-size: 2.8rem; line-height: 1; color: #FFFFFF; }
.seal-word { position: absolute; bottom: 28px; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.seal { animation: sealGlow 2.6s var(--ease) infinite; border-radius: 50%; }
@keyframes sealGlow { 0%,100% { filter: drop-shadow(0 0 0 rgba(240,232,123,0)); } 50% { filter: drop-shadow(0 0 12px rgba(240,232,123,.4)); } }

.guarantee-title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.7rem; color: #FFFFFF; margin-bottom: .8rem; }
.guarantee-text p { color: rgba(234, 240, 240, .82); margin-bottom: .8rem; }
.guarantee-text strong { color: var(--accent); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-list { border-top: var(--hair); }
.faq-item { border-bottom: var(--hair); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem .2rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: var(--heading);
  line-height: 1.35;
}
.faq-q:hover { color: var(--blue); }
.faq-glyph {
  position: relative;
  flex: none;
  width: 20px; height: 20px;
}
.faq-glyph::before, .faq-glyph::after {
  content: "";
  position: absolute;
  background: var(--blue);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-glyph::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-glyph::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq-q[aria-expanded="true"] .faq-glyph::after { transform: scaleY(0); }
.faq-q[aria-expanded="true"] .faq-glyph::before { background: var(--muted); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s var(--ease);
}
.faq-a.open { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 3rem 1.5rem .2rem; color: var(--muted); margin: 0; }

/* ---------- Final CTA (band amarela) ---------- */
.final-cta { text-align: center; }
.final-cta .hairline { max-width: 120px; margin: 0 auto 2rem; height: 3px; background: var(--heading); }
.final-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.02;
  color: var(--heading);
  max-width: 720px;
  margin: 0 auto 2rem;
}
.final-reassure { margin-top: 1.2rem; font-size: .9rem; color: rgba(37, 40, 42, .7); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: rgba(234, 240, 240, .68); padding-block: clamp(40px, 6vw, 64px); }
.footer-inner { text-align: center; display: grid; gap: 1rem; justify-items: center; }
.wordmark-footer { color: #FFFFFF; }
.wordmark-footer em { color: rgba(234,240,240,.6); }
.wordmark-footer .wordmark-mark { color: var(--accent); }
.footer-disclaimer { max-width: 560px; font-size: .85rem; line-height: 1.6; margin: 0; }
.footer-meta { font-size: .8rem; opacity: .7; margin: 0; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(8px);
  border-top: var(--hair);
  box-shadow: var(--shadow);
  transform: translateY(110%);
  transition: transform .35s var(--ease);
  display: none;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem clamp(16px, 5vw, 24px);
  max-width: var(--container); margin-inline: auto;
}
.sticky-cta-price { font-family: var(--font-display); font-weight: 400; font-size: 1.2rem; color: var(--heading); white-space: nowrap; flex: none; }
.sticky-cta-price small { display: block; font-family: var(--font-body); font-size: .72rem; color: var(--muted); font-weight: 400; letter-spacing: 0; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 300px; justify-self: center; }
  .rafael-grid { grid-template-columns: 1fr; }
  .portrait { max-width: 380px; margin-inline: auto; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .signals-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-card { grid-template-columns: 1fr; }
  .offer-buy { border-left: 0; border-top: var(--hair); }
}

@media (max-width: 720px) {
  body { font-size: 17px; }
  .pillars { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .steps::before { display: none; }
  .checklist, .not-list { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .compare-yes { border-right: 0; border-bottom: var(--hair); }
  .guarantee { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .section-head-signals { grid-template-columns: 1fr; }
  .colofao li { flex-direction: column; align-items: flex-start; gap: .2rem; }
  .colofao-note { text-align: left; }
  .site-header .btn-ghost { display: none; }
  .sticky-cta { display: block; }
  .turn-note { font-size: 1.25rem; }
}

@media (max-width: 460px) {
  .cards-4 { grid-template-columns: 1fr; }
  .signals-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .trust-row { gap: .5rem 1rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hairline { transform: scaleX(1); }
}
