/* Landing do produto. Reaproveita INTEIRAMENTE os tokens do design "Aurora"
   (styles.css): mesmas variáveis de cor, raio, sombra e tipografia, para a
   página pública e o painel logado não parecerem dois produtos diferentes.
   Aqui só entram os arranjos que a landing precisa e o painel não tem — faixas
   de largura total, grade de recursos, cartões de plano. */

body.landing { }

/* A landing usa faixas de largura total, então o .wrap do painel (820px) não
   serve; cada seção centraliza o próprio conteúdo. */
.lp-in { max-width: 1060px; margin: 0 auto; padding: 0 22px; }
.lp-narrow { max-width: 720px; }

/* ---- Navegação ---- */
.lp-nav {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.lp-nav-in {
  max-width: 1060px; margin: 0 auto; padding: 12px 22px;
  display: flex; align-items: center; gap: 18px;
}
.lp-nav .brand { margin: 0; text-decoration: none; color: var(--text); }
.lp-nav-links { display: flex; gap: 20px; margin-left: 12px; flex: 1; }
.lp-nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.92rem; font-weight: 550;
}
.lp-nav-links a:hover { color: var(--text); }
.lp-nav-cta { display: flex; gap: 9px; }

/* ---- Hero ---- */
.lp-hero { padding: 76px 0 60px; }
.lp-eyebrow {
  display: inline-block; margin: 0 0 16px;
  padding: 5px 13px; border-radius: 999px;
  background: var(--primary-soft); color: var(--primary);
  font-size: 0.8rem; font-weight: 650; letter-spacing: 0.01em;
}
.lp-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 1.12; letter-spacing: -0.028em; font-weight: 800;
}
.lp-lead {
  margin: 0 0 28px; max-width: 720px;
  font-size: 1.1rem; color: var(--muted);
}
.lp-hero-cta { display: flex; flex-wrap: wrap; gap: 11px; }
.lp-hero-note { margin: 18px 0 0; font-size: 0.87rem; color: var(--muted); }

/* ---- Seções ---- */
.lp-section { padding: 62px 0; }
.lp-alt {
  background: color-mix(in srgb, var(--surface) 55%, transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lp-section h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em; font-weight: 750;
}
.lp-sub { margin: 0 0 34px; color: var(--muted); max-width: 700px; }

/* ---- Passos ---- */
.lp-steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  counter-reset: step;
}
.lp-steps li {
  position: relative;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 20px 18px;
  box-shadow: var(--shadow-sm);
}
.lp-step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; margin-bottom: 12px;
  border-radius: 50%; background: var(--grad); color: var(--primary-ink);
  font-weight: 700; font-size: 0.92rem;
}
.lp-steps h3 { margin: 0 0 7px; font-size: 1.03rem; font-weight: 680; }
.lp-steps p { margin: 0; color: var(--muted); font-size: 0.93rem; }

/* ---- Grade de recursos ---- */
.lp-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.lp-feat {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.lp-feat h3 { margin: 0 0 8px; font-size: 1.03rem; font-weight: 680; }
.lp-feat p { margin: 0; color: var(--muted); font-size: 0.93rem; }

/* ---- Planos ---- */
.lp-plans {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
}
.lp-plan {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}
.lp-plan.featured {
  border-color: var(--primary); box-shadow: var(--shadow);
}
.lp-plan-tag {
  align-self: flex-start; margin-bottom: 12px;
  padding: 3px 10px; border-radius: 999px;
  background: var(--primary-soft); color: var(--primary);
  font-size: 0.74rem; font-weight: 650;
}
.lp-plan h3 { margin: 0 0 4px; font-size: 1.16rem; font-weight: 720; }
.lp-plan-para {
  margin: 0 0 14px; color: var(--primary);
  font-size: 0.9rem; font-weight: 620;
}
/* O volume ocupa o lugar de destaque que era do preço: é o número que a pessoa
   usa para se enxergar no plano agora que valor é conversa comercial. */
.lp-volume {
  margin: 0 0 12px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  font-size: 1.8rem; font-weight: 780; letter-spacing: -0.025em; line-height: 1.15;
}
.lp-volume small {
  display: block; margin-top: 3px;
  font-size: 0.85rem; font-weight: 500; color: var(--muted); letter-spacing: 0;
}
.lp-plan-porque { margin: 0 0 4px; color: var(--muted); font-size: 0.92rem; }
.lp-plan ul { list-style: none; margin: 16px 0 0; padding: 0; }
.lp-plan li {
  padding: 7px 0 7px 23px; position: relative;
  color: var(--muted); font-size: 0.92rem;
  border-top: 1px solid var(--border);
}
.lp-plan li:first-child { border-top: 0; }
.lp-plan li::before {
  content: "✓"; position: absolute; left: 0; top: 7px;
  color: var(--success); font-weight: 700;
}
.lp-loading { color: var(--muted); }
.lp-fineprint { margin: 20px 0 0; font-size: 0.83rem; color: var(--muted); }

/* ---- Formulário ---- */
.lp-row {
  display: grid; gap: 0 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.lp-hint { margin: 5px 0 0; font-size: 0.83rem; color: var(--muted); }
.lp-optional { color: var(--muted); font-weight: 400; }
.lp-closed, .lp-done { text-align: center; padding: 12px 0; }
.lp-done .lp-check {
  width: 52px; height: 52px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--success-soft); color: var(--success);
  font-size: 1.7rem; font-weight: 700;
}
.lp-done h3, .lp-closed h3 { margin: 0 0 8px; }
.lp-done .btn { margin-top: 16px; }

/* Campos que o painel não usa e por isso não estão no styles.css. */
.landing textarea, .landing select {
  width: 100%; margin: 6px 0 0; padding: 11px 13px;
  background: var(--surface-2); color: var(--text);
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  font: inherit; font-size: 0.95rem;
}
.landing textarea { resize: vertical; min-height: 76px; }
.landing textarea:focus, .landing select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

/* ---- Rodapé ---- */
.lp-foot {
  padding: 34px 0 46px; border-top: 1px solid var(--border);
  color: var(--muted); font-size: 0.9rem;
}
.lp-foot p { margin: 0 0 6px; }

@media (max-width: 700px) {
  .lp-nav-links { display: none; }
  .lp-hero { padding: 52px 0 42px; }
}
