/* ═══════════════════════════════════════
   REGISTRO (formulario completo) — Page Specific Styles
   ═══════════════════════════════════════ */

/* ── Hero ── */
.reg-hero {
  background: var(--black);
  padding: calc(var(--header-h) + 7rem) 0 5rem;
}
.reg-hero-content .eyebrow { margin-bottom: 1.25rem; }
.reg-hero-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.045em; color: var(--white);
  margin-bottom: 1.75rem;
}
.reg-hero-content p {
  max-width: 640px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

/* ── Form section ── */
.reg-form-section {
  background: var(--light-bg);
  padding-block: var(--section-py);
}
.reg-form-wrap {
  max-width: 780px;
}
.reg-card {
  padding: clamp(1.75rem, 4vw, 3rem);
}

/* Numbered step groups */
.reg-step {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.reg-step:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.reg-step-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.reg-step-num {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(0,0,0,0.12);
  letter-spacing: -0.03em;
}
.reg-step-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
}

.reg-hint {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .reg-hero { padding-top: calc(var(--header-h) + 4rem); }
  .reg-card { padding: 1.5rem; }
  .reg-step-head { gap: 0.75rem; }
}
