/* =================================================================
   Cadastro de Visitas — Colégio Eleve (multi-step)
   Identidade visual mantida (laranja + teal do PDF institucional),
   refinada para um fluxo moderno e responsivo.
   ================================================================= */

:root {
  --color-orange: #E85D1A;
  --color-orange-dark: #C73E1D;
  --color-orange-soft: #FFF1E8;
  --color-teal: #26A69A;
  --color-teal-dark: #1E8A80;
  --color-teal-soft: #E8F5F4;
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #128C4A;
  --color-whatsapp-soft: #E9FFF2;
  --color-field-bg: #F1F1F0;
  --color-field-bg-focus: #FFFFFF;
  --color-label: #5A5A5A;
  --color-text: #1F2937;
  --color-muted: #9CA3AF;
  --color-border: #E5E7EB;
  --color-border-strong: #D1D5DB;
  --color-success-bg: #ECFDF5;
  --color-success-text: #047857;
  --color-error-bg: #FEF2F2;
  --color-error-text: #B91C1C;
  --color-error-border: #FCA5A5;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.08);
  --font-stack: "Inter", "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
  --max-width: 880px;
}

* { box-sizing: border-box; }

/* Garante que [hidden] sempre esconda, mesmo em elementos com display customizado */
[hidden] { display: none !important; }

html, body { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-stack);
  background: linear-gradient(135deg, #F8F9FB 0%, #F1F4F8 100%);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  font-size: 15px;
  min-height: 100vh;
}

a { color: var(--color-orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* -----------------------------------------------------------------
   Layout
   ----------------------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 24px auto;
  padding: 0 16px 32px;
}

.form {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px 40px 28px;
  position: relative;
  overflow: hidden;
}

.form-footer {
  text-align: center;
  font-size: 13px;
  color: var(--color-muted);
  padding: 20px 16px 8px;
  line-height: 1.6;
}

.form-footer strong { color: var(--color-text); }

/* -----------------------------------------------------------------
   Cabeçalho
   ----------------------------------------------------------------- */
.form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.form-title {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  color: var(--color-orange);
  margin: 0;
  letter-spacing: -0.8px;
  line-height: 1;
}

.form-subtitle {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.form-header__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px 9px 10px;
  border: 1px solid rgba(18, 140, 74, 0.22);
  border-radius: var(--radius-pill);
  background: var(--color-whatsapp-soft);
  color: var(--color-whatsapp-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: var(--shadow-sm);
  transition: background 150ms ease, border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.whatsapp-cta:hover {
  background: #FFFFFF;
  border-color: rgba(18, 140, 74, 0.42);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transform: translateY(-1px);
}

.whatsapp-cta:active {
  transform: translateY(0);
}

.whatsapp-cta__icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 900;
}

.whatsapp-cta__icon-svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eleve-logo {
  width: 52px;
  height: 72px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* -----------------------------------------------------------------
   Stepper (barra de progresso)
   ----------------------------------------------------------------- */
.stepper {
  position: relative;
  margin-bottom: 28px;
}

.stepper__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.stepper__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  text-align: center;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
  transition: color 200ms ease;
}

.stepper__bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--color-border-strong);
  color: var(--color-muted);
  font-weight: 700;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
  background-clip: padding-box;
}

.stepper__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stepper__item.is-active .stepper__bullet {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #FFF;
  box-shadow: 0 0 0 4px var(--color-orange-soft);
}

.stepper__item.is-active { color: var(--color-orange); }

.stepper__item.is-done .stepper__bullet {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: #FFF;
}

.stepper__item.is-done { color: var(--color-teal); }

.stepper__bar {
  position: absolute;
  top: 16px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: var(--color-border);
  border-radius: 2px;
  z-index: 1;
}

.stepper__bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-teal) 100%);
  border-radius: 2px;
  transition: width 350ms ease;
}

/* -----------------------------------------------------------------
   Steps (etapas) — transições
   ----------------------------------------------------------------- */
.step {
  animation: stepFadeIn 350ms ease;
}

.step[hidden] { display: none; }

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

.step__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step__title-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-orange);
  text-transform: uppercase;
}

.step__hint {
  margin: -8px 0 16px;
  color: var(--color-muted);
  font-size: 14px;
}

/* -----------------------------------------------------------------
   Section titles (faixas teal)
   ----------------------------------------------------------------- */
.section__title {
  background: var(--color-teal);
  color: #FFFFFF;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.2px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  margin: 24px 0 14px;
  text-transform: uppercase;
}

/* -----------------------------------------------------------------
   Fields
   ----------------------------------------------------------------- */
.field {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.field__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-label);
  margin: 2px 4px 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.field__hint {
  font-weight: 400;
  font-size: 12px;
  color: var(--color-muted);
}

.field__hint strong { color: var(--color-orange); }

.req {
  color: var(--color-orange);
  font-weight: 700;
}

.field__input {
  background: var(--color-field-bg);
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--color-text);
  transition: background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
  width: 100%;
}

.field__input::placeholder {
  color: var(--color-muted);
}

.field__input:hover {
  background: var(--color-field-bg-focus);
}

.field__input:focus-visible {
  outline: none;
  background: #FFFFFF;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 4px var(--color-teal-soft);
}

.field__input:disabled {
  background: #F0F0F0;
  color: #AAA;
  cursor: not-allowed;
}

.field__input[readonly] {
  background: #F8FAFC;
  color: var(--color-label);
  cursor: default;
}

.field__input--derived {
  font-weight: 700;
}

.field__input.has-error {
  border-color: var(--color-error-border);
  background: var(--color-error-bg);
}

.field__error {
  font-size: 12px;
  color: var(--color-error-text);
  margin: 4px 4px 0;
  min-height: 0;
  display: none;
}

.field__error.is-visible { display: block; }

select.field__input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%235A5A5A' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

input[type="date"].field__input,
input[inputmode="numeric"].field__input { font-variant-numeric: tabular-nums; }

.field__input--year { font-weight: 700; font-size: 17px; letter-spacing: 1px; }

/* -----------------------------------------------------------------
   Date of Birth — 3 campos com ano destacado
   ----------------------------------------------------------------- */
.dob {
  display: grid;
  grid-template-columns: 80px 80px 1fr;
  gap: 10px;
  align-items: end;
}

.dob__field {
  display: flex;
  flex-direction: column;
}

.dob__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-muted);
  margin-top: 4px;
  text-transform: uppercase;
  text-align: center;
}

.dob__field--year .field__input {
  background: var(--color-orange-soft);
  border-color: var(--color-orange-soft);
}

.dob__field--year .field__input:focus {
  border-color: var(--color-orange);
  background: #FFF;
  box-shadow: 0 0 0 4px rgba(232, 93, 26, 0.15);
}

.dob__field--year .dob__label { color: var(--color-orange); }

/* -----------------------------------------------------------------
   City / State (inline)
   ----------------------------------------------------------------- */
.city-state {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 8px;
}

/* -----------------------------------------------------------------
   Grids
   ----------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 10px;
}
.grid--2 { grid-template-columns: 1fr 1fr; }

/* -----------------------------------------------------------------
   Optional block (details/summary)
   ----------------------------------------------------------------- */
.optional-block {
  margin-top: 18px;
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-md);
  padding: 0;
  background: #FAFAFA;
  transition: background 150ms ease;
}

.optional-block[open] { background: #FFFFFF; }

.optional-block > summary {
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-teal-dark);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.optional-block > summary::before {
  content: "▶";
  font-size: 10px;
  transition: transform 200ms ease;
}

.optional-block[open] > summary::before { transform: rotate(90deg); }

.optional-block > summary::-webkit-details-marker { display: none; }

.optional-block__body {
  padding: 4px 16px 16px;
}

/* -----------------------------------------------------------------
   Responsible / children blocks
   ----------------------------------------------------------------- */
.responsible-block,
.child-block {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 18px 14px;
  margin-bottom: 14px;
  background: #FAFAFA;
  position: relative;
  animation: childFadeIn 280ms ease;
}

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

.child-block__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.responsible-block__index,
.child-block__index {
  background: var(--color-orange);
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.btn-add-responsible {
  margin-bottom: 18px;
}

.child-block__remove {
  background: transparent;
  border: none;
  color: var(--color-error-text);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  transition: background 150ms ease;
}

.child-block__remove:hover {
  background: var(--color-error-bg);
}

.child-block__remove:focus-visible,
.btn-add-child:focus-visible,
.btn:focus-visible,
.whatsapp-cta:focus-visible,
.checkbox-inline input:focus-visible,
.consentimento input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--color-teal-soft);
}

.btn-add-child {
  width: 100%;
  background: var(--color-teal-soft);
  border: 2px dashed var(--color-teal);
  color: var(--color-teal-dark);
  border-radius: var(--radius-md);
  padding: 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-add-child:hover {
  background: #D5EFEC;
  transform: translateY(-1px);
}

.btn-add-child__icon {
  width: 24px;
  height: 24px;
  background: var(--color-teal);
  color: #FFF;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

/* -----------------------------------------------------------------
   Checkbox rows
   ----------------------------------------------------------------- */
.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  padding: 8px 4px;
  font-size: 14px;
}

.checkbox-row__label {
  font-weight: 600;
  color: var(--color-label);
  margin-right: 4px;
  flex-shrink: 0;
}

.checkbox-row__qual {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 220px;
}

.checkbox-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-text);
}

.checkbox-inline input[type="checkbox"],
.checkbox-inline input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-border-strong);
  border-radius: 4px;
  background: #FFFFFF;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin: 0;
  transition: border-color 150ms ease;
}

.checkbox-inline input[type="radio"] { border-radius: 50%; }

.checkbox-inline input[type="checkbox"]:checked,
.checkbox-inline input[type="radio"]:checked {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.checkbox-inline input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  width: 5px;
  height: 10px;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-inline input[type="radio"]:checked {
  border-width: 5px;
  background: #FFF;
}

.observacao {
  color: var(--color-orange-dark);
  font-weight: 600;
  font-size: 13px;
  margin: 10px 0 0;
  padding: 10px 12px;
  background: var(--color-orange-soft);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-orange);
}

/* -----------------------------------------------------------------
   "Como soube" — lista simples
   ----------------------------------------------------------------- */
.como-soube-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.como-soube-option {
  background: #FAFAFA;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  transition: background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.como-soube-option:hover,
.como-soube-option:focus-within {
  background: var(--color-teal-soft);
  border-color: var(--color-teal);
}

.como-soube-option:focus-within {
  box-shadow: 0 0 0 4px var(--color-teal-soft);
}

.como-soube-choice {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  cursor: pointer;
}

.como-soube-choice input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  cursor: pointer;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
}

.como-soube-choice input[type="checkbox"]:checked {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.como-soube-choice input[type="checkbox"]:checked::after {
  content: "";
  width: 5px;
  height: 10px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px);
}

.como-soube-choice input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--color-teal-soft);
}

.como-soube-text {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
}

.como-soube-option--with-input {
  display: grid;
  gap: 10px;
}

.como-soube-option--with-input .field__input {
  font-size: 13px;
  padding: 9px 10px;
}

/* -----------------------------------------------------------------
   Resumo (details)
   ----------------------------------------------------------------- */
.resumo {
  margin-top: 24px;
  background: #FAFAFA;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.resumo > summary {
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-teal-dark);
  list-style: none;
}

.resumo > summary::-webkit-details-marker { display: none; }

.resumo__body {
  padding: 4px 18px 18px;
  font-size: 13px;
  display: grid;
  gap: 8px;
}

.resumo__group {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 8px;
}

.resumo__group:last-child { border-bottom: none; }

.resumo__group-title {
  font-weight: 700;
  color: var(--color-teal);
  margin: 0 0 4px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
}

.resumo__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px;
  padding: 2px 0;
}

.resumo__row strong { color: var(--color-label); font-weight: 600; }
.resumo__row span { color: var(--color-text); }
.resumo__empty { color: var(--color-muted); font-style: italic; }

/* -----------------------------------------------------------------
   Consentimento
   ----------------------------------------------------------------- */
.consentimento {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 0;
  padding: 14px 16px;
  background: var(--color-teal-soft);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--color-teal-dark);
  line-height: 1.5;
  cursor: pointer;
}

.consentimento:hover,
.consentimento:focus-within {
  border-color: var(--color-teal);
}

.consentimento input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--color-teal);
  flex-shrink: 0;
}

/* -----------------------------------------------------------------
   Navegação entre etapas
   ----------------------------------------------------------------- */
.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.btn {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 13px 28px;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  letter-spacing: 0.3px;
}

.btn--ghost {
  background: transparent;
  color: var(--color-label);
  border: 2px solid var(--color-border-strong);
}

.btn--ghost:hover {
  background: var(--color-field-bg);
  border-color: var(--color-label);
  color: var(--color-text);
}

.btn--primary {
  background: var(--color-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(232, 93, 26, 0.25);
}

.btn--primary:hover:not(:disabled) {
  background: var(--color-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(232, 93, 26, 0.3);
}

.btn--primary:active:not(:disabled) { transform: translateY(0); }

.btn--primary:disabled {
  background: #C7C7C7;
  cursor: not-allowed;
  box-shadow: none;
}

.btn--submit {
  background: var(--color-teal);
  box-shadow: 0 4px 12px rgba(38, 166, 154, 0.25);
}

.btn--submit:hover:not(:disabled) {
  background: var(--color-teal-dark);
  box-shadow: 0 6px 16px rgba(38, 166, 154, 0.3);
}

#btn-prev[hidden] { visibility: hidden; }

/* -----------------------------------------------------------------
   Feedback
   ----------------------------------------------------------------- */
.form-feedback {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
}

.form-feedback--success {
  background: var(--color-success-bg);
  color: var(--color-success-text);
  border: 1px solid #A7F3D0;
}

.form-feedback--error {
  background: var(--color-error-bg);
  color: var(--color-error-text);
  border: 1px solid var(--color-error-border);
}

/* -----------------------------------------------------------------
   Política de privacidade
   ----------------------------------------------------------------- */
.privacy-page {
  max-width: 760px;
  margin: 0 auto;
}

.privacy-section {
  border-top: 1px solid var(--color-border);
  padding: 18px 0;
}

.privacy-section h2 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--color-teal-dark);
}

.privacy-section p {
  margin: 0;
  color: var(--color-label);
}

.privacy-updated {
  margin: 18px 0;
  color: var(--color-muted);
  font-size: 13px;
}

/* -----------------------------------------------------------------
   Responsive
   ----------------------------------------------------------------- */
@media (max-width: 720px) {
  .container { padding: 0 8px 16px; margin: 12px auto; }
  .form { padding: 20px 16px 18px; border-radius: var(--radius-md); }
  .form-header { gap: 12px; margin-bottom: 18px; }
  .form-title { font-size: 30px; }
  .form-subtitle { font-size: 13px; }
  .form-header__actions { margin-top: 12px; }
  .whatsapp-cta { min-height: 38px; padding: 8px 12px 8px 9px; font-size: 13px; }
  .eleve-logo { width: 36px; height: 50px; }
  .step__title { font-size: 18px; }
  .step__title-tag { font-size: 10px; }
  .grid--2 { grid-template-columns: 1fr; }
  .dob { grid-template-columns: 70px 70px 1fr; gap: 8px; }
  .city-state { grid-template-columns: 1fr 80px; }
  .como-soube-list { grid-template-columns: 1fr; }
  .stepper__label { display: none; }
  .stepper__bar { left: 12%; right: 12%; }
  .btn { padding: 12px 20px; font-size: 14px; flex: 1; justify-content: center; }
  .step-nav { gap: 8px; }
}

@media (max-width: 420px) {
  .form-title { font-size: 26px; }
  .checkbox-row__qual { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
