/* ============================================================
   LeadsList — Stylesheet Principal
   ============================================================ */

/* Google Fonts — Plus Jakarta Sans */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: #fff;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Variáveis ────────────────────────────────────────────── */
:root {
  --orange: #F97316;
  --yellow: #FBBF24;
  --navy:   #0F172A;
  --navy2:  #1E293B;
  --gray50: #F8FAFC;
  --gray100:#F1F5F9;
  --gray200:#E2E8F0;
  --gray400:#94A3B8;
  --gray500:#64748B;
  --gray600:#475569;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,.08);
  --shadow-md: 0 4px 16px rgba(15,23,42,.10);
  --shadow-lg: 0 8px 32px rgba(15,23,42,.12);
  --shadow-xl: 0 20px 60px rgba(15,23,42,.15);
  --gradient: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
  --transition: 0.22s cubic-bezier(0.23,1,0.32,1);
}

/* ── Utilitários ──────────────────────────────────────────── */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.gradient-bg { background: var(--gradient); }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem; transition: var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 2px 16px rgba(249,115,22,.35);
}
.btn-primary:hover { opacity: .9; box-shadow: 0 4px 24px rgba(249,115,22,.5); }
.btn-outline {
  background: #fff; color: var(--navy);
  border: 1.5px solid var(--gray200);
}
.btn-outline:hover { border-color: var(--gray400); background: var(--gray50); }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.82rem; }

.section-badge {
  display: inline-block;
  background: var(--gradient); color: #fff;
  font-size: 0.7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 999px; margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900; color: var(--navy); line-height: 1.15; margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1rem; color: var(--gray500); max-width: 560px; margin: 0 auto;
}
.text-center { text-align: center; }

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(0.23,1,0.32,1), transform .6s cubic-bezier(0.23,1,0.32,1); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ── Header ───────────────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff; border-bottom: 1px solid var(--gray100);
  transition: box-shadow var(--transition), border-color var(--transition);
}
#header.scrolled { box-shadow: var(--shadow-md); border-color: var(--gray200); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.header-logo img { height: 34px; width: auto; }
.header-nav {
  display: flex; align-items: center; gap: 2rem; margin-left: auto;
}
.header-nav a {
  font-size: 0.875rem; font-weight: 600; color: var(--gray600);
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--navy); }
.header-actions {
  display: flex; align-items: center; gap: 0.75rem;
  padding-left: 1.25rem; margin-left: 1.25rem;
  border-left: 1px solid var(--gray200);
}
.header-actions .link-login {
  font-size: 0.875rem; font-weight: 600; color: var(--gray600);
  transition: color var(--transition);
}
.header-actions .link-login:hover { color: var(--navy); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none; background: #fff; border-top: 1px solid var(--gray100);
  padding: 1rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 0.65rem 0; font-size: 0.9rem; font-weight: 600;
  color: var(--gray600); border-bottom: 1px solid var(--gray100);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 0.75rem; width: 100%; justify-content: center; }

/* ── Hero ─────────────────────────────────────────────────── */
#hero {
  padding-top: 60px; /* header height */
  min-height: 100vh;
  display: flex; align-items: center;
  background: #fff; position: relative; overflow: hidden;
}
.hero-orb-1 {
  position: absolute; top: -120px; right: -120px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute; bottom: -80px; left: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(251,191,36,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(15,23,42,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  padding: 2.5rem 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff7ed; border: 1px solid #fed7aa;
  color: #c2410c; font-size: 0.78rem; font-weight: 600;
  padding: 0.4rem 0.9rem; border-radius: 999px; margin-bottom: 1.25rem;
}
.hero-badge svg { color: var(--orange); }
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--navy); line-height: 1.12; margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1.05rem; color: var(--gray500); max-width: 480px;
  line-height: 1.7; margin-bottom: 1.75rem;
}
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem; color: var(--gray400);
}
.hero-trust span { display: flex; align-items: center; gap: 0.4rem; }
.hero-trust svg { color: var(--orange); }

/* Dashboard Mock */
.hero-dashboard {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-xl); overflow: hidden;
}
.dash-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 0.65rem 1rem; border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.04);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-url {
  margin-left: 0.75rem; flex: 1; max-width: 200px;
  background: rgba(255,255,255,.05); border-radius: 4px;
  padding: 0.2rem 0.75rem; font-size: 0.7rem; color: rgba(255,255,255,.25);
}
.dash-body { padding: 1.25rem; }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.6rem; margin-bottom: 1rem; }
.dash-stat {
  background: rgba(255,255,255,.05); border-radius: 10px;
  padding: 0.75rem; border: 1px solid rgba(255,255,255,.08);
}
.dash-stat .val { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.15rem; }
.dash-stat .lbl { font-size: 0.68rem; color: rgba(255,255,255,.35); }
.dash-filters {
  background: rgba(255,255,255,.05); border-radius: 10px;
  padding: 0.75rem; border: 1px solid rgba(255,255,255,.08); margin-bottom: 0.75rem;
}
.dash-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.6rem; }
.dash-tag {
  background: var(--gradient); color: #fff;
  font-size: 0.68rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 999px;
}
.dash-bar-fill { height: 5px; background: rgba(255,255,255,.1); border-radius: 999px; overflow: hidden; }
.dash-bar-fill-inner { height: 100%; background: var(--gradient); border-radius: 999px; width: 72%; }
.dash-rows { display: flex; flex-direction: column; gap: 0.5rem; }
.dash-row {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,.03); border-radius: 8px;
  padding: 0.6rem 0.75rem; border: 1px solid rgba(255,255,255,.05);
}
.dash-icon {
  width: 26px; height: 26px; border-radius: 6px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.7rem; color: #fff; font-weight: 700;
}
.dash-info { flex: 1; min-width: 0; }
.dash-name { font-size: 0.78rem; color: #fff; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-cnae { font-size: 0.65rem; color: rgba(255,255,255,.3); }
.dash-city { font-size: 0.65rem; color: rgba(255,255,255,.3); white-space: nowrap; }

/* ── Stats ────────────────────────────────────────────────── */
#stats {
  padding: 3.5rem 0; background: var(--gray50);
  border-top: 1px solid var(--gray200); border-bottom: 1px solid var(--gray200);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.stat-item { text-align: center; }
.stat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
}
.stat-value { font-size: 2rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 0.3rem; }
.stat-label { font-size: 0.85rem; color: var(--gray500); }

/* ── How It Works ─────────────────────────────────────────── */
#how { padding: 5rem 0; background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 3rem; }
.step-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 1.75rem; border: 1px solid var(--gray200);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative; overflow: hidden;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(249,115,22,.25); }
.step-num {
  font-size: 3rem; font-weight: 900; line-height: 1;
  margin-bottom: 0.75rem; opacity: .12;
}
.step-icon {
  width: 42px; height: 42px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.9rem;
}
.step-title { font-size: 0.95rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.step-desc { font-size: 0.82rem; color: var(--gray500); line-height: 1.65; }

/* ── Benefits ─────────────────────────────────────────────── */
#benefits { padding: 5rem 0; background: var(--gray50); }
.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 3rem; }
.benefit-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 1.5rem; border: 1px solid var(--gray200);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: rgba(249,115,22,.2); }
.benefit-icon {
  width: 42px; height: 42px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.9rem;
  transition: transform var(--transition);
}
.benefit-card:hover .benefit-icon { transform: scale(1.1); }
.benefit-title { font-size: 0.88rem; font-weight: 800; color: var(--navy); margin-bottom: 0.4rem; }
.benefit-desc { font-size: 0.78rem; color: var(--gray500); line-height: 1.65; }

/* ── Pricing ──────────────────────────────────────────────── */
#pricing { padding: 5rem 0; background: #fff; }
.pricing-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--gray100); border-radius: 999px;
  padding: 4px; border: 1px solid var(--gray200); margin-top: 1.5rem;
}
.toggle-btn {
  padding: 0.5rem 1.25rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 700; transition: var(--transition); cursor: pointer;
  border: none; background: none; color: var(--gray500);
}
.toggle-btn.active { background: var(--gradient); color: #fff; box-shadow: var(--shadow-sm); }
.toggle-badge {
  background: #fff7ed; color: #ea580c;
  font-size: 0.68rem; font-weight: 800; padding: 0.15rem 0.5rem; border-radius: 999px;
}
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; max-width: 960px; margin: 2.5rem auto 0; }
.plan-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 2rem; border: 1.5px solid var(--gray200);
  transition: box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.plan-card:hover { box-shadow: var(--shadow-md); }
.plan-card.popular {
  border-color: #fdba74; background: #fff7ed;
  box-shadow: 0 8px 40px rgba(249,115,22,.15);
  transform: scale(1.02);
}
.plan-badge-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff;
  font-size: 0.68rem; font-weight: 800; letter-spacing: .06em;
  padding: 0.35rem 1rem; border-radius: 999px; white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.plan-name { font-size: 0.9rem; font-weight: 800; color: var(--navy); margin-bottom: 0.25rem; }
.plan-desc { font-size: 0.78rem; color: var(--gray500); margin-bottom: 1.25rem; }
.plan-price { display: flex; align-items: flex-end; gap: 0.25rem; margin-bottom: 0.25rem; }
.plan-price .amount { font-size: 2.25rem; font-weight: 900; color: var(--navy); line-height: 1; }
.plan-price .period { font-size: 0.82rem; color: var(--gray400); margin-bottom: 0.2rem; }
.plan-annual-note { font-size: 0.75rem; color: var(--orange); font-weight: 600; min-height: 1.1rem; margin-bottom: 1.25rem; }
.plan-cta { display: block; text-align: center; font-weight: 700; font-size: 0.875rem; padding: 0.7rem 1rem; border-radius: var(--radius); transition: var(--transition); margin-bottom: 1.5rem; }
.plan-cta.primary { background: var(--gradient); color: #fff; box-shadow: 0 2px 12px rgba(249,115,22,.3); }
.plan-cta.primary:hover { opacity: .9; }
.plan-cta.secondary { background: #fff; border: 1.5px solid var(--gray200); color: var(--navy); }
.plan-cta.secondary:hover { border-color: var(--gray400); background: var(--gray50); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.plan-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--gray600); }
.plan-features li.disabled { opacity: .35; }
.plan-features li.disabled span { text-decoration: line-through; color: var(--gray400); }
.feat-check { color: var(--orange); flex-shrink: 0; font-size: 0.85rem; }
.feat-x { color: var(--gray400); flex-shrink: 0; font-size: 0.85rem; }
.pricing-note { text-align: center; font-size: 0.78rem; color: var(--gray400); margin-top: 1.5rem; }

/* ── Testimonials ─────────────────────────────────────────── */
#testimonials { padding: 5rem 0; background: var(--gray50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 3rem; }
.testimonial-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 1.5rem; border: 1px solid var(--gray200);
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stars { display: flex; gap: 3px; margin-bottom: 0.75rem; color: var(--orange); font-size: 0.8rem; }
.testimonial-text { font-size: 0.85rem; color: var(--gray600); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.6rem; }
.author-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; flex-shrink: 0;
}
.author-name { font-size: 0.8rem; font-weight: 700; color: var(--navy); }
.author-role { font-size: 0.7rem; color: var(--gray400); }

/* ── FAQ ──────────────────────────────────────────────────── */
#faq { padding: 5rem 0; background: #fff; }
.faq-list { max-width: 720px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  background: #fff; border-radius: var(--radius);
  border: 1.5px solid var(--gray200); overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open, .faq-item:hover { border-color: #fdba74; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.1rem 1.25rem; text-align: left;
  font-size: 0.9rem; font-weight: 700; color: var(--navy); background: none; cursor: pointer;
}
.faq-icon { color: var(--orange); flex-shrink: 0; font-size: 1.1rem; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.23,1,0.32,1), padding 0.35s;
  font-size: 0.85rem; color: var(--gray500); line-height: 1.75;
  padding: 0 1.25rem;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.25rem 1.1rem; }

/* ── CTA Final ────────────────────────────────────────────── */
#cta-final {
  padding: 5rem 0; background: var(--navy);
  position: relative; overflow: hidden;
}
.cta-orb {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(249,115,22,.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 580px; margin: 0 auto; }
.cta-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(249,115,22,.4);
}
.cta-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 900; color: #fff; margin-bottom: 0.75rem; }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,.5); margin-bottom: 2rem; }
.cta-form { display: flex; gap: 0.6rem; max-width: 460px; margin: 0 auto 1.25rem; }
.cta-form input {
  flex: 1; background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.18);
  color: #fff; border-radius: var(--radius); padding: 0.75rem 1rem;
  font-size: 0.875rem; font-family: inherit; outline: none;
  transition: border-color var(--transition);
}
.cta-form input::placeholder { color: rgba(255,255,255,.3); }
.cta-form input:focus { border-color: rgba(249,115,22,.6); }
.cta-form button { flex-shrink: 0; }
.cta-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; font-size: 0.78rem; color: rgba(255,255,255,.3); }
.cta-trust span { display: flex; align-items: center; gap: 0.4rem; }
.cta-success { display: none; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); padding: 1.5rem 2rem; max-width: 400px; margin: 0 auto; }
.cta-success.show { display: block; }
.cta-success-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.cta-success h3 { color: #fff; font-size: 1rem; font-weight: 800; margin-bottom: 0.25rem; }
.cta-success p { color: rgba(255,255,255,.45); font-size: 0.85rem; }

/* ── Footer ───────────────────────────────────────────────── */
#footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,.06); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,.35); line-height: 1.7; margin: 1rem 0 1.25rem; max-width: 240px; }
.footer-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.social-links { display: flex; gap: 0.5rem; }
.social-link {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: 0.85rem;
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: rgba(255,255,255,.12); color: #fff; }
.footer-col h4 { font-size: 0.72rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,.38); transition: color var(--transition); }
.footer-col ul li a:hover { color: rgba(255,255,255,.75); }
.footer-contact { display: flex; flex-wrap: wrap; gap: 1.25rem; padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 1.5rem; }
.footer-contact a { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer-contact a:hover { color: rgba(255,255,255,.6); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,.22); }
.footer-lgpd { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: rgba(255,255,255,.22); }
.footer-lgpd svg { color: var(--orange); }

/* ── Responsivo ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .steps-grid, .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .header-nav, .header-actions { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-dashboard { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; }
  .plan-card.popular { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .steps-grid, .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
