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

:root {
  --bg:         #09090f;
  --surface:    #101018;
  --card:       #14141e;
  --border:     rgba(255,255,255,0.06);
  --border-md:  rgba(255,255,255,0.10);
  --blue:       #5a7fff;
  --blue-dark:  #1a3a8f;
  --blue-glow:  rgba(90,127,255,0.22);
  --gold:       #f5c430;
  --gold-dark:  #d48a0a;
  --gold-glow:  rgba(245,196,48,0.2);
  --green:      #22d3a8;
  --white:      #ffffff;
  --text:       rgba(255,255,255,0.90);
  --muted:      rgba(255,255,255,0.40);
  --muted-md:   rgba(255,255,255,0.62);
  --radius:     12px;
  --radius-lg:  18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  animation: pageIn 0.35s ease both;
}

@keyframes pageIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

body.leaving { opacity: 0; transform: translateY(-8px); transition: all 0.22s ease; pointer-events: none; }

a { text-decoration: none; color: inherit; }
input, button, select, textarea { font-family: inherit; }
.hidden { display: none !important; }

/* ── Botões ─────────────────────────────────────────────────────────── */
.btn-primary {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, box-shadow .2s, transform .15s;
  box-shadow: 0 0 0 0 var(--blue-glow);
}
.btn-primary:hover { background: #4a6fe0; box-shadow: 0 0 28px var(--blue-glow); transform: translateY(-1px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #07090d;
  border: none;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: box-shadow .2s, transform .15s;
}
.btn-gold:hover { box-shadow: 0 0 36px var(--gold-glow); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--muted-md);
  border: 1px solid var(--border-md);
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.28); color: var(--white); }

/* ── Top banner ─────────────────────────────────────────────────────── */
.top-banner {
  background: rgba(90,127,255,0.08);
  border-bottom: 1px solid rgba(90,127,255,0.15);
  text-align: center;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
}
.top-banner strong { color: #8aa8ff; font-weight: 700; }
.top-banner .tb-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  margin: 0 6px;
  vertical-align: middle;
  animation: blink 2s ease-in-out infinite;
}

/* ── Logo .b2 ──────────────────────────────────────────────────────────── */
.b2 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 100;
  background: rgba(9,9,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.nav-brand { font-size: 22px; font-weight: 900; letter-spacing: -0.025em; }
.nav-brand span {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  transition: color .15s;
  letter-spacing: -0.01em;
}
.nav-links a:hover { color: rgba(255,255,255,0.85); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-login {
  color: var(--muted-md);
  font-size: 13.5px;
  font-weight: 600;
  transition: color .15s;
  letter-spacing: -0.01em;
}
.nav-login:hover { color: var(--white); }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,127,255,0.10) 0%, transparent 70%);
  top: -250px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,196,48,0.06) 0%, transparent 70%);
  bottom: 0; right: 8%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(90,127,255,0.09);
  border: 1px solid rgba(90,127,255,0.22);
  color: #8aa8ff;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold) 0%, #ff9f43 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted-md);
  max-width: 540px;
  margin: 0 auto 38px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.hero-ctas { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; position: relative; z-index: 1; }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero-stat { text-align: center; }
.hero-stat-num { font-size: 26px; font-weight: 900; color: var(--white); letter-spacing: -0.025em; }
.hero-stat-label { font-size: 11.5px; color: var(--muted); font-weight: 500; margin-top: 3px; letter-spacing: 0.01em; }
.hero-stat-div { width: 1px; height: 32px; background: var(--border-md); }

/* ── Trusted strip ────────────────────────────────────────────────────── */
.trusted-strip {
  text-align: center;
  padding: 24px;
  position: relative;
  z-index: 1;
}
.trusted-label { font-size: 11.5px; color: var(--muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.trusted-list { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.trusted-item { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.25); letter-spacing: 0.02em; }

/* ── Preview ──────────────────────────────────────────────────────────── */
.preview-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.preview-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-md);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px var(--border);
}

.preview-bar {
  background: var(--surface);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.preview-dots { display: flex; gap: 6px; }
.preview-dot { width: 10px; height: 10px; border-radius: 50%; }
.preview-dot:nth-child(1) { background: #ff5f57; }
.preview-dot:nth-child(2) { background: #febc2e; }
.preview-dot:nth-child(3) { background: #28c840; }

.preview-title { color: var(--muted); font-size: 11.5px; font-weight: 500; }

.preview-body { padding: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.preview-section {
  background: var(--surface);
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.preview-section-title {
  background: rgba(90,127,255,0.12);
  color: #8aa8ff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-bottom: 1px solid var(--border);
}

.preview-field { display: flex; padding: 7px 13px; border-bottom: 1px solid var(--border); align-items: flex-start; gap: 8px; }
.preview-field:last-child { border-bottom: none; }
.preview-dot-sm { width: 5px; height: 5px; border-radius: 50%; background: var(--green); margin-top: 5px; flex-shrink: 0; }
.preview-dot-sm.empty { background: rgba(255,255,255,0.12); }
.preview-field-label { font-size: 8.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; min-width: 70px; }
.preview-field-val { font-size: 9.5px; font-weight: 600; color: var(--text); }
.preview-field-val.crit { color: var(--gold); font-weight: 700; }

/* ── Seções ───────────────────────────────────────────────────────────── */
section { padding: 96px 24px; }
.section-center { text-align: center; }
.section-inner { max-width: 1040px; margin: 0 auto; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(90,127,255,0.07);
  border: 1px solid rgba(90,127,255,0.18);
  color: #8aa8ff;
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted-md);
  max-width: 520px;
  margin: 0 auto 52px;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

/* ── Ramos ─────────────────────────────────────────────────────────────── */
.ramos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 10px;
  max-width: 880px;
  margin: 0 auto;
}

.ramo-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  cursor: default;
  transition: border-color .25s, transform .25s, background .25s;
}

.ramo-card:hover {
  border-color: rgba(90,127,255,0.35);
  background: rgba(90,127,255,0.05);
  transform: translateY(-2px);
}

.ramo-icon { font-size: 26px; margin-bottom: 9px; }
.ramo-name { font-size: 12.5px; font-weight: 700; color: var(--text); }
.ramo-sub  { font-size: 10.5px; color: var(--muted); margin-top: 3px; }

/* ── Como funciona ───────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  transition: border-color .25s;
}

.step-card:hover { border-color: var(--border-md); }

.step-num {
  width: 34px; height: 34px;
  background: rgba(90,127,255,0.12);
  border: 1px solid rgba(90,127,255,0.25);
  color: #8aa8ff;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.step-title { font-size: 15px; font-weight: 800; margin-bottom: 9px; color: var(--white); letter-spacing: -0.02em; }
.step-desc  { font-size: 13.5px; color: var(--muted-md); line-height: 1.65; }

/* ── Pricing ──────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: stretch;
}

@media (max-width: 1080px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; } }
@media (max-width: 600px)  { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; } }

.price-card {
  background: #111118;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px 24px 24px;
  position: relative;
  transition: border-color .25s, transform .25s;
  display: flex;
  flex-direction: column;
}

.price-card:hover { border-color: rgba(255,255,255,0.13); transform: translateY(-2px); }

/* Essencial — acento verde */
.price-card.teal {
  background: linear-gradient(170deg, #081a18 0%, #111118 60%);
  border-color: rgba(20,184,166,0.28);
  box-shadow: 0 0 0 1px rgba(20,184,166,0.07);
}
.price-card.teal:hover { border-color: rgba(20,184,166,0.45); }
.price-card.teal .price-plan { color: rgba(20,184,166,0.70); }

/* Profissional — acento roxo */
.price-card.indigo {
  background: linear-gradient(170deg, #110f23 0%, #111118 60%);
  border-color: rgba(139,92,246,0.28);
  box-shadow: 0 0 0 1px rgba(139,92,246,0.07);
}
.price-card.indigo:hover { border-color: rgba(139,92,246,0.45); }
.price-card.indigo .price-plan { color: rgba(139,92,246,0.80); }

/* Equipes — acento azul (featured) */
.price-card.featured {
  background: linear-gradient(170deg, #0d1a35 0%, #111118 55%);
  border-color: rgba(90,127,255,0.40);
  box-shadow: 0 0 0 1px rgba(90,127,255,0.12), 0 24px 64px rgba(90,127,255,0.12);
  transform: translateY(-4px);
}
.price-card.featured:hover { transform: translateY(-6px); }

/* Badge de destaque */
.price-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, #e8a800 100%);
  color: #07090d;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(245,196,48,0.30);
}

/* Nome do plano */
.price-plan {
  font-size: 10px;
  font-weight: 800;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 20px;
}

/* Bloco de preço — mensal é o herói */
.price-hero {
  margin-bottom: 6px;
}
.price-hero-val {
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-hero-per {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  margin-left: 3px;
  letter-spacing: -0.01em;
}

/* Adesão — secundário */
.price-setup {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}
.price-setup-label { font-size: 11px; color: rgba(255,255,255,0.30); font-weight: 500; }
.price-setup-val   { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.55); letter-spacing: -0.01em; }
.price-setup-once  { font-size: 10.5px; color: rgba(255,255,255,0.25); font-weight: 400; }

/* Microtext */
.price-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.price-card.featured .price-hint { color: rgba(138,168,255,0.55); }

/* Features */
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.35;
}

.price-features li:last-child { border-bottom: none; }

.price-features li strong {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}

/* Ícone de check */
.price-features li::before {
  content: '';
  width: 16px; height: 16px;
  background: rgba(34,211,168,0.12);
  border: 1px solid rgba(34,211,168,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L4 7L8 3' stroke='%2322d3a8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.price-card.featured .price-features li::before {
  background-color: rgba(90,127,255,0.12);
  border-color: rgba(90,127,255,0.28);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L4 7L8 3' stroke='%238aa8ff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.price-card .btn-primary,
.price-card .btn-ghost { width: 100%; justify-content: center; }

.price-card .price-cta-wrap { margin-top: auto; padding-top: 20px; }

.price-trial-note { text-align: center; margin-top: 10px; font-size: 11px; color: var(--muted); }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item:hover { border-color: var(--border-md); }
.faq-item.open  { border-color: rgba(90,127,255,0.25); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 17px 20px;
  text-align: left;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--white); }

.faq-arrow { color: var(--muted); font-size: 18px; transition: transform .2s, color .2s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--blue); }
.faq-a { display: none; padding: 0 20px 16px; font-size: 13.5px; color: var(--muted-md); line-height: 1.7; letter-spacing: -0.01em; }
.faq-item.open .faq-a { display: block; }

/* ── CTA Final ────────────────────────────────────────────────────────── */
.cta-final {
  text-align: center;
  background: linear-gradient(135deg, #0a1530 0%, #09090f 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  width: 700px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,127,255,0.09) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.cta-final h2 { font-size: clamp(28px,3.8vw,46px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 12px; position: relative; z-index: 1; }
.cta-final p  { color: var(--muted-md); font-size: 16px; margin-bottom: 32px; position: relative; z-index: 1; }

/* ── Footer ──────────────────────────────────────────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.footer-brand { font-size: 16px; font-weight: 900; letter-spacing: -0.02em; }
.footer-brand span {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); font-size: 12.5px; font-weight: 500; transition: color .15s; }
.footer-links a:hover { color: var(--muted-md); }

/* ── Funil — indicador ──────────────────────────────────────────────── */
.funnel-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 26px;
}

.funnel-step {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  padding: 4px 11px;
  border-radius: 20px;
  white-space: nowrap;
}

.funnel-step.done   { color: var(--green); }
.funnel-step.active { background: rgba(90,127,255,0.12); color: #8aa8ff; border: 1px solid rgba(90,127,255,0.22); }
.funnel-step-sep    { color: var(--muted); font-size: 11px; }

/* ── Auth page ────────────────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(90,127,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,196,48,0.03) 0%, transparent 50%);
}

.auth-card {
  background: var(--card);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.auth-logo { display: flex; justify-content: center; margin-bottom: 6px; }
.auth-logo span { font-size: 24px; font-weight: 900; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.auth-subtitle { text-align: center; color: var(--muted); font-size: 13.5px; margin-bottom: 26px; }

.auth-tabs {
  display: flex;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 3px;
  margin-bottom: 22px;
}

.auth-tab {
  flex: 1; padding: 8px; border: none; background: none;
  font-size: 13.5px; font-weight: 600; color: var(--muted);
  border-radius: 7px; cursor: pointer; transition: all .2s;
}
.auth-tab.active { background: var(--blue); color: var(--white); }

.form-group { margin-bottom: 13px; }
.form-label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 11px 13px;
  background: #1a1a28;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  color: var(--white);
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.form-input::placeholder { color: rgba(255,255,255,0.28); }
.form-input:focus {
  border-color: var(--blue);
  background: rgba(90,127,255,0.07);
  box-shadow: 0 0 0 3px rgba(90,127,255,0.10);
}

select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
  cursor: pointer;
}
select.form-input option {
  background-color: #1a1a28;
  color: #fff;
}

.form-btn { width: 100%; padding: 12px; margin-top: 4px; font-size: 14px; border-radius: 9px; }

.auth-footer-note { text-align: center; margin-top: 14px; font-size: 12.5px; color: var(--muted); }
.auth-footer-note a { color: #8aa8ff; font-weight: 600; }

/* ── Plan chosen card ─────────────────────────────────────────────────── */
.plan-chosen {
  background: rgba(90,127,255,0.07);
  border: 1px solid rgba(90,127,255,0.18);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.plan-chosen-name  { font-size: 13.5px; font-weight: 800; color: var(--white); }
.plan-chosen-price { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

.plan-chosen-tag {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #07090d;
  padding: 3px 11px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Onboarding ──────────────────────────────────────────────────────── */
.onboarding-page {
  min-height: 100vh;
  background: var(--bg);
  background-image: radial-gradient(ellipse at 30% 50%, rgba(90,127,255,0.04) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

.onboarding-card {
  background: var(--card);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  width: 100%;
  max-width: 540px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.ob-step { display: none; }
.ob-step.active { display: block; }

.ob-progress { display: flex; gap: 5px; margin-bottom: 28px; }
.ob-dot { height: 3px; flex: 1; border-radius: 2px; background: var(--border-md); transition: background .3s; }
.ob-dot.done { background: var(--blue); }

.ob-label { font-size: 11px; font-weight: 700; color: #8aa8ff; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 7px; }
.ob-title { font-size: 22px; font-weight: 900; color: var(--white); margin-bottom: 6px; letter-spacing: -0.025em; }
.ob-sub   { font-size: 13.5px; color: var(--muted-md); margin-bottom: 24px; }

.industry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 24px; }

.industry-option {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 12px;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.industry-option:hover {
  border-color: rgba(90,127,255,0.35);
  background: rgba(90,127,255,0.06);
  transform: translateY(-1px);
}
.industry-option.selected { border-color: var(--blue); background: rgba(90,127,255,0.10); }
.industry-option input { display: none; }
.industry-emoji { font-size: 18px; flex-shrink: 0; }
.industry-text  { font-size: 12.5px; font-weight: 700; color: var(--text); line-height: 1.3; }

.volume-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }

.volume-option {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color .2s, background .2s, transform .15s;
}

.volume-option:hover {
  border-color: rgba(90,127,255,0.35);
  background: rgba(90,127,255,0.06);
  transform: translateY(-1px);
}
.volume-option.selected { border-color: var(--blue); background: rgba(90,127,255,0.10); }
.volume-option input { display: none; }
.volume-num  { font-size: 18px; font-weight: 900; color: var(--blue); min-width: 40px; letter-spacing: -0.02em; }
.volume-desc { font-size: 13px; color: var(--text); font-weight: 600; }
.volume-sub  { font-size: 11px; color: var(--muted); }

.ob-nav { display: flex; gap: 8px; }
.ob-nav .btn-primary { flex: 1; justify-content: center; }
.ob-back {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 11px 18px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  transition: border-color .15s, color .15s;
}
.ob-back:hover { border-color: var(--border-md); color: var(--white); }

/* ── Dashboard ───────────────────────────────────────────────────────── */
.dash-header {
  background: rgba(9,9,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  color: var(--white);
  padding: 0 32px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky; top: 0; z-index: 50;
}

.dash-brand { font-size: 20px; font-weight: 900; letter-spacing: -0.025em; }
.dash-brand span {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.dash-user { display: flex; align-items: center; gap: 10px; }
.dash-user-name { font-size: 13px; font-weight: 700; color: var(--white); }
.dash-user-ramo { font-size: 11px; color: var(--muted); }

.dash-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #4a1b7a);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--white);
}

.btn-sair {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-sair:hover { background: rgba(255,255,255,0.07); color: var(--white); border-color: var(--border-md); }

/* ── Loading do upload ────────────────────────────────────────────────── */
.loading-wrap {
  padding: 18px 0 4px;
  animation: fadeIn .3s ease;
}

@keyframes fadeIn { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:none; } }

.loading-bar-track {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 13px;
}

.loading-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 10px;
  transition: width 0.7s ease;
  box-shadow: 0 0 10px rgba(90,127,255,0.4);
}

.loading-msg {
  font-size: 12.5px;
  color: var(--muted-md);
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
  min-height: 19px;
  transition: opacity .4s;
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.loading-dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  animation: dot-bounce 1.2s infinite ease-in-out;
}

.loading-dots span:nth-child(2) { animation-delay: .2s; }
.loading-dots span:nth-child(3) { animation-delay: .4s; }

@keyframes dot-bounce {
  0%, 80%, 100% { transform: scale(0.7); opacity: .4; }
  40%            { transform: scale(1.2); opacity: 1; }
}

/* ── Botão flutuante de suporte ───────────────────────────────────────── */
.fab-suporte {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 11px 18px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 22px rgba(90,127,255,0.40);
  z-index: 500;
  transition: transform .2s, box-shadow .2s;
  font-family: 'Inter', sans-serif;
}
.fab-suporte:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(90,127,255,0.55); }

/* ── Modal de suporte ─────────────────────────────────────────────────── */
.suporte-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.suporte-overlay.hidden { display: none; }

.suporte-modal {
  background: var(--card);
  border: 1px solid var(--border-md);
  border-radius: 18px;
  padding: 30px;
  width: 100%;
  max-width: 490px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  animation: pageIn .25s ease;
}

.suporte-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
  gap: 14px;
}
.suporte-title { font-size: 17px; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.02em; }
.suporte-sub   { font-size: 12px; color: var(--muted); line-height: 1.5; }
.suporte-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 7px;
  transition: color .2s, background .2s;
  flex-shrink: 0;
}
.suporte-close:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.dash-main { max-width: 1040px; margin: 24px auto; padding: 0 24px 56px; }

.dash-welcome {
  background: linear-gradient(90deg, #0c1830, #14141e);
  border: 1px solid rgba(90,127,255,0.18);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.dash-welcome-text h2 { color: var(--white); font-size: 17px; font-weight: 800; margin-bottom: 2px; letter-spacing: -0.02em; }
.dash-welcome-text p  { color: var(--muted); font-size: 12.5px; }

.dash-ramo-tag {
  background: rgba(245,196,48,0.08);
  border: 1px solid rgba(245,196,48,0.20);
  color: var(--gold);
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
}

.upload-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 18px;
}

.drop-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(255,255,255,0.08);
  border-radius: 9px;
  padding: 26px 20px 20px;
  cursor: pointer;
  background: rgba(255,255,255,0.015);
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  transition: border-color .2s, background .2s;
}

.drop-zone:hover, .drop-zone.over {
  border-color: rgba(90,127,255,0.38);
  background: rgba(90,127,255,0.04);
}

.drop-zone input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.drop-icon  { font-size: 30px; margin-bottom: 7px; }
.drop-title { font-size: 14.5px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.drop-sub   { font-size: 12.5px; color: var(--muted); }
.drop-sub span { color: #8aa8ff; font-weight: 700; text-decoration: underline; }
.file-chip  { margin-top: 9px; background: rgba(90,127,255,0.14); color: #8aa8ff; padding: 3px 13px; border-radius: 20px; font-size: 11.5px; font-weight: 600; }

.btn-extract {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: 9px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(90,127,255,0.28);
}

.btn-extract:hover:not(:disabled) { background: #4a6fe0; box-shadow: 0 4px 26px rgba(90,127,255,0.42); }
.btn-extract:disabled { background: rgba(255,255,255,0.07); color: var(--muted); cursor: not-allowed; box-shadow: none; }

.demo-banner {
  background: rgba(245,196,48,0.05);
  border: 1px solid rgba(245,196,48,0.16);
  border-radius: 9px;
  padding: 11px 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(245,196,48,0.75);
}

/* ── Fields grid ─────────────────────────────────────────────────────── */
.fields-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 12px;
  align-items: start;
}

/* ── Field section ───────────────────────────────────────────────────── */
.field-section {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.065);
  background: #111118;
  animation: fadeUp .35s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Accent color no topo de cada seção */
.field-section-blue   { border-top: 2px solid rgba(90,127,255,0.55); }
.field-section-orange { border-top: 2px solid rgba(245,196,48,0.45); }
.field-section-green  { border-top: 2px solid rgba(34,211,168,0.50); }

.field-section-header {
  padding: 13px 18px 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.field-section-blue   .field-section-header { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(138,168,255,0.85); }
.field-section-orange .field-section-header { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(245,196,48,0.80); }
.field-section-green  .field-section-header { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(34,211,168,0.80); }

.field-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2px 9px;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.30);
  letter-spacing: 0.03em;
}

.field-body { }

/* ── Field row ───────────────────────────────────────────────────────── */
.field-row {
  display: grid;
  grid-template-columns: 6px minmax(100px,180px) 1fr;
  align-items: baseline;
  padding: 9px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 0 12px;
  transition: background .12s;
}

.field-row:hover { background: rgba(255,255,255,0.022); }
.field-row:last-child { border-bottom: none; }

/* Dot indicator */
.f-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(34,211,168,0.65);
  flex-shrink: 0;
  margin-top: 1px;
  align-self: center;
}
.f-dot.empty { background: rgba(255,255,255,0.08); }

/* Label */
.f-label {
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.32);
  text-transform: uppercase;
  letter-spacing: 0.055em;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Value */
.f-val {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  word-break: break-word;
  line-height: 1.55;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  cursor: default;
}
.f-val:hover { -webkit-line-clamp: unset; cursor: text; }
.f-val.empty { color: rgba(255,255,255,0.12); letter-spacing: 1.5px; font-size: 11px; }

/* Campos críticos (datas) */
.f-val.crit {
  color: #f5c430;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.field-row.crit {
  background: rgba(245,196,48,0.025);
  border-bottom-color: rgba(245,196,48,0.06);
}
.field-row.crit .f-dot { background: rgba(245,196,48,0.8); }

/* ── Welcome overlay ─────────────────────────────────────────────────── */
.welcome-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.80);
  backdrop-filter: blur(4px);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  z-index: 200; padding: 24px;
  animation: pageIn .3s ease both;
}

.welcome-card {
  background: #13131e;
  border: 1px solid rgba(90,127,255,0.20);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  max-width: 380px; width: 100%;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.welcome-check {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #1db87a, #16a066);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
  box-shadow: 0 0 0 8px rgba(29,184,122,0.12), 0 12px 32px rgba(29,184,122,0.25);
}

.welcome-tag {
  display: inline-block;
  background: rgba(90,127,255,0.10);
  border: 1px solid rgba(90,127,255,0.22);
  color: #8aa8ff;
  font-size: 10.5px; font-weight: 800;
  padding: 3px 12px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.welcome-card h2 { font-size: 22px; font-weight: 900; margin-bottom: 10px; letter-spacing: -0.03em; color: var(--white); }
.welcome-card p  { color: rgba(255,255,255,0.50); font-size: 13.5px; margin-bottom: 20px; line-height: 1.65; }
.welcome-card p strong { color: var(--white); font-weight: 700; }

/* ── Funil — página wrapper ─────────────────────────────────────────── */
.funnel-page {
  min-height: 100vh;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 25% 25%, rgba(90,127,255,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 75%, rgba(245,196,48,0.03) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
  gap: 22px;
}

.funnel-logo { display: flex; align-items: center; justify-content: center; }
.funnel-logo .b2 { font-size: 28px; font-weight: 900; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── Step bar (círculos + linhas) ───────────────────────────────────── */
.fs-bar {
  display: flex;
  align-items: flex-start;
  margin-bottom: 28px;
  width: 100%;
}

.fs-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.fs-node {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900;
  color: rgba(255,255,255,0.22);
  transition: all .25s;
}

.fs-step.done .fs-node  { background: var(--green); border-color: var(--green); color: #fff; font-size: 11px; }
.fs-step.active .fs-node { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 0 0 4px rgba(90,127,255,0.18); }

.fs-step > span {
  font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,0.22);
  text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap;
}
.fs-step.done > span   { color: var(--green); }
.fs-step.active > span { color: #8aa8ff; }

.fs-line {
  flex: 1;
  height: 1.5px;
  background: rgba(255,255,255,0.07);
  margin-top: 14px;
  flex-shrink: 1;
}
.fs-line.done { background: var(--green); }

/* ── Auth wrap (card + benefits panel) ─────────────────────────────── */
.auth-wrap {
  display: flex;
  width: 100%;
  max-width: 420px;
  transition: max-width .3s ease;
}

.auth-wrap.has-benefits { max-width: 780px; }

.auth-card {
  background: var(--card);
  border: 1px solid var(--border-md);
  border-radius: 20px;
  padding: 40px 36px;
  width: 100%;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45);
  flex: 1;
  min-width: 0;
}

.auth-wrap.has-benefits .auth-card {
  border-radius: 20px 0 0 20px;
  border-right: none;
}

/* ── Benefits panel ─────────────────────────────────────────────────── */
.auth-benefits {
  background: linear-gradient(160deg, #0c1830 0%, #111120 100%);
  border: 1px solid rgba(90,127,255,0.20);
  border-left: none;
  border-radius: 0 20px 20px 0;
  padding: 40px 28px;
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.auth-benefits.hidden { display: none; }

.ab-head {
  font-size: 9.5px; font-weight: 800;
  color: #8aa8ff;
  text-transform: uppercase; letter-spacing: 0.10em;
  margin-bottom: 22px;
}

.ab-list {
  list-style: none; padding: 0; margin: 0 0 auto;
  display: flex; flex-direction: column; gap: 16px;
}

.ab-list li { display: flex; gap: 11px; align-items: flex-start; }

.ab-icon {
  width: 22px; height: 22px;
  background: rgba(34,168,90,0.12);
  border: 1px solid rgba(34,168,90,0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; color: var(--green);
}

.ab-title { font-size: 12.5px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.ab-desc  { font-size: 11px; color: rgba(255,255,255,0.38); line-height: 1.45; }

.ab-quote {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.ab-quote p    { font-size: 11.5px; color: rgba(255,255,255,0.55); font-style: italic; line-height: 1.55; margin-bottom: 6px; }
.ab-quote span { font-size: 10px; color: rgba(255,255,255,0.28); font-weight: 600; }

/* ── Password toggle ─────────────────────────────────────────────────── */
.pw-wrap { position: relative; }
.pw-wrap .form-input { padding-right: 42px; }
.pw-eye {
  position: absolute; right: 11px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--muted);
  cursor: pointer; padding: 4px; display: flex; align-items: center;
  transition: color .15s;
}
.pw-eye:hover { color: var(--text); }

/* ── Form error & trust ──────────────────────────────────────────────── */
.form-error {
  color: #f05252; font-size: 12.5px; font-weight: 600;
  min-height: 18px; margin: 4px 0 8px;
}

.reg-trust {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 11px; color: rgba(255,255,255,0.28); margin-top: 10px;
  text-align: center;
}

/* ── Trial banner (cartao.html) ─────────────────────────────────────── */
.trial-banner {
  display: flex; align-items: center; gap: 10px;
  background: rgba(34,168,90,0.09);
  border: 1px solid rgba(34,168,90,0.20);
  border-radius: 10px; padding: 11px 15px;
  margin-bottom: 20px;
}
.trial-banner-icon { font-size: 15px; flex-shrink: 0; }
.trial-banner-text { font-size: 12.5px; color: rgba(255,255,255,0.70); font-weight: 600; line-height: 1.4; }
.trial-banner-text strong { color: #4ade80; }

/* ── Onboarding welcome ─────────────────────────────────────────────── */
.ob-welcome { margin-bottom: 24px; }
.ob-welcome-name { font-size: 22px; font-weight: 900; color: var(--white); letter-spacing: -0.025em; margin-bottom: 4px; }
.ob-welcome-sub  { font-size: 13px; color: var(--muted-md); }

/* ── Industry option checkmark ──────────────────────────────────────── */
.industry-check {
  display: none; margin-left: auto; flex-shrink: 0;
  color: var(--blue); font-size: 13px; font-weight: 900;
}
.industry-option.selected .industry-check { display: block; }

/* ── Responsivo ──────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 860px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .nav { padding: 0 18px; }
  .nav-links { display: none; }
  .preview-body { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 20px; }
  .onboarding-card { padding: 28px 20px; }
  .auth-benefits { display: none !important; }
  .auth-wrap.has-benefits { max-width: 420px; }
  .auth-wrap.has-benefits .auth-card { border-radius: 20px; border-right: 1px solid var(--border-md); }
  .dash-header { padding: 0 14px; }
  .dash-main { padding: 0 12px 36px; }
  footer { padding: 20px 20px; flex-direction: column; align-items: center; text-align: center; }
  .footer-links { gap: 16px; }
  .fields-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 6px 1fr; grid-template-rows: auto auto; padding: 9px 14px; gap: 0 10px; }
  .f-dot { grid-column: 1; grid-row: 1/3; align-self: center; }
  .f-label { grid-column: 2; grid-row: 1; }
  .f-val   { grid-column: 2; grid-row: 2; margin-top: 2px; }
}

@media (max-width: 600px) {
  .action-btn { padding: 5px 8px; font-size: 11px; }
  .action-btn svg { width: 11px; height: 11px; }
  .ramo-chip { font-size: 10px; padding: 3px 8px; }
  #cache-chip { display: none !important; }
  .topbar-title { font-size: 12px; }
  .sv-body { flex-direction: column; }
  .sv-nav { width: 100%; position: static; display: flex; flex-wrap: wrap; gap: 4px; padding: 8px; }
  .sv-nav-item { width: auto; display: inline-flex; }
  .sv-nav-sep { display: none; }
  .funnel-page { padding: 24px 16px; gap: 16px; }
  .card-box { padding: 24px 18px; }
}

@media (max-width: 480px) {
  .field-row { padding: 8px 10px; }
  .f-label { font-size: 10px; }
  .f-val   { font-size: 12.5px; }
  .fs-step > span { font-size: 8px; }
  .fs-node { width: 24px; height: 24px; font-size: 9px; }
  .fs-connector { margin-top: 12px; }
}

/* ── Dashboard mobile ────────────────────────────────────── */
@media (max-width: 520px) {
  /* Docs form: empilha em vez de 3 colunas */
  #dv-list-wrap .form-grid-3,
  #sp-documentos .form-grid-3 {
    grid-template-columns: 1fr !important;
  }

  /* Upload hero: tamanho de fonte menor */
  .upload-hero-title { font-size: 20px; }
  .upload-hero-sub   { font-size: 13px; }

  /* Feature chips: centraliza e reduz */
  .upload-features { gap: 5px; }
  .uf-chip { font-size: 11px; padding: 4px 9px; }
}

/* ── Landing hero mobile ─────────────────────────────────── */
@media (max-width: 480px) {
  .hero { padding-left: 18px; padding-right: 18px; }
  .hero-sub { font-size: 15px; }
  .hero-stat-num { font-size: 20px; }
  .btn-gold, .btn-ghost { padding: 13px 20px; font-size: 14px; width: 100%; justify-content: center; box-sizing: border-box; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .section-title { font-size: clamp(22px, 7vw, 36px); }
  .section-sub { font-size: 14px; }
  .cta-final h2 { font-size: clamp(24px, 7vw, 42px); }
  .top-banner { font-size: 11px; padding: 7px 14px; }
}
