.hero-small {
  padding: 1.75rem 1.5rem;
}

.wizard-wrap {
  max-width: 38rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1rem;
}

.progress {
  height: 6px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 2rem;
}

#progress-bar {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--pink), var(--teal));
  transition: width 0.25s ease;
}

.step {
  display: none;
  text-align: center;
  animation: fade-in 0.2s ease;
}

.step.active {
  display: block;
}

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

.step h2 {
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.opciones {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.paso-nota {
  font-size: 0.8rem;
  font-weight: normal;
  opacity: 0.6;
}

.opciones-multiples {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.opcion-check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.05rem;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--teal);
  border-radius: 14px;
  background: white;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease;
}

.opcion-check:hover {
  background: rgba(62, 201, 201, 0.12);
}

.opcion-check input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--teal);
  flex-shrink: 0;
}

.campo-texto {
  width: 100%;
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 2px solid #ddd;
  border-radius: 10px;
  resize: vertical;
  margin-bottom: 1.25rem;
}

.campo-texto:focus {
  outline: none;
  border-color: var(--teal);
}

.opcion {
  font-size: 1.05rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--teal);
  background: white;
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease, transform 0.1s ease;
}

.opcion:hover {
  background: var(--teal);
  color: white;
  transform: translateX(4px);
}

.datos-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.datos-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.requerido {
  color: #e0303f;
  font-weight: 700;
}

.datos-form input,
.datos-form select {
  font: inherit;
  padding: 0.65rem 0.8rem;
  border: 2px solid #ddd;
  border-radius: 10px;
}

.datos-form input:focus,
.datos-form select:focus {
  outline: none;
  border-color: var(--teal);
}

.boton-final {
  border: none;
  font-size: 1.05rem;
  margin-top: 0.5rem;
  background: var(--pink);
  color: white;
}

.nav-buttons {
  margin-top: 1.5rem;
  text-align: center;
}

.enlace-volver {
  background: none;
  border: none;
  color: var(--pink);
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: underline;
}
