@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@500;600&display=swap');

:root {
  --bg-void: #0D0818;
  --bg-surface: #221142;
  --bg-surface-2: #2B1652;
  --line: #3B2261;
  --line-soft: #2A1848;
  --lilac-300: #C9A6FF;
  --text-hi: #F5F2FF;
  --text-mid: #C6B9E8;
  --text-low: #8577A8;
  --success: #34D399;
  --success-bg: rgba(52, 211, 153, 0.12);
  --grad-signature: linear-gradient(135deg, #8B5CF6 0%, #5B21B6 100%);
  --grad-bg: radial-gradient(120% 90% at 50% -10%, #2A1454 0%, #0D0818 60%);
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-glow: 0 0 0 1px rgba(201,166,255,0.15), 0 8px 24px rgba(139,92,246,0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--grad-bg);
  background-color: var(--bg-void);
  color: var(--text-hi);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
:focus-visible { outline: 2px solid var(--lilac-300); outline-offset: 2px; border-radius: 6px; }

.wrap { max-width: 480px; margin: 0 auto; padding: 0 20px; }

/* header */
.landing-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  position: sticky; top: 0; z-index: 10;
  background: rgba(13,8,24,0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.brand { display: flex; align-items: center; gap: 9px; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--grad-signature);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow);
}
.brand-mark svg { width: 18px; height: 18px; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.brand-name b { font-weight: 800; color: var(--text-hi); }
.header-link {
  font-size: 13px; color: var(--text-mid);
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 8px 14px;
}

/* hero */
.hero { padding: 32px 0 8px; text-align: center; }

/* brand lockup — réplica do painel "Logo + Nome" da identidade visual */
.brand-lockup {
  background: linear-gradient(160deg, #2A1454 0%, #170B33 100%);
  border: 1px solid rgba(201,166,255,0.12);
  border-radius: var(--radius-lg);
  padding: 34px 20px 28px;
  margin-bottom: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.brand-lockup .mark {
  width: 84px; height: 84px; margin: 0 auto 18px;
  border-radius: 20px;
  background: var(--grad-signature);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow);
}
.brand-lockup .mark svg { width: 50px; height: 50px; }
.brand-lockup .wordmark {
  font-family: var(--font-display); font-size: 26px; letter-spacing: -0.01em;
  color: #fff; margin: 0;
}
.brand-lockup .wordmark b { font-weight: 800; }
.brand-lockup .tagline {
  font-size: 12.5px; letter-spacing: 0.06em; color: var(--text-mid);
  margin: 6px 0 0; font-style: italic;
}
.eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--lilac-300); margin: 0 0 14px;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 800; font-size: 32px;
  line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 14px;
}
.hero h1 span { color: var(--lilac-300); }
.hero p { color: var(--text-mid); font-size: 15px; line-height: 1.5; margin: 0 auto 28px; max-width: 340px; }

/* price row — o número é o herói */
.price-row { display: flex; gap: 10px; margin-bottom: 28px; }
.price-card {
  flex: 1; background: var(--bg-surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 18px 14px; text-align: center;
}
.price-card .amount {
  font-family: var(--font-mono); font-weight: 600; font-size: 26px; color: var(--lilac-300);
  display: block;
}
.price-card .amount small { font-size: 13px; color: var(--text-low); }
.price-card .label { font-size: 12.5px; color: var(--text-mid); margin-top: 4px; display: block; }

/* CTA groups */
.cta-group { margin-bottom: 14px; }
.cta-main {
  width: 100%; text-align: center; font-family: var(--font-body); font-weight: 700;
  font-size: 15px; padding: 15px 18px; border-radius: var(--radius-md);
  background: var(--grad-signature); color: #120A24; border: none; cursor: pointer;
  display: block;
}
.cta-sub {
  display: flex; gap: 8px; margin-top: 8px;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}
.cta-sub.open { max-height: 80px; opacity: 1; }
.cta-sub a {
  flex: 1; text-align: center; font-size: 13px; font-weight: 600;
  padding: 12px 10px; border-radius: var(--radius-md);
  border: 1px solid var(--line); color: var(--text-hi); background: var(--bg-surface-2);
}
.cta-sub a.whatsapp { background: #1E5C4F; border-color: #1E5C4F; color: #DFFFF3; }

/* section */
.section { padding: 36px 0; border-top: 1px solid var(--line-soft); }
.section-title {
  font-family: var(--font-display); font-weight: 700; font-size: 20px; margin: 0 0 20px;
}

/* route steps — reaproveita o motivo de trajeto pontilhado */
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 14px; padding-bottom: 22px; position: relative; }
.step:last-child { padding-bottom: 0; }
.step-marker { display: flex; flex-direction: column; align-items: center; }
.step-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--lilac-300);
  flex-shrink: 0; margin-top: 4px;
}
.step-line {
  flex: 1; width: 1px; margin-top: 4px;
  background-image: linear-gradient(180deg, var(--lilac-300) 0 4px, transparent 4px 9px);
  background-size: 1px 9px; background-repeat: repeat-y; opacity: 0.6;
}
.step-body h3 { font-family: var(--font-display); font-size: 15px; margin: 0 0 4px; }
.step-body p { font-size: 13.5px; color: var(--text-mid); margin: 0; line-height: 1.5; }

/* differentiators */
.diff-list { display: flex; flex-direction: column; gap: 10px; }
.diff-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--bg-surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-md); padding: 14px;
}
.diff-item svg { flex-shrink: 0; color: var(--success); margin-top: 2px; }
.diff-item p { margin: 0; font-size: 13.5px; color: var(--text-hi); line-height: 1.5; }
.diff-item p b { color: var(--lilac-300); }

/* final cta */
.final-cta { text-align: center; padding: 40px 0 48px; }
.final-cta h2 {
  font-family: var(--font-display); font-weight: 800; font-size: 22px; margin: 0 0 8px;
}
.final-cta p { color: var(--text-mid); font-size: 14px; margin: 0 0 22px; }

/* footer */
.landing-footer {
  border-top: 1px solid var(--line-soft); padding: 22px 0 32px;
  text-align: center; color: var(--text-low); font-size: 12px;
}
.landing-footer .brand-name { font-size: 13px; }

/* install section */
.install-card {
  background: var(--bg-surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 20px;
}
.install-steps {
  margin: 4px 0 0; padding-left: 20px; color: var(--text-mid); font-size: 13.5px; line-height: 1.7;
}
.install-steps li::marker { color: var(--lilac-300); font-family: var(--font-mono); }
.install-steps b { color: var(--text-hi); }
.btn-install {
  width: 100%; margin-top: 16px; padding: 13px 18px; border: none; border-radius: var(--radius-md);
  background: var(--grad-signature); color: #fff; font-weight: 700; font-size: 14.5px; cursor: pointer;
}
.install-done { margin: 0; color: var(--success); font-size: 14px; font-weight: 600; text-align: center; }
