/* site/cadastro.css, wizard de cadastro (reusa variáveis de style.css) */
.cad-wrap { max-width: 1040px; margin: 0 auto; padding: 40px 20px 80px; }
.cad-steps { display: flex; align-items: center; gap: 8px; max-width: 460px; margin: 0 auto 36px; }
.cad-step { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted, #64748b); font-weight: 600; }
.cad-step__dot { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: #e2e8f0; color: #64748b; font-size: 13px; transition: all .2s ease; }
.cad-step.is-active .cad-step__dot { background: #2563EB; color: #fff; box-shadow: 0 0 0 4px #bfdbfe; }
.cad-step.is-done .cad-step__dot { background: #16a34a; color: #fff; }
.cad-step__line { flex: 1; height: 2px; background: #e2e8f0; }
.cad-panel { display: none; animation: cadFade .25s ease; }
.cad-panel.is-active { display: block; }
@keyframes cadFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.cad-title { font-size: 26px; font-weight: 800; text-align: center; margin-bottom: 8px; }
.cad-sub { text-align: center; color: var(--text-muted, #64748b); margin-bottom: 28px; }
.cad-cycle { display: flex; justify-content: center; align-items: center; gap: 12px; margin-bottom: 24px; font-weight: 600; }
.cad-cycle .toggle-badge { background: #dcfce7; color: #16a34a; font-size: 11px; padding: 2px 8px; border-radius: 99px; }
.cad-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cad-plan { border: 2px solid #e2e8f0; border-radius: 14px; padding: 22px; cursor: pointer; transition: all .2s ease; background: #fff; position: relative; }
.cad-plan:hover { border-color: #93c5fd; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,99,235,.08); }
.cad-plan.is-selected { border-color: #2563EB; box-shadow: 0 0 0 4px #bfdbfe; }
.cad-plan__badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: #2563EB; color: #fff; font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 99px; }
.cad-plan__name { font-size: 18px; font-weight: 700; }
.cad-plan__price { font-size: 28px; font-weight: 800; margin: 10px 0 2px; color: #0f172a; }
.cad-plan__price small { font-size: 13px; font-weight: 600; color: #64748b; }
.cad-plan__mods { list-style: none; padding: 0; margin: 14px 0 0; font-size: 13px; color: #475569; }
.cad-plan__mods li { display: flex; gap: 6px; align-items: center; margin-bottom: 6px; }
.cad-plan__mods svg { width: 15px; height: 15px; color: #16a34a; }
.cad-form { max-width: 520px; margin: 0 auto; display: grid; gap: 16px; }
.cad-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cad-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.cad-field input, .cad-field select { width: 100%; padding: 12px 14px; border: 1.5px solid #e2e8f0; border-radius: 10px; font-size: 14px; font-family: inherit; box-sizing: border-box; }
.cad-field input:focus, .cad-field select:focus { outline: none; border-color: #2563EB; box-shadow: 0 0 0 3px #bfdbfe; }
.cad-field input.input--error { border-color: #dc2626; }
.cad-field .err { color: #dc2626; font-size: 12px; margin-top: 4px; min-height: 14px; }
.cad-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cad-alert { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; padding: 12px 14px; border-radius: 10px; font-size: 14px; display: none; margin: 0 auto 16px; max-width: 520px; }
.cad-alert.is-visible { display: block; }
@media (max-width: 720px) { .cad-plans { grid-template-columns: 1fr; } .cad-form .row2 { grid-template-columns: 1fr; } }

/* ── Etapa Sistema ─────────────────────────────────────── */
.cad-sistemas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 8px auto 24px;
  max-width: 760px;
}
.cad-sistema {
  position: relative;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 16px;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s, transform .15s;
  text-align: left;
}
.cad-sistema:hover:not(.is-soon) { border-color: #93c5fd; transform: translateY(-2px); }
.cad-sistema > svg, .cad-sistema > [data-lucide] { width: 28px; height: 28px; color: #0f172a; margin-bottom: 10px; }
.cad-sistema__name { font-weight: 700; font-size: 16px; }
.cad-sistema__desc { font-size: 13px; color: #64748b; margin-top: 4px; line-height: 1.4; }
.cad-sistema.is-selected { border-color: #2563EB; box-shadow: 0 0 0 4px #bfdbfe; }
.cad-sistema.is-soon { opacity: .55; cursor: not-allowed; }
.cad-sistema__soon {
  position: absolute; top: 10px; right: 10px;
  font-size: 11px; font-weight: 600; color: #64748b;
  background: #f1f5f9; border-radius: 999px; padding: 2px 8px;
}
@media (max-width: 720px) { .cad-sistemas { grid-template-columns: 1fr; } }

/* Consentimento LGPD (checkbox de aceite dos termos) */
.cad-consent { display:flex; align-items:flex-start; gap:10px; margin:6px 0 2px; font-size:14px; line-height:1.45; color:#475569; cursor:pointer; }
.cad-consent input[type="checkbox"] { margin-top:2px; flex:0 0 auto; }
.cad-consent a { color:var(--primary,#2563EB); font-weight:600; }
