/* ─────────── LAPIDRA · sales page · v3 (verde + dourado) ─────────── */

:root {
  /* Brand — VERDE + DOURADO. Sem nenhum tom quente alaranjado. */
  --green-deep: #0E4E39;
  --green: #1B654C;
  --green-soft: #2a7d62;
  --green-deeper: #082b1f;
  --gold: #B08A3E;
  --gold-soft: #d4b066;
  --gold-deep: #8a6a2c;
  --champagne: #FFECB3;
  --champagne-soft: #fff4d1;

  /* Surfaces */
  --paper: #ffffff;
  --cream: #f3f7f3;
  --cream-deep: #e1ece2;
  --white: #ffffff;

  /* Ink */
  --ink: #0d1f1a;
  --ink-soft: #3d4a44;
  --muted: #7a8580;
  --muted-soft: #b5b1a8;
  --border: #e5ebe5;
  --border-strong: #c7d3c8;

  /* Semantic — accent is GOLD */
  --accent: var(--gold);
  --accent-deep: #8e6e2f;
  --accent-bg: #f7f4e8;
  --accent-soft: var(--champagne);
  --success: #15803d;
  --warn: #854d0e;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--green-deep); color: var(--cream); }

.serif {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.015em;
}
.italic { font-style: italic; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border-strong);
  background: var(--paper);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* ─────────── BUTTONS ─────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px; font-weight: 500;
  transition: transform 0.15s ease, background 0.15s, border 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green-deep); color: var(--cream); border-color: var(--green-deep); }
.btn-primary:hover { background: var(--green-deeper); }
.btn-gold { background: var(--gold); color: var(--green-deeper); border-color: var(--gold); font-weight: 600; }
.btn-gold:hover { background: var(--gold-soft); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--cream); }
.btn-light { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-light:hover { background: var(--white); }
.btn-arrow::after { content: '→'; font-size: 16px; line-height: 1; }
.btn-lg { padding: 14px 26px; font-size: 15px; }

/* ─────────── REVEAL ANIMATIONS ─────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 480ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ─────────── NAV ─────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.logo-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-deep);
}
.logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.nav-links {
  display: flex; align-items: center; gap: 30px;
  font-size: 13.5px; color: var(--ink-soft);
  font-weight: 500;
}
.nav-links a:hover { color: var(--green-deep); }
.nav-cta { display: flex; align-items: center; gap: 8px; }

/* ─────────── HERO ─────────── */
.hero { padding: 80px 0 70px; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 85% -10%, rgba(14, 78, 57, 0.10), transparent 60%),
    radial-gradient(ellipse 600px 300px at 10% 95%, rgba(176, 138, 62, 0.08), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px; align-items: center;
  position: relative;
}
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.hero-eyebrow .pill { background: var(--white); }
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  font-weight: 300;
  text-wrap: balance;
}
.hero h1 .em { font-style: italic; color: var(--green-deep); font-weight: 300; }
.hero h1 .gold { color: var(--gold); font-style: italic; font-weight: 300; }
.hero-sub {
  font-size: 18.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 540px;
  text-wrap: pretty;
}
.hero-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex; align-items: center; gap: 18px;
  font-size: 12.5px; color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-trust .dots { display: flex; }
.hero-trust .dots span {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-deep) 0%, #b9a87f 100%);
  border: 2px solid var(--paper);
  margin-left: -8px;
}
.hero-trust .dots span:first-child { margin-left: 0; }
.hero-trust strong { color: var(--ink); font-weight: 600; }
.hero-trust .integrations {
  width: 100%;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.4px;
}
.hero-trust .integrations strong { font-weight: 600; color: var(--ink-soft); letter-spacing: 0.8px; text-transform: uppercase; font-size: 10.5px; }

/* ─────────── HERO LOOP ANIMATION ─────────── */
.hero-loop { position: relative; aspect-ratio: 1 / 1.05; }
.loop-stage {
  position: absolute; inset: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(14, 78, 57, 0.28), 0 8px 24px -8px rgba(0,0,0,0.08);
}
.loop-bar {
  height: 36px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px;
  padding: 0 14px;
  position: relative; z-index: 3;
}
.loop-bar .b-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); }
.loop-bar .url {
  margin-left: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  flex: 1;
  text-align: center;
}
.loop-stages {
  position: relative;
  height: calc(100% - 36px);
  overflow: hidden;
}
.loop-stage-inner {
  position: absolute; inset: 0;
  padding: 24px 26px;
  opacity: 0;
  animation: stageLoop 12s infinite ease-in-out;
}
.loop-stage-inner.s1 { animation-delay: 0s; }
.loop-stage-inner.s2 { animation-delay: 4s; }
.loop-stage-inner.s3 { animation-delay: 8s; }
@keyframes stageLoop {
  0%, 33.33% { opacity: 1; transform: translateX(0); }
  34%, 100% { opacity: 0; transform: translateX(-12px); }
  /* Stage shows for 4s of 12s cycle */
}
@keyframes stageLoop {
  0% { opacity: 0; transform: translateX(20px); }
  3% { opacity: 1; transform: translateX(0); }
  30% { opacity: 1; transform: translateX(0); }
  33% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 0; transform: translateX(20px); }
}
.loop-progress {
  position: absolute;
  bottom: 16px; left: 26px; right: 26px;
  height: 3px;
  background: var(--cream-deep);
  border-radius: 2px;
  overflow: hidden;
  z-index: 4;
}
.loop-progress::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform-origin: left;
  animation: loopProgress 12s infinite linear;
}
@keyframes loopProgress {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}
.loop-step-counter {
  position: absolute;
  top: 50px;
  right: 26px;
  z-index: 4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 1px;
}

/* Stage 1 — Foto + IA */
.stage-foto {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 18px;
  height: 100%;
}
.foto-area {
  background: linear-gradient(135deg, var(--cream-deep) 0%, #b9a87f 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.foto-area svg.gem { width: 60%; height: 60%; opacity: 0.85; }
.foto-area .scan-line {
  position: absolute;
  left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-deep), transparent);
  animation: scanLine 2s ease-in-out infinite;
  top: 0;
}
@keyframes scanLine {
  0%, 100% { top: 0%; opacity: 0.6; }
  50% { top: calc(100% - 2px); opacity: 1; }
}
.foto-area .scan-corner {
  position: absolute; width: 18px; height: 18px;
  border: 2px solid var(--green-deep);
}
.foto-area .scan-corner.tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.foto-area .scan-corner.tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.foto-area .scan-corner.bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.foto-area .scan-corner.br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
.foto-form { display: flex; flex-direction: column; gap: 10px; }
.foto-form .fl-label { font-size: 9.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600; }
.foto-form .field {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 6px; padding: 10px 12px;
  font-size: 13px; display: flex; align-items: center; justify-content: space-between;
  opacity: 0;
  animation: fieldFill 0.5s ease-out forwards;
}
.foto-form .field:nth-of-type(1) { animation-delay: 0.5s; }
.foto-form .field:nth-of-type(2) { animation-delay: 0.9s; }
.foto-form .field:nth-of-type(3) { animation-delay: 1.3s; }
@keyframes fieldFill {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: none; }
}
.foto-form .field .ai-badge {
  font-size: 9px; background: var(--green-deep); color: var(--cream);
  padding: 2px 7px; border-radius: 3px; font-weight: 600; letter-spacing: 0.5px;
}
.foto-form .field .val { font-weight: 500; }

/* Stage 2 — CRM */
.stage-crm { display: flex; flex-direction: column; gap: 14px; height: 100%; justify-content: center; }
.crm-client {
  display: flex; gap: 14px; align-items: center;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.crm-client .av {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--green-soft));
  color: var(--cream); display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 22px;
}
.crm-client .info .name { font-size: 15px; font-weight: 600; }
.crm-client .info .meta { font-size: 12px; color: var(--muted); }
.crm-suggest {
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 12px;
  padding: 16px 18px;
  position: relative;
}
.crm-suggest .lbl { font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--champagne); margin-bottom: 6px; }
.crm-suggest .text { font-family: 'Fraunces', serif; font-size: 22px; line-height: 1.25; font-weight: 300; }
.crm-suggest .text em { color: var(--gold-soft); font-style: italic; }
.crm-suggest .basis { font-size: 11px; opacity: 0.7; margin-top: 8px; line-height: 1.5; }
.crm-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.crm-tags .t {
  font-size: 11px; background: var(--cream); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 4px; color: var(--ink-soft);
}
.crm-wpp {
  align-self: flex-start;
  background: var(--green-soft);
  color: var(--cream);
  font-size: 12px; padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500;
}

/* Stage 3 — Fiscal */
.stage-fiscal { display: flex; flex-direction: column; gap: 12px; height: 100%; justify-content: center; }
.fiscal-row {
  display: grid; grid-template-columns: 96px 1fr auto;
  gap: 14px; align-items: center;
  padding: 8px 0;
}
.fiscal-row .key { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; }
.fiscal-row .val { font-size: 13.5px; font-weight: 500; }
.fiscal-row .val.mono { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; }
.fiscal-row .pill-mini {
  font-size: 10px; padding: 3px 8px; border-radius: 3px;
  background: var(--green-deep); color: var(--cream);
  font-weight: 500; letter-spacing: 0.5px;
}
.fiscal-row .pill-mini.gold { background: var(--gold); color: var(--green-deeper); }
.fiscal-emit {
  margin-top: 10px;
  padding: 12px 14px;
  background: var(--accent-bg);
  border: 1px solid var(--gold-soft);
  border-radius: 8px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
}
.fiscal-emit .check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--green-deep); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 12px; font-weight: 700;
}
.fiscal-emit .timing { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--green-deep); font-weight: 600; }

/* ─────────── DIAGNÓSTICO VIVO ─────────── */
.diagnostico {
  padding: 100px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.diag-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.diag-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  margin: 14px 0 16px;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.diag-head h2 em { color: var(--gold); font-style: italic; }
.diag-head h2 .green { color: var(--green-deep); font-style: italic; }
.diag-head p { color: var(--ink-soft); font-size: 16.5px; margin: 0; max-width: 600px; margin-left: auto; margin-right: auto; }

.diag-controls {
  display: flex; flex-direction: column; gap: 18px;
  max-width: 720px; margin: 0 auto 36px;
}
.diag-row { display: flex; flex-direction: column; gap: 10px; }
.diag-row .q-label { font-size: 13px; color: var(--ink-soft); font-weight: 500; }
.diag-row .q-label strong { color: var(--green-deep); }
.diag-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.diag-chip {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1.5px solid var(--border-strong);
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 500;
  transition: all 0.18s ease;
  font-family: inherit;
}
.diag-chip:hover { border-color: var(--green-deep); color: var(--green-deep); }
.diag-chip.active {
  background: var(--green-deep);
  color: var(--cream);
  border-color: var(--green-deep);
  box-shadow: 0 4px 12px -4px rgba(14, 78, 57, 0.4);
}

.diag-result {
  max-width: 860px; margin: 36px auto 0;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 18px;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
}
.diag-result::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(176, 138, 62, 0.18), transparent 70%);
  pointer-events: none;
}
.diag-result .tag { font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }
.diag-result .total {
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 8px 0 8px;
  font-weight: 300;
}
.diag-result .total .currency { font-size: 0.45em; color: var(--gold-soft); margin-right: 6px; vertical-align: 0.15em; font-style: italic; }
.diag-result .total .period { font-size: 0.22em; color: var(--cream); opacity: 0.7; font-style: italic; }
.diag-result .subline { font-size: 14.5px; opacity: 0.78; margin: 0 0 22px; max-width: 520px; }
.diag-breakdown { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; padding-top: 22px; border-top: 1px solid rgba(255,236,179,0.18); }
.diag-line { display: flex; justify-content: space-between; font-size: 13px; align-items: baseline; gap: 12px; }
.diag-line .lbl { opacity: 0.78; }
.diag-line .val { font-family: 'Fraunces', serif; font-size: 17px; color: var(--gold-soft); font-style: italic; }
.diag-foot { font-size: 11.5px; opacity: 0.58; margin-top: 18px; line-height: 1.5; font-style: italic; }

/* ─────────── DEMO SLIDER ─────────── */
.demo {
  padding: 100px 0;
}
.demo-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.demo-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  margin: 14px 0 16px;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.demo-head h2 em { color: var(--gold); font-style: italic; }
.demo-head h2 .green { color: var(--green-deep); font-style: italic; }
.demo-head p { color: var(--ink-soft); font-size: 16.5px; margin: 0; }

.demo-tabs {
  display: flex; gap: 6px; padding: 6px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin: 0 auto 40px;
  width: max-content;
  max-width: 100%;
}
.demo-tab {
  padding: 10px 22px;
  border-radius: 999px;
  background: transparent;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.18s ease;
  font-family: inherit;
}
.demo-tab:hover { color: var(--green-deep); }
.demo-tab.active {
  background: var(--green-deep);
  color: var(--cream);
  box-shadow: 0 6px 16px -6px rgba(14, 78, 57, 0.5);
}
.demo-tab .num { font-family: 'Fraunces', serif; font-style: italic; color: var(--gold); }
.demo-tab.active .num { color: var(--gold-soft); }

.demo-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  position: relative;
}
.demo-panel { display: none; }
.demo-panel.active { display: contents; }

.demo-text h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 3.3vw, 44px);
  line-height: 1.1;
  margin: 0 0 18px;
  font-weight: 300;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.demo-text h3 em { color: var(--gold); font-style: italic; }
.demo-text h3 .green { color: var(--green-deep); font-style: italic; }
.demo-text .lead { font-size: 17px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 24px; max-width: 520px; }
.demo-text ul { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.demo-text ul li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}
.demo-text ul li .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-deep); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0; font-weight: 700;
  margin-top: 2px;
}
.demo-text ul li strong { display: block; }
.demo-text ul li .desc { display: block; color: var(--ink-soft); font-size: 13px; margin-top: 2px; }
.demo-source { font-size: 11.5px; color: var(--muted); font-style: italic; line-height: 1.5; }

/* Demo step controls */
.demo-steps {
  display: flex; align-items: center; gap: 16px;
  margin: 8px 0 28px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.demo-steps .step-dots { display: flex; gap: 8px; flex: 1; }
.demo-steps .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-strong);
  transition: all 0.2s;
}
.demo-steps .dot.active { background: var(--green-deep); transform: scale(1.4); }
.demo-steps .dot.done { background: var(--gold); }
.demo-steps .step-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.demo-steps .step-meta strong { color: var(--green-deep); font-family: 'Fraunces', serif; font-size: 14px; font-style: italic; font-weight: 400; }
.demo-steps .step-btn {
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border-strong);
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
  transition: all 0.15s;
}
.demo-steps .step-btn:hover { background: var(--green-deep); color: var(--cream); border-color: var(--green-deep); }
.demo-steps .step-btn.next { background: var(--green-deep); color: var(--cream); border-color: var(--green-deep); }
.demo-steps .step-btn.next:hover { background: var(--green-deeper); }

/* Demo visual frame */
.demo-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 60px -25px rgba(14, 78, 57, 0.22), 0 4px 14px -4px rgba(0,0,0,0.05);
  overflow: hidden;
  position: relative;
}
.demo-frame {
  padding: 26px;
  min-height: 420px;
  display: flex; flex-direction: column;
  position: relative;
}
.demo-step-content { animation: fadeStep 0.5s ease-out; display: none; }
.demo-step-content.active { display: flex; flex-direction: column; gap: 14px; flex: 1; }
@keyframes fadeStep {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* Foto step variants */
.fs-shoot { display: grid; grid-template-columns: 1fr; gap: 14px; align-items: center; flex: 1; }
.fs-shoot .photo-big {
  background: linear-gradient(135deg, var(--cream-deep) 0%, #b9a87f 100%);
  border-radius: 12px;
  aspect-ratio: 16 / 11;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.fs-shoot .photo-big svg { width: 35%; height: 35%; opacity: 0.85; }
.fs-shoot .photo-big .timer {
  position: absolute; bottom: 14px; left: 14px;
  background: var(--white); border-radius: 999px;
  padding: 5px 12px; font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--green-deep); font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.fs-shoot .photo-big .timer .live {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green-deep);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.fs-detect { display: grid; grid-template-columns: 1fr 1.1fr; gap: 16px; align-items: center; flex: 1; }
.fs-detect .photo-area {
  background: linear-gradient(135deg, var(--cream-deep), #b9a87f);
  border-radius: 10px;
  aspect-ratio: 1;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.fs-detect .photo-area svg { width: 55%; height: 55%; opacity: 0.85; }
.fs-detect .photo-area .scan-line {
  position: absolute; left: 4px; right: 4px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: scanLine 1.6s ease-in-out infinite;
}
.fs-detect .form-area { display: flex; flex-direction: column; gap: 8px; }
.fs-detect .label { font-size: 9.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.fs-detect .field {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 6px; padding: 9px 11px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
}
.fs-detect .field .ai { font-size: 9px; background: var(--green-deep); color: var(--cream); padding: 2px 6px; border-radius: 3px; font-weight: 600; letter-spacing: 0.5px; }

.fs-save { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.fs-save .header {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.fs-save .header .title { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 300; }
.fs-save .header .sku { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); }
.fs-save .saved-banner {
  background: var(--green-deep); color: var(--cream);
  padding: 16px 18px; border-radius: 12px;
  display: flex; align-items: center; gap: 14px;
}
.fs-save .saved-banner .ic {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: var(--green-deeper);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; flex-shrink: 0;
}
.fs-save .saved-banner .copy strong { display: block; font-family: 'Fraunces', serif; font-size: 18px; font-weight: 400; font-style: italic; }
.fs-save .saved-banner .copy span { font-size: 13px; opacity: 0.8; }
.fs-save .specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fs-save .spec { background: var(--cream); padding: 10px 14px; border-radius: 8px; }
.fs-save .spec .k { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; }
.fs-save .spec .v { font-size: 14px; font-weight: 500; margin-top: 2px; }
.fs-save .spec .v.mono { font-family: 'JetBrains Mono', monospace; font-size: 13px; }

/* CRM step variants */
.cr-list { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.cr-list .ph { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 6px; }
.cr-row {
  display: grid; grid-template-columns: 36px 1fr auto;
  gap: 12px; align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--border); border-radius: 10px;
  background: var(--white);
  transition: all 0.15s;
}
.cr-row:hover { border-color: var(--green-soft); transform: translateX(2px); }
.cr-row.featured { border-color: var(--gold); background: var(--accent-bg); box-shadow: 0 4px 12px -4px rgba(176, 138, 62, 0.25); }
.cr-row .av {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--green-soft));
  color: var(--cream); display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 16px;
}
.cr-row .info .name { font-size: 13.5px; font-weight: 600; }
.cr-row .info .meta { font-size: 11.5px; color: var(--muted); }
.cr-row .stamp { font-size: 11px; color: var(--ink-soft); font-family: 'JetBrains Mono', monospace; }
.cr-row.featured .stamp { color: var(--green-deep); font-weight: 600; }

.cr-detail { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.cr-detail .head-row {
  display: flex; gap: 14px; align-items: center;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.cr-detail .av {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--green-soft));
  color: var(--cream); display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 24px; font-weight: 300;
}
.cr-detail .head-row .info .name { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 300; line-height: 1.1; }
.cr-detail .head-row .info .meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
.cr-detail .head-row .info .tags { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }
.cr-detail .head-row .info .t { font-size: 10.5px; background: var(--cream); border: 1px solid var(--border); padding: 2px 8px; border-radius: 3px; color: var(--ink-soft); }
.cr-detail .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.cr-detail .stat { background: var(--cream); padding: 12px 14px; border-radius: 8px; }
.cr-detail .stat .k { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; }
.cr-detail .stat .v { font-family: 'Fraunces', serif; font-size: 22px; line-height: 1.1; margin-top: 2px; font-weight: 300; }

.cr-send { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.cr-send .suggest {
  background: var(--green-deep); color: var(--cream);
  padding: 18px 20px; border-radius: 12px;
}
.cr-send .suggest .lbl { font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 6px; font-weight: 600; }
.cr-send .suggest .text { font-family: 'Fraunces', serif; font-size: 21px; line-height: 1.3; font-weight: 300; }
.cr-send .suggest .text em { color: var(--gold-soft); font-style: italic; }
.cr-send .preview {
  background: var(--cream);
  border-radius: 10px;
  padding: 14px 16px;
  border-left: 3px solid var(--green-soft);
}
.cr-send .preview .from { font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.cr-send .preview .msg { font-size: 13.5px; line-height: 1.5; color: var(--ink); }
.cr-send .send-row { display: flex; align-items: center; gap: 10px; }
.cr-send .send-row .wpp {
  background: var(--green-soft); color: var(--cream);
  font-size: 13px; padding: 9px 18px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px; font-weight: 500;
}
.cr-send .send-row .meta { font-size: 11.5px; color: var(--muted); }

/* Fiscal step variants */
.fi-detect { display: flex; flex-direction: column; gap: 10px; flex: 1; padding-top: 4px; }
.fi-detect .header {
  font-size: 13px; font-weight: 500; padding-bottom: 12px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.fi-detect .header .sku { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); }
.fi-row {
  display: grid; grid-template-columns: 100px 1fr auto;
  gap: 14px; align-items: center;
  padding: 8px 0;
}
.fi-row .key { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; }
.fi-row .val { font-size: 13.5px; font-weight: 500; }
.fi-row .val.mono { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; }
.fi-row .pill-mini {
  font-size: 10px; padding: 3px 8px; border-radius: 3px;
  background: var(--green-deep); color: var(--cream); font-weight: 500; letter-spacing: 0.5px;
}
.fi-row .pill-mini.gold { background: var(--gold); color: var(--green-deeper); }

.fi-emit { display: flex; flex-direction: column; gap: 12px; flex: 1; justify-content: center; }
.fi-emit .stage-msg {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 17px; color: var(--green-deep);
  text-align: center;
  padding: 14px;
}
.fi-emit .progress-bar {
  height: 6px; background: var(--cream-deep); border-radius: 3px; overflow: hidden;
}
.fi-emit .progress-bar .fill {
  height: 100%; background: var(--green-deep);
  width: 70%;
  border-radius: 3px;
  animation: progressFill 2.4s ease-out forwards;
}
@keyframes progressFill { from { width: 0; } to { width: 100%; } }
.fi-emit .meta { font-size: 11.5px; color: var(--muted); text-align: center; font-family: 'JetBrains Mono', monospace; }

.fi-done { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.fi-done .banner {
  background: var(--green-deep); color: var(--cream);
  padding: 18px 20px; border-radius: 12px;
  display: flex; align-items: center; gap: 16px;
}
.fi-done .banner .ic {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--green-deeper);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; flex-shrink: 0;
}
.fi-done .banner .copy strong { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 300; font-style: italic; display: block; }
.fi-done .banner .copy span { font-size: 13px; opacity: 0.8; display: block; margin-top: 2px; }
.fi-done .banner .timing { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--gold-soft); }
.fi-done .stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fi-done .stat { background: var(--cream); padding: 12px 14px; border-radius: 8px; }
.fi-done .stat .k { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; }
.fi-done .stat .v { font-family: 'Fraunces', serif; font-size: 20px; margin-top: 2px; font-weight: 300; }
.fi-done .stat .delta { font-size: 11.5px; color: var(--success); margin-top: 2px; font-weight: 500; }

/* ─────────── ROI ─────────── */
.roi {
  padding: 100px 0;
  background: var(--green-deep);
  color: var(--cream);
}
.roi-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.roi-head .eyebrow { color: var(--gold-soft); }
.roi-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  margin: 14px 0 16px;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.roi-head h2 em { color: var(--gold-soft); font-style: italic; }
.roi-head p { font-size: 16px; opacity: 0.78; margin: 0; max-width: 580px; margin-left: auto; margin-right: auto; }
.roi-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 36px;
  align-items: stretch;
}
.roi-control {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,236,179,0.14);
  border-radius: 18px;
  padding: 28px;
}
.roi-control .label-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.roi-control label { color: var(--gold-soft); font-weight: 600; text-transform: uppercase; letter-spacing: 1.4px; font-size: 11px; }
.roi-control .val-display {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  color: var(--cream);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.roi-control .val-display .currency { font-size: 18px; color: var(--gold-soft); margin-right: 4px; font-style: italic; }
.roi-control input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  margin: 14px 0 26px;
}
.roi-control input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: rgba(255,236,179,0.18);
  border-radius: 2px;
}
.roi-control input[type="range"]::-moz-range-track {
  height: 4px;
  background: rgba(255,236,179,0.18);
  border-radius: 2px;
}
.roi-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: -8px;
  box-shadow: 0 0 0 4px rgba(176, 138, 62, 0.22);
  cursor: pointer;
  border: 2px solid var(--cream);
}
.roi-control input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 2px solid var(--cream);
}
.roi-control .scale {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--gold-soft); opacity: 0.7;
  margin-top: -16px; margin-bottom: 22px;
  font-family: 'JetBrains Mono', monospace;
}
.roi-control .helper { font-size: 12px; opacity: 0.6; margin-top: 16px; line-height: 1.5; padding-top: 16px; border-top: 1px solid rgba(255,236,179,0.12); }

.roi-result {
  background: var(--cream);
  color: var(--ink);
  border-radius: 18px;
  padding: 28px 32px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.roi-result::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(176, 138, 62, 0.18), transparent 70%);
  pointer-events: none;
}
.roi-result .head { font-size: 11px; color: var(--muted); letter-spacing: 1.6px; text-transform: uppercase; font-weight: 600; }
.roi-result .total {
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 8px 0 6px;
  font-weight: 300;
}
.roi-result .total .currency { font-size: 0.42em; color: var(--gold); margin-right: 6px; vertical-align: 0.18em; font-style: italic; }
.roi-result .total .period { font-size: 0.22em; color: var(--muted); font-style: italic; }
.roi-result .subline { font-size: 14px; color: var(--ink-soft); margin: 0 0 22px; max-width: 460px; }
.roi-result .breakdown {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
  padding-top: 8px;
}
.roi-result .breakdown .ln {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 13px;
  align-items: baseline;
}
.roi-result .breakdown .ln:last-child { border-bottom: 0; }
.roi-result .breakdown .ln .lbl { color: var(--ink-soft); }
.roi-result .breakdown .ln .src { font-size: 10px; color: var(--muted); font-family: 'JetBrains Mono', monospace; }
.roi-result .breakdown .ln .val { font-family: 'Fraunces', serif; font-size: 19px; color: var(--ink); font-style: italic; font-weight: 400; }
.roi-result .footnote { margin-top: 18px; font-size: 11px; color: var(--muted); line-height: 1.5; font-style: italic; }

/* ─────────── PRICING ─────────── */
.pricing { padding: 100px 0; background: var(--cream); }
.pricing-head { text-align: center; max-width: 720px; margin: 0 auto 32px; }
.pricing-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 56px);
  margin: 14px 0 16px;
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.pricing-head h2 em { color: var(--gold); font-style: italic; }
.pricing-head h2 .green { color: var(--green-deep); font-style: italic; }
.pricing-head p { color: var(--ink-soft); font-size: 16.5px; margin: 0; }

.billing-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 48px;
  position: relative;
}
.billing-toggle button {
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  font-family: inherit;
  transition: color 0.2s;
  position: relative;
  z-index: 2;
}
.billing-toggle button.active { color: var(--cream); }
.billing-toggle .slider {
  position: absolute;
  top: 4px; left: 4px;
  height: calc(100% - 8px);
  background: var(--green-deep);
  border-radius: 999px;
  transition: transform 0.3s ease, width 0.3s ease;
  z-index: 1;
  width: 78px;
}
.billing-toggle .save-badge {
  position: absolute;
  top: -10px; right: -34px;
  background: var(--gold);
  color: var(--green-deeper);
  font-size: 9.5px;
  padding: 3px 7px;
  border-radius: 999px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 700;
}
.billing-wrap { display: flex; justify-content: center; }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: 0 16px 36px -16px rgba(14, 78, 57, 0.22); }
.plan.featured {
  background: var(--green-deep);
  color: var(--cream);
  border-color: var(--green-deep);
  box-shadow: 0 30px 60px -25px rgba(14, 78, 57, 0.35);
}
.plan .label { font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.plan.featured .label { color: var(--gold-soft); }
.plan .name { font-family: 'Fraunces', serif; font-size: 28px; margin: 8px 0 4px; line-height: 1; font-weight: 300; font-style: italic; }
.plan .for { font-size: 13px; color: var(--ink-soft); margin: 0 0 20px; }
.plan.featured .for { color: rgba(245,239,224,0.7); }
.plan .price-block { display: flex; align-items: baseline; gap: 6px; margin: 0 0 6px; }
.plan .price-num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 300;
  transition: opacity 0.2s;
}
.plan .price-currency { font-family: 'Fraunces', serif; font-size: 22px; color: var(--ink-soft); font-style: italic; }
.plan.featured .price-currency { color: var(--gold-soft); }
.plan .price-period { font-size: 12px; color: var(--muted); }
.plan.featured .price-period { color: rgba(245,239,224,0.6); }
.plan .price-note { font-size: 12px; color: var(--muted); margin: 6px 0 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.plan.featured .price-note { color: rgba(245,239,224,0.6); border-bottom-color: rgba(255,236,179,0.18); }
.plan ul {
  list-style: none; padding: 0; margin: 0 0 24px;
  flex: 1; display: flex; flex-direction: column; gap: 10px;
}
.plan ul li {
  font-size: 13.5px;
  display: flex; gap: 8px; align-items: flex-start;
  line-height: 1.45;
}
.plan ul li .ic { color: var(--gold); flex-shrink: 0; font-weight: 700; margin-top: 1px; }
.plan.featured ul li .ic { color: var(--gold-soft); }
.plan .btn { width: 100%; justify-content: center; }
.plan .ribbon {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--green-deeper);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}
.pricing-foot {
  margin-top: 36px; text-align: center;
}
.pricing-foot .free-pill {
  display: inline-block;
  background: var(--green-deep);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
}
.pricing-foot .meta { display: block; margin-top: 12px; font-size: 13px; color: var(--ink-soft); }

/* ─────────── FAQ + CTA ─────────── */
.closing {
  padding: 100px 0 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.faq-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  padding-bottom: 100px;
}
.faq-grid h2 {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  line-height: 1.05;
  margin: 14px 0 16px;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.faq-grid h2 em { color: var(--gold); font-style: italic; }
.faq-grid h2 .green { color: var(--green-deep); font-style: italic; }
.faq-grid .helper { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.faq-grid .helper a { color: var(--green-deep); border-bottom: 1px dashed var(--green-deep); font-weight: 500; }

.faq-list { display: flex; flex-direction: column; }
.faq-list details {
  border-top: 1px solid var(--border-strong);
  padding: 22px 0;
}
.faq-list details:last-child { border-bottom: 1px solid var(--border-strong); }
.faq-list summary {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
  font-size: 17px; font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .plus {
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-list details[open] summary .plus { transform: rotate(45deg); }
.faq-list .answer {
  margin: 12px 0 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 720px;
  animation: faqSlide 0.35s ease-out;
}
@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

.final-cta {
  background: var(--green-deep);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,236,179,0.06), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(176,138,62,0.12), transparent 50%);
}
.final-cta .inner { position: relative; max-width: 820px; margin: 0 auto; }
.final-cta h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  margin: 18px 0 24px;
  font-weight: 300;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.final-cta h2 em { color: var(--gold-soft); font-style: italic; }
.final-cta h2 .ital { font-style: italic; color: var(--cream); }
.final-cta p { font-size: 17px; opacity: 0.82; margin: 0 0 36px; max-width: 580px; margin-left: auto; margin-right: auto; }
.final-cta .ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.final-cta .promise-row {
  display: flex; gap: 32px; justify-content: center;
  margin-top: 36px;
  font-size: 12.5px;
  opacity: 0.72;
  flex-wrap: wrap;
}
.final-cta .promise-row span { display: flex; align-items: center; gap: 6px; }
.final-cta .promise-row span::before { content: '✓'; color: var(--gold-soft); }

/* ─────────── FOOTER ─────────── */
footer {
  background: var(--green-deeper);
  color: rgba(245,239,224,0.65);
  padding: 60px 0 32px;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,236,179,0.12);
}
.footer-grid .brand-block .logo { color: var(--cream); }
.footer-grid .brand-block p { font-size: 13px; line-height: 1.55; max-width: 340px; margin: 14px 0 0; }
.footer-grid h5 { color: var(--cream); font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; margin: 0 0 14px; font-weight: 600; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid ul a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px;
  align-items: center;
}
.footer-bottom .badges { display: flex; gap: 10px; align-items: center; }
.footer-bottom .badges .b {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255,236,179,0.2);
  color: var(--gold-soft);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
}

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid, .demo-stage, .faq-grid, .footer-grid, .roi-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .plans { grid-template-columns: 1fr; }
  .diag-breakdown { grid-template-columns: 1fr; }
  .demo-tabs { flex-wrap: wrap; }
}


/* ─────────── PANORAMA (Hero + Diagnóstico fundidos) ─────────── */
.panorama { padding: 64px 0 80px; position: relative; overflow: hidden; background: var(--paper); }
.panorama::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 400px at 90% -10%, rgba(14,78,57,0.08), transparent 60%),
    radial-gradient(ellipse 600px 300px at 5% 110%, rgba(176,138,62,0.07), transparent 60%);
}
.panorama-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
  position: relative;
}
.pano-copy h1 { margin-top: 18px; }
.pano-copy .hero-cta { margin-bottom: 28px; }

/* Diagnóstico card */
.diag-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 24px 60px -28px rgba(14,78,57,0.22), 0 4px 14px -4px rgba(0,0,0,0.06);
  position: relative;
}
.diag-card-head { margin-bottom: 18px; }
.diag-card-head h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  line-height: 1.1;
  margin: 8px 0 10px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.diag-card-head h3 em { color: var(--accent); font-style: italic; }
.affordance {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px dashed var(--border-strong);
}
.affordance .finger {
  display: inline-block;
  animation: bobDown 1.6s ease-in-out infinite;
}
@keyframes bobDown { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(3px); } }

.diag-controls { display: flex; flex-direction: column; gap: 16px; margin-bottom: 22px; }
.diag-row { display: flex; flex-direction: column; gap: 8px; }
.q-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.diag-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.diag-chip {
  /* hit-area 48×48 mínimo */
  min-height: 48px;
  min-width: 48px;
  padding: 12px 16px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  color: var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.12s, box-shadow 0.18s;
  position: relative;
}
.diag-chip:hover { background: var(--white); border-color: var(--gold); }
.diag-chip:active { transform: scale(0.97); }
.diag-chip.active {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
  box-shadow: 0 4px 14px -4px rgba(14,78,57,0.4);
}
.diag-chip:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.diag-chip.attract {
  animation: chipAttract 1.4s ease-in-out 3;
}
@keyframes chipAttract {
  0%, 100% { box-shadow: 0 0 0 0 rgba(176,138,62,0); }
  50% { box-shadow: 0 0 0 6px rgba(176,138,62,0.18); }
}
.diag-chip.demo-flash {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: scale(1.04);
}

/* Tooltip "agora é sua vez" */
.diag-tip {
  position: absolute;
  left: 28px;
  top: 196px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 5;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s;
}
.diag-tip.show { opacity: 1; transform: translateY(0); }
.diag-tip::after {
  content: '';
  position: absolute;
  left: 24px; top: -6px;
  width: 12px; height: 12px;
  background: var(--ink);
  transform: rotate(45deg);
}

.diag-result {
  background: var(--green);
  color: var(--cream);
  border-radius: 14px;
  padding: 20px 22px;
  margin-top: 6px;
}
.diag-result .tag {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}
.diag-result .total {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 6px 0 14px;
  font-weight: 400;
}
.diag-result .total .currency { font-size: 0.45em; color: var(--gold-soft); margin-right: 4px; vertical-align: 0.2em; }
.diag-result .total .period { font-size: 0.28em; color: var(--gold-soft); font-style: italic; opacity: 0.85; }
.diag-breakdown { display: flex; flex-direction: column; border-top: 1px solid rgba(232,206,160,0.18); padding-top: 6px; }
.diag-line {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(232,206,160,0.14);
  font-size: 13px;
}
.diag-line:last-child { border-bottom: 0; }
.diag-line .lbl { opacity: 0.85; }
.diag-line .val { font-family: 'Fraunces', serif; font-size: 16px; color: var(--cream); font-style: italic; }
.diag-foot { font-size: 11px; opacity: 0.55; margin: 12px 0 0; line-height: 1.5; font-style: italic; }

/* Pulse dourado em CTA primário */
.pulse-cta {
  position: relative;
  isolation: isolate;
}
.pulse-cta::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  z-index: -1;
  box-shadow: 0 0 0 0 rgba(176,138,62,0.55);
  animation: ctaPulse 2.4s ease-in-out infinite;
}
@keyframes ctaPulse {
  0% { box-shadow: 0 0 0 0 rgba(176,138,62,0.5); }
  60% { box-shadow: 0 0 0 14px rgba(176,138,62,0); }
  100% { box-shadow: 0 0 0 0 rgba(176,138,62,0); }
}
.pulse-cta.clicked::before { animation: none; }

/* Responsive */
@media (max-width: 980px) {
  .panorama-grid { grid-template-columns: 1fr; gap: 36px; }
  .diag-card { padding: 22px; }
  .diag-tip { left: 22px; top: 178px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pulse-cta::before, .affordance .finger, .diag-chip.attract, .diag-chip.demo-flash {
    animation: none !important;
  }
  .diag-tip { transition: none !important; }
}


/* ─────────── Section 3: demo affordances ─────────── */
.demo-aff { margin: 14px auto 18px; }
.demo-tabs { position: relative; }
.demo-tab { min-height: 48px; min-width: 48px; }
.demo-tab:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.demo-tip, .roi-tip {
  position: absolute;
  background: var(--ink);
  color: var(--paper);
  font-size: 12.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 5;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s;
}
.demo-tip { top: -42px; left: 50%; transform: translate(-50%, -4px); }
.demo-tip.show { opacity: 1; transform: translate(-50%, 0); }
.demo-tip::after, .roi-tip::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  background: var(--ink);
  transform: rotate(45deg);
  bottom: -6px;
  left: 50%;
  margin-left: -6px;
}
.roi-tip { top: 92px; left: 24px; }
.roi-tip.show { opacity: 1; transform: translateY(0); }

/* ROI ±steppers */
.slider-with-steppers {
  display: flex; align-items: center; gap: 10px;
  margin: 14px 0 26px;
}
.slider-with-steppers input[type="range"] { flex: 1; margin: 0 !important; }
.stepper {
  min-width: 48px; min-height: 48px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(232,206,160,0.25);
  background: rgba(255,255,255,0.04);
  color: var(--cream);
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stepper:hover { background: rgba(176,138,62,0.12); border-color: var(--gold); }
.stepper:active { transform: scale(0.92); }
.stepper:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* Pricing affordance */
.pricing-aff { margin: 0 auto 14px; }
.faq-aff { margin: 0 0 14px; }

/* Affordance pill (light bg variants) */
.demo-aff, .pricing-aff {
  display: inline-flex;
  font-size: 13px; color: var(--ink-soft);
  background: var(--cream); border: 1px dashed var(--border-strong);
  padding: 7px 12px; border-radius: 999px;
  align-items: center; gap: 6px;
}
.demo-aff .finger, .pricing-aff .finger, .faq-aff .finger { animation: bobDown 1.6s ease-in-out infinite; display: inline-block; }
.faq-aff {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink-soft);
  background: var(--cream); border: 1px dashed var(--border-strong);
  padding: 7px 12px; border-radius: 999px;
}

/* Make sure pricing toggle and faq buttons hit 48px */
.price-toggle button, .faq-item .q { min-height: 48px; }
.faq-item .q { cursor: pointer; }
.faq-item .q:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; border-radius: 4px; }

/* Reduced motion safety */
@media (prefers-reduced-motion: reduce) {
  .demo-aff .finger, .pricing-aff .finger, .faq-aff .finger { animation: none !important; }
  .demo-tip, .roi-tip { transition: none !important; }
}

@media (max-width: 980px) {
  .roi-tip { top: 92px; left: 16px; }
}

/* FAQ accordion (collapse default, expand on .open) */
.faq-item .a { max-height: 0; overflow: hidden; opacity: 0; margin: 0; transition: max-height 0.32s ease, opacity 0.22s, margin 0.22s; }
.faq-item.open .a { max-height: 600px; opacity: 1; margin: 12px 0 0; }
.faq-item .q .plus { transition: transform 0.25s; }
.faq-item.open .q .plus { transform: rotate(45deg); }
.demo-tab.attract { box-shadow: 0 0 0 0 rgba(176,138,62,0.5); animation: chipAttract 1.4s ease-in-out 3; }
.demo-tab.demo-flash { background: var(--gold); color: var(--white); border-color: var(--gold); transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) {
  .faq-item .a { transition: none; }
  .demo-tab.attract, .demo-tab.demo-flash { animation: none !important; }
}


/* ─────────── v3: Apresentação + tipografia ─────────── */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,500;1,400;1,500;1,600&display=swap');

h1, .display-italic {
  font-family: 'Fraunces', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em;
}
.display-italic em {
  color: var(--gold);
  font-style: italic;
}

/* Section 1: Apresentação */
.apresentacao { padding: 80px 0 90px; background: var(--paper); position: relative; overflow: hidden; }
.apresentacao::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 900px 500px at 50% -10%, rgba(14,78,57,0.07), transparent 60%),
    radial-gradient(ellipse 600px 320px at 90% 100%, rgba(176,138,62,0.06), transparent 60%);
}
.apresentacao-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.apres-hero { max-width: 880px; margin: 0 auto 56px; text-align: center; }
.apres-hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.05;
  color: var(--brand, var(--green));
  margin: 18px 0 22px;
}
.apres-hero .lede {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto 14px;
  text-wrap: pretty;
}
.apres-hero .lede-secondary {
  font-size: 14px;
  color: var(--muted);
  margin: 0 auto 28px;
  font-style: italic;
}
.apres-hero .cta-row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 18px;
}
.apres-hero .micro-trust {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}

/* Trust strip */
.trust-strip {
  text-align: center;
  margin: 0 auto 64px;
  padding: 24px 0 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 920px;
}
.trust-label {
  font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin: 0 0 14px;
}
.trust-logos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 28px;
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 19px; color: var(--ink); margin-bottom: 16px;
}
.trust-logos span { white-space: nowrap; opacity: 0.78; }
.trust-seals { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.trust-seals .seal {
  font-size: 12.5px; padding: 6px 14px;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 999px; color: var(--ink-soft);
}

/* Differentials */
.differentials { margin: 72px auto 64px; max-width: 1120px; }
.section-heading {
  text-align: center; font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08; margin: 0 0 44px;
  color: var(--green);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.diff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 14px 36px -22px rgba(14,78,57,0.18);
  display: flex; flex-direction: column;
}
.diff-card .diff-icon {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: 'Fraunces', serif;
}
.diff-card h3 {
  font-family: 'Inter', sans-serif !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 19px;
  margin: 0 0 12px;
  color: var(--green);
  letter-spacing: -0.005em;
}
.diff-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px; line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* Stats band */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px 0 8px;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}
.stats-band .stat { text-align: center; }
.stats-band .number {
  font-family: 'Fraunces', serif !important;
  font-style: italic;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1; margin: 0 0 8px;
  color: var(--gold);
  font-weight: 500;
}
.stats-band .number em { font-style: italic; }
.stats-band .label {
  font-size: 13px; color: var(--ink-soft); margin: 0;
  line-height: 1.4;
}

/* Section 2: Conta (dual) */
.conta { padding: 90px 0 100px; background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.conta-head { text-align: center; max-width: 820px; margin: 0 auto 48px; }
.conta-head h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.06;
  margin: 14px 0 18px;
  color: var(--green);
}
.conta-head .lede-section {
  font-family: 'Inter', sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--ink-soft);
  max-width: 680px; margin: 0 auto;
}
.conta-dual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
.dual-side { display: flex; flex-direction: column; gap: 14px; }
.dual-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase;
  font-weight: 600; margin: 0;
  align-self: flex-start;
  padding: 6px 14px; border-radius: 999px;
}
.dual-label.loss { background: rgba(154,52,52,0.08); color: #9a3434; }
.dual-label.gain { background: rgba(176,138,62,0.12); color: #8a6a2e; }
.dual-label .dot { width: 8px; height: 8px; border-radius: 50%; }
.dual-label .dot.loss { background: #9a3434; }
.dual-label .dot.gain { background: var(--gold); }
.dual-loss .diag-card { border-left: 4px solid #9a3434; }
.dual-loss .diag-result { background: #2a1717; }
.dual-loss .diag-result .total .currency, .dual-loss .diag-result .total .period, .dual-loss .diag-result .tag { color: #f3c4b8; }
.dual-loss .diag-result .diag-line .val { color: #fae3da; }
.dual-gain .roi-control { border-left: 4px solid var(--gold); }
.dual-cta {
  text-align: center;
  margin-top: 40px;
}
.dual-cta .connector {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--green);
  margin: 0 0 18px;
}

/* Comparison strip (pricing) */
.comparison-strip {
  max-width: 720px;
  margin: 56px auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
}
.comparison-strip .comp-label {
  font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin: 0 0 14px; text-align: center;
}
.comp-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 11px 0;
  border-top: 1px dashed var(--border);
  font-size: 14.5px;
  gap: 16px;
}
.comp-row:first-of-type { border-top: 0; }
.comp-row .comp-item { color: var(--ink-soft); }
.comp-row .comp-val { color: var(--ink); font-family: 'Fraunces', serif; font-style: italic; font-size: 17px; white-space: nowrap; }
.comp-row.total { border-top: 1.5px solid var(--ink); padding-top: 14px; margin-top: 4px; }
.comp-row.total .comp-item, .comp-row.total .comp-val { color: var(--ink); }
.comp-row.lapidra {
  background: var(--green); color: var(--cream);
  margin: 8px -28px -24px; padding: 16px 28px;
  border-radius: 0 0 13px 13px;
}
.comp-row.lapidra .comp-item, .comp-row.lapidra .comp-val { color: var(--cream); }
.comp-row.lapidra .comp-val { color: var(--gold-soft); font-size: 19px; }

/* Demo tabs vertical title + context */
.demo-tab .tab-title { display: block; font-weight: 600; }
.demo-tab .tab-context {
  display: block; font-size: 11.5px; color: var(--muted);
  font-weight: 400; margin-top: 4px; line-height: 1.4;
}
.demo-tab.active .tab-context { color: var(--gold-soft); }

/* lede-section reused */
.lede-section {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 680px; margin: 0 auto;
  text-wrap: pretty;
}

/* Responsive */
@media (max-width: 980px) {
  .diff-grid, .stats-band, .conta-dual { grid-template-columns: 1fr; }
  .stats-band { gap: 24px 16px; padding-top: 28px; }
  .comp-row.lapidra { margin-left: -22px; margin-right: -22px; padding-left: 22px; padding-right: 22px; }
}

/* ─── FIX ROI dual-gain panel: dark green so gold-on-dark contrasts ─── */
.conta { background: var(--paper); }
.dual-gain { position: relative; }
.dual-gain .roi-control {
  background: var(--green-deep) !important;
  color: var(--cream) !important;
  border: 1px solid rgba(255,236,179,0.18) !important;
  border-left: 4px solid var(--gold) !important;
  border-radius: 18px;
  padding: 28px;
  position: relative;
}
.dual-gain .roi-control label { color: var(--gold-soft) !important; }
.dual-gain .roi-control .val-display { color: var(--cream) !important; }
.dual-gain .roi-control .val-display .currency { color: var(--gold-soft) !important; }
.dual-gain .roi-control .scale { color: var(--cream) !important; opacity: 0.65; }
.dual-gain .roi-control .helper {
  color: var(--cream) !important;
  opacity: 0.7;
  border-top: 1px solid rgba(255,236,179,0.18);
}
.dual-gain .roi-control .affordance {
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,236,179,0.35);
  color: var(--cream);
}
.dual-gain .roi-control input[type="range"]::-webkit-slider-runnable-track {
  background: rgba(255,236,179,0.28);
}
.dual-gain .roi-control input[type="range"]::-moz-range-track {
  background: rgba(255,236,179,0.28);
}
.dual-gain .roi-control input[type="range"]::-webkit-slider-thumb {
  background: var(--gold);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 4px rgba(176,138,62,0.25);
}
.dual-gain .roi-control input[type="range"]::-moz-range-thumb {
  background: var(--gold);
  border: 2px solid var(--cream);
}
.dual-gain .roi-control .stepper {
  background: rgba(255,236,179,0.12);
  border: 1.5px solid rgba(255,236,179,0.35);
  color: var(--cream);
}
.dual-gain .roi-control .stepper:hover {
  background: var(--gold);
  color: var(--green-deeper);
  border-color: var(--gold);
}

/* ROI result panel — make it sit under the green control with continuity */
.dual-gain .roi-result {
  margin-top: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 30px;
  box-shadow: 0 24px 60px -32px rgba(14,78,57,0.18);
}
.dual-gain .roi-result .head {
  color: var(--green-deep);
  font-weight: 700;
  letter-spacing: 1.6px;
}
.dual-gain .roi-result .total .currency { color: var(--gold); }

/* Section rebalance — more white, less cream */
.diagnostico { background: var(--white) !important; }
.demo { background: var(--white) !important; }
.compare { background: var(--cream) !important; } /* light green tint */
.faq { background: var(--white) !important; }
.pricing-section, .pricing { background: var(--cream) !important; }

/* Diagnóstico card stays white but with green accent */
.dual-loss .diag-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid #9a3434;
  border-radius: 18px;
}

/* Hero panorama — clean white with subtle green wash */
.panorama { background: var(--white) !important; }
.panorama::before {
  background:
    radial-gradient(ellipse 900px 500px at 95% -5%, rgba(14,78,57,0.10), transparent 55%),
    radial-gradient(ellipse 700px 400px at 0% 105%, rgba(27,101,76,0.06), transparent 60%) !important;
}

/* Nav — pure white, green accent */
.nav { background: rgba(255,255,255,0.92) !important; backdrop-filter: blur(12px); }

/* Footer + contrast tweaks */
.btn-ghost { color: var(--ink); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--cream); border-color: var(--green); }

/* Pricing-aff and demo-aff using cream — keep but with green tint */
.demo-aff, .pricing-aff, .faq-aff {
  background: var(--cream);
  border: 1px dashed var(--green);
  color: var(--ink-soft);
}

/* Affordance pill in panorama (light bg) */
.panorama .affordance {
  background: rgba(14,78,57,0.05);
  border: 1px dashed var(--green);
  color: var(--ink-soft);
}

/* Hero loop bar / mocks — refine for white scheme */
.loop-bar { background: var(--cream); }
.foto-form .field { background: var(--cream); }
.crm-tags .t { background: var(--cream); }
.fiscal-emit { background: rgba(27,101,76,0.06); border-color: rgba(176,138,62,0.4); }
.demo-tabs { background: var(--cream); }
.demo-steps { background: var(--cream); }

/* image-slot styling — fits the design */
image-slot {
  --slot-bg: var(--cream);
  --slot-border: var(--border);
  --slot-radius: 14px;
}
.lap-photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 0;
}
.lap-photo-row image-slot {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  display: block;
}
@media (max-width: 720px) {
  .lap-photo-row { grid-template-columns: 1fr 1fr; }
}

/* Animated jewelry illustration block — used as filler */
.jewel-anim {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--green-deep), var(--green) 60%, var(--green-soft));
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 70px -32px rgba(14,78,57,0.45);
}
.jewel-anim::before, .jewel-anim::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,236,179,0.35), transparent 60%);
  filter: blur(8px);
  pointer-events: none;
}
.jewel-anim::before { width: 380px; height: 380px; top: -120px; left: -80px; animation: ja1 12s ease-in-out infinite; }
.jewel-anim::after  { width: 300px; height: 300px; bottom: -100px; right: -60px; animation: ja2 14s ease-in-out infinite; }
@keyframes ja1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px, 30px); } }
@keyframes ja2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px, -40px); } }
.jewel-anim svg { width: 65%; height: 65%; position: relative; z-index: 2; }
.jewel-anim .gem-stroke {
  stroke: var(--gold-soft);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawGem 4.2s ease-in-out infinite alternate;
}
.jewel-anim .gem-fill {
  fill: var(--gold);
  opacity: 0;
  animation: fadeFill 4.2s ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes drawGem { to { stroke-dashoffset: 0; } }
@keyframes fadeFill { 0% { opacity: 0; transform: scale(0.95); } 100% { opacity: 0.95; transform: scale(1); } }

.jewel-anim .ja-ai-pill {
  position: absolute;
  top: 22px; right: 22px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 3;
}
.jewel-anim .ja-ai-pill::before {
  content: '⌗ ';
  color: var(--gold-soft);
}

@media (prefers-reduced-motion: reduce) {
  .jewel-anim::before, .jewel-anim::after,
  .jewel-anim .gem-stroke, .jewel-anim .gem-fill {
    animation: none !important;
    stroke-dashoffset: 0 !important;
    opacity: 1 !important;
  }
}

/* Filler animation: number-counter reel */
.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0 0;
}
.metric {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}
.metric .num {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  color: var(--green-deep);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.metric .num em { color: var(--gold); font-style: italic; }
.metric .lbl { font-size: 12px; color: var(--ink-soft); margin-top: 8px; line-height: 1.4; }
@media (max-width: 720px) {
  .metric-strip { grid-template-columns: 1fr 1fr; }
}

/* dual-gain spans full width: control 50% / result 50% */
.dual-gain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 20px;
  row-gap: 14px;
  align-items: stretch;
  width: 100%;
}
.dual-gain .dual-label { grid-column: 1 / -1; margin: 0; }
.dual-gain .roi-control { grid-column: 1 / 2; align-self: stretch; }
.dual-gain .roi-result  { grid-column: 2 / 3; align-self: stretch; margin-top: 0; }

@media (max-width: 980px) {
  .dual-gain { grid-template-columns: 1fr; }
  .dual-gain .roi-control, .dual-gain .roi-result { grid-column: 1 / -1; }
}

/* ─────────── EASE + FISCAL section ─────────── */
.ease {
  padding: 100px 0;
  background: var(--white);
}
.ease-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .ease-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* LEFT: 3-tap demo */
.ease-copy { display: flex; flex-direction: column; }
.three-tap {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.tt-step {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  transition: transform .35s ease, border-color .35s ease, background .35s ease, box-shadow .35s ease;
}
.tt-step.tt-active {
  border-color: var(--gold);
  background: #fffaef;
  box-shadow: 0 8px 24px -16px rgba(176,138,62,0.4);
  transform: translateX(4px);
}
.tt-step.tt-done {
  border-color: var(--green);
  background: #f1f7f3;
}
.tt-step.tt-done .tt-num { background: var(--green); color: var(--white); border-color: var(--green); }
.tt-step.tt-done .tt-num::after { content: ' ✓'; }
.tt-step .tt-num {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  background: var(--white);
  border: 1.5px solid var(--border-strong);
  border-radius: 50%;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all .35s ease;
}
.tt-step.tt-active .tt-num { background: var(--gold); color: var(--green-deeper); border-color: var(--gold); }
.tt-label {
  font-weight: 600; color: var(--ink); font-size: 15px;
}
.tt-detail {
  font-size: 12px; color: var(--ink-soft); margin-top: 2px; line-height: 1.4;
}
.tt-tap {
  font-size: 18px;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.tt-step.tt-active .tt-tap {
  opacity: 1;
  animation: ttTap 1.2s ease-in-out infinite;
}
@keyframes ttTap {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.08); }
}
.tt-progress {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin: 14px 0 12px;
  overflow: hidden;
}
.tt-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transition: width .4s ease;
}
.tt-result {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
}
.tt-result.show { opacity: 1; transform: translateY(0); }
.tt-check {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deeper);
  font-weight: 800;
  font-size: 16px;
}
.tt-result-label {
  font-weight: 600;
  letter-spacing: 0.4px;
  font-size: 14px;
}
.tt-result-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  opacity: 0.78;
  margin-top: 2px;
}

/* RIGHT: fiscal card */
.fiscal-card {
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 18px;
  padding: 36px 32px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.fiscal-card::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(212,179,107,0.18), transparent 65%);
  pointer-events: none;
}
.fiscal-card-head { position: relative; z-index: 1; margin-bottom: 18px; }
.fiscal-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid rgba(255,236,179,0.32);
  padding: 5px 11px;
  border-radius: 999px;
}
.fiscal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.fiscal-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--cream);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,236,179,0.12);
}
.fiscal-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.fiscal-list li strong { color: var(--gold-soft); font-weight: 600; }
.fc-check {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(212,179,107,0.18);
  border: 1px solid var(--gold-soft);
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 700;
}
.fiscal-footnote {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,236,179,0.18);
  font-size: 12px;
  color: var(--cream);
  opacity: 0.7;
  line-height: 1.55;
  font-style: italic;
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .tt-step.tt-active .tt-tap { animation: none; }
  .tt-step, .tt-bar, .tt-result { transition: none; }
}

/* ─────────── DAY timeline ─────────── */
.day {
  padding: 110px 0;
  background: var(--cream);
  position: relative;
}
.day-head { max-width: 820px; margin: 0 0 64px; }
.day-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.day-rail {
  position: absolute;
  left: 110px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--green) 0%, var(--gold) 50%, var(--green-deep) 100%);
  opacity: 0.35;
}
.day-block {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 36px;
  align-items: start;
  position: relative;
}
.day-block::before {
  content: '';
  position: absolute;
  left: 102px;
  top: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green-deep);
  z-index: 2;
  transition: transform .3s ease, border-color .3s ease;
}
.day-block:hover::before {
  transform: scale(1.15);
  border-color: var(--gold);
}
.day-time {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 16px;
}
.day-clock {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  color: var(--green-deep);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.day-period {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}
.day-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 18px 48px -32px rgba(14,78,57,0.18);
  transition: transform .3s ease, box-shadow .3s ease;
}
.day-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px -32px rgba(14,78,57,0.28);
}
.day-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--green-deep);
  border: 1px solid var(--border-strong);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.day-title {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.day-text {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.day-text strong { color: var(--green-deep); font-weight: 600; }
.day-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.4px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.day-card-final {
  background: var(--green-deep);
  color: var(--cream);
  border: 1px solid var(--green-deep);
}
.day-card-final .day-tag {
  color: var(--gold-soft);
  border-color: rgba(255,236,179,0.32);
}
.day-card-final .day-title { color: var(--cream); }
.day-card-final .day-text { color: var(--cream); opacity: 0.82; }
.day-card-final .day-text strong { color: var(--gold-soft); }
.day-card-final .day-meta { border-top-color: rgba(255,236,179,0.18); color: var(--gold-soft); }
.day-card-final .day-meta-strong { font-weight: 600; }
.day-block:last-child::before {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(176,138,62,0.18);
}

@media (max-width: 880px) {
  .day-rail { left: 18px; }
  .day-block { grid-template-columns: 80px 1fr; gap: 18px; }
  .day-block::before { left: 10px; top: 18px; }
  .day-clock { font-size: 22px; }
  .day-card { padding: 22px 20px; }
  .day-title { font-size: 20px; }
}

/* Real photo inside foto demo */
.photo-big.has-img, .photo-area.has-img {
  position: relative;
  overflow: hidden;
  background: #1a1a18;
}
.photo-big.has-img img, .photo-area.has-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-big.has-img > svg, .photo-area.has-img > svg { display: none; }
.photo-area.has-img .scan-line { z-index: 2; }
.photo-area .scan-corner { z-index: 3; }

/* Comparison strip — sub-label + "não existe" treatment */
.comp-row .comp-sub {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  margin-top: 3px;
  letter-spacing: 0;
}
.comp-row .comp-val.none {
  font-style: italic;
  color: var(--muted);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  text-decoration: line-through;
  text-decoration-color: rgba(122,133,128,0.4);
}

/* ─────────── NAV PHONE ─────────── */
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--ink-soft); font-weight: 500;
  white-space: nowrap;
}
.phone-icon { font-size: 14px; }

/* ─────────── HERO SECURITY STRIP ─────────── */
.hero-security-strip {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
}
.security-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--ink-soft);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 500;
}

/* ─────────── COMPARISON TABLE ─────────── */
.comparison {
  padding: 80px 0;
  background: var(--cream);
}
.comparison-head {
  text-align: center;
  margin-bottom: 48px;
}
.comparison-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  margin: 14px 0 0;
  letter-spacing: -0.015em;
}
.comparison-table {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--paper);
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table thead th {
  background: var(--cream);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.comparison-table th.comp-col-lapidra {
  background: var(--green-deep);
  color: var(--cream);
}
.comparison-table td:last-child {
  font-weight: 600;
}
.comp-yes {
  color: var(--green-deep);
  font-weight: 700;
  font-size: 16px;
}
.comp-no {
  color: #c0392b;
  font-size: 16px;
}
.comp-partial {
  color: var(--gold);
  font-size: 13px;
  font-style: italic;
}
.comp-neutral {
  color: var(--muted);
  font-size: 13px;
}
.comp-highlight {
  color: var(--green-deep);
  font-weight: 700;
}

/* ─────────── WHATSAPP FLOATING ─────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  background: #25d366;
  color: white;
  border-radius: 50px;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  font-size: 14px; font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.45);
}
.whatsapp-float svg { flex-shrink: 0; }
.wpp-label { white-space: nowrap; }

/* ─────────── ROI RECOMMENDATION ─────────── */
.roi-recommendation {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(176, 138, 62, 0.08);
  border: 1px solid rgba(176, 138, 62, 0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.roi-rec-inner {
  display: flex; flex-direction: column; gap: 2px;
}
.roi-rec-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-soft);
  font-weight: 600;
}
.roi-rec-plan {
  font-size: 16px;
  color: var(--cream);
}
.roi-rec-ratio {
  font-size: 13px;
  color: var(--cream);
  opacity: 0.8;
}
.roi-rec-ratio strong {
  color: var(--gold-soft);
  font-family: 'JetBrains Mono', monospace;
}
.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

/* ─────────── RESPONSIVE — new sections ─────────── */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .video-demo-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .comparison-table td,
  .comparison-table th {
    padding: 10px 12px;
    font-size: 12.5px;
  }
  .nav-phone { display: none; }
  .whatsapp-float .wpp-label { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
  .roi-recommendation { flex-direction: column; align-items: flex-start; }
  .features-gallery-grid {
    grid-template-columns: 1fr;
  }
  .feature-gif-card.full-width {
    grid-column: 1;
  }
  .feature-video-card.full-width {
    grid-column: 1;
  }
  .feature-anim-card.full-width {
    grid-column: 1;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   DEMO ANIMATIONS — Professional CSS animations for "O produto, por dentro"
   ═══════════════════════════════════════════════════════════════════════════ */

/* Base animation container */
.demo-anim {
  position: relative;
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  margin: 24px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.anim-window {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.anim-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: linear-gradient(180deg, #f8f9fa 0%, #f1f3f4 100%);
  border-bottom: 1px solid var(--border);
}

.anim-dots {
  display: flex;
  gap: 6px;
}

.anim-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}

.anim-dots span:nth-child(1) { background: #ff5f57; }
.anim-dots span:nth-child(2) { background: #ffbd2e; }
.anim-dots span:nth-child(3) { background: #28ca42; }

.anim-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.anim-badge-ia {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: #1a6b4f;
  background: linear-gradient(135deg, rgba(26,107,79,0.1), rgba(26,107,79,0.05));
  padding: 4px 10px;
  border-radius: 20px;
}

.anim-gold-price {
  margin-left: auto;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--gold-deep);
  background: rgba(212,175,55,0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

.anim-body {
  padding: 20px;
  min-height: 280px;
  position: relative;
}

.anim-step {
  position: absolute;
  inset: 20px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s, transform 0.5s;
  pointer-events: none;
}

.anim-badge-live {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.9);
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* ─────────── CADASTRO IA Animation ─────────── */
.demo-anim-cadastro .anim-step-upload { opacity: 1; transform: none; }

.demo-anim-cadastro:hover .anim-step-upload,
.demo-anim-cadastro.playing .anim-step-upload {
  animation: fadeOutStep 0.5s 1s forwards;
}

.demo-anim-cadastro:hover .anim-step-analyzing,
.demo-anim-cadastro.playing .anim-step-analyzing {
  animation: fadeInStep 0.5s 1s forwards, fadeOutStep 0.5s 4s forwards;
}

.demo-anim-cadastro:hover .anim-step-results,
.demo-anim-cadastro.playing .anim-step-results {
  animation: fadeInStep 0.5s 4s forwards;
}

@keyframes fadeInStep {
  to { opacity: 1; transform: none; pointer-events: auto; }
}

@keyframes fadeOutStep {
  to { opacity: 0; transform: translateX(-20px); pointer-events: none; }
}

/* Upload zone */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  background: var(--cream);
  transition: border-color 0.3s, background 0.3s;
}

.demo-anim-cadastro:hover .upload-zone {
  border-color: #1a6b4f;
  background: rgba(26,107,79,0.05);
}

.upload-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.upload-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.upload-sub {
  font-size: 12px;
  color: var(--muted);
}

.upload-tabs {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
}

.upload-tabs .tab {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--cream);
  color: var(--muted);
  border: 1px solid var(--border);
}

.upload-tabs .tab.active {
  background: #1a6b4f;
  color: #fff;
  border-color: #1a6b4f;
}

/* Analyzing step */
.anim-step-analyzing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.analyzing-photo {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0.6;
}

.analyzing-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.analyzing-loader {
  text-align: center;
}

.loader-spin {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: #1a6b4f;
  border-radius: 50%;
  margin: 0 auto 12px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.loader-sub {
  font-size: 12px;
  color: var(--muted);
}

/* Results step */
.anim-step-results {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: start;
}

.results-photo {
  position: relative;
}

.results-photo img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
}

.confidence-badge {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  white-space: nowrap;
}

.confidence-badge.high {
  background: linear-gradient(135deg, #1a6b4f, #28a745);
  color: #fff;
}

.results-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 8px 12px;
  background: var(--cream);
  border-radius: 8px;
}

.field-row.warning {
  background: rgba(255,193,7,0.1);
  border: 1px solid rgba(255,193,7,0.3);
}

.field-label {
  color: var(--muted);
  min-width: 60px;
}

.field-value {
  color: var(--ink);
  font-weight: 500;
  flex: 1;
}

.field-value.typing::after {
  content: '|';
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.field-ai {
  font-size: 9px;
  font-weight: 700;
  color: #1a6b4f;
  background: rgba(26,107,79,0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.field-icon {
  font-size: 14px;
}

.field-missing {
  font-size: 12px;
  color: #856404;
}

.field-stones {
  display: flex;
  gap: 6px;
  flex: 1;
}

.stone-badge {
  font-size: 11px;
  padding: 3px 8px;
  background: #e0f0ff;
  color: #0066cc;
  border-radius: 12px;
}

.btn-use-data {
  margin-top: 8px;
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #1a6b4f, #28a745);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* ─────────── CRM Animation ─────────── */
.anim-body-crm {
  padding: 16px;
}

.demo-anim-crm .anim-step-table { opacity: 1; transform: none; }

.demo-anim-crm:hover .anim-step-table,
.demo-anim-crm.playing .anim-step-table {
  animation: fadeOutStep 0.5s 3s forwards;
}

.demo-anim-crm:hover .anim-step-intel,
.demo-anim-crm.playing .anim-step-intel {
  animation: fadeInStep 0.5s 3s forwards;
}

.crm-metrics {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.crm-metrics .metric {
  flex: 1;
  background: var(--cream);
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

.crm-metrics .m-num {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.crm-metrics .m-label {
  font-size: 10px;
  color: var(--muted);
}

.crm-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--cream);
  border-radius: 8px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}

.crm-search .search-icon {
  font-size: 14px;
}

.crm-search .search-text {
  font-size: 13px;
  color: var(--ink);
}

.crm-search .search-cursor {
  animation: blink 1s infinite;
  color: #1a6b4f;
}

.typing-crm {
  overflow: hidden;
  white-space: nowrap;
  animation: typing-crm 2s steps(5) infinite;
}

@keyframes typing-crm {
  0%, 100% { width: 0; }
  40%, 60% { width: 40px; }
}

.crm-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.crm-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.crm-row.highlight {
  border-color: #1a6b4f;
  background: rgba(26,107,79,0.03);
}

.crm-row.dim {
  opacity: 0.5;
}

.row-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a6b4f, #28a745);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.row-name {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.row-segment {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 600;
}

.row-segment.vip {
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.1));
  color: var(--gold-deep);
}

.row-segment.regular {
  background: var(--cream);
  color: var(--muted);
}

.row-action {
  font-size: 14px;
  cursor: pointer;
}

/* Intel card */
.anim-step-intel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.intel-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.intel-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a6b4f, #28a745);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

.intel-info {
  flex: 1;
}

.intel-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.intel-meta {
  font-size: 11px;
  color: var(--muted);
}

.intel-segment {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.intel-segment.vip {
  background: linear-gradient(135deg, #d4af37, #f5d742);
  color: #5c4a00;
}

.intel-stats {
  display: flex;
  gap: 12px;
}

.intel-stats .stat {
  flex: 1;
  text-align: center;
  padding: 10px;
  background: var(--cream);
  border-radius: 8px;
}

.intel-stats .s-num {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.intel-stats .s-label {
  font-size: 10px;
  color: var(--muted);
}

.intel-ai {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(26,107,79,0.08), rgba(26,107,79,0.03));
  border-radius: 10px;
  border-left: 3px solid #1a6b4f;
}

.intel-ai .ai-icon {
  font-size: 16px;
}

.intel-ai .ai-text {
  font-size: 12px;
  color: var(--ink);
  line-height: 1.4;
}

.intel-prefs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.intel-prefs .pref {
  font-size: 10px;
  padding: 4px 10px;
  background: var(--cream);
  border-radius: 12px;
  color: var(--ink);
}

.intel-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  padding: 8px;
  background: var(--cream);
  border-radius: 8px;
}

.intel-chart .chart-bar {
  flex: 1;
  background: #d0d5dd;
  border-radius: 3px 3px 0 0;
  position: relative;
  transition: height 0.5s, background 0.3s;
}

.intel-chart .chart-bar.highlight {
  background: #1a6b4f;
}

.intel-chart .chart-bar span {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: var(--muted);
}

.intel-action {
  text-align: center;
}

.btn-wpp {
  padding: 10px 24px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* ─────────── PDV Animation ─────────── */
.anim-body-pdv {
  padding: 12px;
  min-height: 300px;
}

.demo-anim-pdv .anim-step-pdv { opacity: 1; transform: none; }

.demo-anim-pdv:hover .anim-step-pdv,
.demo-anim-pdv.playing .anim-step-pdv {
  animation: fadeOutStep 0.5s 4s forwards;
}

.demo-anim-pdv:hover .anim-step-payment,
.demo-anim-pdv.playing .anim-step-payment {
  animation: fadeInStep 0.5s 4s forwards, fadeOutStep 0.5s 7s forwards;
}

.demo-anim-pdv:hover .anim-step-nfce,
.demo-anim-pdv.playing .anim-step-nfce {
  animation: fadeInStep 0.5s 7s forwards;
}

.anim-step-pdv {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
}

.pdv-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pdv-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.pdv-search .search-icon {
  font-size: 12px;
}

.pdv-search .search-placeholder {
  font-size: 12px;
  color: var(--muted);
}

.pdv-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pdv-product {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s;
  cursor: pointer;
}

.pdv-product:hover,
.pdv-product.adding {
  border-color: #1a6b4f;
  background: rgba(26,107,79,0.03);
}

.pdv-product .prod-img {
  width: 32px;
  height: 32px;
  background: var(--cream);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.pdv-product .prod-info {
  flex: 1;
}

.pdv-product .prod-name {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
}

.pdv-product .prod-price {
  font-size: 11px;
  color: #1a6b4f;
  font-weight: 600;
}

.pdv-right {
  background: var(--cream);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-header {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.cart-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  padding: 6px 8px;
  background: #fff;
  border-radius: 6px;
}

.cart-item.slide-in {
  animation: slideInCart 0.5s ease-out forwards;
}

.cart-item.delay-1 {
  animation-delay: 1s;
  opacity: 0;
}

@keyframes slideInCart {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.cart-item .item-name {
  flex: 1;
  color: var(--ink);
}

.cart-item .item-qty {
  color: var(--muted);
}

.cart-item .item-price {
  font-weight: 600;
  color: #1a6b4f;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.cart-total .total-label {
  font-size: 12px;
  color: var(--muted);
}

.cart-total .total-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.btn-finalizar {
  padding: 10px;
  background: linear-gradient(135deg, #1a6b4f, #28a745);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.btn-finalizar.pulse {
  animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26,107,79,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(26,107,79,0); }
}

/* Payment modal */
.anim-step-payment {
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-modal {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.payment-header {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  text-align: center;
}

.payment-summary {
  margin-bottom: 16px;
}

.payment-summary .sum-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 4px 0;
  color: var(--ink);
}

.payment-summary .sum-row.discount span:last-child {
  color: #28a745;
}

.payment-summary .sum-row.total {
  font-weight: 700;
  font-size: 14px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.payment-tap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: linear-gradient(135deg, #0066ff, #0044cc);
  border-radius: 10px;
  margin-bottom: 12px;
  cursor: pointer;
}

.payment-tap .tap-icon {
  font-size: 20px;
}

.payment-tap .tap-text {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.payment-tap .tap-badge {
  font-size: 9px;
  font-weight: 700;
  background: #fff;
  color: #0066ff;
  padding: 2px 6px;
  border-radius: 10px;
}

.payment-methods {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.payment-methods .method {
  flex: 1;
  text-align: center;
  padding: 10px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 11px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.payment-methods .method.selected {
  border-color: #1a6b4f;
  background: rgba(26,107,79,0.05);
  color: #1a6b4f;
  font-weight: 600;
}

.btn-confirmar {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #1a6b4f, #28a745);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* NFC-e modal */
.anim-step-nfce {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nfce-modal {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  text-align: center;
}

.nfce-header {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}

.nfce-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.nfce-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.nfce-opt.selected {
  border-color: #1a6b4f;
  background: rgba(26,107,79,0.05);
}

.nfce-opt .opt-radio {
  color: #1a6b4f;
  font-size: 14px;
}

.nfce-opt .opt-label {
  flex: 1;
  text-align: left;
  font-weight: 500;
  color: var(--ink);
}

.nfce-opt .opt-rec {
  font-size: 9px;
  font-weight: 600;
  background: #1a6b4f;
  color: #fff;
  padding: 2px 6px;
  border-radius: 10px;
}

.nfce-emitting {
  margin-bottom: 16px;
  animation: showEmitting 0s 0s forwards, hideEmitting 0s 2s forwards;
  opacity: 1;
}

@keyframes showEmitting {
  to { opacity: 1; }
}

@keyframes hideEmitting {
  to { opacity: 0; height: 0; overflow: hidden; }
}

.emit-loader {
  width: 28px;
  height: 28px;
  border: 3px solid var(--border);
  border-top-color: #1a6b4f;
  border-radius: 50%;
  margin: 0 auto 10px;
  animation: spin 1s linear infinite;
}

.emit-text {
  font-size: 13px;
  color: var(--ink);
}

.nfce-success {
  opacity: 0;
  animation: fadeInSuccess 0.5s 2s forwards;
}

@keyframes fadeInSuccess {
  to { opacity: 1; }
}

.nfce-success .success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1a6b4f, #28a745);
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  margin: 0 auto 12px;
}

.nfce-success .success-text {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a6b4f;
  margin-bottom: 4px;
}

.nfce-success .success-num {
  font-size: 11px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}

/* Auto-play animations on scroll */
.demo-anim.in-view {
  /* Triggers the playing class via JS */
}

/* Responsive */
@media (max-width: 600px) {
  .anim-step-pdv {
    grid-template-columns: 1fr;
  }
  .anim-step-results {
    grid-template-columns: 1fr;
  }
  .results-photo {
    justify-self: center;
  }
  .intel-stats {
    flex-wrap: wrap;
  }
  .intel-chart {
    display: none;
  }
}

/* ─────────── AUTO-LOOP ANIMATIONS (8s cycle) ─────────── */
/* All animations run automatically, not just on hover */

@media (prefers-reduced-motion: no-preference) {
  /* Master cycle keyframe */
  @keyframes cycleOpacity {
    0%, 100% { opacity: 1; }
    95% { opacity: 1; }
  }
  
  /* Typing animation - loops continuously */
  .feature-anim-card .anim-typing,
  .anim-search-text.anim-typing {
    animation: typingLoop 8s steps(20) infinite;
  }
  @keyframes typingLoop {
    0%, 5% { width: 0; }
    20%, 90% { width: 100%; }
    95%, 100% { width: 0; }
  }
  
  /* Slide in - loops continuously */
  .feature-anim-card .anim-slide-in {
    animation: slideInLoop 8s ease-out infinite;
  }
  @keyframes slideInLoop {
    0%, 10% { opacity: 0; transform: translateX(-10px); }
    20%, 85% { opacity: 1; transform: translateX(0); }
    95%, 100% { opacity: 0; transform: translateX(-10px); }
  }
  
  /* Cart items stagger */
  .feature-anim-card .anim-cart-item:nth-child(1) { animation-delay: 0s; }
  .feature-anim-card .anim-cart-item:nth-child(2) { animation-delay: 0.5s; }
  .feature-anim-card .anim-cart-item:nth-child(3) { animation-delay: 1s; }
  
  /* Photo upload - loops */
  .feature-anim-card .anim-photo-uploaded {
    animation: fadeInPhotoLoop 8s ease-out infinite;
  }
  @keyframes fadeInPhotoLoop {
    0%, 15% { opacity: 0; }
    25%, 80% { opacity: 1; }
    90%, 100% { opacity: 0; }
  }
  
  /* Scan line - loops */
  .feature-anim-card .anim-scan-line {
    animation: scanLineLoop 8s ease-in-out infinite;
  }
  @keyframes scanLineLoop {
    0%, 25% { top: 0; opacity: 0; }
    30% { top: 0; opacity: 1; }
    50% { top: 100%; opacity: 1; }
    55%, 100% { top: 100%; opacity: 0; }
  }
  
  /* Cursor movement - loops */
  .feature-anim-card .anim-cursor {
    animation: cursorMoveLoop 8s ease-in-out infinite;
  }
  @keyframes cursorMoveLoop {
    0%, 10% { top: 50%; left: 50%; opacity: 0; }
    15% { opacity: 1; }
    25% { top: 30%; left: 30%; }
    40% { top: 60%; left: 70%; }
    55% { top: 40%; left: 50%; }
    70% { top: 70%; left: 40%; }
    85% { top: 50%; left: 60%; opacity: 1; }
    90%, 100% { opacity: 0; }
  }
  
  /* Highlight row - loops */
  .feature-anim-card .anim-highlight {
    animation: highlightLoop 8s ease-in-out infinite;
  }
  @keyframes highlightLoop {
    0%, 20%, 100% { transform: scale(1); box-shadow: none; }
    30%, 70% { transform: scale(1.02); box-shadow: 0 0 0 2px var(--gold); }
  }
  
  /* Insight panel - loops */
  .feature-anim-card .anim-insight-panel {
    animation: insightPanelLoop 8s ease-out infinite;
  }
  @keyframes insightPanelLoop {
    0%, 40% { opacity: 0; transform: translateY(10px); }
    50%, 85% { opacity: 1; transform: translateY(0); }
    95%, 100% { opacity: 0; transform: translateY(10px); }
  }
  
  /* Toggle on - loops */
  .feature-anim-card .anim-toggle-on {
    animation: toggleOnLoop 8s ease-in-out infinite;
  }
  @keyframes toggleOnLoop {
    0%, 50% { background: #ccc; }
    55%, 90% { background: var(--green); }
    95%, 100% { background: #ccc; }
  }
  .feature-anim-card .anim-toggle-on::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
    animation: toggleKnobLoop 8s ease-in-out infinite;
  }
  @keyframes toggleKnobLoop {
    0%, 50% { transform: translateX(0); }
    55%, 90% { transform: translateX(14px); }
    95%, 100% { transform: translateX(0); }
  }
  
  /* Payment button pulse - loops */
  .feature-anim-card .anim-pay-btn {
    animation: payBtnLoop 8s ease-in-out infinite;
  }
  @keyframes payBtnLoop {
    0%, 60%, 100% { transform: scale(1); box-shadow: none; }
    65%, 80% { transform: scale(1.05); box-shadow: 0 0 0 4px rgba(26, 107, 79, 0.3); }
  }
  
  /* Auto items appear - loops */
  .feature-anim-card .anim-auto-item {
    animation: autoItemLoop 8s ease-out infinite;
  }
  .feature-anim-card .anim-auto-item:nth-child(1) { animation-delay: 0.2s; }
  .feature-anim-card .anim-auto-item:nth-child(2) { animation-delay: 0.4s; }
  .feature-anim-card .anim-auto-item:nth-child(3) { animation-delay: 0.6s; }
  @keyframes autoItemLoop {
    0%, 35% { opacity: 0; transform: translateX(-8px); }
    45%, 85% { opacity: 1; transform: translateX(0); }
    95%, 100% { opacity: 0; transform: translateX(-8px); }
  }
  
  /* Chart bars - loops */
  .feature-anim-card .anim-chart-bar {
    animation: chartBarLoop 8s ease-out infinite;
  }
  .feature-anim-card .anim-chart-bar:nth-child(1) { --target-height: 60%; animation-delay: 0s; }
  .feature-anim-card .anim-chart-bar:nth-child(2) { --target-height: 80%; animation-delay: 0.15s; }
  .feature-anim-card .anim-chart-bar:nth-child(3) { --target-height: 45%; animation-delay: 0.3s; }
  .feature-anim-card .anim-chart-bar:nth-child(4) { --target-height: 90%; animation-delay: 0.45s; }
  .feature-anim-card .anim-chart-bar:nth-child(5) { --target-height: 70%; animation-delay: 0.6s; }
  @keyframes chartBarLoop {
    0%, 40% { height: 0; }
    55%, 80% { height: var(--target-height, 50%); }
    95%, 100% { height: 0; }
  }
  
  /* AI thinking dots - loops */
  .feature-anim-card .anim-ai-thinking {
    animation: aiThinkingLoop 8s ease-in-out infinite;
  }
  @keyframes aiThinkingLoop {
    0%, 45% { opacity: 0; }
    50%, 70% { opacity: 1; }
    75%, 100% { opacity: 0; }
  }
  
  /* AI response - loops */
  .feature-anim-card .anim-ai-response {
    animation: aiResponseLoop 8s ease-out infinite;
  }
  @keyframes aiResponseLoop {
    0%, 70% { opacity: 0; transform: translateY(5px); }
    80%, 90% { opacity: 1; transform: translateY(0); }
    95%, 100% { opacity: 0; transform: translateY(5px); }
  }
  
  /* Counter animation via CSS (for display purposes) */
  .feature-anim-card .anim-counter {
    animation: counterLoop 8s steps(1) infinite;
  }
}

/* Ensure base visibility for elements before animation */
.feature-anim-card .anim-photo-uploaded { opacity: 0; }
.feature-anim-card .anim-insight-panel { opacity: 0; }
.feature-anim-card .anim-toggle { 
  position: relative; 
  width: 30px; 
  height: 16px; 
  border-radius: 8px; 
  background: #ccc;
}
.feature-anim-card .anim-auto-item { opacity: 0; }
.feature-anim-card .anim-ai-thinking { opacity: 0; }
.feature-anim-card .anim-ai-response { opacity: 0; }

/* Reduced motion - show everything static */
@media (prefers-reduced-motion: reduce) {
  .feature-anim-card .anim-typing { width: 100%; animation: none; }
  .feature-anim-card .anim-slide-in { opacity: 1; transform: none; animation: none; }
  .feature-anim-card .anim-photo-uploaded { opacity: 1; animation: none; }
  .feature-anim-card .anim-cursor { opacity: 0; animation: none; }
  .feature-anim-card .anim-insight-panel { opacity: 1; transform: none; animation: none; }
  .feature-anim-card .anim-auto-item { opacity: 1; transform: none; animation: none; }
  .feature-anim-card .anim-chart-bar { height: var(--target-height, 50%); animation: none; }
  .feature-anim-card .anim-ai-response { opacity: 1; transform: none; animation: none; }
  .feature-anim-card .anim-toggle-on { background: var(--green); animation: none; }
  .feature-anim-card .anim-toggle-on::after { transform: translateX(14px); animation: none; }
}


/* ─────────── DEMO SECTION AUTO-LOOP (12s cycle) ─────────── */
@media (prefers-reduced-motion: no-preference) {
  /* Cadastro IA - 3 steps cycle */
  .demo-anim-cadastro .anim-step-upload {
    animation: demoStep1 12s ease-in-out infinite;
  }
  .demo-anim-cadastro .anim-step-analyzing {
    animation: demoStep2 12s ease-in-out infinite;
  }
  .demo-anim-cadastro .anim-step-results {
    animation: demoStep3 12s ease-in-out infinite;
  }
  
  @keyframes demoStep1 {
    0%, 5% { opacity: 1; transform: none; }
    15%, 95% { opacity: 0; transform: translateX(-20px); pointer-events: none; }
    100% { opacity: 1; transform: none; }
  }
  
  @keyframes demoStep2 {
    0%, 15% { opacity: 0; transform: translateX(20px); pointer-events: none; }
    20%, 45% { opacity: 1; transform: none; }
    50%, 100% { opacity: 0; transform: translateX(-20px); pointer-events: none; }
  }
  
  @keyframes demoStep3 {
    0%, 50% { opacity: 0; transform: translateX(20px); pointer-events: none; }
    55%, 90% { opacity: 1; transform: none; }
    95%, 100% { opacity: 0; transform: translateX(-20px); pointer-events: none; }
  }
  
  /* Loader spin continuous */
  .demo-anim-cadastro .loader-spin {
    animation: spin 1s linear infinite;
  }
  
  /* Typing effect in results */
  .demo-anim-cadastro .field-value.typing {
    animation: demoTyping 12s steps(20) infinite;
  }
  @keyframes demoTyping {
    0%, 55% { width: 0; }
    65%, 90% { width: 100%; }
    95%, 100% { width: 0; }
  }
  
  /* CRM Animation - similar cycle */
  .demo-anim-crm .anim-step-table {
    animation: demoStep1 12s ease-in-out infinite;
  }
  .demo-anim-crm .anim-step-intel {
    animation: demoStep3 12s ease-in-out infinite;
  }
  
  /* PDV Animation - similar cycle */
  .demo-anim-pdv .anim-step-cart {
    animation: demoStep1 12s ease-in-out infinite;
  }
  .demo-anim-pdv .anim-step-payment {
    animation: demoStep2 12s ease-in-out infinite;
  }
  .demo-anim-pdv .anim-step-nfce {
    animation: demoStep3 12s ease-in-out infinite;
  }
}

/* Ensure initial state */
.demo-anim .anim-step {
  position: absolute;
  inset: 0;
  padding: 20px;
}
.demo-anim .anim-step-analyzing,
.demo-anim .anim-step-results {
  opacity: 0;
  pointer-events: none;
}

/* ════════════════ v4 · MODELO DE PREÇO (créditos de IA + multi-loja) ════════════════ */

/* Plano: linha de créditos inclusos em destaque */
.plan .plan-credits {
  display: flex; align-items: center; gap: 11px;
  background: var(--accent-bg);
  border: 1px solid var(--gold-soft);
  border-radius: 12px;
  padding: 11px 13px;
  margin: 2px 0 18px;
}
.plan.featured .plan-credits {
  background: rgba(255,236,179,0.12);
  border-color: rgba(255,236,179,0.32);
}
.plan .plan-credits .pc-num {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: 26px; color: var(--gold); line-height: 0.9; flex-shrink: 0;
}
.plan.featured .plan-credits .pc-num { color: var(--gold-soft); }
.plan .plan-credits .pc-text { font-size: 12px; color: var(--ink-soft); line-height: 1.4; }
.plan .plan-credits .pc-text strong { color: var(--ink); font-weight: 600; }
.plan.featured .plan-credits .pc-text { color: rgba(245,239,224,0.82); }
.plan.featured .plan-credits .pc-text strong { color: var(--cream); }

/* ── Painel CRÉDITOS DE IA (verde) ── */
.credits {
  position: relative;
  margin: 72px auto 0;
  max-width: 1080px;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 24px;
  padding: 48px 48px 42px;
  overflow: hidden;
}
.credits::before {
  content: '';
  position: absolute; top: -80px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(176,138,62,0.20), transparent 70%);
  pointer-events: none;
}
.credits-head { position: relative; text-align: center; max-width: 660px; margin: 0 auto 36px; }
.credits-head .eyebrow { color: var(--gold-soft); }
.credits-head h3 {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px); line-height: 1.08;
  letter-spacing: -0.02em; margin: 12px 0 14px; color: var(--cream);
}
.credits-head h3 em { color: var(--gold-soft); font-style: italic; }
.credits-head p { font-size: 15.5px; line-height: 1.6; opacity: 0.82; margin: 0; text-wrap: pretty; }
.credits-head p strong { color: var(--gold-soft); font-weight: 600; opacity: 1; }

.credits-grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 22px;
  align-items: start;
}
.credit-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,236,179,0.18);
  border-radius: 18px;
  padding: 26px 28px;
}
.credit-card .cc-title {
  font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 600; margin: 0 0 4px;
}
.credit-card .cc-sub { font-size: 13px; opacity: 0.66; margin: 0 0 18px; line-height: 1.5; }

/* tabela de ações */
.credit-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 12px; align-items: center;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(255,236,179,0.16);
}
.credit-row:last-child { border-bottom: 0; }
.credit-row .ca-name { font-size: 14.5px; font-weight: 500; line-height: 1.25; }
.credit-row .ca-desc { font-size: 11.5px; opacity: 0.58; margin-top: 2px; line-height: 1.4; }
.credit-row .ca-cost {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 500;
  color: var(--green-deeper); background: var(--gold-soft);
  padding: 5px 11px; border-radius: 999px; white-space: nowrap;
}
.credit-row .ca-cost.cheap { background: var(--champagne); }

/* pacotes de recarga */
.pack-row {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 14px; align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,236,179,0.16);
}
.pack-row:last-of-type { border-bottom: 0; }
.pack-row .pk-amt { font-family: 'Fraunces', serif; font-style: italic; font-size: 21px; line-height: 1; color: var(--cream); }
.pack-row .pk-amt small { font-style: normal; font-family: 'Inter', sans-serif; font-size: 11px; opacity: 0.6; display: block; margin-top: 3px; letter-spacing: 0.3px; }
.pack-row .pk-tag { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; justify-self: start; }
.pack-row .pk-price { font-family: 'Fraunces', serif; font-style: italic; font-size: 22px; color: var(--gold-soft); white-space: nowrap; }
.pack-foot {
  margin: 16px 0 0; padding-top: 14px;
  border-top: 1px solid rgba(255,236,179,0.16);
  font-size: 11.5px; opacity: 0.62; line-height: 1.55;
}
.pack-foot strong { color: var(--gold-soft); font-weight: 600; opacity: 1; }

/* âncora tangível "o que dá pra fazer com 100 créditos" */
.credits-anchor {
  position: relative;
  margin: 26px auto 0; max-width: 760px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 14px;
  text-align: center;
}
.credits-anchor .ank-lead {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 16px; color: var(--gold-soft);
}
.credits-anchor .ank-item {
  font-size: 13px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,236,179,0.2); border-radius: 999px;
  padding: 7px 14px; opacity: 0.92;
}
.credits-anchor .ank-item strong { color: var(--cream); font-weight: 600; }
.cc-foot { margin: 14px 0 0; font-size: 11.5px; opacity: 0.58; line-height: 1.55; }

/* ── Bloco MULTI-LOJA (Atelier) ── */
.multistore {
  margin: 24px auto 0; max-width: 1080px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 22px; padding: 36px 40px;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center;
  box-shadow: 0 18px 48px -28px rgba(14,78,57,0.2);
}
.multistore-copy .ms-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin: 0 0 12px;
  background: var(--accent-bg); border: 1px solid var(--gold-soft);
  padding: 5px 12px; border-radius: 999px;
}
.multistore-copy h3 {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: clamp(26px, 3vw, 36px); line-height: 1.1; letter-spacing: -0.02em;
  margin: 0 0 12px; color: var(--green-deep);
}
.multistore-copy p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 18px; }
.multistore-copy .ms-example {
  background: var(--cream); border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0; padding: 13px 16px;
  font-size: 13.5px; color: var(--ink); line-height: 1.5;
}
.multistore-copy .ms-example strong { color: var(--green-deep); }
.ms-tiers { display: flex; flex-direction: column; gap: 0; }
.ms-tier {
  display: grid; grid-template-columns: 1fr auto; align-items: center;
  padding: 14px 4px; border-bottom: 1px solid var(--border);
}
.ms-tier:last-child { border-bottom: 0; }
.ms-tier .mt-range { font-size: 14.5px; color: var(--ink); font-weight: 500; }
.ms-tier .mt-range small { display: block; font-size: 11.5px; color: var(--muted); font-weight: 400; margin-top: 2px; }
.ms-tier .mt-price { font-family: 'Fraunces', serif; font-style: italic; font-size: 22px; color: var(--green-deep); white-space: nowrap; }
.ms-tier .mt-price small { font-style: normal; font-family: 'Inter', sans-serif; font-size: 11px; color: var(--muted); }

@media (max-width: 860px) {
  .credits { padding: 34px 22px 30px; border-radius: 20px; }
  .credits-grid { grid-template-columns: 1fr; gap: 16px; }
  .multistore { grid-template-columns: 1fr; gap: 24px; padding: 28px 22px; }
  .pack-row { grid-template-columns: 1fr auto; }
  .pack-row .pk-tag { display: none; }
}

/* ════════════════ v4 · TOM PROFISSIONAL (menos motion "de app") ════════════════ */
/* Anéis dourados que pulsam nos CTAs — fora */
.pulse-cta::before { display: none !important; }
/* Pílulas "👇 mexa os controles / 👆 toque a aba" — hand-holding, fora */
.affordance, .demo-aff, .pricing-aff, .faq-aff { display: none !important; }
/* Balões "agora é sua vez" — fora */
.diag-tip, .demo-tip, .roi-tip { display: none !important; }
/* Destaques que piscam/escalam no auto-demo — neutralizados */
.diag-chip.attract, .demo-tab.attract,
.diag-chip.demo-flash, .demo-tab.demo-flash {
  animation: none !important;
  box-shadow: none !important;
  transform: none !important;
}
.demo-tab.demo-flash:not(.active) {
  background: transparent !important; color: var(--ink-soft) !important; border-color: transparent !important;
}
.diag-chip.demo-flash:not(.active) {
  background: var(--cream) !important; color: var(--ink) !important; border-color: var(--border) !important;
}
/* Três-toques: indicador discreto em vez do emoji de dedo */
.tt-tap { color: var(--muted) !important; opacity: 0.6; font-size: 18px !important; }

/* #5 · Faixa de integrações como wordmark intencional (não lista em itálico) */
.trust-logos {
  font-family: 'Inter', sans-serif !important;
  font-style: normal !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted) !important;
  gap: 12px 26px !important;
  align-items: center;
}
.trust-logos span { opacity: 1 !important; white-space: nowrap; }
.trust-strip { padding-bottom: 26px; }
.trust-label { margin-bottom: 16px; }

/* ════════════════ v4 · EXPERIMENTE (drop da foto → ficha) ════════════════ */
.trythis { padding: 96px 0; background: var(--cream); }
.trythis-inner { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 48px; align-items: center; }
.try-copy h2 { margin: 12px 0 14px; }
.try-copy h2 em { font-style: italic; color: var(--green-deep); }
.try-copy p { font-size: 15.5px; line-height: 1.62; color: var(--ink-soft); margin: 0 0 22px; text-wrap: pretty; }
.try-copy p strong { color: var(--green-deep); font-weight: 600; }
.try-steps { display: flex; flex-wrap: wrap; gap: 10px; }
.try-steps span { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-soft); background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 7px 14px; }
.try-steps b { width: 18px; height: 18px; border-radius: 50%; background: var(--green-deep); color: var(--gold-soft); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

.try-card { display: grid; grid-template-columns: 196px 1fr; background: var(--white); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: 0 24px 60px -34px rgba(14,78,57,0.3); }
.try-photo { position: relative; padding: 16px; background: var(--paper); display: flex; align-items: center; justify-content: center; }
.try-img { width: 164px; height: 206px; object-fit: cover; border-radius: 10px; display: block; }
.try-scan { position: absolute; left: 16px; right: 16px; top: 18px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; pointer-events: none; box-shadow: 0 0 16px 3px rgba(212,176,102,0.5); }
.try-card.analyzing .try-scan { opacity: 1; animation: tryScan 1.2s ease-in-out infinite; }
@keyframes tryScan { 0% { top: 20px; } 100% { top: 200px; } }
.try-status { position: absolute; left: 16px; right: 16px; bottom: 16px; display: none; align-items: center; justify-content: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--green-deep); background: rgba(255,255,255,0.92); border: 1px solid var(--border); border-radius: 999px; padding: 7px 12px; }
.try-card.analyzing .try-status { display: flex; }
.try-spin { width: 13px; height: 13px; border-radius: 50%; border: 2px solid var(--gold-soft); border-top-color: var(--green-deep); animation: trySpin 0.7s linear infinite; }
@keyframes trySpin { to { transform: rotate(360deg); } }

.try-ficha { position: relative; padding: 20px 22px; }
.try-ficha-head { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.try-ficha-glyph { color: var(--gold); }
.try-ai-pill { margin-left: auto; font-size: 10px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--green-deep); background: var(--accent-bg); border: 1px solid var(--gold-soft); border-radius: 999px; padding: 3px 9px; }
.try-field { display: grid; grid-template-columns: 60px 1fr; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--border); }
.try-field label { font-size: 11px; letter-spacing: 0.8px; text-transform: uppercase; color: var(--muted); }
.try-field .v { font-size: 14px; color: var(--ink); font-weight: 500; opacity: 0; transform: translateY(4px); transition: opacity 0.35s ease, transform 0.35s ease; }
.try-pill-done { display: none; margin-left: auto; align-items: center; gap: 5px; font-size: 10px; letter-spacing: 0.5px; text-transform: uppercase; color: #fff; background: var(--success); border-radius: 999px; padding: 3px 10px; }
.try-card.done .try-ai-pill { display: none; }
.try-card.done .try-pill-done { display: inline-flex; }
.try-actions { display: flex; align-items: center; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.try-btn { appearance: none; border: 0; cursor: pointer; background: var(--green-deep); color: var(--cream); font-family: inherit; font-size: 13.5px; font-weight: 600; padding: 11px 20px; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s, transform 0.15s, opacity 0.2s; }
.try-btn::before { content: '◆'; color: var(--gold-soft); font-size: 11px; }
.try-btn:hover:not(:disabled) { background: var(--green-deeper); transform: translateY(-1px); }
.try-btn:disabled { opacity: 0.55; cursor: not-allowed; }
.try-limit { font-size: 11.5px; color: var(--ink-soft); line-height: 1.4; flex: 1; min-width: 140px; }
.try-limit a { color: var(--green-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.try-ficha-foot { margin: 12px 0 0; font-size: 11px; color: var(--muted); font-style: italic; line-height: 1.45; }

/* ════════════════ v4 · FAÇA POR MIM (IA agêntica em ação) ════════════════ */
.dfm { padding: 96px 0; background: var(--cream); }
.dfm-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.dfm-copy h2 { margin: 12px 0 14px; }
.dfm-copy h2 em { font-style: italic; color: var(--green-deep); }
.dfm-copy p { font-size: 15.5px; line-height: 1.62; color: var(--ink-soft); margin: 0 0 22px; text-wrap: pretty; }
.dfm-cmds { display: flex; flex-wrap: wrap; gap: 10px; }
.dfm-cmd { appearance: none; cursor: pointer; font-family: inherit; font-size: 13px; font-weight: 500; color: var(--ink-soft); background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 9px 16px; transition: all 0.18s; }
.dfm-cmd:hover { border-color: var(--gold-soft); }
.dfm-cmd.active { background: var(--green-deep); color: var(--cream); border-color: var(--green-deep); }
.dfm-console { background: var(--white); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: 0 24px 60px -34px rgba(14,78,57,0.3); }
.dfm-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; background: var(--paper); border-bottom: 1px solid var(--border); }
.dfm-dot { width: 9px; height: 9px; border-radius: 50%; background: #d9d2c4; }
.dfm-bar-title { margin-left: 6px; font-size: 12.5px; font-weight: 600; color: var(--ink); }
.dfm-ai-pill { margin-left: auto; font-size: 10px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--green-deep); background: var(--accent-bg); border: 1px solid var(--gold-soft); border-radius: 999px; padding: 3px 9px; }
.dfm-body { padding: 18px 20px; min-height: 214px; }
.dfm-prompt { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.dfm-you { flex-shrink: 0; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--muted); background: var(--cream); border-radius: 6px; padding: 4px 7px; margin-top: 1px; }
.dfm-prompt p { font-size: 14.5px; color: var(--ink); line-height: 1.45; font-weight: 500; }
.dfm-steps { display: flex; flex-direction: column; }
.dfm-step { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 13.5px; color: var(--ink-soft); opacity: 0; transform: translateY(4px); }
.dfm-step.in { opacity: 1; transform: none; transition: opacity 0.3s ease, transform 0.3s ease; }
.dfm-step .ic { width: 18px; height: 18px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.dfm-step .sp { width: 13px; height: 13px; border-radius: 50%; border: 2px solid var(--gold-soft); border-top-color: var(--green-deep); animation: trySpin 0.7s linear infinite; }
.dfm-step.done .sp { display: none; }
.dfm-step .ck { display: none; width: 16px; height: 16px; border-radius: 50%; background: var(--success); color: #fff; font-size: 10px; align-items: center; justify-content: center; }
.dfm-step.done .ck { display: flex; }
.dfm-step.done { color: var(--ink); }
.dfm-result { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.dfm-msg { border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; background: var(--paper); opacity: 0; transform: translateY(6px); }
.dfm-msg.in { opacity: 1; transform: none; transition: opacity 0.4s ease, transform 0.4s ease; }
.dfm-msg-top { display: flex; align-items: center; gap: 9px; margin-bottom: 7px; }
.dfm-msg-av { width: 30px; height: 30px; border-radius: 50%; background: var(--green-deep); color: var(--gold-soft); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dfm-msg-id { line-height: 1.25; flex: 1; min-width: 0; }
.dfm-msg-id strong { display: block; font-size: 13px; color: var(--ink); }
.dfm-msg-id span { font-size: 11px; color: var(--muted); }
.dfm-msg-send { margin-left: auto; font-size: 11.5px; font-weight: 600; color: var(--green-deep); background: var(--accent-bg); border: 1px solid var(--gold-soft); border-radius: 999px; padding: 5px 12px; white-space: nowrap; }
.dfm-msg-text { font-size: 13px; color: var(--ink-soft); line-height: 1.5; font-style: italic; }
.dfm-actions { display: flex; align-items: center; gap: 12px; padding: 0 20px 4px; flex-wrap: wrap; }
.dfm-run { appearance: none; border: 0; cursor: pointer; background: var(--green-deep); color: var(--cream); font-family: inherit; font-size: 13.5px; font-weight: 600; padding: 11px 20px; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s, transform 0.15s, opacity 0.2s; }
.dfm-run::before { content: '◆'; color: var(--gold-soft); font-size: 11px; }
.dfm-run:hover:not(:disabled) { background: var(--green-deeper); transform: translateY(-1px); }
.dfm-run:disabled { opacity: 0.55; cursor: not-allowed; }
.dfm-limit { font-size: 11.5px; color: var(--ink-soft); line-height: 1.4; flex: 1; min-width: 150px; }
.dfm-limit a { color: var(--green-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.dfm-foot { margin: 10px 20px 18px; font-size: 11px; color: var(--muted); font-style: italic; line-height: 1.45; }
@media (max-width: 860px) { .dfm-inner { grid-template-columns: 1fr; gap: 28px; } }

/* ════════════════ v4 · INTELIGÊNCIA (o que os dados te contam) ════════════════ */
.dataintel { padding: 104px 0; background: var(--green-deep); color: var(--cream); position: relative; overflow: hidden; }
.dataintel::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 760px; height: 420px; background: radial-gradient(ellipse, rgba(176,138,62,0.16), transparent 70%); pointer-events: none;
}
.di-head { position: relative; text-align: center; max-width: 760px; margin: 0 auto 44px; }
.di-head .eyebrow { color: var(--gold-soft); }
.di-head h2 { color: var(--cream); margin: 14px 0 16px; }
.di-head h2 em { color: var(--gold-soft); font-style: italic; }
.di-head p { font-size: 16px; line-height: 1.62; opacity: 0.82; margin: 0; text-wrap: pretty; }

.di-board {
  position: relative; max-width: 1140px; margin: 0 auto;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,236,179,0.16);
  border-radius: 22px; padding: 10px; box-shadow: 0 30px 80px -40px rgba(0,0,0,0.6);
}
.di-board-top {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 18px 16px;
}
.di-bt-title { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--cream); opacity: 0.9; }
.di-bt-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(46,160,103,0.22); }
.di-bt-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.di-bt-tabs span {
  font-size: 12px; padding: 6px 13px; border-radius: 999px; color: rgba(245,239,224,0.6);
}
.di-bt-tabs span.active { background: rgba(255,236,179,0.14); color: var(--gold-soft); font-weight: 600; }

.di-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.di-card {
  background: var(--green-deeper); border: 1px solid rgba(255,236,179,0.12);
  border-radius: 16px; padding: 22px 22px 20px; display: flex; flex-direction: column;
}
.di-card.feat { background: linear-gradient(165deg, rgba(176,138,62,0.16), rgba(20,46,38,0.2)); border-color: rgba(255,236,179,0.28); }
.di-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.di-tag { font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }
.di-glyph { color: rgba(255,236,179,0.5); font-size: 13px; }
.di-insight { font-size: 16.5px; line-height: 1.45; margin: 0 0 16px; color: var(--cream); }
.di-insight strong { color: #fff; font-weight: 600; }
.di-big { font-family: 'Fraunces', serif; font-style: italic; font-size: 40px; line-height: 0.8; color: var(--gold-soft); display: inline-block; margin-right: 4px; }
.di-note { font-size: 12.5px; line-height: 1.55; opacity: 0.7; margin: 0 0 16px; }

.di-bars, .di-sellers { display: flex; flex-direction: column; gap: 9px; margin-top: auto; }
.dib, .dis { display: grid; grid-template-columns: 74px 1fr 38px; align-items: center; gap: 10px; }
.dib-label, .dis-name { font-size: 12px; opacity: 0.82; }
.dib-track, .dis-track { height: 7px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; }
.dib-track i, .dis-track i { display: block; height: 100%; border-radius: 999px; background: var(--gold-soft); }
.dib.slow .dib-track i { background: #c97b5e; }
.dib-val, .dis-val { font-family: 'JetBrains Mono', monospace; font-size: 11.5px; text-align: right; opacity: 0.85; }

.di-clients { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.dic { display: flex; align-items: center; gap: 11px; background: rgba(255,255,255,0.05); border-radius: 11px; padding: 9px 11px; }
.dic-av { width: 32px; height: 32px; border-radius: 50%; background: var(--gold-soft); color: var(--green-deeper); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dic-info { flex: 1; min-width: 0; line-height: 1.3; }
.dic-info strong { display: block; font-size: 13px; color: var(--cream); }
.dic-info span { font-size: 11px; opacity: 0.62; }
.dic-go { color: var(--gold-soft); font-size: 16px; }

.di-action { display: flex; align-items: flex-start; gap: 8px; margin: 16px 0 0; padding-top: 14px; border-top: 1px dashed rgba(255,236,179,0.18); font-size: 12.5px; line-height: 1.45; color: rgba(245,239,224,0.86); }
.di-act-mark { color: var(--gold-soft); font-weight: 700; }
.di-foot { text-align: center; font-size: 12.5px; opacity: 0.56; margin: 18px 0 4px; font-style: italic; }

/* ════════════════ v4 · PROVA SOCIAL ════════════════ */
.proof { padding: 100px 0; background: var(--paper); }
.proof-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.proof-head h2 { margin: 12px 0 12px; }
.proof-head p { font-size: 16px; color: var(--ink-soft); margin: 0; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.proof-card {
  position: relative; background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px 26px 24px; margin: 0;
  box-shadow: 0 18px 44px -30px rgba(14,78,57,0.22); display: flex; flex-direction: column;
}
.proof-card::before { content: '\201C'; position: absolute; top: 6px; left: 18px; font-family: 'Fraunces', serif; font-size: 64px; color: var(--gold-soft); opacity: 0.6; line-height: 1; }
.proof-ex { position: absolute; top: 12px; right: 12px; font-size: 9.5px; letter-spacing: 0.6px; text-transform: uppercase; color: var(--muted); background: var(--cream); border: 1px solid var(--border); border-radius: 999px; padding: 3px 8px; }
.proof-card blockquote { margin: 18px 0 22px; font-size: 15.5px; line-height: 1.62; color: var(--ink); text-wrap: pretty; }
.proof-card blockquote strong { color: var(--green-deep); font-weight: 600; }
.proof-card figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.proof-av { width: 44px; height: 44px; border-radius: 50%; background: var(--green-deep); color: var(--gold-soft); font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.proof-id { display: flex; flex-direction: column; line-height: 1.35; }
.proof-id strong { font-size: 14px; color: var(--ink); }
.proof-id span { font-size: 12.5px; color: var(--muted); }
.proof-note { text-align: center; margin: 34px 0 0; font-size: 14px; color: var(--ink-soft); }
.proof-note a { color: var(--green-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 860px) {
  .dataintel { padding: 72px 0; }
  .di-grid { grid-template-columns: 1fr; }
  .di-board-top { flex-direction: column; align-items: flex-start; gap: 10px; }
  .proof-grid { grid-template-columns: 1fr; gap: 16px; }
  .trythis-inner { grid-template-columns: 1fr; gap: 28px; }
  .try-card { grid-template-columns: 1fr; }
  .try-photo { justify-content: flex-start; }
  .try-photo image-slot { width: 100%; height: 200px; }
}

