@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Anton&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --ink: oklch(0.19 0.028 173);
  --ink-2: oklch(0.26 0.04 173);
  --teal: oklch(0.32 0.085 173);
  --teal-soft: oklch(0.94 0.02 173);
  --paper: oklch(0.985 0.004 173);
  --coral: oklch(0.685 0.185 42);
  --coral-2: oklch(0.75 0.17 48);
  --text: oklch(0.22 0.02 173);
  --muted: oklch(0.44 0.02 173);
  --line: oklch(0.87 0.015 173);
  --white: #ffffff;
  --radius: 4px;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --sans: 'Montserrat', -apple-system, sans-serif;
  --display: 'Anton', 'Montserrat', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--text);
  line-height: 1.55;
}

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

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 680px; margin: 0 auto; padding: 0 24px; }

/* Header */
header.top {
  background: var(--paper);
  padding: 20px 0;
}
.header-inner { display: flex; justify-content: center; }
.brand {
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.brand .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
.brand-logo { height: 28px; width: auto; display: block; }

/* Faixa de destaque */
.statement-bar { background: var(--teal); padding: 26px 0; }
.statement-bar p {
  margin: 0; text-align: center;
  font-family: var(--display); font-weight: 400;
  color: var(--paper);
  font-size: clamp(1.4rem, 1.1rem + 2vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
}
@media (max-width: 420px) {
  .statement-bar p { font-size: 1.28rem; }
}
.statement-bar strong { color: var(--coral-2); letter-spacing: 0.02em; }
.statement-bar strong { font-style: normal; color: var(--coral); }

/* Hero: claro, teal só no texto/estrutura */
.hero {
  background: var(--paper);
  color: var(--text);
  padding: 24px 0 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 640px) {
  .hero { padding-top: 16px; }
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
}
.hero.hero-bg { position: relative; overflow: hidden; }
.hero-bg-img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(720px, 90%);
  height: auto;
  opacity: 0.14;
  z-index: 0;
  pointer-events: none;
}
.hero .wrap.hero-solo { position: relative; z-index: 1; max-width: 720px; }

.eyebrow-mono {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--teal);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  opacity: 0;
  animation: rise 0.7s cubic-bezier(0.16,1,0.3,1) 0.05s forwards;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(1.95rem, 1.4rem + 3vw, 3.8rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 20px;
  text-wrap: balance;
  opacity: 0;
  animation: rise 0.8s cubic-bezier(0.16,1,0.3,1) 0.15s forwards;
}
.hero h1 em { font-style: normal; color: var(--teal); }

.hero p.sub {
  font-size: 1.08rem;
  color: #000;
  max-width: 46ch;
  margin: 0 0 30px;
  opacity: 0;
  animation: rise 0.8s cubic-bezier(0.16,1,0.3,1) 0.25s forwards;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .eyebrow-mono, .hero h1, .hero p.sub { animation: none; opacity: 1; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16,1,0.3,1), background 0.2s ease;
}
.btn:hover { background: var(--coral-2); transform: translateY(-2px); }
@media (max-width: 640px) {
  .btn { width: 100%; justify-content: center; }
}
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--paper); outline-offset: 3px; }

/* Chart visual */
.chart-card {
  background: var(--teal-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 22px 16px;
}
.chart-card .label { font-family: var(--mono); font-size: 0.72rem; color: var(--muted); letter-spacing: 0.03em; margin-bottom: 4px; }
.chart-card .metric { font-family: var(--mono); font-size: 1.6rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.chart-card .metric .down { color: var(--teal); font-size: 1rem; margin-left: 6px; }

/* Sections */
section { padding: 64px 0; }
section.dark { background: var(--ink); color: var(--paper); }
/* Ritmo: objeção e garantia respondem uma à outra, então ficam mais coladas */
section.section-tight-bottom { padding-bottom: 28px; }
section.section-tight-top { padding-top: 28px; }

h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 1.6rem + 2vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 10px;
  text-wrap: balance;
}
h2 em { font-style: normal; color: var(--teal); }
h3 { font-family: var(--sans); font-weight: 700; }

/* Dor: editorial pull */
.dor {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 780px) { .dor { grid-template-columns: 1fr; } }
.dor blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 1.3rem + 1.3vw, 2.15rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
  border-left: none;
  text-wrap: balance;
}
.dor .body p { color: var(--ink); font-size: 1rem; margin: 0 0 14px; }

/* Entregáveis: ícone + conteúdo + exemplo, ritmo assimétrico */
.entrega-list { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.entrega-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.entrega-row:last-child { border-bottom: 1px solid var(--line); }
.entrega-row .icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.entrega-row .icon svg { width: 26px; height: 26px; }
@media (hover: hover) {
  .entrega-row:hover .icon { transform: scale(1.08) rotate(-4deg); }
}
@media (prefers-reduced-motion: reduce) {
  .entrega-row:hover .icon { transform: none; }
}
.entrega-row h3 { margin: 0 0 8px; font-size: 1.3rem; color: var(--ink); letter-spacing: -0.015em; }
.entrega-row > div > p:first-of-type { margin: 0 0 14px; color: var(--ink); font-size: 1rem; max-width: 58ch; }
.entrega-row .exemplo {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--text);
  max-width: 62ch;
}
.entrega-row .exemplo .tag { font-family: var(--mono); font-size: 0.68rem; color: var(--coral); letter-spacing: 0.03em; display: block; margin-bottom: 6px; }
.entrega-row .exemplo .src { display: block; margin-top: 6px; font-size: 0.78rem; color: var(--muted); font-style: italic; }
.entrega-row:nth-child(2) { padding-top: 44px; padding-bottom: 44px; }

/* Timeline (14 dias) */
.timeline { position: relative; margin-top: 32px; padding-left: 28px; border-left: 2px solid var(--teal-soft); }
.tl-week { margin-bottom: 36px; position: relative; }
.tl-week::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--coral);
}
.tl-week h3 { font-size: 1.05rem; color: var(--ink); margin: 0 0 12px; letter-spacing: -0.01em; }
.tl-days { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.tl-day {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.88rem;
}
.tl-day .d { font-family: var(--mono); font-size: 0.72rem; color: var(--teal); font-weight: 700; margin-bottom: 4px; display: block; }

/* Aviso */
.aviso {
  background: var(--teal-soft);
  border-radius: var(--radius);
  padding: 22px 24px;
  font-size: 0.92rem;
  color: var(--ink-2);
}
.aviso strong { color: var(--ink); }

/* Card de preço */
.price-card {
  max-width: 420px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 20px 44px rgba(15, 61, 52, 0.1);
}
.price-card-head h3 { margin: 0 0 6px; font-size: 1.4rem; color: var(--ink); }
.price-card-head p { margin: 0 0 24px; color: var(--muted); font-size: 0.92rem; }
.price-card-num {
  font-family: var(--mono); font-weight: 700; color: var(--ink);
  font-size: clamp(2.8rem, 2.3rem + 2vw, 3.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
}
.price-card-num .cifrao { font-size: 0.42em; font-weight: 600; color: var(--muted); }
.price-card-num .unico { font-family: var(--sans); font-size: 0.32em; font-weight: 600; color: var(--muted); letter-spacing: 0; margin-left: 6px; }
.btn-pill { width: 100%; justify-content: center; border-radius: 999px; padding: 16px 24px; font-size: 1.02rem; }
.price-card-note { color: var(--muted); font-size: 0.85rem; margin: 18px 0 0; }
.price-card-divider { height: 1px; background: var(--line); margin: 26px 0 22px; }
.price-card-inclui { text-align: left; font-weight: 700; color: var(--ink); font-size: 0.9rem; margin: 0 0 14px; }
.price-card-list { list-style: none; margin: 0; padding: 0; text-align: left; display: grid; gap: 12px; }
.price-card-list li { position: relative; padding-left: 24px; color: var(--text); font-size: 0.94rem; }
.price-card-list li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
}
.price-card-list li:last-child::before { background: var(--coral); }

/* Objeção */
.objecao { border-top: 1px solid var(--line); padding-top: 24px; }
.objecao .q { font-weight: 700; color: var(--ink); font-size: 1.1rem; margin-bottom: 8px; letter-spacing: -0.01em; }
.objecao p { color: var(--ink); margin: 0; }

footer { background: var(--ink); color: oklch(0.62 0.02 173); padding: 28px 0; font-size: 0.8rem; }
.cta-final { margin-top: 30px; }

/* Revelar ao rolar */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { transition: none; opacity: 1; transform: none; }
}

/* Comparação sem x com */
.compare { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 28px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
@media (max-width: 640px) { .compare { grid-template-columns: 1fr; } }
.compare .col { padding: 26px 24px; transition: background 0.25s ease; }
.compare .col.sem { background: var(--white); }
.compare .col.com { background: var(--teal); color: var(--paper); }
@media (hover: hover) {
  .compare .col.sem:hover { background: var(--teal-soft); }
  .compare .col.com:hover { background: var(--ink); }
}
.compare .col h3 { font-family: var(--sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; margin: 0 0 18px; }
.compare .col.sem h3 { color: var(--muted); }
.compare .col.com h3 { color: var(--coral-2); }
.compare ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.compare li { font-size: 0.94rem; line-height: 1.4; padding-left: 24px; position: relative; }
.compare .sem li::before { content: '✕'; position: absolute; left: 0; color: oklch(0.6 0.15 25); font-weight: 700; }
.compare .com li::before { content: '✓'; position: absolute; left: 0; color: var(--coral-2); font-weight: 700; }

/* Divisor "+": a canetinha some, o protocolo entra */
.compare-divider {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(15, 61, 52, 0.22);
  z-index: 2;
}
@media (max-width: 640px) {
  .compare-divider {
    position: static;
    transform: none;
    margin: -20px auto;
  }
}

/* Resultados esperados */
.resultados { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px 28px; margin-top: 28px; }
.resultado-item { display: flex; gap: 14px; align-items: flex-start; }
.resultado-item .n { font-family: var(--mono); font-weight: 700; color: var(--coral); font-size: 1rem; flex-shrink: 0; }
.resultado-item p { margin: 0; font-size: 0.98rem; color: var(--text); }

/* Garantia */
.garantia { display: grid; grid-template-columns: 88px 1fr; gap: 24px; align-items: center; background: var(--teal-soft); border-radius: 12px; padding: 30px 32px; }
@media (max-width: 560px) { .garantia { grid-template-columns: 1fr; text-align: center; } .garantia .seal { margin: 0 auto; } }
.garantia .seal {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--teal); color: var(--paper);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--mono); flex-shrink: 0;
}
.garantia .seal .num { font-size: 1.6rem; font-weight: 700; line-height: 1; }
.garantia .seal .dias { font-size: 0.6rem; letter-spacing: 0.03em; margin-top: 2px; }
.garantia h3 { margin: 0 0 6px; font-size: 1.2rem; color: var(--ink); }
.garantia p { margin: 0; color: var(--ink); font-size: 0.95rem; }

/* FAQ */
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  padding: 20px 4px; cursor: pointer; font-weight: 700; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--mono); color: var(--coral); font-size: 1.3rem; flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin: 0 4px 20px; color: var(--ink); font-size: 0.96rem; max-width: 65ch; }

/* CTA mini repetido */
.cta-mini { text-align: center; margin-top: 24px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--teal); border: 1.5px solid var(--teal);
  font-weight: 700; font-size: 0.95rem; padding: 12px 22px; border-radius: var(--radius);
  text-decoration: none; transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline:hover { background: var(--teal); color: var(--paper); }

/* Bônus */
.bonus-section { background: var(--ink); padding: 64px 0; }
.bonus-section h2 { color: var(--paper); }
.bonus-section h2 em { color: var(--coral-2); }
.bonus-section > .wrap-narrow > p { color: oklch(0.78 0.02 173); margin: 0; }
.bonus-list { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
.bonus-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid oklch(0.32 0.03 173);
}
.bonus-item:last-child { border-bottom: 1px solid oklch(0.32 0.03 173); }
.bonus-num {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coral-2);
  line-height: 1.3;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.bonus-item h3 { margin: 0 0 8px; font-size: 1.15rem; color: var(--paper); letter-spacing: -0.01em; }
.bonus-item p { margin: 0; font-size: 0.96rem; color: oklch(0.78 0.02 173); max-width: 56ch; }
@media (hover: hover) {
  .bonus-item:hover .bonus-num { transform: translateX(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .bonus-item:hover .bonus-num { transform: none; }
}

/* Motivo recorrente: o fígado, quieto, atravessando a página */
.motif-img {
  position: absolute; pointer-events: none; z-index: 0;
  mask-image: radial-gradient(circle at center, black 45%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at center, black 45%, transparent 78%);
}
.autora-section { position: relative; overflow: hidden; }
.motif-autora {
  bottom: -12%; right: -6%;
  width: min(300px, 38%);
  height: auto;
  opacity: 0.07;
}
.autora-section .wrap-narrow { position: relative; z-index: 1; }
.bonus-section { position: relative; overflow: hidden; }
.motif-bonus {
  top: -14%; right: -10%;
  width: min(340px, 46%);
  height: auto;
  opacity: 0.16;
  filter: saturate(0.6);
}
.bonus-section .wrap-narrow { position: relative; z-index: 1; }

/* Autora */
.autora {
  background: var(--teal-soft);
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  align-items: center;
}
@media (max-width: 640px) { .autora { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; } .autora .avatar-frame { margin: 0 auto; } }
.autora .avatar-frame {
  position: relative;
  width: 180px; height: 180px;
  flex-shrink: 0;
}
.autora .avatar-frame::before {
  content: '';
  position: absolute;
  top: -14px; left: -14px;
  width: 100%; height: 100%;
  background: var(--coral);
  border-radius: 24px;
  opacity: 0.16;
  z-index: 0;
}
.autora .avatar-frame::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 56px; height: 56px;
  background: var(--teal);
  border-radius: 50%;
  z-index: 0;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.autora .avatar-photo {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 12px 28px rgba(15, 61, 52, 0.18);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
@media (hover: hover) {
  .autora:hover .avatar-photo { transform: translateY(-4px); }
  .autora:hover .avatar-frame::after { transform: scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .autora:hover .avatar-photo, .autora:hover .avatar-frame::after { transform: none; }
}
.autora .nome { font-family: var(--sans); font-weight: 700; color: var(--ink); font-size: 1.35rem; margin: 0 0 4px; letter-spacing: -0.005em; }
.autora .credencial { font-size: 0.9rem; color: var(--muted); margin: 0 0 18px; }
.autora p.bio { margin: 0; font-size: 0.98rem; color: var(--text); line-height: 1.6; }
