/* ============================================
   STEPS CSS — Layout das Etapas
   Quiz Diagnóstico Libertas Bio
   ============================================ */

/* STEPS */
.step {
  display: none;
}

.step.active {
  display: block;
  animation: stepIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.step-section {
  font-size: 11px;
  color: var(--ouro);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step-question {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 3.5vw, 26px);
  font-weight: 700;
  color: var(--creme);
  line-height: 1.3;
  margin-bottom: 6px;
}

.step-hint {
  font-size: 14px;
  color: var(--cinza);
  margin-bottom: 28px;
  line-height: 1.5;
}
