/* ============================================================
   Página 3 — Quiz de qualificação
   ============================================================ */
.quiz-page {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 20px 32px;
  background:
    radial-gradient(ellipse 900px 500px at 88% 4%, rgba(255, 138, 0, 0.09), transparent 60%),
    radial-gradient(ellipse 700px 500px at 4% 100%, rgba(91, 110, 245, 0.08), transparent 60%);
}

.quiz-page__inner {
  width: 100%;
}

.quiz {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 22px;
  position: relative;
}

/* ---- barra de progresso ---- */
.quiz__progress {
  height: 3px;
  border-radius: 2px;
  background: var(--line-strong);
  margin-bottom: 36px;
  overflow: hidden;
}

.quiz__progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--ocean-500), var(--cyan-400));
  transition: width 0.5s var(--ease);
}

/* ---- telas ---- */
.quiz__screen {
  animation: quiz-rise 0.45s var(--ease) forwards;
}

@keyframes quiz-rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz__eyebrow {
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-faint);
  margin-bottom: 10px;
}

.quiz__question {
  font-size: clamp(1.3rem, 2.4cqw + 1rem, 1.6rem);
  text-align: center;
  line-height: 1.28;
  margin: 0 auto;
}

.quiz__intro-text {
  text-align: center;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15px;
  margin-left: auto;
  margin-right: auto;
}

.quiz__start-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.quiz__options {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz__option {
  text-align: left;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line-strong);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.quiz__option:hover {
  border-color: var(--ocean-500);
  background: rgba(14, 165, 233, 0.05);
}

.quiz__option.is-selected {
  border-color: var(--ocean-500);
  background: rgba(14, 165, 233, 0.08);
  color: var(--ocean-700);
}

.quiz__result {
  text-align: center;
}

.quiz__result-mark {
  width: 52px;
  height: 52px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz__result-mark svg {
  width: 24px;
  height: 24px;
}

.quiz__result-title {
  font-size: clamp(1.25rem, 2cqw + 1rem, 1.5rem);
  line-height: 1.35;
  margin: 0 auto 30px;
}

.quiz__result .quiz__intro-text {
  margin-top: -16px;
  margin-bottom: 24px;
}

.quiz__result-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
