/* ============================================================
   GetUpdate — Landing de vendas
   Mesma identidade do app (cockpit escuro/quente). Assinatura:
   o medidor de intenção (score 0–100 como medidor de calor).
   ============================================================ */

:root {
  --ink:        #15131F;
  --ink-2:      #1A1726;
  --surface:    #211C30;
  --surface-2:  #2A2440;
  --line:       #352D49;
  --line-soft:  #2C2640;

  --text:   #F2EEFB;
  --muted:  #A79FC0;
  --faint:  #6F6788;

  --violet:     #7C5CFF;
  --violet-ink: #B7A6FF;
  --violet-dim: #2E2552;

  --cool: #36D6B5;
  --warm: #F4B740;
  --hot:  #FF5C7A;

  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 24px 70px -28px rgba(0,0,0,.8);
  --maxw:      1120px;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
}

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

body {
  margin: 0;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(124,92,255,.18), transparent 58%),
    radial-gradient(900px 600px at -5% 12%, rgba(255,92,122,.10), transparent 55%),
    var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; line-height: 1.05; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--violet-ink);
}
.muted { color: var(--muted); }
.section { padding: 92px 0; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); margin: 14px 0 14px; }
.section-head p { color: var(--muted); font-size: 18px; }

/* botões ----------------------------------------------------- */
.btn {
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  border: 1px solid transparent; border-radius: var(--radius-sm);
  padding: 14px 24px; cursor: pointer; display: inline-flex; align-items: center; gap: 9px;
  transition: transform .12s ease, background .2s ease, border-color .2s ease, box-shadow .2s;
  min-height: 50px;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--violet-ink); outline-offset: 3px; }
.btn-primary { background: var(--violet); color: #fff; box-shadow: 0 14px 36px -14px rgba(124,92,255,.9); }
.btn-primary:hover { background: #8d70ff; box-shadow: 0 18px 44px -14px rgba(124,92,255,1); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--violet); color: var(--violet-ink); }
.btn-lg { font-size: 17px; padding: 16px 30px; min-height: 56px; }

/* chips / selos ---------------------------------------------- */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; border: 1px solid currentColor;
}
.chip--hot { color: var(--hot); }
.chip--cool { color: var(--cool); }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 0 currentColor; animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,92,122,.5);} 70%{ box-shadow:0 0 0 8px rgba(255,92,122,0);} 100%{box-shadow:0 0 0 0 rgba(255,92,122,0);} }

/* header ----------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(21,19,31,.72);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.brand .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--hot); box-shadow: 0 0 0 4px rgba(255,92,122,.16), 0 0 20px 2px var(--hot); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); cursor: pointer; padding: 8px; }

/* hero ------------------------------------------------------- */
.hero { padding: 72px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(38px, 5.4vw, 66px); margin: 20px 0; }
.hero h1 em { font-style: normal; color: var(--hot); }
.hero-sub { font-size: 19px; color: var(--muted); max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 18px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 13.5px; color: var(--faint); }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.tick { color: var(--cool); font-weight: 700; }

/* painel do hero: medidor + radar mock ----------------------- */
.hero-panel { position: relative; }
.gauge-card {
  background: linear-gradient(180deg, var(--surface), var(--ink-2));
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px; position: relative; overflow: hidden;
}
.gauge-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 220px at 70% 0%, rgba(124,92,255,.18), transparent 60%);
  pointer-events: none;
}
.gauge-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.gauge-top .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.gauge { display: grid; place-items: center; position: relative; }
.gauge svg { overflow: visible; width: 230px; }
.gauge .readout { position: absolute; bottom: 6px; display: flex; flex-direction: column; align-items: center; }
.gauge .value { font-family: var(--font-mono); font-size: 54px; font-weight: 700; line-height: 1; letter-spacing: -.03em; }
.gauge .arc { transition: stroke-dashoffset 1.6s cubic-bezier(.2,.7,.2,1); }

.lead-rows { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.lead-rowx { display: flex; align-items: center; gap: 12px; padding: 10px 12px; background: var(--ink-2); border: 1px solid var(--line-soft); border-radius: 10px; }
.lead-rowx .nm { font-weight: 600; font-size: 14px; flex: 1; }
.lead-rowx .sc { font-family: var(--font-mono); font-weight: 700; font-size: 14px; }
.sc.h { color: var(--hot); } .sc.m { color: var(--warm); } .sc.l { color: var(--cool); }
.mini-bar { width: 56px; height: 6px; border-radius: 999px; background: var(--line); overflow: hidden; }
.mini-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--cool), var(--warm), var(--hot)); }

/* faixa de prova social -------------------------------------- */
.proof-bar { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--ink-2); }
.proof-bar .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px; padding: 22px 24px; }
.proof-bar .seg { font-family: var(--font-mono); font-size: 13px; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }
.proof-bar .sep { color: var(--faint); }

/* problema (agitação) ---------------------------------------- */
.pains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pain { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.pain .x { font-family: var(--font-mono); color: var(--hot); font-size: 22px; line-height: 1; }
.pain h3 { font-size: 19px; margin: 14px 0 8px; }
.pain p { color: var(--muted); font-size: 15px; }
.pain-kicker { text-align: center; margin-top: 36px; font-size: 19px; }
.pain-kicker strong { color: var(--text); }

/* como funciona (pipeline numerada — sequência real) --------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step { position: relative; padding: 26px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, var(--surface), var(--ink-2)); }
.step .num { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--violet-ink); letter-spacing: .1em; }
.step h3 { font-size: 19px; margin: 12px 0 8px; }
.step p { color: var(--muted); font-size: 14.5px; }
.step .arrow { position: absolute; right: -11px; top: 50%; transform: translateY(-50%); color: var(--line); font-size: 20px; z-index: 2; }
.step:last-child .arrow { display: none; }

/* benefícios ------------------------------------------------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.benefit { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.benefit .ic { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: var(--violet-dim); color: var(--violet-ink); font-size: 20px; border: 1px solid rgba(124,92,255,.4); }
.benefit h3 { font-size: 19px; margin: 16px 0 8px; }
.benefit p { color: var(--muted); font-size: 15px; }

/* ciclo pós-venda -------------------------------------------- */
.cycle { list-style: none; counter-reset: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.cyc { position: relative; padding: 22px 18px; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--ink-2)); }
.cyc-n { display: inline-block; font-size: 13px; font-weight: 700; color: var(--violet-ink);
  border: 1px solid rgba(124,92,255,.4); border-radius: 999px; padding: 2px 9px; margin-bottom: 12px; }
.cyc h3 { font-size: 17px; margin-bottom: 7px; }
.cyc p { color: var(--muted); font-size: 14px; }
.cycle-loop { text-align: center; margin-top: 28px; font-size: 14px; color: var(--muted);
  letter-spacing: .02em; }
.cycle-loop .loopback { color: var(--hot); }

/* assinatura: score em destaque ------------------------------ */
.signature { background: var(--ink-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.sig-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.sig-grid h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.sig-grid p { color: var(--muted); font-size: 17px; margin-bottom: 14px; }
.sig-list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 12px; }
.sig-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.sig-list .tick { font-size: 18px; }
.heat-legend { margin-top: 14px; }
.heat-legend .bar { height: 12px; border-radius: 999px; background: linear-gradient(90deg, var(--cool), var(--warm) 55%, var(--hot)); }
.heat-legend .lbls { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; margin-top: 8px; }

/* depoimentos ------------------------------------------------ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); display: flex; flex-direction: column; gap: 16px; }
.stars { color: var(--warm); letter-spacing: 2px; }
.quote blockquote { margin: 0; font-size: 16px; line-height: 1.6; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote .av { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(140deg, var(--violet), var(--hot)); display: grid; place-items: center; font-family: var(--font-mono); font-weight: 700; font-size: 13px; color: #fff; }
.quote .who b { font-size: 14.5px; }
.quote .who span { font-size: 12.5px; color: var(--faint); }

/* planos ----------------------------------------------------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.plan { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); display: flex; flex-direction: column; gap: 8px; position: relative; }
.plan.feat { border-color: var(--violet); box-shadow: 0 0 0 1px var(--violet), var(--shadow); background: linear-gradient(180deg, var(--violet-dim), var(--surface)); }
.plan .tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--violet); color: #fff; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; }
.plan .pname { font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.plan .price { font-family: var(--font-display); font-size: 42px; font-weight: 700; letter-spacing: -.03em; }
.plan .price small { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.plan ul { list-style: none; padding: 0; margin: 14px 0 20px; display: flex; flex-direction: column; gap: 10px; }
.plan li { display: flex; gap: 10px; font-size: 14.5px; color: var(--muted); }
.plan li .tick { color: var(--cool); }
.plan .btn { width: 100%; justify-content: center; margin-top: auto; }

/* FAQ -------------------------------------------------------- */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; }
.faq summary { cursor: pointer; padding: 18px 20px; font-weight: 600; font-size: 16.5px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--violet-ink); font-family: var(--font-mono); font-size: 22px; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .ans { padding: 0 20px 18px; color: var(--muted); font-size: 15.5px; }

/* CTA final -------------------------------------------------- */
.final { text-align: center; }
.final-card {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 24px;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(124,92,255,.22), transparent 60%),
    linear-gradient(180deg, var(--surface), var(--ink-2));
  padding: 64px 32px; box-shadow: var(--shadow);
}
.final-card h2 { font-size: clamp(30px, 4.4vw, 50px); max-width: 18ch; margin: 16px auto; }
.final-card p { color: var(--muted); font-size: 18px; max-width: 50ch; margin: 0 auto 28px; }
.final .hero-trust { justify-content: center; margin-top: 18px; }

/* footer ----------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line-soft); padding: 40px 0; margin-top: 40px; }
.foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; color: var(--faint); font-size: 14px; }
.foot a { color: var(--muted); }
.foot a:hover { color: var(--text); }

/* reveal on scroll (só esconde quando há JS; sem JS o conteúdo fica visível) */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } .gauge .arc { transition: none; } }

/* responsivo ------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid, .sig-grid { grid-template-columns: 1fr; }
  .hero-panel { order: -1; }
  .pains, .steps, .benefits, .quotes, .plans { grid-template-columns: 1fr; }
  .cycle { grid-template-columns: 1fr; }
  .cycle-loop { font-size: 12px; }
  .step .arrow { display: none; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open + .nav-links,
  .nav-links.open { display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--ink-2); border-bottom: 1px solid var(--line); padding: 8px 24px 18px; }
  .nav-links.open a { padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
}
@media (min-width: 901px) and (max-width: 1040px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cycle { grid-template-columns: repeat(3, 1fr); }
}
