/* Controles de satisfação: legíveis e fáceis de tocar em qualquer tela. */
.question-page {
  padding: 30px;
  margin-top: 18px;
}

.question-list {
  display: grid;
  gap: 28px;
}

.page-question {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.page-question:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-question h2 {
  max-width: 760px;
  margin: 8px 0 14px;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: clamp(21px, 2.6vw, 28px);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.page-question .scale-help {
  display: flex;
  justify-content: space-between;
  max-width: 540px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.score-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  max-width: 540px;
}

.score-row .score {
  display: grid;
  place-items: center;
  min-width: 0;
  height: 68px;
  border: 1px solid #c9d6e4;
  border-radius: 14px;
  background: #f8fbff;
  color: var(--navy);
  box-shadow: 0 1px 0 rgba(7, 26, 51, 0.04);
  font-size: 25px;
  font-variant-numeric: tabular-nums;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.score-row .score:hover {
  transform: translateY(-2px);
  border-color: #437bad;
  background: #edf5fc;
  color: var(--navy);
  box-shadow: 0 6px 15px rgba(20, 89, 166, 0.14);
}

.score-row .score:focus-visible {
  outline: 3px solid #e8b94b;
  outline-offset: 3px;
}

.score-row .score.selected {
  transform: translateY(-1px);
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 7px 17px rgba(20, 89, 166, 0.26);
}

.page-question .scale-words {
  display: flex;
  justify-content: space-between;
  max-width: 540px;
  margin-top: 9px;
  padding: 0 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

@media (max-width: 560px) {
  .question-page {
    padding: 22px 16px;
  }

  .question-list {
    gap: 24px;
  }

  .page-question {
    padding-bottom: 24px;
  }

  .page-question h2 {
    font-size: 23px;
    line-height: 1.25;
  }

  .page-question .scale-help {
    max-width: none;
    font-size: 10px;
  }

  .score-row {
    max-width: none;
    gap: 7px;
  }

  .score-row .score {
    height: 62px;
    border-radius: 12px;
    font-size: 23px;
  }

  .page-question .scale-words {
    max-width: none;
    font-size: 10px;
  }
}
