/* ============================================================
   Talk-In — folha de estilo única.
   Ordem: tokens → fontes → base → utilitários → componentes →
          seções (na ordem da página) → responsivo.
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  /* fundos */
  --bg: #0d0a0c;
  --bg-soft: #130e13;
  --bg-deep: #0a080a;
  --bg-panel: #141018;

  /* texto, do mais forte ao mais apagado */
  --ink-strong: #fff;
  --ink: #f6efe8;
  --ink-soft: #d3c6c0;
  --ink-mute: #c9bcb6;
  --ink-dim: #9a8d87;
  --ink-faint: #8a7d78;
  --ink-ghost: #6f6360;

  /* marca */
  --warm: #ff8a3d;
  --brand: #ff4e6a;
  --hot: #ff2e7e;
  --peach: #ffb08a;
  --grad: linear-gradient(135deg, var(--warm), var(--hot));
  --grad-v: linear-gradient(180deg, var(--warm), var(--hot));
  --ok: #59f0a0;

  /* superfícies de card */
  --surface: rgba(255, 255, 255, .04);
  --surface-2: rgba(255, 255, 255, .05);
  --stroke: rgba(255, 255, 255, .09);
  --stroke-soft: rgba(255, 255, 255, .07);

  /* ritmo */
  --pad-x: clamp(18px, 4vw, 54px);
  --pad-y: clamp(70px, 9vw, 120px);

  /* tipografia de display */
  --display: 'Fraunces', Georgia, serif;
}

/* ---------- fontes ----------
   Subsets gerados só com os glifos que a página usa (109 codepoints + margem
   pt-BR). Os subsets latin-ext originais foram descartados: nenhum caractere
   da página cai fora de U+0000-00FF. Sem unicode-range — é um arquivo por
   família. 360 KB -> 66 KB. */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/fraunces-latin-subset.woff2") format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/inter-latin-subset.woff2") format('woff2');
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: #ff2e7ea2; color: #fff }
img { display: block; max-width: 100% }
a { color: inherit; text-decoration: none }
input { font-family: inherit }

/* zera as margens do user-agent: cada componente declara a sua.
   sem isto, h3/p/blockquote/figure trazem margens invisíveis que
   deslocam o layout. */
h1, h2, h3, h4, p, figure, blockquote, ul, ol { margin: 0 }
ul, ol { padding: 0; list-style: none }

/* trilho e polegar dos sliders da calculadora */
input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad);
  cursor: pointer;
  box-shadow: 0 4px 14px -2px rgba(255, 46, 126, .7), 0 0 0 4px rgba(255, 78, 106, .18);
}
input[type=range]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: var(--grad);
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 3px;
}

/* ---------- animações ---------- */
@keyframes heroIn    { from { transform: translateY(28px) } to { transform: none } }
@keyframes revealUp  { from { transform: translateY(32px) } to { transform: none } }
@keyframes floatA    { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-20px) } }
@keyframes floatB    { 0%, 100% { transform: translateY(0) rotate(-2deg) } 50% { transform: translateY(14px) rotate(1deg) } }
@keyframes glowPulse { 0%, 100% { opacity: .5; transform: scale(1) } 50% { opacity: .82; transform: scale(1.09) } }
@keyframes stageIn   { from { transform: translateY(14px) scale(.985) } to { transform: none } }
@keyframes matchPop  { 0% { transform: scale(.5) } 62% { transform: scale(1.12) } 100% { transform: scale(1) } }
@keyframes avL       { from { transform: translateX(-40px) } to { transform: none } }
@keyframes avR       { from { transform: translateX(40px) } to { transform: none } }
@keyframes ring      { 0% { transform: scale(.75); opacity: .75 } 100% { transform: scale(2); opacity: 0 } }
@keyframes meterGrow { from { width: 6% } to { width: 82% } }
@keyframes jProg     { from { width: 0 } to { width: 100% } }

/* o JS troca este transform por uma animação quando o bloco entra na tela */
[data-reveal] { transform: translateY(30px) }

/* ---------- layout ---------- */
.section {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
  background: var(--bg);
}
.section--soft   { background: linear-gradient(180deg, var(--bg), var(--bg-soft)) }
.section--soft-r { background: linear-gradient(180deg, var(--bg-soft), var(--bg)) }
.section--clip   { overflow: hidden }

.container { max-width: 1180px; margin: 0 auto }
.container--md { max-width: 1120px }
.container--sm { max-width: 1080px }
.container--xs { max-width: 960px }

/* cabeçalho centralizado de seção */
.section-head {
  text-align: center;
  margin: 0 auto 54px;
  max-width: 780px;
}
.section-head--narrow { max-width: 680px }
.section-head--tight  { max-width: 700px }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px }

/* halo desfocado de fundo, decorativo */
.glow-blob {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  filter: blur(42px);
  pointer-events: none;
}

/* ---------- tipografia ---------- */
.display {
  font-family: var(--display);
  font-variation-settings: 'SOFT' 100;
  font-weight: 700;
}

.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--brand);
  margin: 0 0 16px;
}

.section-title {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0;
}
.section-title--loose { line-height: 1.12; letter-spacing: -.01em }

.lead {
  font-size: 17px;
  line-height: 1.68;
  color: var(--ink-mute);
  margin: 20px 0 0;
}
.lead--tight { line-height: 1.6; margin: 0 }
.lead--flush { margin: 0 }

/* ---------- botões e pílulas ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-strong);
  padding: 16px 30px;
  border-radius: 999px;
  transition: transform .2s, background .2s;
}
.btn--primary {
  background: var(--grad);
  box-shadow: 0 16px 40px -12px rgba(255, 46, 126, .75);
}
.btn--primary:hover { transform: translateY(-2px) }

.btn--ghost {
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  color: #e8ddd7;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: var(--surface);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .09) }

/* botão que ocupa a largura do card de plano */
.btn-block {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-strong);
  padding: 13px;
  border-radius: 12px;
  transition: transform .2s, background .2s;
}
.btn-block--solid {
  background: var(--grad);
  box-shadow: 0 12px 30px -10px rgba(255, 46, 126, .7);
}
.btn-block--solid:hover { transform: translateY(-1px) }
.btn-block--outline { border: 1px solid rgba(255, 255, 255, .2) }
.btn-block--outline:hover { background: rgba(255, 255, 255, .07) }

/* link de texto com seta que se afasta no hover */
.link-arrow {
  font-size: 15px;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap .2s;
}
.link-arrow:hover { gap: 11px }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, .11);
  padding: 8px 14px;
  border-radius: 999px;
}

.pill-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ok);
  background: rgba(89, 240, 160, .12);
  border: 1px solid rgba(89, 240, 160, .25);
  padding: 7px 12px;
  border-radius: 999px;
}
.dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
}

/* ---------- card genérico ---------- */
.card {
  padding: 34px 28px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--stroke);
}
.card--sm { padding: 26px; border-radius: 18px }

.card-title {
  font-size: 21px;
  color: var(--ink-strong);
  margin: 0 0 10px;
}
.card-title--sm { font-size: 17px; margin-bottom: 6px }
.card-title--md { font-size: 20px; margin-bottom: 6px }

.card-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin: 0;
}
.card-text--sm { font-size: 14.5px }
.card-text--xs { font-size: 14px; line-height: 1.55 }

/* ---------- prosa de página legal (política de privacidade) ---------- */
.policy > * + * { margin-top: 18px }
.policy h2 { margin-top: 40px }
.policy ul { list-style: disc; padding-left: 22px }
.policy ul li + li { margin-top: 8px }
.policy a { text-decoration: underline; text-underline-offset: 2px }

/* ícone quadrado arredondado no topo do card */
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* ---------- mockup de celular ---------- */
.phone {
  position: relative;
  width: 300px;
  height: 610px;
  border-radius: 46px;
  background: linear-gradient(160deg, #231b26, var(--bg-panel));
  padding: 12px;
  box-shadow: 0 50px 100px -34px rgba(255, 46, 126, .5), 0 0 0 1px var(--stroke-soft);
}
.phone--hero {
  box-shadow: 0 50px 100px -30px rgba(255, 46, 126, .55), 0 0 0 1px var(--stroke-soft), inset 0 0 0 2px rgba(255, 255, 255, .04);
}
.phone--sm {
  width: 290px;
  height: 590px;
  border-radius: 44px;
  padding: 11px;
  box-shadow: 0 46px 90px -34px rgba(255, 46, 126, .5), 0 0 0 1px var(--stroke-soft);
}

.phone__notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 118px;
  height: 26px;
  background: var(--bg);
  border-radius: 16px;
  z-index: 9;
}
.phone--sm .phone__notch { top: 19px; width: 110px; height: 24px; border-radius: 15px }

.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: #faf5ef;
}
.phone--sm .phone__screen { border-radius: 34px }

/* barra superior escura dentro da tela */
.phone__bar {
  padding: 40px 18px 12px;
  background: linear-gradient(135deg, #1a1420, #241726);
  color: var(--ink-strong);
}
.phone__place { font-size: 20px; margin-top: 2px }
.phone__kicker {
  font-size: 10px;
  font-weight: 600;
  color: var(--peach);
  letter-spacing: .06em;
}
.phone__live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  color: var(--ok);
  background: rgba(89, 240, 160, .14);
  padding: 5px 9px;
  border-radius: 999px;
}
.phone__live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ok);
}

/* linha de pessoa dentro da tela clara */
.person {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #efe6dd;
  border-radius: 16px;
  padding: 12px;
}
.person__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid #f0d9cf;
}
.person__avatar img { width: 100%; height: 100%; object-fit: cover }
.person__name { font-size: 14px; font-weight: 700; color: #181015 }
.person__meta { font-size: 11px; color: var(--ink-dim) }
.person__action {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-strong);
  background: var(--grad);
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.person__action--outline {
  color: var(--hot);
  background: none;
  border: 1.5px solid var(--hot);
  padding: 7px 12px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad-x);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.nav__logo { display: flex; align-items: center; gap: 10px }
.nav__logo img { height: 42px; width: auto }
.nav__right { display: flex; align-items: center; gap: 30px }
.nav__links {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mute);
}
.nav__links a { transition: color .2s }
.nav__links a:hover { color: var(--ink-strong) }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-strong);
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--grad);
  box-shadow: 0 8px 24px -8px rgba(255, 46, 126, .7);
  transition: transform .2s;
}
.nav__cta:hover { transform: translateY(-1px) }

/* páginas sem hero atrás do nav (ex.: privacy.html) — sem app.js pra
   escurecer o nav no scroll, então já nasce com o fundo do estado "rolado" */
.nav--solid {
  background: rgba(13, 10, 12, .85);
  border-bottom-color: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px var(--pad-x) 70px;
}
/* o JS move este bloco no scroll (parallax) */
.hero__bg {
  position: absolute;
  inset: -8% 0 0 0;
  background-image: url("assets/hero.webp");
  background-image: image-set(url("assets/hero.avif") type("image/avif"),
                              url("assets/hero.webp") type("image/webp"));
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  will-change: transform;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 10, 12, .72) 0%, rgba(13, 10, 12, .66) 40%, rgba(13, 10, 12, .92) 100%);
}
.hero__tint {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 78% 30%, rgba(255, 46, 126, .28) 0%, transparent 55%);
}
.hero__glow {
  position: absolute;
  top: 8%;
  right: 6%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 61, .5), transparent 68%);
  filter: blur(30px);
  animation: glowPulse 7s ease-in-out infinite;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero__title {
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0 0 22px;
  text-wrap: balance;
  animation: heroIn .7s ease .08s both;
}
.hero__lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 0 30px;
  animation: heroIn .7s ease .16s both;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  animation: heroIn .7s ease .24s both;
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  animation: heroIn .7s ease .32s both;
}
.hero__phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  animation: heroIn .8s ease .2s both;
}

/* etiquetas flutuantes ao lado do celular */
.float-card {
  position: absolute;
  z-index: 8;
  padding: 11px 15px;
  border-radius: 16px;
}
.float-card--match {
  top: 6%;
  left: -4%;
  background: rgba(255, 255, 255, .96);
  color: var(--bg-panel);
  box-shadow: 0 20px 44px -16px rgba(0, 0, 0, .7);
  animation: floatA 5.5s ease-in-out infinite;
}
.float-card--money {
  bottom: 9%;
  right: -6%;
  padding: 11px 16px;
  background: var(--grad);
  color: var(--ink-strong);
  box-shadow: 0 20px 44px -16px rgba(255, 46, 126, .7);
  animation: floatB 6.5s ease-in-out infinite;
}
.float-card__label { font-size: 11px; font-weight: 700; color: var(--hot); letter-spacing: .04em }
.float-card__value { font-size: 13px; font-weight: 600 }
.float-card--money .float-card__label { color: inherit; font-weight: 600; opacity: .85 }
.float-card--money .float-card__value { font-size: 17px; font-weight: 800 }

/* conteúdo da tela do celular do hero */
.hero-app { width: 100%; height: 100%; display: flex; flex-direction: column }
.hero-app__body { flex: 1; padding: 16px; overflow: hidden }
.hero-app__section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-faint);
  letter-spacing: .05em;
  margin-bottom: 12px;
}
.hero-app__match {
  border-radius: 18px;
  padding: 15px;
  background: var(--grad);
  color: var(--ink-strong);
  box-shadow: 0 14px 30px -12px rgba(255, 46, 126, .6);
}
.hero-app__match-kicker {
  font-size: 11px;
  font-weight: 600;
  opacity: .9;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.hero-app__match-title { font-size: 15px; font-weight: 700; line-height: 1.3; margin-bottom: 12px }
.hero-app__match-actions { display: flex; gap: 8px }
.hero-app__btn {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  color: var(--hot);
}
.hero-app__btn--ghost { background: rgba(255, 255, 255, .2); color: var(--ink-strong) }
.hero-app__tabs {
  display: flex;
  justify-content: space-around;
  padding: 12px 0 16px;
  border-top: 1px solid #efe6dd;
  background: #fff;
}
.hero-app__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  font-weight: 600;
  color: #b7aaa3;
}
.hero-app__tab--on { font-weight: 700; color: var(--hot) }

.scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--ink-mute);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  z-index: 5;
}
.scroll-hint svg { animation: floatA 2.2s ease-in-out infinite }

/* ============================================================
   BENEFÍCIOS (o que muda quando as mesas conversam)
   ============================================================ */
.benefit { background: linear-gradient(180deg, rgba(255, 78, 106, .08), rgba(255, 255, 255, .02)) }
.benefit--warm { background: linear-gradient(180deg, rgba(255, 138, 61, .08), rgba(255, 255, 255, .02)) }
.benefit--hot  { background: linear-gradient(180deg, rgba(255, 46, 126, .08), rgba(255, 255, 255, .02)) }
.benefit .card-icon,
.benefit--warm .card-icon,
.benefit--hot .card-icon { background: none; border: none; width: auto; height: auto }
.benefit .card-icon svg,
.benefit--warm .card-icon svg,
.benefit--hot .card-icon svg { width: 32px; height: 32px }

.subhead {
  text-align: center;
  margin: 40px 0 24px;
}
/* a margem fica no h3, não no wrapper: ela colapsa com a do .subhead e o
   espaço final vira max(24px, 1em) — que acompanha o clamp do título,
   exatamente como era quando o h3 usava a margem do user-agent. */
.subhead h3 {
  margin: 1em 0;
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.15;
  color: var(--ink-strong);
  letter-spacing: -.01em;
}

/* ============================================================
   REPUTAÇÃO (uma boa noite se conta sozinha)
   ============================================================ */
.reputation__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.reputation__grid--text-only { grid-template-columns: 1fr; max-width: 720px; text-align: center }
.reputation__grid--text-only [data-reveal] { margin: 0 auto }
.reputation__quotes { display: flex; flex-direction: column; gap: 14px }
.quote {
  padding: 24px 26px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .08);
}
.quote p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin: 0 0 10px;
  font-style: italic;
}
.quote cite { font-size: 12px; color: var(--ink-dim); font-style: normal }

/* ============================================================
   SOLUÇÃO — painel analítico
   ============================================================ */
.dashboard {
  border-radius: 24px;
  background: linear-gradient(160deg, #17111a, #0f0b10);
  border: 1px solid var(--stroke);
  padding: clamp(22px, 3.5vw, 38px);
  box-shadow: 0 40px 90px -44px rgba(255, 46, 126, .4);
}
.dashboard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.dashboard__brand { display: flex; align-items: center; gap: 12px }
.dashboard__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard__title { font-size: 19px; color: var(--ink-strong); line-height: 1.1 }
.dashboard__sub { font-size: 12px; color: var(--ink-faint); font-weight: 500 }
.dashboard__grid { display: grid; grid-template-columns: 1.1fr 1.1fr 1.3fr; gap: 16px }
.dashboard__note { font-size: 12px; color: var(--ink-ghost); font-style: italic; margin: 20px 0 0 }

.metric {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 22px;
}
.metric--accent {
  background: linear-gradient(135deg, rgba(255, 138, 61, .14), rgba(255, 46, 126, .14));
  border-color: rgba(255, 138, 61, .28);
}
.metric--stack { display: flex; flex-direction: column }
.metric__label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-dim);
  letter-spacing: .03em;
  margin-bottom: 10px;
}
.metric--accent .metric__label { color: var(--ink-mute) }
.metric__row { display: flex; align-items: baseline; gap: 8px }
.metric__value {
  font-size: clamp(40px, 5.5vw, 58px);
  line-height: .9;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.metric__value--plain { font-size: clamp(30px, 4vw, 40px); line-height: 1; color: var(--ink-strong) }
.metric__value--ok { font-size: clamp(34px, 4.5vw, 46px); line-height: 1; color: var(--ok) }
.metric__unit { font-size: 13px; color: var(--ink-mute); font-weight: 600 }
.metric__unit--sm { font-size: 16px }
.metric__delta {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ok);
}
.metric__caption {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: .03em;
  margin-bottom: 8px;
}

/* gráfico de barras simples */
.bars { display: flex; align-items: flex-end; gap: 5px; height: 44px; margin-top: 16px }
.bars--sm { gap: 4px; height: 38px; margin-top: 0 }
.bars span { flex: 1; border-radius: 4px; background: rgba(255, 255, 255, .12) }
.bars--sm span { border-radius: 3px }
.bars .is-mid  { background: rgba(255, 138, 61, .5) }
.bars .is-peak { background: var(--grad-v) }
.bars-axis {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  color: var(--ink-ghost);
  font-weight: 600;
  margin-top: 7px;
}

/* selos de confiança (LGPD, autenticação) */
.trust {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 26px;
  border-radius: 18px;
  background: rgba(89, 240, 160, .06);
  border: 1px solid rgba(89, 240, 160, .22);
}
.trust__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust__icon svg { width: 30px; height: 30px }

/* ============================================================
   COMO FUNCIONA — jornada em 3 passos
   ============================================================ */
.journey__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 44px;
  align-items: center;
  margin-top: 50px;
}
.journey__steps { display: flex; flex-direction: column; gap: 6px }

.j-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px 14px;
  border-radius: 16px;
  cursor: pointer;
  transition: background .3s;
}
.j-step:hover { background: rgba(255, 255, 255, .03) }
.j-dot {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: var(--surface-2);
  color: var(--ink-faint);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: all .3s;
}
.j-label {
  display: block;
  padding-top: 3px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-faint);
  transition: color .3s;
}
.j-step.is-active .j-dot { background: var(--grad); color: var(--ink-strong); border-color: transparent }
.j-step.is-active .j-label { color: var(--ink-strong) }

/* barra que acompanha o autoplay de 6s */
.journey__progress {
  height: 2px;
  background: rgba(255, 255, 255, .1);
  border-radius: 1px;
  margin: 4px 14px 16px;
  overflow: hidden;
}
.journey__progress > div {
  height: 100%;
  background: linear-gradient(90deg, var(--warm), var(--hot));
  animation: jProg 6s linear infinite;
  border-radius: 1px;
}

.journey__caption {
  margin-top: 22px;
  padding: 22px 24px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--stroke);
}
.journey__caption h3 {
  font-size: 20px;
  color: var(--ink-strong);
  margin: 0 0 8px;
  line-height: 1.25;
}

/* painéis que trocam conforme o passo ativo */
.j-panel { display: none; position: absolute; inset: 0 }
.j-panel.is-active { display: block }
.j-panel > div { animation: stageIn .5s ease both }

.stage {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #faf5ef;
}
.stage--center { align-items: center; justify-content: center; padding: 34px 26px; text-align: center }

.qr-frame {
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 20px 44px -18px rgba(0, 0, 0, .3);
}
/* as 49 células são geradas pelo app.js */
.qr-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 2px;
}
.qr-grid div { border-radius: 2px }

.stage__kicker {
  font-size: 11px;
  font-weight: 700;
  color: var(--hot);
  letter-spacing: .05em;
  margin-bottom: 20px;
}
.stage__ok {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #181015;
  background: rgba(89, 200, 120, .14);
  border: 1px solid rgba(89, 200, 120, .3);
  padding: 8px 14px;
  border-radius: 999px;
}
.stage__hint { margin-top: 12px; font-size: 12px; color: var(--ink-dim) }
.stage__bar { padding: 38px 18px 14px; background: linear-gradient(135deg, #1a1420, #241726); color: var(--ink-strong) }
.stage__title { font-size: 19px; margin-top: 2px }
.stage__list { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 9px }
.stage__list .person { gap: 11px; border-radius: 15px; padding: 11px }
.stage__list .person__avatar { width: 40px; height: 40px }
.stage__list .person__action { font-size: 11px; padding: 7px 11px }
.stage__list .person__action--outline { padding: 6px 11px }
.stage__list .person__name { font-size: 13px }
.avatar-initial {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3db8ff, #7b61ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-strong);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* tela de match */
.match {
  width: 100%;
  height: 100%;
  background: linear-gradient(165deg, var(--warm), var(--hot));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink-strong);
  padding: 28px;
  text-align: center;
}
.match__title { font-size: 40px; animation: matchPop .7s ease both; margin-bottom: 26px }
.match__pair {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.match__avatar { position: relative; width: 72px; height: 72px }
.match__avatar--l { animation: avL .6s ease both }
.match__avatar--r { animation: avR .6s ease both }
.match__avatar > div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, .92);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .28);
}
.match__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center }
.match__ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .7);
  animation: ring 1.8s ease-out infinite;
}
.match__ring--delay { animation-delay: .4s }
.match__names { font-size: 16px; font-weight: 700 }
.match__cta { font-size: 13px; opacity: .9; margin-top: 4px }

/* ============================================================
   FERRAMENTA — dois celulares lado a lado
   ============================================================ */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center }
.showcase__item { display: flex; flex-direction: column; align-items: center; gap: 26px }
.showcase__caption { text-align: center; max-width: 340px }

/* tela escura do painel do dono */
.owner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: var(--bg-panel);
  display: flex;
  flex-direction: column;
}
.owner__body { flex: 1; padding: 16px; overflow: hidden; color: var(--ink-strong) }
.owner__card {
  background: var(--surface-2);
  border: 1px solid var(--stroke);
  border-radius: 15px;
  padding: 13px;
  margin-bottom: 11px;
}
.owner__card--accent {
  background: linear-gradient(135deg, rgba(255, 138, 61, .16), rgba(255, 46, 126, .16));
  border-color: rgba(255, 138, 61, .3);
  border-radius: 16px;
  padding: 15px;
}
.owner__card:last-child { margin-bottom: 0 }
.owner__label { font-size: 10.5px; color: var(--ink-dim); font-weight: 600; letter-spacing: .03em }
.owner__card--accent .owner__label { color: var(--ink-mute) }
.owner__row { display: flex; align-items: baseline; gap: 7px; margin-top: 2px }
.owner__value {
  font-size: 34px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.owner__value--ok { font-size: 26px; color: var(--ok); background: none }
.owner__unit { font-size: 12px; color: var(--ink-mute); font-weight: 600 }
.owner__age { font-size: 24px; margin-top: 2px }
.owner .bars { height: 34px; gap: 4px; margin-top: 10px }
.owner .bars span { border-radius: 3px; background: rgba(255, 255, 255, .14) }
.owner .bars .is-mid { background: rgba(255, 138, 61, .55) }
.owner .bars .is-peak { background: var(--grad-v) }

/* tela de match em tamanho grande */
.match-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(165deg, var(--warm) 0%, var(--brand) 52%, var(--hot) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink-strong);
  padding: 32px 28px;
  text-align: center;
}
.match-screen__bubble { position: absolute; border-radius: 50% }
.match-screen__brand { font-size: 12px; font-weight: 700; letter-spacing: .14em; opacity: .9; margin-bottom: 8px }
.match-screen__title { font-size: 52px; margin-bottom: 34px; animation: matchPop .8s ease both }
.match-screen .match__pair { gap: 22px; margin-bottom: 28px }
.match-screen .match__avatar { width: 88px; height: 88px }
.match-screen .match__avatar--l { animation: avL .7s ease both }
.match-screen .match__avatar--r { animation: avR .7s ease both }
.match-screen .match__avatar > div { border-width: 3px; border-color: rgba(255, 255, 255, .95); box-shadow: 0 12px 26px rgba(0, 0, 0, .3) }
.match-screen .match__ring { inset: -8px; border-color: rgba(255, 255, 255, .75); animation-duration: 2s }
.match-screen .match__ring--delay { animation-delay: .5s }
.match-screen__names { font-size: 18px; font-weight: 700; margin-bottom: 6px }
.match-screen__sub { font-size: 13.5px; opacity: .92; margin-bottom: 26px }
.match-screen__actions { width: 100%; display: flex; flex-direction: column; gap: 10px }
.match-screen__btn {
  font-size: 14px;
  font-weight: 700;
  color: var(--hot);
  background: #fff;
  padding: 14px;
  border-radius: 14px;
}
.match-screen__btn--ghost {
  color: var(--ink-strong);
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .4);
  backdrop-filter: blur(4px);
}

/* ============================================================
   RESULTADOS — depoimentos
   ============================================================ */
.testimonials { display: grid; grid-template-columns: 1fr 1fr; gap: 22px }
.testimonial {
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--stroke);
}
.testimonial img { width: 100%; height: 230px; object-fit: cover }
.testimonial__body { padding: 26px }
.testimonial__quote {
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink-strong);
  font-weight: 500;
  margin: 0 0 16px;
}
.testimonial__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.testimonial__source { font-size: 13px; color: var(--ink-dim) }
.tag {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ok);
  background: rgba(89, 240, 160, .12);
  border: 1px solid rgba(89, 240, 160, .25);
  padding: 6px 12px;
  border-radius: 999px;
}
.tag--warm {
  color: var(--peach);
  background: rgba(255, 138, 61, .12);
  border-color: rgba(255, 138, 61, .25);
}

/* ============================================================
   PLANOS + CALCULADORA
   ============================================================ */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch }
.plan {
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--stroke);
}
.plan--featured {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 78, 106, .14), rgba(255, 255, 255, .03));
  border: 1.5px solid var(--brand);
  box-shadow: 0 30px 70px -30px rgba(255, 46, 126, .5);
}
.plan__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink-strong);
  background: var(--grad);
  padding: 6px 15px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan__name { font-size: 14px; font-weight: 700; color: var(--ink-mute) }
.plan--featured .plan__name { color: var(--peach) }
.plan__price { margin: 14px 0 4px; font-size: 40px }
.plan__price--sm { font-size: 28px }
.plan__note { font-size: 12.5px; color: var(--ink-faint); margin-bottom: 20px }
.plan--featured .plan__note { color: var(--ink-mute) }
.plan__features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14px;
  color: var(--ink-soft);
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}
.plan--featured .plan__features { color: #f0e6df }
.plan__features li { display: flex; gap: 9px }
.plan__features svg { flex-shrink: 0; margin-top: 1px }

.roi {
  margin-top: 30px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 138, 61, .09), rgba(255, 46, 126, .09));
  border: 1px solid rgba(255, 138, 61, .22);
  padding: clamp(26px, 4vw, 44px);
}
.roi__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center }
.roi__title { font-size: 26px; line-height: 1.15; margin: 0 0 24px; text-wrap: balance }
.roi__field { margin-bottom: 22px }
.roi__field:last-of-type { margin-bottom: 0 }
.roi__field-head {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink-mute);
}
.roi__field-value { color: var(--ink-strong) }
.roi__results { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px }
.roi__result {
  text-align: center;
  background: rgba(13, 10, 12, .5);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 24px 16px;
}
.roi__result--highlight {
  background: rgba(255, 78, 106, .08);
  border-color: rgba(255, 78, 106, .28);
}
.roi__result-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.roi__result--highlight .roi__result-label { color: #ff8a6a }
/* opacity: o app.js ajusta a fonte para caber e só então revela, evitando um pulo */
.roi__amount {
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
  transition: opacity .2s;
}
.roi__amount--brand {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.roi__extra { font-size: 12px; color: var(--ink-soft); margin-top: 8px }
.roi__mult { font-size: 13px; color: var(--ink-mute); text-align: center; margin-bottom: 18px }
.roi__mult strong { color: var(--ink-strong) }
.roi__cta { display: block; padding: 13px 26px; margin-top: 0 }
.roi__disclaimer {
  font-size: 12px;
  color: var(--ink-ghost);
  font-style: italic;
  margin: 22px 0 0;
  text-align: center;
}

.guarantee {
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-dim);
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ============================================================
   OBJEÇÕES
   ============================================================ */
/* ---------- FAQ (accordion nativo) ---------- */
.faq { display: flex; flex-direction: column; gap: 12px }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 0 26px;
}
.faq-item__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-strong);
  cursor: pointer;
}
.faq-item__summary::-webkit-details-marker { display: none }
.faq-item__icon {
  flex: none;
  width: 22px;
  height: 22px;
  position: relative;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--ink-strong);
  transform: translate(-50%, -50%);
  transition: transform .2s;
}
.faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg) }
.faq-item[open] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(0deg) }
.faq-item__answer { padding: 0 0 22px }

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--stroke-soft);
  padding: 56px var(--pad-x) 34px;
}
.footer__grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
}
.footer__logo { height: 64px; width: auto; margin-bottom: 16px }
.footer__about {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-faint);
  max-width: 260px;
  margin: 0;
}
.footer__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-faint);
}
.footer__links a { transition: color .2s }
.footer__links a:hover { color: var(--ink-strong) }
.footer__bottom {
  max-width: 1080px;
  margin: 38px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--stroke-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--ink-ghost);
}
.footer__bottom a { transition: color .2s }
.footer__bottom a:hover { color: var(--ink-strong) }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px }
  .journey__grid { grid-template-columns: 1fr }
  .plans,
  .grid-3,
  .dashboard__grid,
  .footer__grid { grid-template-columns: 1fr 1fr }
}

@media (max-width: 680px) {
  .grid-2,
  .grid-3,
  .plans,
  .dashboard__grid,
  .showcase,
  .testimonials,
  .footer__grid { grid-template-columns: 1fr }
  .reputation__grid { grid-template-columns: 1fr; gap: 40px }
  /* sem mexer no gap: empilhado, os 44px separam sliders, resultados e CTA */
  .roi__grid { grid-template-columns: 1fr }
  .roi__results { grid-template-columns: 1fr; gap: 10px }
  .nav__links { display: none }
  .nav__cta { padding: 9px 16px }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(24px, 7.5vw, 34px); line-height: 1.15 }
  .hero__lead { font-size: 15px }
  .journey__grid { gap: 20px }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto }
}
