/* ===== NOTA DE URGÊNCIA (abaixo do botão do hero) ===== */
.urgent-note {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 14px;
}

/* ===== LAYOUT GERAL DA PÁGINA ===== */
.automotivo-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px 90px;
}

.wizard-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  padding: 32px 28px 28px;
}

@media (max-width: 560px) {
  .wizard-card { padding: 24px 18px 20px; }
}

/* ===== BARRA DE PROGRESSO ===== */
.wizard-progress { margin-bottom: 28px; }

.wizard-progress-track {
  width: 100%;
  height: 6px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 10px;
}

.wizard-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 100px;
  transition: width 0.35s ease;
}

.wizard-progress-text {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* ===== ETAPAS ===== */
.wizard-step {
  animation: wizardFadeIn 0.3s ease;
}

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

.wizard-step fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.wizard-question {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.35;
}

.wizard-step fieldset legend.wizard-question { padding: 0; float: none; width: 100%; }

.wizard-error {
  color: #ff9d90;
  font-size: 13px;
  margin-top: 14px;
}

/* ===== CARDS DE OPÇÃO (seleção única) ===== */
.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.option-grid-2 { grid-template-columns: 1fr 1fr; }
.option-grid-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 560px) {
  .option-grid,
  .option-grid-2,
  .option-grid-3 { grid-template-columns: 1fr; }
}

.option-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.option-card:hover { border-color: rgba(227, 166, 40, 0.5); background: var(--glass-hover); }

.option-card:has(.option-input:checked) {
  border-color: var(--gold);
  background: rgba(227, 166, 40, 0.1);
  box-shadow: 0 0 0 1px var(--gold) inset;
}

.option-card:has(.option-input:focus-visible) {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.option-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.option-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
  line-height: 1.4;
}

.option-text small {
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 400;
}

.option-card-sm { padding: 12px 14px; }
.option-card-sm .option-text { font-size: 14px; }

/* ===== CAMPOS DE TEXTO ===== */
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

@media (max-width: 560px) {
  .field-grid { grid-template-columns: 1fr; }
}

.field { display: block; margin-bottom: 16px; }

.field span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.field input[type="text"],
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
}

.field textarea { resize: vertical; }

.field input:focus,
.field textarea:focus { border-color: var(--gold); }

.field-group { margin-top: 22px; }

.field-group-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.field-group-label em {
  color: var(--text-muted);
  font-style: normal;
  font-weight: 400;
}

.field-group-optional { padding-top: 18px; border-top: 1px solid var(--glass-border); }

/* Destaque da observação quando é o único jeito do cliente explicar o que precisa */
.field[data-field="observacao"].is-emphasized textarea {
  border-color: var(--gold);
  background: rgba(227, 166, 40, 0.06);
}

.field[data-field="observacao"].is-emphasized span { color: var(--gold); }

/* ===== RESUMO ANTES DE ENVIAR ===== */
.wizard-summary {
  margin: 24px 0;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
}

.wizard-summary h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 12px;
}

.wizard-summary ul { list-style: none; }

.wizard-summary li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wizard-summary li:last-child { border-bottom: none; }

.wizard-summary li span:first-child { color: var(--text-muted); flex-shrink: 0; }
.wizard-summary li span:last-child { text-align: right; font-weight: 500; }

.wizard-submit { width: 100%; justify-content: center; margin-top: 6px; }

/* ===== NAVEGAÇÃO (Voltar / Continuar) ===== */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.wizard-nav .btn { flex: 0 0 auto; }
.wizard-nav .btn-gold:only-child,
.wizard-nav .btn-gold:last-child:not(:only-child) { margin-left: auto; }

@media (max-width: 480px) {
  .wizard-nav { flex-direction: column-reverse; }
  .wizard-nav .btn { width: 100%; justify-content: center; margin-left: 0 !important; }
}
