:root {
  --lp-green:        #22D17C;
  --lp-green-dark:   #1aad63;
  --lp-green-soft:   rgba(34,209,124,0.10);
  --lp-green-glow:   rgba(34,209,124,0.30);
  --lp-green-line:   rgba(34,209,124,0.25);

  --lp-bg:           #0D1117;
  --lp-surface:      #161B22;
  --lp-surface-2:    #1C2330;
  --lp-border:       #2A3038;
  --lp-border-soft:  rgba(42,48,56,0.5);

  --lp-text:         #E6EDF3;
  --lp-text-muted:   #8B949E;
  --lp-text-dim:     #4D5866;

  --lp-danger:       #F85149;
  --lp-warning:      #D29922;

  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --nav-h:      64px;
}

.lp, .lp *, .lp *::before, .lp *::after { box-sizing: border-box; margin: 0; padding: 0; }
.lp {
  position: relative;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--lp-bg);
  background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 28px 28px;
  color: var(--lp-text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.lp a { text-decoration: none; color: inherit; }
.lp html { scroll-behavior: smooth; }

.lp body::before, .lp body::after { content: none; }
.lp-bg-blob-1, .lp-bg-blob-2 {
  content: ''; position: fixed; z-index: 0; border-radius: 50%;
  pointer-events: none; filter: blur(120px); animation: lp-blob-drift 22s ease-in-out infinite;
}
.lp-bg-blob-1 { top: -12%; left: -8%; width: 620px; height: 620px; background: var(--lp-green); opacity: .14; }
.lp-bg-blob-2 { bottom: -18%; right: -10%; width: 680px; height: 680px; background: #388BFD; opacity: .08; animation-direction: reverse; animation-duration: 28s; }
@keyframes lp-blob-drift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(50px,34px); } }
@media (prefers-reduced-motion: reduce) { .lp-bg-blob-1, .lp-bg-blob-2 { animation: none; } }
.lp-nav, .lp-hero, .lp section, .lp footer, .lp-mobile-menu { position: relative; z-index: 1; }

/* ── NAV ── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(13,17,23,0.90);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lp-border-soft);
  z-index: 900;
  display: flex; align-items: center; padding: 0 32px; gap: 24px;
}
.lp-nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lp-nav-logo {
  width: 34px; height: 34px; background: var(--lp-green); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: #0D1117; font-size: 15px;
}
.lp-nav-name { font-size: 18px; font-weight: 800; letter-spacing: -0.3px; }
.lp-nav-name span { color: var(--lp-green); }
.lp-nav-links { display: flex; gap: 4px; flex: 1; margin-left: 16px; }
.lp-nav-link {
  color: var(--lp-text-muted); font-size: 14px; font-weight: 500;
  padding: 6px 12px; border-radius: var(--radius-sm); transition: color .15s, background .15s;
}
.lp-nav-link:hover { color: var(--lp-text); background: var(--lp-surface); }
.lp-nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.lp-btn-login {
  background: none; border: 1px solid var(--lp-border); color: var(--lp-text-muted);
  padding: 7px 18px; border-radius: var(--radius-sm); font-size: 13.5px; font-weight: 600;
  transition: border-color .15s, color .15s;
}
.lp-btn-login:hover { border-color: var(--lp-text-dim); color: var(--lp-text); }
.lp-btn-nav-cta {
  background: var(--lp-green); color: #0D1117; padding: 7px 18px;
  border-radius: var(--radius-sm); font-size: 13.5px; font-weight: 700; transition: background .15s;
}
.lp-btn-nav-cta:hover { background: var(--lp-green-dark); }
.lp-hamburger {
  display: none; background: none; border: none; color: var(--lp-text-muted);
  cursor: pointer; padding: 6px; margin-left: auto;
}
.lp-hamburger svg { width: 22px; height: 22px; display: block; }
.lp-mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--lp-surface); border-bottom: 1px solid var(--lp-border);
  z-index: 899; padding: 16px; flex-direction: column; gap: 8px;
}
.lp-mobile-menu.open { display: flex; }
.lp-mobile-menu .lp-nav-link { display: block; padding: 10px 12px; }
.lp-mobile-menu-actions { display: flex; gap: 10px; margin-top: 8px; }
.lp-mobile-menu-actions a { flex: 1; text-align: center; }

/* ── HERO ── */
.lp-hero { padding: calc(var(--nav-h) + 80px) 32px 60px; text-align: center; overflow: hidden; }
.lp-hero-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at 50% 0%, rgba(34,209,124,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--lp-green-soft); border: 1px solid var(--lp-green-line);
  color: var(--lp-green); font-size: 12.5px; font-weight: 700;
  letter-spacing: .4px; padding: 6px 16px; border-radius: 20px; margin-bottom: 28px;
}
.lp-eyebrow-dot { width: 6px; height: 6px; background: var(--lp-green); border-radius: 50%; animation: lp-pulse 2s ease-in-out infinite; }
@keyframes lp-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.8); } }

.lp-hero-content { max-width: 720px; margin: 0 auto; position: relative; }
.lp-hero-title {
  font-size: clamp(32px, 4.6vw, 52px); font-weight: 900; line-height: 1.12;
  letter-spacing: -1.4px; margin-bottom: 20px;
}
.lp-hero-title .accent { color: var(--lp-green); }
.lp-hero-sub { font-size: clamp(15px, 1.6vw, 18px); color: var(--lp-text-muted); margin-bottom: 34px; line-height: 1.7; }
.lp-hero-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 30px; }
.lp-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--lp-surface); border: 1px solid var(--lp-border);
  color: var(--lp-text-muted); font-size: 12.5px; font-weight: 600;
  padding: 6px 12px; border-radius: 8px;
}
.lp-hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.lp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 700; cursor: pointer; border: none; transition: all .15s;
}
.lp-btn-primary { background: var(--lp-green); color: #0D1117; box-shadow: 0 0 32px var(--lp-green-glow); }
.lp-btn-primary:hover { background: var(--lp-green-dark); box-shadow: 0 0 48px var(--lp-green-glow); transform: translateY(-1px); }
.lp-btn-secondary { background: var(--lp-surface); color: var(--lp-text-muted); border: 1px solid var(--lp-border); }
.lp-btn-secondary:hover { color: var(--lp-text); border-color: var(--lp-text-dim); }
.lp-hero-rodape { font-size: 13px; color: var(--lp-text-dim); }

/* mockup do painel real, na hero */
.lp-hero-mockup { margin: 60px auto 0; max-width: 900px; }
.lp-mockup-inner {
  background: var(--lp-surface); border: 1px solid var(--lp-border);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px var(--lp-border-soft);
  text-align: left;
}
.lp-mockup-bar {
  background: var(--lp-surface-2); border-bottom: 1px solid var(--lp-border);
  padding: 12px 16px; display: flex; align-items: center; gap: 8px;
}
.lp-mockup-dots { display: flex; gap: 6px; }
.lp-mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.lp-mockup-dot:nth-child(1) { background: #F85149; }
.lp-mockup-dot:nth-child(2) { background: #D29922; }
.lp-mockup-dot:nth-child(3) { background: var(--lp-green); }
.lp-mockup-url {
  flex: 1; background: var(--lp-bg); border: 1px solid var(--lp-border);
  border-radius: var(--radius-sm); padding: 4px 12px; font-size: 12px; color: var(--lp-text-dim);
  text-align: center; max-width: 320px; margin: 0 auto;
}
.lp-mockup-body { padding: 20px; }
.lp-mockup-filtros { display: grid; grid-template-columns: repeat(auto-fit,minmax(120px,1fr)); gap: 10px; margin-bottom: 16px; }
.lp-mockup-campo { background: var(--lp-bg); border: 1px solid var(--lp-border); border-radius: 7px; padding: 9px 12px; }
.lp-mockup-campo-label { font-size: 9px; color: var(--lp-text-dim); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 4px; }
.lp-mockup-campo-valor { font-size: 12.5px; font-weight: 600; color: var(--lp-text); }
.lp-mockup-resultado {
  background: var(--lp-bg); border: 1px solid var(--lp-green-line); border-radius: 8px;
  padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.lp-mockup-resultado-num { font-size: 22px; font-weight: 900; color: var(--lp-green); }
.lp-mockup-resultado-label { font-size: 11px; color: var(--lp-text-dim); }
.lp-mockup-btn-csv {
  background: var(--lp-green); color: #0D1117; font-size: 12px; font-weight: 700;
  padding: 8px 16px; border-radius: 6px;
}

/* ── STATS BAR ── */
.lp-stats-bar { padding: 0 32px; }
.lp-stats-inner {
  max-width: 1100px; margin: 0 auto;
  background: var(--lp-surface); border: 1px solid var(--lp-border);
  border-radius: var(--radius-xl); display: grid;
  grid-template-columns: repeat(3, 1fr); overflow: hidden;
}
.lp-stat-item { padding: 28px 32px; border-right: 1px solid var(--lp-border); text-align: center; }
.lp-stat-item:last-child { border-right: none; }
.lp-stat-num { font-size: 34px; font-weight: 900; color: var(--lp-green); line-height: 1; margin-bottom: 6px; }
.lp-stat-desc { font-size: 13px; color: var(--lp-text-muted); font-weight: 500; }

/* ── SECTIONS COMMON ── */
.lp section { padding: 80px 32px; }
.lp-container { max-width: 1100px; margin: 0 auto; }
.lp-section-label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--lp-green); margin-bottom: 14px; }
.lp-section-title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 900; letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px; }
.lp-section-sub { font-size: 16px; color: var(--lp-text-muted); max-width: 560px; line-height: 1.7; }
.lp-text-center { text-align: center; }
.lp-text-center .lp-section-sub { margin: 0 auto; }
.lp-secao-escura { background: var(--lp-surface); }

/* ── STEPS ── */
.lp-steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; margin-top: 52px; position: relative;
}
.lp-steps-grid::before {
  content: ''; position: absolute; top: 27px; width: 80%; left: 10%; height: 1px;
  pointer-events: none; background: var(--lp-green);
}
.lp-step-card { padding: 20px; text-align: center; position: relative; }
.lp-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--lp-bg); border: 2px solid var(--lp-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: var(--lp-green);
  margin: 0 auto 18px; position: relative; z-index: 1; transition: border-color .2s, background .2s;
}
.lp-step-card:hover .lp-step-num { border-color: var(--lp-green); background: var(--lp-green-soft); }
.lp-step-title { font-size: 14.5px; font-weight: 700; margin-bottom: 8px; }
.lp-step-desc { font-size: 13px; color: var(--lp-text-muted); line-height: 1.6; }

/* ── FILTER CHIPS / FEATURES ── */
.lp-grid-filtros { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; margin-top: 52px; }
.lp-filtro-chip {
  background: var(--lp-surface); border: 1px solid var(--lp-border); border-radius: var(--radius);
  padding: 16px 18px; transition: border-color .2s, transform .2s;
}
.lp-filtro-chip:hover { border-color: var(--lp-green-line); transform: translateY(-2px); }
.lp-filtro-chip strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.lp-filtro-chip small { color: var(--lp-text-muted); font-size: 12.5px; }

.lp-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 52px; }
.lp-feat-card {
  background: var(--lp-surface); border: 1px solid var(--lp-border);
  border-radius: var(--radius-lg); padding: 28px; transition: border-color .2s, transform .2s;
}
.lp-feat-card:hover { border-color: var(--lp-green-line); transform: translateY(-2px); }
.lp-feat-icon {
  width: 44px; height: 44px; background: var(--lp-green-soft);
  border: 1px solid var(--lp-green-line); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  color: var(--lp-green); font-size: 20px;
}
.lp-feat-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.lp-feat-desc { font-size: 13.5px; color: var(--lp-text-muted); line-height: 1.65; }

/* ── SOCIAL PROOF NUMBERS ── */
.lp-proof-numbers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.lp-proof-num-card { text-align: center; padding: 24px; background: var(--lp-bg); border: 1px solid var(--lp-border); border-radius: var(--radius-lg); }
.lp-proof-num-val { font-size: 30px; font-weight: 900; color: var(--lp-green); line-height: 1; margin-bottom: 6px; }
.lp-proof-num-label { font-size: 13px; color: var(--lp-text-muted); }

/* ── PLANS ── */
.lp-plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 52px; align-items: start; }
.lp-plan-card {
  background: var(--lp-bg); border: 1px solid var(--lp-border);
  border-radius: var(--radius-lg); padding: 28px; position: relative; transition: border-color .2s;
  text-align: center;
}
.lp-plan-card:hover { border-color: var(--lp-text-dim); }
.lp-plan-card.destaque { border-color: var(--lp-green); box-shadow: 0 0 40px rgba(34,209,124,0.08); }
.lp-plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--lp-green); color: #0D1117; font-size: 11px; font-weight: 700;
  padding: 3px 14px; border-radius: 20px; white-space: nowrap;
}
.lp-plan-name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--lp-text-muted); margin-bottom: 14px; }
.lp-plan-creditos { font-size: 30px; font-weight: 900; color: var(--lp-green); line-height: 1; margin-bottom: 6px; }
.lp-plan-preco { font-size: 14px; color: var(--lp-text-dim); margin-bottom: 22px; }
.lp-btn-plan { width: 100%; display: block; }

/* ── FAQ ── */
.lp-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 52px; }
.lp-faq-item {
  background: var(--lp-surface); border: 1px solid var(--lp-border);
  border-radius: var(--radius-lg); padding: 22px 24px; cursor: pointer; transition: border-color .15s;
}
.lp-faq-item:hover { border-color: var(--lp-green-line); }
.lp-faq-q { font-size: 14.5px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.lp-faq-chevron { width: 18px; height: 18px; flex-shrink: 0; color: var(--lp-text-dim); transition: transform .2s; }
.lp-faq-item.open .lp-faq-chevron { transform: rotate(180deg); color: var(--lp-green); }
.lp-faq-a { display: none; font-size: 13.5px; color: var(--lp-text-muted); line-height: 1.7; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--lp-border-soft); }
.lp-faq-item.open .lp-faq-a { display: block; }

/* ── CTA FINAL ── */
.lp-cta-section { padding: 90px 32px; text-align: center; position: relative; overflow: hidden; }
.lp-cta-glow {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at 50% 100%, rgba(34,209,124,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.lp-cta-section .lp-section-title { max-width: 620px; margin: 0 auto 16px; }
.lp-cta-section .lp-section-sub { margin: 0 auto 36px; }
.lp-cta-trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin-top: 32px; }
.lp-cta-trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--lp-text-muted); }
.lp-cta-trust-item svg { color: var(--lp-green); flex-shrink: 0; }

/* ── FOOTER ── */
.lp footer { background: var(--lp-surface); border-top: 1px solid var(--lp-border); padding: 40px 32px; }
.lp-footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.lp-footer-brand { font-size: 16px; font-weight: 800; }
.lp-footer-brand span { color: var(--lp-green); }
.lp-footer-links { display: flex; gap: 20px; }
.lp-footer-link { font-size: 13px; color: var(--lp-text-muted); }
.lp-footer-link:hover { color: var(--lp-text); }
.lp-footer-copy { font-size: 13px; color: var(--lp-text-dim); }

/* ── EXIT INTENT MODAL (lembra do bônus de créditos, sem cupom) ── */
.lp-exit-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.72);
  z-index: 1200; display: none; align-items: center; justify-content: center; padding: 20px;
}
.lp-exit-overlay.open { display: flex; }
.lp-exit-box {
  position: relative; width: 100%; max-width: 420px;
  background: var(--lp-surface); border: 1px solid var(--lp-green-line);
  border-radius: var(--radius-xl); padding: 40px 32px 32px; text-align: center;
  box-shadow: 0 0 60px rgba(34,209,124,.15), 0 20px 60px rgba(0,0,0,.5);
}
.lp-exit-close {
  position: absolute; top: 14px; right: 14px; width: 30px; height: 30px;
  background: var(--lp-surface-2); border: 1px solid var(--lp-border); border-radius: 50%;
  color: var(--lp-text-muted); cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.lp-exit-close:hover { color: var(--lp-text); border-color: var(--lp-text-dim); }
.lp-exit-eyebrow {
  display: inline-flex; align-items: center; gap: 6px; background: var(--lp-green-soft);
  border: 1px solid var(--lp-green-line); color: var(--lp-green); font-size: 11.5px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 18px;
}
.lp-exit-title { font-size: 25px; font-weight: 900; letter-spacing: -.5px; margin-bottom: 10px; }
.lp-exit-title .accent { color: var(--lp-green); }
.lp-exit-sub { font-size: 13.5px; color: var(--lp-text-muted); line-height: 1.6; margin-bottom: 24px; }
.lp-exit-cta { display: block; width: 100%; padding: 13px; font-size: 14.5px; margin-bottom: 12px; }
.lp-exit-dismiss { font-size: 12.5px; color: var(--lp-text-dim); background: none; border: none; cursor: pointer; text-decoration: underline; }

/* ── SOCIAL PROOF TOAST ── */
.lp-proof-toast {
  position: fixed; bottom: 28px; left: 28px; z-index: 950;
  max-width: 300px; background: var(--lp-surface); border: 1px solid var(--lp-border);
  border-radius: var(--radius-lg); padding: 14px 16px; box-shadow: 0 12px 32px rgba(0,0,0,.4);
  display: flex; align-items: center; gap: 12px;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.lp-proof-toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.lp-proof-toast-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--lp-green-soft); border: 1.5px solid var(--lp-green-line);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; color: var(--lp-green);
}
.lp-proof-toast-text { font-size: 12.5px; color: var(--lp-text-muted); line-height: 1.5; }
.lp-proof-toast-text strong { color: var(--lp-text); }
.lp-proof-toast-time { font-size: 11px; color: var(--lp-text-dim); margin-top: 2px; }
.lp-proof-toast-close { margin-left: auto; align-self: flex-start; background: none; border: none; color: var(--lp-text-dim); cursor: pointer; font-size: 15px; line-height: 1; flex-shrink: 0; padding: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .lp-nav-links, .lp-nav-actions { display: none; }
  .lp-hamburger { display: block; }
  .lp-faq-grid { grid-template-columns: 1fr; }
  .lp-stats-inner { grid-template-columns: 1fr; }
  .lp-stat-item { border-right: none; border-bottom: 1px solid var(--lp-border); }
  .lp-stat-item:last-child { border-bottom: none; }
  .lp-proof-numbers { grid-template-columns: 1fr; }
  .lp-footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .lp section { padding: 60px 20px; }
  .lp-hero { padding: calc(var(--nav-h) + 48px) 20px 48px; }
  .lp-stats-bar { padding: 0 20px; }
  .lp-plans-grid { grid-template-columns: 1fr; }
  .lp-steps-grid { grid-template-columns: 1fr 1fr; }
  .lp-steps-grid::before { display: none; }
  .lp-nav { padding: 0 20px; }
  .lp-proof-toast { left: 14px; right: 14px; bottom: 14px; max-width: none; }
  .lp-exit-box { padding: 32px 22px 26px; }
}
