/* ============================================================
   KEEVO — Landing page
   Direção: navy fintech premium + tipografia editorial gigante
   Acento: verde-menta elétrico (dinheiro / WhatsApp / crescimento)
   ============================================================ */

:root {
  /* Navy */
  --navy-950: #050f1c;
  --navy-900: #081627;
  --navy-850: #0a1c30;
  --navy-800: #0d2138;
  --navy-700: #123050;
  --navy-600: #1a3c62;
  --line: rgba(148, 176, 214, 0.14);
  --line-strong: rgba(148, 176, 214, 0.28);

  /* Texto */
  --cream: #f3efe6;
  --white: #ffffff;
  --muted: #8ea3bd;
  --muted-dim: #5f758f;

  /* Acento */
  --acc: #35e07f;
  --acc-bright: #4dff97;
  --acc-deep: #0f8a4a;
  --acc-glow: rgba(53, 224, 127, 0.35);

  /* Tipografia */
  --font-display: 'Clash Display', 'Satoshi', system-ui, sans-serif;
  --font-body: 'Satoshi', system-ui, -apple-system, sans-serif;

  /* Medidas */
  --container: 1200px;
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background: var(--navy-900);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  overflow-x: hidden;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Fundo com brilho radial sutil */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 600px at 82% -8%, rgba(53, 224, 127, 0.10), transparent 60%),
    radial-gradient(800px 700px at -6% 8%, rgba(26, 60, 98, 0.55), transparent 55%);
  z-index: 0;
  pointer-events: none;
  transform: translateZ(0);
  will-change: transform;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- Grão / textura (estático, sem blend: zero custo no scroll) ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  transform: translateZ(0);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(8, 22, 39, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 25px;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.logo__img {
  width: 40px; height: 40px;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 6px 18px -6px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}
.nav__links {
  display: flex;
  gap: 38px;
  margin-left: auto;
  margin-right: 34px;
}
.nav__links a {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--muted);
  position: relative;
  transition: color .25s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--acc);
  transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  --pad-y: 13px; --pad-x: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  position: relative;
  transition: transform .18s var(--ease), box-shadow .3s var(--ease), background .25s;
  will-change: transform;
}
.btn svg { transition: transform .3s var(--ease); }
.btn--solid {
  background: var(--acc);
  color: var(--navy-950);
  box-shadow: 0 10px 30px -8px var(--acc-glow);
}
.btn--solid:hover { background: var(--acc-bright); box-shadow: 0 16px 40px -8px var(--acc-glow); }
.btn--solid:hover svg { transform: translateX(4px); }
.btn--ghost {
  background: rgba(148,176,214,0.06);
  color: var(--cream);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { background: rgba(148,176,214,0.12); border-color: var(--acc); }
.btn--lg { --pad-y: 16px; --pad-x: 28px; font-size: 16.5px; }
.btn--xl { --pad-y: 20px; --pad-x: 40px; font-size: 18.5px; }
.btn--full { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 104px 0 56px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acc);
  padding: 7px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: rgba(53,224,127,0.06);
}
.eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 12px var(--acc);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.eyebrow--center { margin: 0 auto; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 4.4vw, 4.15rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 18px 0 18px;
}
.accent-text { color: var(--acc); }
.line-through-anim {
  position: relative;
  white-space: nowrap;
  color: var(--muted);
}
.line-through-anim::after {
  content: '';
  position: absolute;
  left: -2%; top: 54%;
  width: 0; height: 5px;
  background: var(--acc);
  border-radius: 4px;
  box-shadow: 0 0 16px var(--acc-glow);
  transition: width .7s var(--ease) .5s;
}
.hero.is-in .line-through-anim::after { width: 104%; }

.hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: var(--muted);
  max-width: 500px;
  line-height: 1.5;
}
.hero__actions {
  display: flex;
  gap: 14px;
  margin: 26px 0 14px;
  flex-wrap: wrap;
}
.hero__note {
  font-size: 14px;
  color: var(--muted-dim);
  font-weight: 600;
}

/* ---------- Phone mockup ---------- */
.hero__mockup {
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1600px;
}
.phone__glow {
  position: absolute;
  inset: 8% -10%;
  background: radial-gradient(closest-side, var(--acc-glow), transparent 72%);
  filter: blur(40px);
  opacity: 0.55;
  z-index: 0;
}
.phone {
  position: relative;
  z-index: 1;
  width: min(340px, 82vw);
  max-width: 100%;
  background: #0b141a;
  border-radius: 42px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 40px 90px -30px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.03) inset;
  transform: rotateY(-11deg) rotateX(4deg) rotateZ(0.5deg);
  transition: transform .6s var(--ease);
  animation: floatPhone 6s ease-in-out infinite;
}
.hero__mockup:hover .phone { transform: rotateY(0deg) rotateX(0deg); }
@keyframes floatPhone {
  0%,100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}
.phone__notch {
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 26px;
  background: #0b141a;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}
.phone__screen {
  border-radius: 32px;
  overflow: hidden;
  background: #0b141a;
  display: flex;
  flex-direction: column;
  height: 560px;
  position: relative;
}
/* Papel de parede WhatsApp */
.wa-body {
  background-color: #0d1418;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.015) 0 2px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.015) 0 2px, transparent 2px);
  background-size: 40px 40px;
}
.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 40px 14px 12px;
  background: #1f2c33;
  color: #e9edef;
}
.wa-back { font-size: 24px; color: #8696a0; line-height: 1; }
.wa-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--acc), var(--acc-deep));
  color: var(--navy-950);
  display: grid; place-items: center;
  font-weight: 700; font-size: 16px;
}
.wa-contact { display: flex; flex-direction: column; line-height: 1.25; margin-right: auto; }
.wa-contact strong { font-size: 15px; font-weight: 600; }
.wa-status { font-size: 12px; color: #8696a0; }
.wa-status em { font-style: normal; }
.wa-icons { color: #8696a0; }

.wa-body {
  flex: 1;
  padding: 14px 12px 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wa-daytag {
  align-self: center;
  background: #182229;
  color: #8696a0;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 8px;
  margin-bottom: 4px;
}
.wa-msg {
  max-width: 82%;
  padding: 7px 10px 8px;
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.42;
  color: #e9edef;
  position: relative;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  animation: msgIn .35s var(--ease) forwards;
  box-shadow: 0 1px 1px rgba(0,0,0,0.2);
}
@keyframes msgIn { to { opacity: 1; transform: translateY(0) scale(1); } }
.wa-msg--in { align-self: flex-start; background: #202c33; border-top-left-radius: 3px; }
.wa-msg--out { align-self: flex-end; background: #005c4b; border-top-right-radius: 3px; }
.wa-msg time {
  display: inline-block;
  font-size: 10px;
  color: rgba(233,237,239,0.5);
  margin-left: 8px;
  float: right;
  margin-top: 4px;
}
.wa-msg--out time { color: rgba(233,237,239,0.55); }
.wa-msg .tick { color: #53bdeb; font-size: 11px; }

/* Indicador digitando */
.wa-typing {
  align-self: flex-start;
  background: #202c33;
  padding: 11px 14px;
  border-radius: 10px;
  border-top-left-radius: 3px;
  display: inline-flex;
  gap: 4px;
}
.wa-typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #8696a0;
  animation: typing 1.2s infinite;
}
.wa-typing span:nth-child(2){ animation-delay: .2s; }
.wa-typing span:nth-child(3){ animation-delay: .4s; }
@keyframes typing { 0%,60%,100%{ transform: translateY(0); opacity:.5 } 30%{ transform: translateY(-5px); opacity:1 } }

.wa-sale-badge {
  position: absolute;
  bottom: 66px; left: 50%;
  transform: translate(-50%, 20px);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--acc);
  color: var(--navy-950);
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 100px;
  box-shadow: 0 10px 26px -6px var(--acc-glow);
  opacity: 0;
  pointer-events: none;
  z-index: 6;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.wa-sale-badge.is-show { opacity: 1; transform: translate(-50%, 0); }

.wa-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #1f2c33;
}
.wa-input__field {
  flex: 1;
  background: #2a3942;
  color: #8696a0;
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 100px;
}
.wa-input__send {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--acc-deep);
  color: #fff;
  display: grid; place-items: center;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--navy-850);
  overflow: hidden;
  padding: 18px 0;
  margin-top: 40px;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker__track span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.ticker__dot { color: var(--acc) !important; font-size: 1rem !important; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   SEÇÕES — heading padrão
   ============================================================ */
section { position: relative; z-index: 2; }
.section-head { max-width: 760px; margin-bottom: 64px; }
.section-index {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acc);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-top: 18px;
}

/* ============================================================
   PROVA SOCIAL
   ============================================================ */
.proof { padding: 70px 0 40px; }
.proof__label {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}
.proof__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 46px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--muted);
  opacity: 0.72;
  transition: opacity .3s, color .3s;
}
.brand svg { color: var(--muted); }
.brand:hover { opacity: 1; color: var(--cream); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 56px;
}
.stat { text-align: center; position: relative; }
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 10%;
  height: 80%;
  border-left: 1px solid var(--line);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.stat__num .prefix, .stat__num .suffix { color: var(--acc); }
.stat__label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

/* ============================================================
   PROBLEMAS
   ============================================================ */
.problems { padding: 110px 0; }
.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pain {
  padding: 34px 30px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18,48,80,0.28), rgba(10,28,48,0.1));
  transition: transform .4s var(--ease), border-color .4s, background .4s;
}
.pain:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(18,48,80,0.45), rgba(10,28,48,0.2));
}
.pain__stat {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--acc);
  display: block;
  margin-bottom: 20px;
}
.pain__title { font-size: 1.28rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.pain__text { color: var(--muted); font-size: 15.5px; line-height: 1.55; }

/* ============================================================
   COMO FUNCIONA — timeline
   ============================================================ */
.how { padding: 110px 0; }
.timeline {
  display: grid;
  gap: 0;
  position: relative;
}
.step {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  position: relative;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 4.5rem;
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line-strong);
  transition: color .4s, -webkit-text-stroke-color .4s;
}
.step:hover .step__num { color: var(--acc); -webkit-text-stroke-color: var(--acc); }
.step__content { max-width: 620px; padding-top: 8px; }
.step__content h3 { font-size: 1.7rem; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 10px; }
.step__content p { color: var(--muted); font-size: 16.5px; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: 110px 0; }
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 0;
}
.feature--reverse .feature__text { order: 2; }
.feature__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acc);
  padding: 6px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  margin-bottom: 22px;
}
.feature__text h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.feature__text > p { color: var(--muted); font-size: 17px; max-width: 480px; margin-bottom: 24px; }
.feature__list { display: grid; gap: 13px; }
.feature__list li {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
}
.feature__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(53,224,127,0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2335e07f' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ---- UI mockups ---- */
.ui-card {
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: linear-gradient(165deg, var(--navy-800), var(--navy-850));
  padding: 26px;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.65);
  position: relative;
  overflow: hidden;
}
.ui-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(53,224,127,0.5), transparent);
}

/* Feature 1 — velocidade */
.ui-speed__row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.ui-speed__label { color: var(--muted); font-size: 14px; font-weight: 600; }
.ui-speed__badge {
  font-size: 11px; font-weight: 700; color: var(--acc);
  background: rgba(53,224,127,0.12); padding: 4px 10px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.ui-speed__big {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--acc);
  margin: 8px 0 26px;
}
.ui-speed__bars { display: grid; gap: 16px; }
.ui-bar span { display: block; font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 7px; }
.ui-bar i {
  display: block;
  height: 30px;
  border-radius: 8px;
  background: var(--navy-700);
  width: var(--w);
  position: relative;
  transition: width 1s var(--ease);
}
.ui-bar b {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  font-size: 12.5px; font-weight: 700; color: var(--cream);
}
.ui-bar--good i { background: linear-gradient(90deg, var(--acc-deep), var(--acc)); }
.ui-bar--good b { color: var(--navy-950); }

/* Feature 2 — leads */
.ui-lead__head { font-size: 14px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.ui-lead__item {
  display: flex; align-items: center; gap: 13px;
  padding: 14px;
  border-radius: 14px;
  background: var(--navy-900);
  border: 1px solid var(--line);
  margin-bottom: 12px;
}
.ui-lead__item--hot { border-color: rgba(53,224,127,0.4); background: rgba(53,224,127,0.06); }
.ui-lead__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-700); color: var(--cream);
  display: grid; place-items: center; font-weight: 700; font-size: 15px;
}
.ui-lead__item--hot .ui-lead__avatar { background: var(--acc); color: var(--navy-950); }
.ui-lead__info { display: flex; flex-direction: column; margin-right: auto; }
.ui-lead__info strong { font-size: 15px; }
.ui-lead__info span { font-size: 13px; color: var(--muted); }
.ui-lead__score { font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 100px; white-space: nowrap; }
.ui-lead__score--hot { background: var(--acc); color: var(--navy-950); }
.ui-lead__score--warm { background: rgba(245,180,74,0.16); color: #f5b44a; }
.ui-lead__score--cold { background: rgba(142,163,189,0.14); color: var(--muted); }

/* Feature 3 — fluxo */
.ui-flow { display: flex; flex-direction: column; align-items: center; text-align: center; }
.ui-flow__node {
  width: 100%;
  padding: 15px 18px;
  border-radius: 14px;
  background: var(--navy-900);
  border: 1px solid var(--line);
  font-size: 14.5px;
  font-weight: 600;
}
.ui-flow__node--start { color: var(--muted); }
.ui-flow__node--win {
  background: var(--acc); color: var(--navy-950); font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 12px 30px -10px var(--acc-glow);
}
.ui-flow__line { width: 2px; height: 22px; background: var(--line-strong); }
.ui-flow__line--good { background: linear-gradient(var(--acc), var(--acc-deep)); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials { padding: 110px 0; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quote {
  padding: 32px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18,48,80,0.24), rgba(10,28,48,0.08));
  display: flex;
  flex-direction: column;
  gap: 26px;
  transition: transform .4s var(--ease), border-color .4s;
}
.quote:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.quote blockquote {
  font-size: 17.5px;
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--cream);
  font-weight: 500;
}
.quote blockquote strong { color: var(--acc); font-weight: 700; }
.quote figcaption { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.quote__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-700));
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-weight: 700; font-size: 15px; color: var(--cream);
}
.quote figcaption strong { display: block; font-size: 15.5px; }
.quote figcaption span { font-size: 13px; color: var(--muted); }

/* ============================================================
   PREÇOS
   ============================================================ */
.pricing { padding: 110px 0; }
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 54px;
  flex-wrap: wrap;
}
.toggle__opt { font-size: 15.5px; font-weight: 700; color: var(--muted); transition: color .3s; }
.toggle__opt.is-active { color: var(--cream); }
.toggle {
  width: 58px; height: 32px;
  border-radius: 100px;
  background: var(--navy-700);
  border: 1px solid var(--line-strong);
  position: relative;
  cursor: pointer;
  transition: background .3s;
}
.toggle.is-on { background: var(--acc-deep); }
.toggle__knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--cream);
  transition: transform .3s var(--ease);
}
.toggle.is-on .toggle__knob { transform: translateX(26px); background: var(--acc-bright); }
.toggle__save {
  font-size: 12.5px; font-weight: 700; color: var(--acc);
  background: rgba(53,224,127,0.12);
  padding: 5px 12px; border-radius: 100px;
  border: 1px solid rgba(53,224,127,0.3);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.plan {
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--navy-850);
  position: relative;
  transition: transform .4s var(--ease), border-color .4s;
}
.plan:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.plan--featured {
  border-color: var(--acc);
  background: linear-gradient(180deg, rgba(53,224,127,0.09), var(--navy-800));
  box-shadow: 0 30px 80px -30px var(--acc-glow);
  transform: scale(1.03);
}
.plan--featured:hover { transform: scale(1.03) translateY(-6px); }
.plan__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--acc);
  color: var(--navy-950);
  font-size: 12px; font-weight: 700;
  padding: 6px 16px; border-radius: 100px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.plan__name { font-family: var(--font-display); font-weight: 600; font-size: 1.55rem; letter-spacing: -0.02em; }
.plan__for { color: var(--muted); font-size: 14px; margin-top: 6px; min-height: 40px; }
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 22px 0 4px;
}
.plan__currency { font-size: 1.4rem; font-weight: 700; color: var(--muted); }
.plan__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.plan--featured .plan__value { color: var(--acc); }
.plan__period { font-size: 1rem; color: var(--muted); font-weight: 600; }
.plan__billed { font-size: 13px; color: var(--muted-dim); font-weight: 600; margin-bottom: 22px; min-height: 18px; }
.plan__billed.is-annual { color: var(--acc); }
.plan__features { display: grid; gap: 12px; margin-top: 26px; }
.plan__features li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.4;
}
.plan__features li strong { color: var(--cream); }
.plan__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(53,224,127,0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%2335e07f' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 110px 0; }
.faq__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.faq .section-head { margin-bottom: 0; position: sticky; top: 110px; }
.accordion { display: grid; gap: 0; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item:first-child { border-top: 1px solid var(--line); }
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
  transition: color .3s;
}
.acc-trigger:hover { color: var(--acc); }
.acc-icon {
  position: relative;
  flex-shrink: 0;
  width: 22px; height: 22px;
}
.acc-icon::before, .acc-icon::after {
  content: '';
  position: absolute;
  background: var(--acc);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .3s;
}
.acc-icon::before { top: 50%; left: 0; width: 100%; height: 2.5px; transform: translateY(-50%); }
.acc-icon::after { left: 50%; top: 0; width: 2.5px; height: 100%; transform: translateX(-50%); }
.acc-item.is-open .acc-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.acc-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s var(--ease);
}
.acc-panel p {
  padding: 0 4px 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 560px;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.final-cta { padding: 40px 0 120px; }
.final-cta__inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 40px;
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(53,224,127,0.14), transparent 70%),
    linear-gradient(180deg, var(--navy-800), var(--navy-850));
  position: relative;
  overflow: hidden;
}
.final-cta__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.final-cta__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 22px 0 20px;
}
.final-cta__sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 34px;
  line-height: 1.55;
}
.final-cta__guarantees {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 28px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
}
.final-cta__guarantees span { color: var(--cream); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 70px 0 32px;
  background: var(--navy-950);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer__brand p { color: var(--muted); font-size: 15px; max-width: 320px; margin-top: 18px; line-height: 1.55; }
.footer__col h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cream); margin-bottom: 18px; }
.footer__col a { display: block; color: var(--muted); font-size: 15px; margin-bottom: 12px; transition: color .25s; }
.footer__col a:hover { color: var(--acc); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__bottom span { color: var(--muted-dim); font-size: 13.5px; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: var(--muted-dim); font-size: 13.5px; transition: color .25s; }
.footer__legal a:hover { color: var(--cream); }

/* ============================================================
   REVEAL (scroll)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .phone { transform: none; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__mockup { order: -1; }
  .faq__inner { grid-template-columns: 1fr; gap: 32px; }
  .faq .section-head { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .stat:nth-child(3)::before, .stat + .stat::before { display: none; }
  .problems__grid, .testimonials__grid, .pricing__grid { grid-template-columns: 1fr; }
  .plan--featured { transform: none; order: -1; }
  .plan--featured:hover { transform: translateY(-6px); }
  .feature { grid-template-columns: 1fr; gap: 34px; padding: 40px 0; }
  .feature--reverse .feature__text { order: 0; }
  .feature__text > p { max-width: none; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .hero { padding: 120px 0 60px; }
  .nav__cta { --pad-y: 11px; --pad-x: 18px; font-size: 14px; }
  .hero__actions .btn { width: 100%; }
  .ticker__track span { font-size: 1.2rem; }
  .step { grid-template-columns: 1fr; gap: 12px; }
  .step__num { font-size: 3.2rem; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat__num { font-size: 2.4rem; }
  .final-cta__inner { padding: 48px 22px; }
  .phone { transform: none; animation: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .section-head { margin-bottom: 44px; }
}
