/* Seguidor SMM — Landing premium (referência TurboSMM visual) */
:root {
  --primary: #6D28D9;
  --primary-2: #7C3AED;
  --primary-3: #8B5CF6;
  --primary-light: #A78BFA;
  --primary-soft: #F5F3FF;
  --primary-ultra-soft: #FAF8FF;
  --dark: #12102B;
  --dark-purple: #1C1454;
  --text: #15132B;
  --text-secondary: #6F6B80;
  --muted: #9894A8;
  --white: #FFFFFF;
  --background: #FFFFFF;
  --surface: #FFFFFF;
  --border: #EBE8F3;
  --border-soft: #ECE8F4;
  --ink: #15132B;
  --ink-soft: #6F6B80;
  --max: 1180px;
  --font: "Plus Jakarta Sans", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --grad-main: linear-gradient(135deg, #5B21B6 0%, #7C3AED 50%, #8B5CF6 100%);
  --grad-dark: linear-gradient(135deg, #191248 0%, #35158A 50%, #6126D9 100%);
  --lp-hero-bg:
    radial-gradient(circle at 18% 18%, rgba(139,92,246,.07), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(139,92,246,.16), transparent 34%),
    linear-gradient(180deg, #FAF8FF 0%, #FFFFFF 58%, #FFFFFF 100%);
  --lp-hero-overlay-r: radial-gradient(circle, rgba(139,92,246,.17) 0%, rgba(139,92,246,.06) 35%, transparent 70%);
  --lp-hero-overlay-l: radial-gradient(circle, rgba(109,40,217,.08) 0%, transparent 70%);
  --lp-hero-title: var(--text);
  --lp-hero-lead: var(--text-secondary);
  --lp-hero-badge-bg: var(--primary-soft);
  --lp-hero-badge-color: var(--primary);
  --lp-hero-seal-color: var(--text-secondary);
  --lp-hero-seal-icon-bg: var(--primary-soft);
  --lp-hero-seal-icon-color: var(--primary);
  --lp-float-bg: linear-gradient(145deg, rgba(139,92,246,.20), rgba(255,255,255,.80));
  --lp-float-border: rgba(124,58,237,.15);
  --lp-float-shadow: 0 10px 30px rgba(124,58,237,.12);
  --lp-float-accent: var(--primary);
  --lp-orbit-filter: none;
  --lp-reseller-bg: linear-gradient(135deg, #1F145B 0%, #3A168F 50%, #6D28D9 100%);
  --lp-logo-shadow: 0 6px 16px rgba(109,40,217,.35);
  --lp-auth-border: rgba(119,77,211,.12);
  --lp-step-shadow: 0 12px 28px rgba(109,40,217,.28);
  --lp-btn-shadow: 0 10px 24px rgba(109, 40, 217, 0.28);
  --shadow-sm: 0 8px 30px rgba(32, 20, 65, 0.045);
  --shadow-md: 0 10px 30px rgba(43, 22, 80, 0.06);
  --shadow-lg: 0 25px 60px rgba(40, 20, 80, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(100% - 32px, var(--max)); margin-inline: auto; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 18px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease, border-color .25s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.28) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.btn:hover::after { transform: translateX(120%); }
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--grad-main);
  color: #fff;
  box-shadow: var(--lp-btn-shadow);
}
.btn--primary:hover {
  box-shadow: var(--lp-btn-shadow);
}
.btn--ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid #D8D4E6;
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--primary-2); color: var(--primary); }
.btn--soft {
  background: #F3EEFF;
  color: var(--primary);
  box-shadow: none;
}
.btn--soft:hover { background: #EDE7FF; }
.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
}
.btn--lg { padding: 13px 22px; font-size: 15px; border-radius: 11px; }
.btn--block { width: 100%; }

/* Header */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.lp-nav.is-scrolled {
  border-bottom-color: rgba(235,232,243,.9);
  box-shadow: 0 8px 30px rgba(25, 15, 60, 0.06);
}
.lp-nav__inner {
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  position: relative;
}
.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -.02em;
  color: var(--text);
  justify-self: start;
  flex-shrink: 0;
  min-width: 0;
  background: transparent;
}
.lp-logo__fallback {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.lp-logo__fallback[hidden] {
  display: none !important;
}
.lp-logo__img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  background: transparent !important;
  box-shadow: none;
}
.lp-logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad-main);
  box-shadow: var(--lp-logo-shadow);
  font-size: 14px;
}
.lp-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.lp-menu a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color .2s ease;
}
.lp-menu a:hover { color: var(--primary); }
.lp-nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.lp-nav__login {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
}
.lp-nav__login:hover { color: var(--primary); }
.lp-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  color: var(--text);
}

/* Hero */
.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 72px;
  background: var(--lp-hero-bg);
}
.lp-hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: -250px;
  top: -280px;
  background: var(--lp-hero-overlay-r);
  filter: blur(10px);
  pointer-events: none;
}
.lp-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -180px;
  bottom: -220px;
  background: var(--lp-hero-overlay-l);
  pointer-events: none;
}
.lp-hero__orbits {
  position: absolute;
  right: -40px;
  top: 40px;
  width: min(640px, 55vw);
  opacity: .9;
  pointer-events: none;
  z-index: 0;
  filter: var(--lp-orbit-filter);
}
.lp-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  grid-template-areas:
    "intro auth"
    "facts auth";
  gap: 28px 42px;
  align-items: start;
}
.lp-hero__intro { grid-area: intro; }
.auth-card { grid-area: auth; align-self: center; }
.lp-hero__facts { grid-area: facts; }
.lp-kicker,
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
}
.lp-badge {
  background: var(--lp-hero-badge-bg);
  border-radius: 999px;
  padding: 7px 12px;
  margin-bottom: 18px;
  color: var(--lp-hero-badge-color);
}
.lp-hero h1 {
  margin: 0 0 16px;
  max-width: none;
  font-weight: 400;
}
.lp-hero__main {
  display: block;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(42px, 7vw, 72px);
  line-height: .92;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #0f172a;
}
.lp-fx {
  font-style: normal;
  display: inline-flex;
  color: var(--primary);
  white-space: nowrap;
}
.lp-fx span {
  display: inline-block;
  will-change: transform, filter;
  text-shadow:
    0 1px 0 color-mix(in srgb, var(--primary) 55%, #fff),
    0 2px 0 color-mix(in srgb, var(--primary) 40%, #fff),
    0 8px 16px color-mix(in srgb, var(--primary) 35%, transparent);
  animation:
    lp-fx-wave 3.4s cubic-bezier(.45,0,.2,1) infinite,
    lp-fx-glow 2.8s ease-in-out infinite;
  animation-delay: calc(var(--i) * 90ms), calc(var(--i) * 90ms);
}
@keyframes lp-fx-wave {
  0%, 100% { transform: translate3d(0, 0, 0); }
  35% { transform: translate3d(0, -6px, 0); }
  70% { transform: translate3d(0, 2px, 0); }
}
@keyframes lp-fx-glow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.16); }
}
@media (prefers-reduced-motion: reduce) {
  .lp-fx span { animation: none; }
}
.lp-hero__sub {
  display: block;
  margin-top: 12px;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.35;
  color: var(--lp-hero-lead);
  text-transform: none;
}
.lp-hero__sub b {
  font-weight: 800;
  color: var(--primary);
}
.lp-hero__lead {
  margin: 0 0 26px;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.65;
  max-width: 46ch;
}
.lp-hero__lead strong { color: var(--lp-hero-title); }
.lp-stats-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 16px 14px;
  margin-bottom: 18px;
}
.lp-stat-item__value {
  display: block !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  letter-spacing: -.02em;
  color: #111827 !important;
  -webkit-text-fill-color: #111827 !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  margin-bottom: 4px;
  line-height: 1.25 !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-family: "Plus Jakarta Sans", Arial, sans-serif !important;
}
.lp-stat-item__label {
  display: block !important;
  font-size: 12px !important;
  color: #4b5563 !important;
  -webkit-text-fill-color: #4b5563 !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.lp-charts {
  padding: 36px 0 12px;
}
.lp-charts .lp-title { margin-bottom: 8px; }
.lp-charts__card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 22px 18px;
  display: grid;
  gap: 18px;
}
.lp-chart-row__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  gap: 12px;
}
.lp-chart-row__meta span {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.lp-chart-row__meta strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}
.lp-chart-row__track {
  height: 12px;
  border-radius: 999px;
  background: var(--primary-soft, #eef2ff);
  overflow: hidden;
}
.lp-chart-row__fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary, #2563EB), var(--primary-2, #7C3AED));
  min-width: 8px;
}
.lp-chart-row__fill--alt {
  background: linear-gradient(90deg, #0ea5e9, var(--primary, #2563EB));
}
.lp-chart-row__fill--soft {
  background: linear-gradient(90deg, var(--primary-2, #7C3AED), #a78bfa);
}
.lp-seals {
  overflow: hidden;
}
.lp-seals__track {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}
.lp-seals__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}
.lp-seals__group[aria-hidden="true"] {
  display: none;
}
.lp-seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-hero-seal-color);
  white-space: nowrap;
}
.lp-seal i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lp-hero-seal-icon-bg);
  color: var(--lp-hero-seal-icon-color);
  font-size: 12px;
}

/* Floating icons */
.float-icon {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lp-float-bg);
  border: 1px solid var(--lp-float-border);
  box-shadow: var(--lp-float-shadow);
  backdrop-filter: blur(8px);
  color: var(--lp-float-accent);
  font-size: 16px;
  z-index: 2;
  animation: floating 5s ease-in-out infinite;
  pointer-events: none;
}
.float-icon--1 { top: 12%; right: 46%; animation-duration: 5.2s; }
.float-icon--2 { top: 28%; right: 4%; animation-duration: 6.1s; animation-delay: .4s; }
.float-icon--3 { bottom: 18%; right: 42%; animation-duration: 4.6s; animation-delay: .8s; color: var(--lp-float-accent); }
.float-icon--4 { top: 58%; right: 52%; animation-duration: 5.8s; animation-delay: .2s; color: #F59E0B; }
@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* Auth card */
.auth-card {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--lp-auth-border);
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 3;
}
.auth-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: #F3F1F8;
  margin-bottom: 20px;
}
.auth-tabs button {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 10px 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #6B7280;
  cursor: pointer;
}
.auth-tabs button.is-active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(76,29,149,.08);
}
.auth-tabs button:disabled { opacity: .4; cursor: not-allowed; }
.auth-pane { display: none; }
.auth-pane.is-active { display: block; }
.auth-pane h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.auth-pane h2 i { color: var(--primary-2); font-size: 18px; }
.auth-pane .sub {
  margin: 0 0 18px;
  color: var(--text-secondary);
  font-size: 14px;
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.field input,
.field select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 0 14px;
  background: #FCFBFF;
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field select:focus {
  border-color: color-mix(in srgb, var(--primary-2) 70%, white);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary-2) 12%, transparent);
  background: #fff;
}
.pass-wrap { position: relative; }
.pass-wrap input { padding-right: 44px; }
.pass-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
}
.field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.remember, .terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.remember input, .terms input { margin-top: 2px; }
.forgot-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-2);
}
.forgot-link:hover { color: var(--primary); }
.btn-main {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 11px;
  background: var(--grad-main);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  box-shadow: var(--lp-step-shadow);
  position: relative;
  overflow: hidden;
}
.btn-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.25) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.btn-main:hover::after { transform: translateX(120%); }
.auth-or {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.auth-or::before,
.auth-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.btn-google {
  width: 100%;
  height: 48px;
  border-radius: 11px;
  border: 1px solid #dadce0;
  background: #fff;
  color: #3c4043;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .06);
}
.btn-google svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.btn-google:hover {
  background: #f8fafc;
  color: #1f2937;
}
.btn-biometric {
  width: 100%;
  height: 48px;
  margin-top: 12px;
  border: 1px solid color-mix(in srgb, var(--primary-2) 35%, white);
  border-radius: 11px;
  background: color-mix(in srgb, var(--primary-2) 8%, white);
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-biometric:hover { background: color-mix(in srgb, var(--primary-2) 14%, white); }
.bio-offer {
  margin-top: 14px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(59,130,246,.08);
  border: 1px solid rgba(59,130,246,.2);
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
}
.btn-bio-link {
  background: none;
  border: 0;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
}
.auth-foot {
  margin-top: 16px;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-secondary);
}
.auth-foot a { color: var(--primary); font-weight: 700; }
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.alert {
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 14px;
  font-size: 13.5px;
}
.alert-danger { background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }
.alert-success { background: #ECFDF5; color: #047857; border: 1px solid #A7F3D0; }

/* Sections */
.lp-section { padding: 78px 0; position: relative; }
.lp-section--soft { background: linear-gradient(180deg, #FAF8FF 0%, #FFFFFF 100%); }
.lp-center { text-align: center; }
.lp-center .lp-sub { margin-left: auto; margin-right: auto; }
.lp-title {
  margin: 10px 0 12px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
}
.lp-sub {
  margin: 0 0 34px;
  color: var(--text-secondary);
  font-size: 15.5px;
  max-width: 54ch;
  line-height: 1.65;
}

/* Benefits */
.lp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  text-align: left;
}
.lp-bcard {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 13px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.lp-bcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(90,50,170,.09);
  border-color: rgba(124,58,237,.20);
}
.lp-bcard__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 14px;
  font-size: 16px;
}
.lp-bcard h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
}
.lp-bcard p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.55;
}

/* Timeline */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  text-align: center;
  margin-top: 8px;
}
.lp-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  border-top: 2px dashed rgba(167,139,250,.55);
  z-index: 0;
}
.lp-step {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.lp-step.is-visible { opacity: 1; transform: translateY(0); }
.lp-step__n {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-main);
  color: #fff;
  font-size: 18px;
  box-shadow: var(--lp-step-shadow);
}
.lp-step h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
}
.lp-step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13.5px;
}

/* Reseller */
.lp-reseller {
  padding: 28px 0 56px;
}
.lp-reseller__panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--lp-reseller-bg);
  color: #fff;
  padding: 48px 44px;
  box-shadow: 0 24px 60px rgba(49, 20, 120, 0.28);
}
.lp-reseller__panel::before,
.lp-reseller__panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.lp-reseller__panel::before {
  width: 280px;
  height: 280px;
  right: 18%;
  top: -90px;
  background: radial-gradient(circle, rgba(255,255,255,.14), transparent 70%);
}
.lp-reseller__panel::after {
  width: 160px;
  height: 160px;
  left: -40px;
  bottom: -50px;
  background: rgba(255,255,255,.06);
  transform: rotate(18deg);
  border-radius: 28px;
}
.lp-reseller__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}
.lp-reseller .lp-kicker { color: var(--brand-accent-light, #DDD6FE); }
.lp-reseller h2 {
  margin: 10px 0 12px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -.03em;
  max-width: 14ch;
}
.lp-reseller p {
  margin: 0 0 22px;
  color: rgba(255,255,255,.78);
  max-width: 42ch;
}
.lp-reseller__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lp-reseller__card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 14px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.lp-reseller__card i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  flex: 0 0 auto;
}
.lp-reseller__card strong { display: block; font-size: 14px; margin-bottom: 2px; }
.lp-reseller__card span { font-size: 12.5px; color: rgba(255,255,255,.72); }
.lp-rocket {
  justify-self: end;
  width: min(280px, 100%);
  filter: drop-shadow(0 20px 40px rgba(179,122,255,.35));
  animation: rocketFloat 6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes rocketFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-8px) rotate(-7deg); }
}

/* Video — proporção 16:9 sem esticar */
.lp-video {
  width: min(860px, 100%);
  margin: 8px auto 0;
  opacity: 1 !important;
  transform: none !important;
}
.lp-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(20,15,50,.15);
  background: #0F172A;
}
.lp-video__frame::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* fallback se aspect-ratio não existir */
}
@supports (aspect-ratio: 16 / 9) {
  .lp-video__frame::before { display: none; }
}
.lp-video iframe,
.lp-video__frame iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  border: 0 !important;
  display: block !important;
  object-fit: contain;
  z-index: 1;
}
.lp-video__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

/* Split */
.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.lp-panel-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.lp-panel-card__float {
  position: absolute;
  top: -14px;
  right: -10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-main);
  color: #fff;
  box-shadow: var(--lp-btn-shadow);
}
.lp-mini { display: grid; gap: 10px; }
.lp-mini__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  background: var(--primary-ultra-soft);
  border-radius: 12px;
  padding: 12px 14px;
}
.lp-mini__row span { color: var(--text-secondary); font-size: 13.5px; font-weight: 600; }
.lp-mini__row b { color: var(--primary); font-size: 14px; }

/* API code */
.lp-code-window {
  background: #0E1424;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(15,20,40,.14);
  overflow: hidden;
}
.lp-code-tabs {
  display: flex;
  gap: 4px;
  padding: 10px 12px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.lp-code-tabs button {
  border: 0;
  background: transparent;
  color: #94A3B8;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 8px;
  cursor: pointer;
}
.lp-code-tabs button.is-active {
  background: rgba(124,58,237,.22);
  color: #E9D5FF;
}
.lp-code {
  margin: 0;
  padding: 18px;
  color: #E2E8F0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12.5px;
  line-height: 1.6;
  overflow: auto;
  min-height: 180px;
}
.lp-code .k { color: #C4B5FD; }
.lp-code .s { color: #86EFAC; }
.lp-code .n { color: #FDE68A; }
.lp-code-pane { display: none; }
.lp-code-pane.is-active { display: block; }

/* Pricing */
.lp-filters-bar {
  display: flex;
  margin-bottom: 16px;
  min-width: 0;
}
.lp-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
  padding-bottom: 2px;
}
.lp-filters::-webkit-scrollbar {
  display: none;
}
.lp-filters button {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-secondary);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  flex: 0 0 auto;
  white-space: nowrap;
}
.lp-filters button.is-active {
  background: var(--grad-main);
  border-color: transparent;
  color: #fff;
}
.lp-search {
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 14px 0 36px;
  min-width: min(240px, 100%);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%9894A8' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3-3'/%3E%3C/svg%3E") 14px center no-repeat;
  outline: none;
}
.lp-search:focus { border-color: rgba(124,58,237,.4); }
.lp-table-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(36,20,80,.08);
  overflow: auto;
}
.lp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.lp-table th,
.lp-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.lp-table th {
  background: #FAF8FF;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.lp-table tbody tr:hover { background: #FAF8FF; }
.lp-table tr:last-child td { border-bottom: none; }
.lp-price { color: var(--primary); font-weight: 800; }
.lp-speed {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ECFDF5;
  color: #047857;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
}
.lp-speed i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  display: inline-block;
}
.lp-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F3EEFF;
  color: #6D28D9;
  border-radius: 9px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}

/* Support */
.lp-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
  text-align: left;
}
.lp-support__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.lp-support__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(90,50,170,.09);
}
.lp-support__card i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 12px;
}
.lp-support__card h3 { margin: 0 0 6px; font-size: 16px; }
.lp-support__card p { margin: 0; color: var(--text-secondary); font-size: 13.5px; }

/* Footer landing */
.lp-footer {
  position: relative;
  overflow: hidden;
  background: var(--lp-footer-bg, linear-gradient(135deg, #171142, #29116A));
  color: rgba(255,255,255,.82);
  padding: 56px 0 28px;
}
.lp-footer::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -160px;
  background: var(--lp-footer-glow, radial-gradient(circle, rgba(139,92,246,.28), transparent 70%));
  pointer-events: none;
}
.lp-footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
.lp-footer h4,
.lp-footer__heading {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.lp-footer__contact {
  margin-top: 14px !important;
  font-size: 13px !important;
  color: rgba(255,255,255,.7);
}
.lp-footer__contact a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.lp-footer__legal {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.62);
  max-width: none !important;
}
.lp-reseller__card h3 {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 2px;
  color: #fff;
}
.lp-footer ul { display: grid; gap: 10px; }
.lp-footer a { color: rgba(255,255,255,.72); font-size: 14px; }
.lp-footer a:hover { color: #fff; }
.lp-footer p { margin: 12px 0 0; font-size: 14px; line-height: 1.6; max-width: 36ch; }
.lp-footer .lp-logo {
  color: #fff !important;
  margin-bottom: 12px;
}
.lp-footer .lp-logo__img {
  height: 40px;
  max-width: 200px;
  filter: none;
  background: transparent;
  opacity: 1;
}
.lp-footer .lp-logo__mark {
  background: rgba(255,255,255,.16);
  box-shadow: none;
  color: #fff;
}
.lp-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.lp-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  color: #fff;
}
.lp-footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

/* WhatsApp polish if custom footer injects fixed button */
a[href*="whatsapp"][style*="position:fixed"],
a[href*="wa.me"][style*="position:fixed"] {
  width: 56px !important;
  height: 56px !important;
  bottom: 22px !important;
  right: 22px !important;
  border-radius: 50% !important;
  border: none !important;
  overflow: visible !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0 !important;
  color: transparent !important;
  background-color: #25D366 !important;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E"),
    linear-gradient(145deg, #2FE574 0%, #25D366 45%, #1EBE57 100%) !important;
  background-size: 54% 54%, cover !important;
  background-position: center, center !important;
  background-repeat: no-repeat, no-repeat !important;
  box-shadow:
    0 4px 14px rgba(37, 211, 102, 0.38),
    0 10px 28px rgba(15, 23, 42, 0.14) !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
  z-index: 60 !important;
}
a[href*="whatsapp"][style*="position:fixed"] img,
a[href*="wa.me"][style*="position:fixed"] img {
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
}
a[href*="whatsapp"][style*="position:fixed"]:hover,
a[href*="wa.me"][style*="position:fixed"]:hover {
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow:
    0 6px 18px rgba(37, 211, 102, 0.48),
    0 14px 32px rgba(15, 23, 42, 0.16) !important;
}

/* Responsive */
@media (max-width: 1200px) {
  .lp-hero__grid { gap: 28px; }
  .float-icon--1, .float-icon--4 { display: none; }
}
@media (max-width: 992px) {
  .lp-nav__inner { grid-template-columns: 1fr auto; }
  .lp-logo {
    max-width: min(160px, 46vw);
  }
  .lp-logo__img {
    height: 34px;
    max-height: 38px;
    max-width: 100%;
  }
  .lp-menu { display: none; }
  .lp-menu.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    box-shadow: var(--shadow-lg);
    align-items: stretch;
    gap: 8px;
    z-index: 20;
  }
  .lp-burger { display: inline-grid; place-items: center; }
  .lp-hero__grid,
  .lp-split,
  .lp-reseller__grid,
  .lp-benefits-grid,
  .lp-support,
  .lp-footer__grid {
    grid-template-columns: 1fr;
  }
  .lp-steps {
    grid-template-columns: 1fr 1fr;
  }
  .lp-steps::before { display: none; }
  .lp-rocket { justify-self: center; width: 200px; margin-top: 8px; }
  .lp-hero h1 { max-width: none; }
  .float-icon { display: none; }
}
@media (max-width: 900px) {
  .lp-hero {
    position: relative;
    padding: 18px 0 36px;
    overflow: hidden;
    background:
      radial-gradient(ellipse 90% 55% at 50% 22%, color-mix(in srgb, var(--primary) 32%, transparent) 0%, transparent 68%),
      radial-gradient(ellipse 70% 45% at 100% 80%, color-mix(in srgb, var(--primary-2) 22%, transparent) 0%, transparent 70%),
      radial-gradient(ellipse 60% 40% at 0% 70%, color-mix(in srgb, var(--primary) 16%, transparent) 0%, transparent 65%),
      #f4f6fb;
  }
  .lp-hero::before,
  .lp-hero::after {
    display: block;
    filter: blur(28px);
    opacity: .9;
  }
  .lp-hero__orbits {
    display: none;
  }
  .lp-hero > .container {
    width: 100%;
    max-width: none;
    padding-inline: 8px;
    box-sizing: border-box;
  }
  .lp-hero__grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .lp-hero__intro,
  .auth-card,
  .lp-hero__facts {
    grid-area: auto;
    width: 100%;
  }
  .lp-hero__intro {
    order: 0;
    text-align: center;
    background: none;
    border: 0;
    border-radius: 0;
    padding: 8px 4px 6px;
    box-shadow: none;
  }
  .lp-hero h1 {
    max-width: none;
    margin-bottom: 8px;
  }
  .lp-hero__main {
    font-size: clamp(42px, 12.5vw, 56px);
  }
  .lp-hero__sub {
    font-size: 15px;
    margin-top: 10px;
  }
  .lp-hero__lead {
    max-width: 38ch;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.5;
    color: #0f172a;
  }
  .lp-hero__lead strong {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
  }
  .auth-card {
    order: 1;
    width: 100%;
    max-width: none;
    margin: 4px 0 6px;
    padding: 20px 14px 16px;
    border-radius: 14px;
    border: 0;
    box-shadow:
      0 10px 28px color-mix(in srgb, var(--primary) 22%, transparent),
      0 18px 48px color-mix(in srgb, var(--primary) 18%, transparent),
      0 2px 8px rgba(15, 23, 42, .06);
  }
  .auth-card .field input,
  .auth-card .field select {
    height: 50px;
  }
  .auth-tabs,
  #pane-login h2,
  #pane-login .sub,
  #pane-login .remember {
    display: none;
  }
  .forgot-link {
    display: inline-block;
    margin-top: 8px;
    font-weight: 600;
  }
  .btn-main {
    height: 50px;
    border-radius: 12px;
    font-size: 16px;
    box-shadow: 0 8px 18px color-mix(in srgb, var(--primary) 28%, transparent);
  }
  .auth-foot {
    text-align: center;
    margin-top: 14px;
  }
  .lp-hero__facts {
    order: 2;
  }
  .lp-stats-card {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin-bottom: 16px;
  }
  .lp-stats-card > div,
  .lp-stat-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
    padding: 14px 8px 12px;
    text-align: center;
    overflow: visible;
    display: block;
    min-height: 0;
    color: #111827;
  }
  .lp-stat-item__value {
    font-size: 17px !important;
  }
  .lp-seals {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .lp-seals__track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 0;
    animation: lp-seals-marquee 18s linear infinite;
  }
  .lp-seals__group,
  .lp-seals__group[aria-hidden="true"] {
    display: flex;
    flex-wrap: nowrap;
    flex-shrink: 0;
    align-items: center;
    gap: 28px;
    padding-right: 28px;
  }
  .lp-seals:hover .lp-seals__track {
    animation-play-state: paused;
  }
  @keyframes lp-seals-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .lp-seals__track { animation: none; }
    .lp-seals__group[aria-hidden="true"] { display: none; }
  }
  .lp-charts {
    padding-top: 8px;
  }
}
@media (max-width: 768px) {
  .lp-hero { padding: 16px 0 20px; }
  .lp-section { padding: 56px 0; }
  .lp-reseller__panel { padding: 28px 20px; }
  .lp-reseller__cards { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
  .lp-filters-bar { flex-direction: row; align-items: stretch; }
}
@media (max-width: 576px) {
  .lp-steps { grid-template-columns: 1fr; }
  .lp-nav__actions .lp-nav__login { display: none; }
  .auth-card { padding: 18px 12px 14px; }
}
