:root {
  --primary:        #5855FF;
  --primary-end:    #8B3DFF;
  --primary-soft:   #F0EFFF;
  --primary-glow:   rgba(88, 85, 255, 0.30);
  --text-main:      #0D0D12;
  --text-muted:     #6B7280;
  --bg-white:       #FFFFFF;
  --bg-soft:        #F7F7FA;
  --border:         #E8E8ED;
  --navy:           #08081A;
  --footer-bg:      #06060F;
  --footer-text:    rgba(255, 255, 255, 0.45);
  --nav-bg:         rgba(255, 255, 255, 0.80);
  --font-main:      "Outfit", "Inter", -apple-system, sans-serif;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:      0 24px 56px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
  --radius-sm:      10px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
}

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

body {
  font-family: var(--font-main);
  background: var(--bg-white);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }

/* ─── SCROLL REVEAL ─────────────────────────────────────── */
.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-item.visible { opacity: 1; transform: translateY(0); }

/* ─── LAYOUT ────────────────────────────────────────────── */
.lp-root { overflow-x: hidden; }

.lp-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}
.lp-container-narrow { max-width: 720px; }

/* ─── NAV ───────────────────────────────────────────────── */
.lp-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 860px;
  height: 96px;
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  border-radius: 999px;
  z-index: 1000;
  transition: top 0.3s ease, box-shadow 0.3s ease;
}
.lp-nav.scrolled {
  top: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 0 0 1px rgba(0,0,0,0.05);
}
.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}
.lp-nav-links {
  display: flex;
  gap: 28px;
}
.lp-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.lp-nav-links a:hover { color: var(--text-main); }

.lp-btn-nav {
  background: var(--text-main);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.lp-btn-nav:hover { opacity: 0.82; transform: scale(1.03); }

/* ─── HERO ──────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  padding: 168px 0 120px;
  text-align: center;
  overflow: hidden;
  background: var(--bg-white);
}

/* soft gradient orbs */
.lp-hero::before {
  content: '';
  position: absolute;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 85, 255, 0.09) 0%, transparent 65%);
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.lp-hero::after {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 61, 255, 0.07) 0%, transparent 65%);
  top: 60px;
  right: -80px;
  pointer-events: none;
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-soft);
  border: 1px solid rgba(88, 85, 255, 0.18);
  color: var(--primary);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.lp-hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.lp-hero h1 {
  font-size: clamp(44px, 7.5vw, 84px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.03;
  color: var(--text-main);
  max-width: 880px;
}

.lp-hero-desc {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
  font-weight: 400;
}
.lp-hero-desc strong { color: var(--text-main); font-weight: 600; }

.lp-hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.lp-social-proof {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.lp-avatars {
  display: flex;
}
.lp-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -10px;
}
.lp-avatars .lp-avatar:first-child { margin-left: 0; }
.lp-trust-text {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.lp-trust-text strong { color: var(--text-main); font-weight: 600; }

.lp-hero-visual {
  margin-top: 72px;
  width: 100%;
  max-width: 620px;
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-end) 100%);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset,
              0 10px 28px rgba(88, 85, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset,
              0 18px 40px rgba(88, 85, 255, 0.48);
}
.lp-btn-primary:active { transform: scale(0.98); }
.lp-btn-primary.large { padding: 18px 42px; font-size: 17px; }

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #fff;
  color: var(--text-main);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.lp-btn-ghost:hover {
  background: var(--bg-soft);
  border-color: rgba(88, 85, 255, 0.4);
  transform: translateY(-1px);
}

/* ─── MOCK DASHBOARD ────────────────────────────────────── */
.mock-window {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.025);
  overflow: hidden;
  text-align: left;
}
.mock-titlebar {
  background: var(--bg-soft);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.mock-titlebar span { margin-left: 4px; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.red    { background: #FF5F57; }
.mock-dot.yellow { background: #FEBC2E; }
.mock-dot.green  { background: #28C840; }
.mock-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}
.mock-metric {
  padding: 14px 16px;
  border-right: 1px solid var(--border);
}
.mock-metric:last-child { border-right: none; }
.mock-metric span {
  display: block;
  font-size: 10.5px;
  color: var(--text-muted);
  margin-bottom: 3px;
  font-weight: 500;
}
.mock-metric strong { font-size: 17px; font-weight: 700; color: var(--text-main); }
.mock-metric.accent strong { color: var(--primary); }
.mock-list { padding: 4px 0; }
.mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  transition: background 0.15s;
}
.mock-row:hover { background: var(--bg-soft); }
.mock-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
}
.mock-row-info { flex: 1; min-width: 0; }
.mock-row-info strong { display: block; font-size: 13px; font-weight: 600; }
.mock-row-info small { font-size: 11px; color: var(--text-muted); }
.mock-saldo { font-size: 13px; font-weight: 700; color: var(--primary); }
.mock-footer {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}
.mock-btn {
  flex: 1;
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 9px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
}
.mock-btn.mock-btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-main);
}

/* ─── TRUST BAR ─────────────────────────────────────────── */
.lp-trust {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 14px clamp(16px, 4vw, 48px);
}
.lp-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 5px 16px;
  white-space: nowrap;
}
.lp-trust span svg { color: var(--primary); flex-shrink: 0; }
.lp-trust-div {
  width: 1px;
  height: 14px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── SECTIONS ──────────────────────────────────────────── */
.lp-section { padding: clamp(80px, 12vw, 140px) 0; }
.lp-section-alt { background: var(--bg-soft); }

.lp-section-header {
  text-align: center;
  margin-bottom: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lp-chip {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid rgba(88, 85, 255, 0.12);
}
.lp-section-header h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-main);
  line-height: 1.12;
  max-width: 680px;
}
.lp-section-header p {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 500px;
}

/* ─── HOW IT WORKS ──────────────────────────────────────── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  position: relative;
}
.lp-steps::before {
  content: '';
  position: absolute;
  top: 39px;
  left: calc(16.7% + 24px);
  right: calc(16.7% + 24px);
  height: 1px;
  background: linear-gradient(90deg, rgba(88,85,255,0.3) 0%, rgba(139,61,255,0.3) 100%);
  pointer-events: none;
}
.lp-step { text-align: center; }
.lp-step-num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  opacity: 0.6;
}
.lp-step-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-soft);
  border: 1.5px solid rgba(88, 85, 255, 0.14);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}
.lp-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
  letter-spacing: -0.02em;
}
.lp-step p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── FEATURES GRID ─────────────────────────────────────── */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp-feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.lp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(88, 85, 255, 0.18);
}
.lp-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 18px;
}
.lp-feature-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
  letter-spacing: -0.02em;
}
.lp-feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── STATS ─────────────────────────────────────────────── */
.lp-stats {
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  overflow: hidden;
}
.lp-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(88,85,255,0.22) 0%, transparent 55%);
  pointer-events: none;
}
.lp-stat {
  text-align: center;
  padding: clamp(36px, 5vw, 68px) clamp(16px, 3vw, 40px);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 1;
}
.lp-stat:last-child { border-right: none; }
.lp-stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

/* ─── PRICING ───────────────────────────────────────────── */
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.lp-pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.lp-pricing-card:hover:not(.highlighted) {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.lp-pricing-card.highlighted {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: 0 0 0 5px rgba(88,85,255,0.07), var(--shadow-lg);
}
.lp-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-end));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(88,85,255,0.4);
}
.lp-pricing-top { margin-bottom: 20px; }
.lp-pricing-top h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}
.lp-pricing-top p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.lp-price { display: flex; align-items: baseline; gap: 4px; }
.lp-price strong {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 900;
  letter-spacing: -0.03em;
}
.lp-price span { color: var(--text-muted); font-size: 13.5px; }
.lp-btn-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  margin-bottom: 22px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
}
.lp-btn-plan:hover {
  background: var(--bg-soft);
  border-color: var(--primary);
  color: var(--primary);
}
.lp-btn-plan.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-end));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(88,85,255,0.28);
}
.lp-btn-plan.primary:hover {
  opacity: 0.92;
  color: #fff;
}
.lp-plan-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-plan-items li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-main);
}
.lp-plan-items li svg { color: var(--primary); flex-shrink: 0; }

/* ─── TESTIMONIALS ──────────────────────────────────────── */
.lp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.lp-testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.lp-stars { font-size: 13px; color: #F59E0B; letter-spacing: 2px; }
.lp-testimonial > p {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--text-main);
  flex: 1;
}
.lp-testimonial-author { display: flex; align-items: center; gap: 12px; }
.lp-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.lp-testimonial-author strong { display: block; font-size: 13.5px; font-weight: 700; }
.lp-testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ─── FAQ ───────────────────────────────────────────────── */
.lp-faq { display: flex; flex-direction: column; }
.lp-faq-item {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.lp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  gap: 16px;
  user-select: none;
  color: var(--text-main);
}
.lp-faq-q svg {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s;
}
.lp-faq-item.open .lp-faq-q svg { transform: rotate(180deg); }
.lp-faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.lp-faq-item.open .lp-faq-a { grid-template-rows: 1fr; }
.lp-faq-a > div { overflow: hidden; }
.lp-faq-a p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
  padding-bottom: 20px;
}

/* ─── CTA FINAL ─────────────────────────────────────────── */
.lp-cta-final {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: clamp(100px, 14vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.lp-cta-final::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88,85,255,0.18) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.lp-cta-final > div { position: relative; z-index: 1; }
.lp-cta-final h2 {
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #fff;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.lp-cta-final p {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(255, 255, 255, 0.60);
  margin-bottom: 48px;
  line-height: 1.6;
}
.lp-cta-note {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.32) !important;
  margin-top: 20px !important;
  display: block;
}

/* ─── FOOTER ────────────────────────────────────────────── */
.lp-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: clamp(48px, 7vw, 72px) 0 clamp(24px, 4vw, 36px);
}
.lp-footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.lp-footer .lp-logo { color: #fff; margin-bottom: 8px; }
.lp-footer-inner > div > p {
  font-size: 13px;
  color: var(--footer-text);
  max-width: 200px;
  line-height: 1.65;
}
.lp-footer-links {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
  align-items: center;
}
.lp-footer-links a {
  font-size: 13.5px;
  color: var(--footer-text);
  transition: color 0.2s;
}
.lp-footer-links a:hover { color: #fff; }
.lp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  font-size: 12.5px;
  color: var(--footer-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.lp-dev-credit {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-dev-credit a {
  color: rgba(255, 255, 255, 0.70);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.lp-dev-credit a:hover { color: #fff; }

/* ─── EDUCATIVO / CASHBACK ──────────────────────────────── */
.lp-edu-section { background: var(--bg-white); }

.lp-edu-intro {
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  text-align: center;
}
.lp-edu-intro strong { color: var(--text-main); font-weight: 600; }

.lp-edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 64px 0 80px;
}
.lp-edu-card {
  padding: clamp(28px, 3.5vw, 44px);
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  box-shadow: var(--shadow-sm);
}
.lp-edu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(88, 85, 255, 0.18);
}
.lp-edu-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
}
.lp-edu-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
  letter-spacing: -0.03em;
}
.lp-edu-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ─── VERSUS CARDS ─────────────────────────────────────── */
.lp-versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.lp-versus-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow-md);
}

.lp-versus-bad  { border-top: 3px solid #EF4444; }
.lp-versus-good { border-top: 3px solid var(--primary); }

.lp-versus-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  width: fit-content;
  border: 1px solid transparent;
}
.lp-versus-bad  .lp-versus-label { background: #FEF2F2; color: #DC2626; border-color: #FECACA; }
.lp-versus-good .lp-versus-label { background: var(--primary-soft); color: var(--primary); border-color: rgba(88,85,255,0.15); }

.lp-versus-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.lp-versus-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-main);
  font-weight: 500;
}
.lp-versus-card ul li svg { flex-shrink: 0; margin-top: 2px; }

.lp-versus-bad  ul li svg { color: #EF4444; opacity: 0.7; }
.lp-versus-good ul li svg { color: var(--primary); }

.lp-versus-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}
.lp-versus-divider span {
  background: var(--bg-soft);
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .lp-versus {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lp-versus-divider { padding: 0; }
  .lp-versus-divider span { width: 36px; height: 36px; margin: 0 auto; }
}

/* ─── COMPARISON TABLE (legacy, kept for safety) ────────── */
.lp-comparison-box {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.lp-comparison-header {
  padding: 32px 36px 28px;
  border-bottom: 1px solid var(--border);
}
.lp-comparison-header h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 6px;
}
.lp-comparison-header h3 span {
  color: var(--text-muted);
  font-weight: 500;
  font-style: italic;
}
.lp-comparison-header p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.lp-table-wrapper { overflow-x: auto; }
.lp-comparison-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

/* col widths */
.lp-comparison-table .lp-col-feature  { width: 28%; }
.lp-comparison-table .lp-col-without  { width: 36%; }
.lp-comparison-table .lp-col-with     { width: 36%; }

/* header */
.lp-comparison-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--border);
}
.lp-comparison-table thead .lp-col-feature {
  background: var(--bg-soft);
  color: var(--text-muted);
}
.lp-comparison-table thead .lp-col-without {
  background: #FEF2F2;
  color: #EF4444;
  display: table-cell;
}
.lp-comparison-table thead .lp-col-with {
  background: var(--primary-soft);
  color: var(--primary);
  position: relative;
}
.lp-comparison-table thead th {
  display: table-cell;
}
.lp-comparison-table thead .lp-col-without,
.lp-comparison-table thead .lp-col-with {
  display: table-cell;
  vertical-align: middle;
}
th.lp-col-without, th.lp-col-with {
  display: table-cell !important;
  align-items: center;
  gap: 6px;
}

.lp-col-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}

/* body rows */
.lp-comparison-table tbody td {
  padding: 16px 20px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.lp-comparison-table tbody tr:last-child td { border-bottom: none; }

.lp-comparison-table tbody .lp-col-feature {
  font-weight: 700;
  color: var(--text-main);
  font-size: 14px;
  background: var(--bg-soft);
}
.lp-comparison-table tbody .lp-col-without {
  background: #FFFAFA;
}
.lp-comparison-table tbody .lp-col-with {
  background: rgba(88, 85, 255, 0.025);
}
.lp-comparison-table tbody tr:hover .lp-col-feature  { background: #F0F0F4; }
.lp-comparison-table tbody tr:hover .lp-col-without  { background: #FEE9E9; }
.lp-comparison-table tbody tr:hover .lp-col-with     { background: rgba(88,85,255,0.06); }

.lp-cell-bad {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #EF4444;
  font-weight: 500;
}
.lp-cell-bad svg { flex-shrink: 0; opacity: 0.8; }

.lp-cell-good {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-weight: 600;
}
.lp-cell-good svg { flex-shrink: 0; }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-steps::before { display: none; }
}

@media (max-width: 768px) {
  .lp-nav { top: 12px; width: calc(100% - 24px); height: 56px; padding: 0 14px; }
  .lp-nav-links { display: none; }
  .lp-hero { padding: 130px 0 80px; }
  .lp-hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .lp-hero-ctas .lp-btn-primary,
  .lp-hero-ctas .lp-btn-ghost { width: 100%; justify-content: center; }
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: 1fr; gap: 36px; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .lp-pricing-card.highlighted { transform: none; }
  .lp-testimonials { grid-template-columns: 1fr; }
  .lp-edu-grid { grid-template-columns: 1fr; }
  .lp-footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .lp-footer-links { justify-content: center; }
  .lp-footer-inner > div > p { max-width: 100%; }
  .lp-cta-final p { margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-comparison-table th:nth-child(2),
  .lp-comparison-table td:nth-child(2) { display: none; }
  .lp-trust-div { display: none; }
  .lp-trust span { padding: 4px 10px; }
}

/* ─── SHOWCASE (screenshots) ────────────────────────────── */
.sc-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  margin-bottom: 0;
  align-items: start;
}
.sc-frame {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sc-browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.sc-dots { display: flex; gap: 5px; }
.sc-dots span { width: 9px; height: 9px; border-radius: 50%; }
.sc-dots span:nth-child(1) { background: #FF5F57; }
.sc-dots span:nth-child(2) { background: #FEBC2E; }
.sc-dots span:nth-child(3) { background: #28C840; }
.sc-url-bar {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
  max-width: 220px;
  margin: 0 auto;
}
.sc-frame img { width: 100%; display: block; }
.sc-caption {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sc-caption strong { font-size: 13px; font-weight: 700; color: var(--text-main); letter-spacing: -0.01em; }
.sc-caption span { font-size: 11.5px; color: var(--text-muted); line-height: 1.4; }
.sc-phones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
/* ─── SETUP STEPS ─── */
.sc-setup {
  padding-top: 72px;
  margin-top: 64px;
  border-top: 1px solid var(--border);
}
.sc-setup-title {
  text-align: center;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.sc-setup-grid {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr;
  gap: 0 12px;
  align-items: start;
}
.sc-setup-divider {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  color: var(--text-muted);
  opacity: 0.35;
}
.sc-setup-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sc-step-num {
  position: absolute;
  top: -10px; left: -10px;
  width: 26px; height: 26px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(88,85,255,0.4);
  z-index: 1;
}
.sc-setup-step img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: block;
}
@media (max-width: 960px) {
  .sc-split { grid-template-columns: 1fr; }
  .sc-phones { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .sc-setup-grid { grid-template-columns: 1fr; gap: 32px; }
  .sc-setup-divider { display: none; }
  .sc-setup-step img { height: 200px; }
  .sc-setup { padding-top: 48px; margin-top: 48px; }
}
@media (max-width: 480px) {
  .sc-phones { grid-template-columns: 1fr; max-width: 280px; }
}

/* ─── MISC ──────────────────────────────────────────────── */
.spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(88,85,255,0.10);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── HERO STAT ─────────────────────────────────────────── */
.lp-hero-stat {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 20px;
  max-width: 480px;
  text-align: center;
}
.lp-hero-stat strong { color: var(--primary); font-weight: 700; }

/* ─── NÚMEROS COMPROVAM ─────────────────────────────────── */
.lp-numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.lp-numero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-top: 3px solid var(--primary);
}
.lp-numero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(88, 85, 255, 0.25);
}
.lp-numero-card strong {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.lp-numero-card span {
  font-size: 14px;
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.lp-numero-card cite {
  font-style: normal;
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: auto;
}
.lp-numeros-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .lp-numeros-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .lp-numeros-grid { grid-template-columns: 1fr; }
}

/* ─── CALCULADORA ───────────────────────────────────────── */
.lp-calc-wrapper { max-width: 860px; margin: 0 auto; }

.lp-calc-inputs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.lp-calc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-calc-field label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lp-calc-input-wrap {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lp-calc-input-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(88,85,255,0.10);
}
.lp-calc-prefix, .lp-calc-suffix {
  padding: 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.lp-calc-prefix { border-right: 1.5px solid var(--border); }
.lp-calc-suffix { border-left: 1.5px solid var(--border); }
.lp-calc-input-wrap input {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
  border: none;
  outline: none;
  width: 100%;
  padding: 12px 10px;
  background: transparent;
  min-width: 0;
  -moz-appearance: textfield;
}
.lp-calc-input-wrap input::-webkit-outer-spin-button,
.lp-calc-input-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; }

.lp-calc-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.lp-calc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-calc-card-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lp-calc-card-value {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--primary);
  line-height: 1.1;
}
.lp-calc-card-cost { color: #EF4444; }
.lp-calc-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.lp-calc-gain {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-calc-gain::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(88,85,255,0.28) 0%, transparent 60%);
  pointer-events: none;
}
.lp-calc-gain-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}
.lp-calc-gain-value {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.70) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  line-height: 1;
}
.lp-calc-gain-note {
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .lp-calc-inputs { grid-template-columns: repeat(2, 1fr); }
  .lp-calc-metrics { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .lp-calc-inputs { grid-template-columns: 1fr; padding: 20px; }
}

.lp-hero-h1-accent {
  background: linear-gradient(90deg, #5855ff 0%, #8b3dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ──────────────────────────────────────────────────────────────────────
   COMO FUNCIONA NO BALCÃO — fluxo visual com mockups CSS
   ──────────────────────────────────────────────────────────────────── */
.lp-balcao-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f7ff 100%);
}
.lp-balcao-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  margin: 48px 0 32px;
  flex-wrap: wrap;
}
.lp-balcao-step {
  flex: 1 1 200px;
  max-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.lp-balcao-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5855ff, #8b3dff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(88, 85, 255, 0.35);
}
.lp-balcao-step h3 {
  font-size: 1.02rem;
  font-weight: 800;
  margin: 16px 0 6px;
  color: #111;
  letter-spacing: -0.01em;
}
.lp-balcao-step p {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}
.lp-balcao-arrow {
  color: #c4c0e8;
  flex-shrink: 0;
  align-self: center;
  margin-top: 80px;
}

/* Phone mockup */
.lp-balcao-phone {
  width: 170px;
  height: 280px;
  background: #1a1a1a;
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.08);
  position: relative;
}
.lp-balcao-phone-notch {
  width: 50px;
  height: 16px;
  background: #1a1a1a;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.lp-balcao-phone-screen {
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 12px 14px;
  position: relative;
  gap: 8px;
}

/* Step 1 — Camera viewfinder + QR */
.lp-balcao-phone-screen-camera {
  background: #0a0a0a;
  color: #fff;
}
.lp-balcao-camera-frame {
  position: relative;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  margin-top: 4px;
}
.lp-balcao-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid #5855ff;
}
.lp-balcao-corner-tl { top: 0; left: 0; border-right: 0; border-bottom: 0; border-top-left-radius: 4px; }
.lp-balcao-corner-tr { top: 0; right: 0; border-left: 0; border-bottom: 0; border-top-right-radius: 4px; }
.lp-balcao-corner-bl { bottom: 0; left: 0; border-right: 0; border-top: 0; border-bottom-left-radius: 4px; }
.lp-balcao-corner-br { bottom: 0; right: 0; border-left: 0; border-top: 0; border-bottom-right-radius: 4px; }
.lp-balcao-qr {
  width: 80px;
  height: 80px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 2px;
  background: #fff;
  padding: 4px;
  border-radius: 4px;
}
.lp-balcao-qr > div {
  background: #fff;
}
/* QR pattern — finder squares + dummy data */
.lp-balcao-qr > div:nth-child(1),  .lp-balcao-qr > div:nth-child(2),  .lp-balcao-qr > div:nth-child(3),
.lp-balcao-qr > div:nth-child(5),  .lp-balcao-qr > div:nth-child(6),  .lp-balcao-qr > div:nth-child(7),
.lp-balcao-qr > div:nth-child(8),  .lp-balcao-qr > div:nth-child(10), .lp-balcao-qr > div:nth-child(12),
.lp-balcao-qr > div:nth-child(14), .lp-balcao-qr > div:nth-child(15), .lp-balcao-qr > div:nth-child(17),
.lp-balcao-qr > div:nth-child(19), .lp-balcao-qr > div:nth-child(21), .lp-balcao-qr > div:nth-child(22),
.lp-balcao-qr > div:nth-child(24), .lp-balcao-qr > div:nth-child(26), .lp-balcao-qr > div:nth-child(28),
.lp-balcao-qr > div:nth-child(30), .lp-balcao-qr > div:nth-child(33), .lp-balcao-qr > div:nth-child(35),
.lp-balcao-qr > div:nth-child(36), .lp-balcao-qr > div:nth-child(38), .lp-balcao-qr > div:nth-child(40),
.lp-balcao-qr > div:nth-child(42), .lp-balcao-qr > div:nth-child(43), .lp-balcao-qr > div:nth-child(45),
.lp-balcao-qr > div:nth-child(46), .lp-balcao-qr > div:nth-child(47), .lp-balcao-qr > div:nth-child(49) {
  background: #111;
}
.lp-balcao-phone-label {
  font-size: 0.7rem;
  opacity: 0.8;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Step 2 — Code display */
.lp-balcao-phone-screen-code {
  background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 100%);
  color: #111;
}
.lp-balcao-code-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  font-weight: 600;
}
.lp-balcao-code-value {
  font-family: "Courier New", monospace;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  background: linear-gradient(90deg, #5855ff, #8b3dff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.lp-balcao-code-hint {
  font-size: 0.7rem;
  color: #6b7280;
  font-weight: 500;
}
.lp-balcao-saldo-badge {
  margin-top: 6px;
  font-size: 0.72rem;
  background: #f1f0ff;
  color: #5855ff;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
}

/* Step 3 — Desktop screen mockup */
.lp-balcao-screen {
  width: 200px;
  height: 280px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}
.lp-balcao-screen-bar {
  background: #f3f4f6;
  padding: 8px 10px;
  display: flex;
  gap: 5px;
  border-bottom: 1px solid #e5e7eb;
}
.lp-balcao-screen-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e5e7eb;
}
.lp-balcao-screen-bar span:nth-child(1) { background: #ff5f57; }
.lp-balcao-screen-bar span:nth-child(2) { background: #febc2e; }
.lp-balcao-screen-bar span:nth-child(3) { background: #28c840; }
.lp-balcao-screen-body {
  padding: 18px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-balcao-screen-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.01em;
}
.lp-balcao-pin-row {
  display: flex;
  gap: 4px;
  justify-content: center;
}
.lp-balcao-pin-row span {
  width: 26px;
  height: 32px;
  background: #f1f0ff;
  border: 1.5px solid #5855ff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Courier New", monospace;
  font-weight: 800;
  color: #5855ff;
  font-size: 0.85rem;
}
.lp-balcao-input {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 9px 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #111;
  text-align: left;
}
.lp-balcao-btn {
  background: linear-gradient(90deg, #5855ff, #8b3dff);
  color: #fff;
  border-radius: 999px;
  padding: 9px 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Step 4 — Success notification */
.lp-balcao-phone-screen-success {
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 60%);
  color: #111;
  gap: 6px;
}
.lp-balcao-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
  animation: lp-balcao-pop 1.8s ease-in-out infinite;
}
@keyframes lp-balcao-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.lp-balcao-success-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #158a4a;
  margin-top: 6px;
}
.lp-balcao-success-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: #16a34a;
  line-height: 1;
  letter-spacing: -0.01em;
}
.lp-balcao-success-saldo {
  font-size: 0.7rem;
  color: #6b7280;
  font-weight: 500;
}

.lp-balcao-cta-wrap {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

@media (max-width: 900px) {
  .lp-balcao-flow {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .lp-balcao-arrow {
    transform: rotate(90deg);
    margin-top: 0;
  }
  .lp-balcao-step { max-width: 280px; }
}

/* ──────────────────────────────────────────────────────────────────────
   RECUPERAÇÃO ATIVA — WhatsApp + clientes sumidos
   ──────────────────────────────────────────────────────────────────── */
.lp-recuperar-section {
  background: linear-gradient(180deg, #f8f7ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.lp-recuperar-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(139, 61, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.lp-recuperar-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.lp-recuperar-copy h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 14px 0 22px;
}
.lp-recuperar-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0 0 26px;
}
.lp-recuperar-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-recuperar-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #1f2937;
}
.lp-recuperar-features li svg {
  color: #25D366; /* WhatsApp green */
  flex-shrink: 0;
  margin-top: 2px;
  background: #DCFCE7;
  border-radius: 50%;
  padding: 4px;
  width: 26px;
  height: 26px;
}
.lp-recuperar-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.lp-chip-accent {
  background: linear-gradient(90deg, #25D366 0%, #128C7E 100%) !important;
  color: #fff !important;
  border: none !important;
}

/* WhatsApp mockup */
.lp-recuperar-mockup-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lp-whatsapp-mock {
  width: 100%;
  max-width: 380px;
  background: #ECE5DD;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(88, 85, 255, 0.18),
    0 4px 12px rgba(0, 0, 0, 0.08);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.lp-whatsapp-header {
  background: #075E54;
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-whatsapp-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5855ff, #8b3dff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.lp-whatsapp-headinfo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-whatsapp-headinfo strong {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.lp-whatsapp-headinfo span {
  font-size: 0.72rem;
  opacity: 0.85;
}
.lp-whatsapp-body {
  padding: 20px 14px;
  background:
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px) 0 0/14px 14px,
    #ECE5DD;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-whatsapp-bubble {
  background: #DCF8C6;
  align-self: flex-end;
  max-width: 85%;
  border-radius: 12px 0 12px 12px;
  padding: 10px 12px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  position: relative;
  color: #111;
  font-size: 0.9rem;
  line-height: 1.4;
}
.lp-whatsapp-bubble p {
  margin: 0 0 6px;
}
.lp-whatsapp-bubble p:last-of-type {
  margin-bottom: 4px;
}
.lp-whatsapp-bubble strong {
  font-weight: 600;
}
.lp-whatsapp-time {
  display: block;
  text-align: right;
  font-size: 0.68rem;
  color: #667781;
  margin-top: 4px;
}
.lp-whatsapp-typing {
  align-self: flex-start;
  font-size: 0.75rem;
  color: #667781;
  background: #fff;
  border-radius: 12px 12px 12px 0;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
  animation: lp-fade-typing 1.6s ease-in-out infinite;
}
.lp-whatsapp-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #667781;
  display: inline-block;
  animation: lp-typing-dot 1.2s ease-in-out infinite;
}
.lp-whatsapp-typing span:nth-child(2) { animation-delay: 0.2s; }
.lp-whatsapp-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes lp-typing-dot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-2px); }
}
@keyframes lp-fade-typing {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}
.lp-recuperar-mockup-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #6b7280;
  font-weight: 500;
}
.lp-recuperar-mockup-label svg {
  color: #5855ff;
}

@media (max-width: 900px) {
  .lp-recuperar-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lp-recuperar-mockup-wrap {
    order: 2;
  }
  .lp-recuperar-copy h2 {
    text-align: center;
  }
  .lp-recuperar-lead {
    text-align: center;
  }
  .lp-recuperar-cta-wrap {
    align-items: center;
  }
  .lp-recuperar-section::before { display: none; }
}

/* Reassurance text below CTAs */
.lp-cta-reassurance {
  margin: 14px 0 0;
  font-size: 0.8rem;
  color: #6b7280;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.lp-plan-reassurance {
  margin: 10px 0 6px;
  font-size: 0.72rem;
  color: #6b7280;
  text-align: center;
  font-weight: 500;
}

/* CTA inside calculator */
.lp-calc-cta {
  margin: 22px auto 0;
  display: inline-flex !important;
  font-size: 1.05rem;
}

/* Sticky bottom CTA (mobile only) */
.lp-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(90deg, #5855ff 0%, #8b3dff 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(88, 85, 255, 0.35), 0 4px 12px rgba(0, 0, 0, 0.12);
  font-family: inherit;
  transform: translateY(120%);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}
.lp-sticky-cta.visible { transform: translateY(0); }
.lp-sticky-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.lp-sticky-cta-text strong {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.lp-sticky-cta-text small {
  font-size: 0.7rem;
  opacity: 0.85;
  font-weight: 500;
}
@media (max-width: 768px) {
  .lp-sticky-cta { display: flex; }
  /* room for the sticky bar so it doesn't cover the final CTA */
  .lp-cta-final { padding-bottom: 120px; }
}
