/* ============================================================
   Liftr Pro — Landing page
   Direção: editorial dark premium. O tema de treino do app
   (#111714 / #4ADE80) em escala de pôster: Anton condensada
   gigante, números em JetBrains Mono tabular, seções "papel"
   claras para contraste de revista. Sem gradientes, sem blur,
   sem sombra em card — separação por borda de 1px, como no app.
   ============================================================ */

* { box-sizing: border-box; }

:root {
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-text: 'Inter', var(--font-sans);
  --font-num: 'JetBrains Mono', var(--font-mono);
  --nav-h: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  background: var(--ds-background);
  color: var(--ds-text-primary);
  font-family: var(--font-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Seções claras: reescopa os tokens do tema light do app */
.paper {
  --ds-background:     #F7F7F7;
  --ds-surface:        #FFFFFF;
  --ds-surface-2:      #F0F0F0;
  --ds-border:         #E5E7EB;
  --ds-primary:        #4A7C59;
  --ds-primary-dim:    #D9E8DF;
  --ds-primary-muted:  #F0F5F2;
  --ds-on-primary:     #FFFFFF;
  --ds-text-primary:   #111827;
  --ds-text-secondary: #6B7280;
  --ds-text-tertiary:  #9CA3AF;
  background: var(--ds-background);
  color: var(--ds-text-primary);
}

.container {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
}
.container-narrow { width: min(760px, 100% - 40px); }

::selection { background: var(--ds-primary); color: var(--ds-on-primary); }

/* ============================================================
   Cursor customizado
   ============================================================ */
.cursor-dot, .cursor-ring { display: none; }

@media (pointer: fine) {
  body { cursor: none; }
  a, button { cursor: none; }

  .cursor-dot, .cursor-ring {
    display: block;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    will-change: transform;
  }
  .cursor-dot {
    width: 8px; height: 8px;
    margin: -4px 0 0 -4px;
    background: #4ADE80;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    margin: -18px 0 0 -18px;
    border: 1.5px solid rgba(74, 222, 128, 0.55);
    transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out),
                margin 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
  }
  body.cursor-active .cursor-ring {
    width: 56px; height: 56px;
    margin: -28px 0 0 -28px;
    border-color: rgba(74, 222, 128, 0.9);
  }
  body.cursor-hidden .cursor-dot,
  body.cursor-hidden .cursor-ring { opacity: 0; }
}

/* ============================================================
   Tipografia display
   ============================================================ */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(52px, 9.5vw, 132px);
  line-height: 0.94;
  letter-spacing: 0.005em;
  margin: 0;
  color: var(--ds-text-primary);
}
.display-accent { color: #4ADE80; }
.paper .display-accent { color: #4A7C59; }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin: 0 0 56px;
}

.eyebrow {
  font: 700 13px/1.2 var(--font-text);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--ds-primary);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 32px; height: 2px;
  background: var(--ds-primary);
  flex-shrink: 0;
}

.num {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   Botões
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 16px;
  font: 700 16px/1.2 var(--font-text);
  text-decoration: none;
  border: 1px solid transparent;
  transition: opacity 0.2s ease-out, transform 0.3s var(--ease-out);
  will-change: transform;
}
.btn:hover { opacity: 0.85; }
.btn:active { opacity: 0.72; transform: none !important; }

.btn-primary { background: var(--ds-primary); color: var(--ds-on-primary); }
.btn-secondary { background: var(--ds-surface); color: var(--ds-text-primary); border-color: var(--ds-border); }
.btn-ghost { background: transparent; color: var(--ds-primary); border-color: rgba(74, 222, 128, 0.4); }
.paper .btn-ghost { border-color: rgba(74, 124, 89, 0.4); }

.btn-nav { padding: 12px 18px; border-radius: 12px; font-size: 14px; }

.btn-appstore {
  background: #4ADE80;
  color: #0D1F18;
  padding: 14px 26px;
  gap: 12px;
}
.apple-logo { width: 26px; height: 26px; flex-shrink: 0; }
.btn-appstore-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.btn-appstore-text small { font: 600 11px/1.1 var(--font-text); letter-spacing: 0.4px; opacity: 0.75; }
.btn-appstore-text strong { font: 700 18px/1.15 var(--font-text); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(17, 23, 20, 0.96);
  border-bottom: 1px solid var(--ds-border);
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out);
}
.nav.nav-hidden { transform: translateY(-100%); }

.nav-inner {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ds-text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo em { font-style: normal; color: #4ADE80; }
.logo-mark {
  width: 14px; height: 14px;
  border-radius: 4px;
  background: #4ADE80;
  flex-shrink: 0;
}

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font: 600 14px/1.2 var(--font-text);
  letter-spacing: 0.3px;
  color: var(--ds-text-secondary);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease-out;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: #4ADE80;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--ds-text-primary); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: calc(var(--nav-h) + 72px) 0 96px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 48px;
  align-items: center;
}
.hero-sub {
  font: 500 18px/1.6 var(--font-text);
  color: var(--ds-text-secondary);
  max-width: 52ch;
  margin: 28px 0 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin: 56px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--ds-border);
  flex-wrap: wrap;
}
.stat-item dt {
  font: 600 12px/1.3 var(--font-text);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ds-text-tertiary);
  margin-bottom: 8px;
}
.stat-item dd {
  margin: 0;
  font: 700 34px/1.05 var(--font-num);
  font-variant-numeric: tabular-nums;
  color: var(--ds-text-primary);
}
.stat-item dd .num { font-size: inherit; }

/* Telefone */
.hero-visual { position: relative; justify-self: center; }
.phone-frame {
  position: relative;
  transform: rotate(3deg);
  border-radius: 44px;
  border: 1px solid var(--ds-border);
  padding: 10px;
  background: var(--ds-surface);
  animation: phone-float 7s ease-in-out infinite;
  will-change: transform;
}
.phone-frame img {
  display: block;
  width: min(320px, 72vw);
  height: auto;
  border-radius: 36px;
}
@keyframes phone-float {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50%      { transform: rotate(3deg) translateY(-14px); }
}

.hero-chip {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  background: var(--ds-surface);
  border: 1px solid var(--ds-border);
  border-radius: 14px;
  animation: chip-float 6s ease-in-out infinite;
  will-change: transform;
}
.chip-a { top: 12%; left: -72px; }
.chip-b { bottom: 14%; right: -56px; animation-delay: -3s; }
.chip-label {
  font: 600 11px/1.2 var(--font-text);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ds-text-tertiary);
}
.chip-num {
  font: 700 18px/1.2 var(--font-num);
  font-variant-numeric: tabular-nums;
  color: var(--ds-text-primary);
}
.chip-num em { font: 700 12px/1.2 var(--font-num); font-style: normal; color: #4ADE80; }
@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  background: #4ADE80;
  color: #0D1F18;
  overflow: hidden;
  border-block: 1px solid #0D1F18;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-content {
  font: 700 15px/1 var(--font-num);
  letter-spacing: 1.5px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.marquee-content i { font-style: normal; margin: 0 18px; opacity: 0.5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Problema
   ============================================================ */
.problema { padding: 120px 0; }
.problema-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ds-border);
}
.problema-item {
  padding: 40px 32px 8px 0;
  border-right: 1px solid var(--ds-border);
}
.problema-item:not(:first-child) { padding-left: 32px; }
.problema-item:last-child { border-right: 0; padding-right: 0; }
.problema-num {
  display: block;
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--ds-primary-dim);
  margin-bottom: 24px;
}
.problema-title {
  font: 700 22px/1.3 var(--font-text);
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ds-text-primary);
  margin: 0 0 14px;
}
.problema-body {
  font: 500 15px/1.6 var(--font-text);
  color: var(--ds-text-secondary);
  margin: 0;
}

/* ============================================================
   Como funciona — timeline
   ============================================================ */
.como { padding: 120px 0; }
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 28px;
  right: 15%;
  height: 1px;
  background: var(--ds-border);
}
.timeline-step { position: relative; }
.timeline-node {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ds-surface);
  border: 1px solid var(--ds-primary);
  margin-bottom: 24px;
}
.timeline-num {
  font: 700 20px/1 var(--font-num);
  color: var(--ds-primary);
}
.timeline-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}
.timeline-body {
  font: 500 15px/1.6 var(--font-text);
  color: var(--ds-text-secondary);
  margin: 0;
  max-width: 34ch;
}

/* ============================================================
   Recursos
   ============================================================ */
.recursos { padding: 40px 0 120px; }
.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--ds-border);
}
.feature:first-child { border-top: 0; }
.feature-alt .feature-copy { order: 2; }
.feature-alt .feature-visual { order: 1; }

.feature-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1;
  margin: 0 0 20px;
}
.feature-body {
  font: 500 16px/1.65 var(--font-text);
  color: var(--ds-text-secondary);
  margin: 0 0 28px;
}
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  font: 600 15px/1.5 var(--font-text);
  padding-left: 28px;
  position: relative;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ADE80;
  font-weight: 700;
}

/* ---- Mockups CSS ---- */
.feature-visual { display: flex; justify-content: center; }
.mock {
  width: min(400px, 100%);
  background: var(--ds-surface);
  border: 1px solid var(--ds-border);
  border-radius: 24px;
  padding: 24px;
}
.mock-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.mock-exercise { font: 700 17px/1.2 var(--font-text); }
.mock-target {
  font: 600 12px/1.2 var(--font-num);
  letter-spacing: 0.5px;
  color: var(--ds-text-tertiary);
  white-space: nowrap;
}
.mock-up { color: #4ADE80; }

/* Mockup 1 — registro de séries */
.mock-set {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid var(--ds-border);
  border-radius: 12px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(8px);
  animation: set-enter 8s var(--ease-out) infinite;
  animation-delay: calc(var(--i) * 1.1s);
}
@keyframes set-enter {
  0%        { opacity: 0; transform: translateY(8px); }
  6%, 92%   { opacity: 1; transform: translateY(0); }
  100%      { opacity: 0; transform: translateY(8px); }
}
.mock-set-idx {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ds-surface-2);
  color: var(--ds-text-secondary);
  font: 700 13px/28px var(--font-num);
  text-align: center;
  flex-shrink: 0;
}
.mock-set-val {
  flex: 1;
  font: 700 15px/1.2 var(--font-num);
  font-variant-numeric: tabular-nums;
}
.mock-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #4ADE80;
  color: #0D1F18;
  font: 700 14px/24px var(--font-text);
  text-align: center;
  flex-shrink: 0;
  transform: scale(0);
  animation: check-pop 8s var(--ease-out) infinite;
  animation-delay: calc(var(--i) * 1.1s + 0.45s);
}
@keyframes check-pop {
  0%        { transform: scale(0); }
  5%, 90%   { transform: scale(1); }
  100%      { transform: scale(0); }
}
.mock-set-pending .mock-set-val { color: var(--ds-text-tertiary); }
.mock-check-empty {
  background: transparent;
  border: 1.5px dashed var(--ds-border);
  animation: none;
  transform: scale(1);
}
.mock-rest {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 12px;
  background: var(--ds-primary-muted);
}
.mock-rest-label {
  font: 600 11px/1.2 var(--font-text);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ds-primary);
  flex-shrink: 0;
}
.mock-rest-time {
  font: 700 16px/1 var(--font-num);
  color: var(--ds-primary);
  flex-shrink: 0;
}
.mock-rest-bar {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: var(--ds-primary-dim);
  overflow: hidden;
}
.mock-rest-fill {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: #4ADE80;
  transform-origin: left;
  animation: rest-fill 8s linear infinite;
}
@keyframes rest-fill {
  0%   { transform: scaleX(0); }
  55%, 100% { transform: scaleX(1); }
}

/* Mockup 2 — gráfico de progressão */
.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 220px;
  padding-top: 12px;
}
.mock-bar {
  flex: 1;
  height: var(--h);
  background: var(--ds-primary-dim);
  border-radius: 6px 6px 3px 3px;
  position: relative;
  transform-origin: bottom;
  transform: scaleY(0);
  animation: bar-grow 7s var(--ease-out) infinite;
  animation-delay: calc(var(--i) * 0.18s);
}
.mock-bar-pr { background: #4ADE80; }
.mock-bar i {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font: 700 10px/1 var(--font-num);
  font-style: normal;
  color: var(--ds-text-tertiary);
  opacity: 0;
  animation: bar-label 7s ease-out infinite;
  animation-delay: calc(var(--i) * 0.18s + 0.4s);
}
.mock-bar-pr i { color: #4ADE80; }
@keyframes bar-grow {
  0%        { transform: scaleY(0); }
  10%, 88%  { transform: scaleY(1); }
  96%, 100% { transform: scaleY(0); }
}
@keyframes bar-label {
  0%        { opacity: 0; }
  8%, 85%   { opacity: 1; }
  92%, 100% { opacity: 0; }
}
.mock-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--ds-border);
}
.mock-axis span {
  font: 600 11px/1 var(--font-num);
  letter-spacing: 0.5px;
  color: var(--ds-text-tertiary);
}

/* Mockup 3 — PR */
.mock-pr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  overflow: hidden;
  padding: 32px 28px;
}
.mock-pr-badge {
  font: 700 11px/1.2 var(--font-text);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0D1F18;
  background: #4ADE80;
  padding: 6px 12px;
  border-radius: 8px;
  animation: badge-pulse 2.4s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
.mock-pr-exercise { font: 700 18px/1.2 var(--font-text); margin-top: 10px; }
.mock-pr-value {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.mock-digit-window {
  display: block;
  height: 64px;
  overflow: hidden;
}
.mock-digit-strip {
  display: flex;
  flex-direction: column;
  animation: digits-roll 6s var(--ease-out) infinite;
}
.mock-digit-strip span {
  font: 700 58px/64px var(--font-num);
  font-variant-numeric: tabular-nums;
  color: var(--ds-text-primary);
}
@keyframes digits-roll {
  0%, 8%    { transform: translateY(0); }
  20%       { transform: translateY(-64px); }
  32%       { transform: translateY(-128px); }
  44%       { transform: translateY(-192px); }
  56%, 92%  { transform: translateY(-256px); }
  100%      { transform: translateY(0); }
}
.mock-pr-unit { font: 700 22px/1 var(--font-num); color: var(--ds-text-tertiary); }
.mock-pr-prev {
  font: 600 13px/1.4 var(--font-num);
  color: var(--ds-text-secondary);
}
.mock-pr-prev em { font-style: normal; color: var(--ds-text-tertiary); }
.mock-pr-ring {
  position: absolute;
  right: -48px;
  top: -48px;
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1px solid var(--ds-border);
  animation: ring-spin 14s linear infinite;
}
.mock-pr-ring::before {
  content: "";
  position: absolute;
  top: 50%; left: -4px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
}
@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   Depoimentos
   ============================================================ */
.depoimentos { padding: 120px 0; }
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.depo-card {
  background: var(--ds-surface);
  border: 1px solid var(--ds-border);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}
.depo-card:hover {
  transform: translateY(-6px);
  border-color: var(--ds-primary);
}
.depo-stars {
  color: var(--ds-yellow);
  font-size: 16px;
  letter-spacing: 3px;
}
.depo-title {
  font: 700 17px/1.3 var(--font-text);
  text-transform: none;
  color: var(--ds-text-primary);
  margin: 0;
}
.depo-body {
  font: 500 14.5px/1.65 var(--font-text);
  color: var(--ds-text-secondary);
  margin: 0;
  flex: 1;
}
.depo-meta {
  font: 500 13px/1.3 var(--font-text);
  color: var(--ds-text-tertiary);
  padding-top: 14px;
  border-top: 1px solid var(--ds-border);
}
.depo-meta strong { color: var(--ds-text-primary); }

/* ============================================================
   Privacidade
   ============================================================ */
.privacidade { padding: 120px 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 40px 0 120px; }
.faq-list { border-top: 1px solid var(--ds-border); }
.faq-item { border-bottom: 1px solid var(--ds-border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  background: none;
  border: 0;
  text-align: left;
  font: 700 18px/1.35 var(--font-text);
  color: var(--ds-text-primary);
  transition: color 0.2s ease-out;
}
.faq-question:hover { color: #4ADE80; }
.faq-icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 2px;
  background: var(--ds-primary);
  transition: transform 0.35s var(--ease-out);
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item.open .faq-icon::after { transform: rotate(0deg); }
.faq-item.open .faq-icon::before { transform: rotate(0deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease-out);
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer-inner p {
  font: 500 15.5px/1.65 var(--font-text);
  color: var(--ds-text-secondary);
  margin: 0;
  padding: 0 40px 28px 4px;
  max-width: 62ch;
}

/* ============================================================
   CTA final
   ============================================================ */
.cta-final {
  padding: 120px 0;
  border-top: 1px solid var(--ds-border);
  overflow: hidden;
}
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 48px;
  align-items: center;
}
.cta-title { font-size: clamp(44px, 6.6vw, 92px); }
.cta-sub {
  font: 500 17px/1.65 var(--font-text);
  color: var(--ds-text-secondary);
  max-width: 54ch;
  margin: 28px 0 36px;
}
.cta-garantia {
  font: 600 14px/1.4 var(--font-text);
  color: var(--ds-primary);
  margin: 0;
}
.cta-visual img {
  display: block;
  width: min(340px, 80vw);
  height: auto;
  margin-inline: auto;
  animation: phone-float 8s ease-in-out infinite;
  will-change: transform;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--ds-border);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font: 600 13px/1.2 var(--font-text);
  color: var(--ds-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease-out;
}
.footer-links a:hover { color: var(--ds-text-primary); }
.footer-legal {
  font: 500 13px/1.4 var(--font-text);
  color: var(--ds-text-tertiary);
  margin: 0;
}

/* ============================================================
   Reveal no scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--d, 0s);
  will-change: transform, opacity;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 72px; }
  .hero-visual { margin-top: 8px; }
  .chip-a { left: -8px; }
  .chip-b { right: -8px; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-visual { order: -1; }
  .feature { gap: 48px; }
}

@media (max-width: 820px) {
  .problema-grid { grid-template-columns: 1fr; border-top: 0; }
  .problema-item {
    border-right: 0;
    border-top: 1px solid var(--ds-border);
    padding: 36px 0 12px;
  }
  .problema-item:not(:first-child) { padding-left: 0; }

  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline::before {
    top: 0; bottom: 0;
    left: 27px; right: auto;
    width: 1px; height: auto;
  }
  .timeline-step { padding: 0 0 48px 84px; }
  .timeline-step:last-child { padding-bottom: 0; }
  .timeline-node { position: absolute; left: 0; top: 0; margin: 0; }

  .feature,
  .feature-alt { grid-template-columns: 1fr; padding: 64px 0; }
  .feature-alt .feature-copy { order: 1; }
  .feature-alt .feature-visual { order: 2; }

  .depo-grid { grid-template-columns: 1fr; }

  .hero-stats { gap: 28px; }
  .stat-item dd { font-size: 28px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 64px; }
  .hero-sub { font-size: 16px; }
  .section-title { margin-bottom: 40px; }
  .problema, .como, .depoimentos, .privacidade, .cta-final { padding: 80px 0; }
  .recursos { padding-bottom: 80px; }
  .faq { padding-bottom: 80px; }
  .hero-chip { padding: 10px 12px; }
  .chip-num { font-size: 15px; }
  .faq-question { font-size: 16px; }
}

/* ============================================================
   Movimento reduzido
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .mock-set, .mock-check, .mock-bar, .mock-bar i { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  body, a, button { cursor: auto !important; }
  .cursor-dot, .cursor-ring { display: none !important; }
}
