/**
 * CPA — Comissão Própria de Avaliação
 * css/responder.css — Estilos da tela de Responder Questionário
 */

/* ══════════════════════════════════════════════════════════════
   ANIMAÇÕES
══════════════════════════════════════════════════════════════ */
@keyframes slideInRight {
  from { transform: translateX(60px); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
@keyframes fadeInUp {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,125,69,.35); }
  50%       { box-shadow: 0 0 0 5px rgba(46,125,69,.0); }
}

/* ══════════════════════════════════════════════════════════════
   AVISO INSTITUCIONAL (banner no topo)
══════════════════════════════════════════════════════════════ */
.rsp-aviso {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, #e8f5ec, #f0faf3);
  border: 1px solid #a8d5b5;
  border-left: 4px solid #2e7d45;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: .875rem;
  color: #1a4d2c;
  line-height: 1.5;
  margin-bottom: 24px;
  animation: fadeInUp .3s ease;
}
.rsp-aviso--compact {
  padding: 10px 16px;
  font-size: .835rem;
  margin-bottom: 0;
}
.rsp-aviso--readonly {
  background: linear-gradient(135deg, #fff8e1, #fffde7);
  border-color: #ffe082;
  border-left-color: #f5a623;
  color: #7a5800;
}
.rsp-aviso-icon {
  font-size: 1.15rem;
  margin-top: 1px;
  flex-shrink: 0;
  color: #2e7d45;
}
.rsp-aviso--readonly .rsp-aviso-icon { color: #f5a623; }

/* ══════════════════════════════════════════════════════════════
   TÍTULOS DE SEÇÃO NA LISTA
══════════════════════════════════════════════════════════════ */
.rsp-section-title {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .9rem;
  font-weight: 700;
  color: #1a1e2d;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e0e4e9;
}

.rsp-count-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  margin-left: 8px;
}
.rsp-count-badge--green { background: #e8f5ec; color: #1c5c2f; }
.rsp-count-badge--gray  { background: #f0f1f3; color: #4a5568; }

/* ══════════════════════════════════════════════════════════════
   BADGES REUTILIZÁVEIS
══════════════════════════════════════════════════════════════ */
.rsp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
  white-space: nowrap;
}
.rsp-badge--blue        { background: #dbeafe; color: #1e40af; }
.rsp-badge--purple      { background: #ede9fe; color: #5b21b6; }
.rsp-badge--green       { background: #dcfce7; color: #166534; }
.rsp-badge--green-light { background: #d1fae5; color: #065f46; }
.rsp-badge--gray        { background: #f1f5f9; color: #475569; }
.rsp-badge--orange      { background: #fff7ed; color: #9a3412; }
.rsp-badge--red         { background: #fee2e2; color: #991b1b; }

/* ══════════════════════════════════════════════════════════════
   CARDS DE QUESTIONÁRIOS (lista)
══════════════════════════════════════════════════════════════ */
.rsp-card {
  background: #ffffff;
  border: 1px solid #e0e4e9;
  border-radius: 10px;
  padding: 20px 22px;
  margin-bottom: 14px;
  transition: box-shadow .18s ease, border-color .18s ease, transform .15s ease;
  animation: fadeInUp .25s ease;
}
.rsp-card:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,.10);
  border-color: #c8cdd5;
  transform: translateY(-1px);
}
.rsp-card--respondido {
  opacity: .78;
  background: #fafafa;
}
.rsp-card--respondido:hover { opacity: 1; }
.rsp-card--urgente {
  border-left: 4px solid #e67e22;
  animation: pulse-border 2.5s ease-in-out infinite;
}

/* Cabeçalho do card */
.rsp-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.rsp-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e8f5ec, #c8e6d0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d45;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.rsp-card-info { flex: 1; min-width: 0; }
.rsp-card-nome {
  font-size: .98rem;
  font-weight: 700;
  color: #1a1e2d;
  margin: 0 0 6px;
  line-height: 1.3;
}
.rsp-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
  color: #4a5568;
}
.rsp-card-meta span { display: flex; align-items: center; gap: 5px; }
.rsp-card-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.rsp-card-descricao {
  font-size: .85rem;
  color: #4a5568;
  line-height: 1.55;
  margin: 0 0 12px;
}
.rsp-card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
}
.rsp-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: #4a5568;
}
.rsp-card-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #f0f1f3;
}

/* ══════════════════════════════════════════════════════════════
   BOTÕES
══════════════════════════════════════════════════════════════ */
.rsp-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .18s ease;
  text-decoration: none;
}
.rsp-btn--primary {
  background: #2e7d45;
  color: #fff;
  border: 1px solid #2e7d45;
}
.rsp-btn--primary:hover {
  background: #1c5c2f;
  border-color: #1c5c2f;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(28,92,47,.25);
}
.rsp-btn--secondary {
  background: #fff;
  color: #2e7d45;
  border: 1.5px solid #2e7d45;
}
.rsp-btn--secondary:hover {
  background: #e8f5ec;
  transform: translateY(-1px);
}
.rsp-btn--ghost {
  background: transparent;
  color: #4a5568;
  border: 1.5px solid #e0e4e9;
}
.rsp-btn--ghost:hover {
  background: #f4f5f7;
  border-color: #c8cdd5;
}
.rsp-btn--disabled {
  background: #e0e4e9;
  color: #8898a9;
  cursor: not-allowed;
  border: 1px solid #e0e4e9;
}

/* Botão voltar */
.rsp-btn-voltar {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  background: #f4f5f7;
  border: 1px solid #e0e4e9;
  color: #4a5568;
  transition: all .18s ease;
}
.rsp-btn-voltar:hover {
  background: #e8f5ec;
  border-color: #a8d5b5;
  color: #1c5c2f;
}

/* ══════════════════════════════════════════════════════════════
   EMPTY STATE
══════════════════════════════════════════════════════════════ */
.rsp-empty {
  text-align: center;
  padding: 36px 24px;
  color: #8898a9;
  background: #fafafa;
  border: 1.5px dashed #e0e4e9;
  border-radius: 10px;
}
.rsp-empty i { font-size: 2rem; margin-bottom: 10px; display: block; }
.rsp-empty p { font-size: .88rem; margin: 0; }

/* ══════════════════════════════════════════════════════════════
   CABEÇALHO DO FORMULÁRIO DE RESPOSTA
══════════════════════════════════════════════════════════════ */
.rsp-form-header {
  background: #ffffff;
  border: 1px solid #e0e4e9;
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
  animation: fadeInUp .25s ease;
}
.rsp-form-header--readonly {
  border-left: 4px solid #27ae60;
}
.rsp-form-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.rsp-form-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.rsp-form-title-area { margin-bottom: 14px; }
.rsp-form-titulo {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1e2d;
  margin: 0 0 8px;
  line-height: 1.3;
}
.rsp-form-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .8rem;
  color: #4a5568;
}
.rsp-form-meta span { display: flex; align-items: center; gap: 5px; }

/* ══════════════════════════════════════════════════════════════
   BARRA DE PROGRESSO
══════════════════════════════════════════════════════════════ */
.rsp-progress-area { margin-top: 14px; }
.rsp-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: #4a5568;
  margin-bottom: 6px;
  font-weight: 500;
}
.rsp-progress-bar-outer {
  height: 8px;
  background: #e8ecf0;
  border-radius: 999px;
  overflow: hidden;
}
.rsp-progress-bar-inner {
  height: 100%;
  background: linear-gradient(90deg, #2e7d45, #4caf6e);
  border-radius: 999px;
  transition: width .4s ease;
}

/* ══════════════════════════════════════════════════════════════
   NAVEGAÇÃO POR DIMENSÕES (sticky chips)
══════════════════════════════════════════════════════════════ */
.rsp-dim-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #e0e4e9;
  border-radius: 8px;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
}
.rsp-dim-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  background: #f4f5f7;
  border: 1.5px solid #e0e4e9;
  font-size: .76rem;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  text-decoration: none;
  transition: all .18s ease;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rsp-dim-nav-item:hover {
  background: #e8f5ec;
  border-color: #a8d5b5;
  color: #1c5c2f;
}
.rsp-dim-nav-item--parcial {
  background: #fff8e1;
  border-color: #ffe082;
  color: #7a5800;
}
.rsp-dim-nav-item--completo {
  background: #dcfce7;
  border-color: #86efac;
  color: #166534;
}
.rsp-dim-nav-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e0e4e9;
  font-size: .65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.rsp-dim-nav-item--completo .rsp-dim-nav-num { background: #86efac; color: #166534; }
.rsp-dim-nav-item--parcial  .rsp-dim-nav-num { background: #ffe082; color: #7a5800; }
.rsp-dim-nav-label {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

/* ══════════════════════════════════════════════════════════════
   SEÇÃO DE DIMENSÃO
══════════════════════════════════════════════════════════════ */
.rsp-dim-section {
  background: #fff;
  border: 1px solid #e0e4e9;
  border-radius: 10px;
  margin-bottom: 22px;
  overflow: hidden;
  scroll-margin-top: 80px;
  animation: fadeInUp .3s ease;
}
.rsp-dim-section--readonly { opacity: 1; }

.rsp-dim-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f8fafb, #f0f4f8);
  border-bottom: 1px solid #e0e4e9;
  flex-wrap: wrap;
}
.rsp-dim-num-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.rsp-dim-section-info { flex: 1; min-width: 0; }
.rsp-dim-section-label {
  font-size: .72rem;
  font-weight: 600;
  color: #8898a9;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 3px;
}
.rsp-dim-section-nome {
  font-size: .98rem;
  font-weight: 700;
  color: #1a1e2d;
  margin: 0;
  line-height: 1.25;
}

/* Progresso por dimensão */
.rsp-dim-section-progresso {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  min-width: 90px;
}
.rsp-dim-prog-text {
  font-size: .75rem;
  font-weight: 600;
  color: #4a5568;
}
.rsp-dim-prog-bar {
  width: 80px;
  height: 5px;
  background: #e8ecf0;
  border-radius: 999px;
  overflow: hidden;
}
.rsp-dim-prog-inner {
  height: 100%;
  background: linear-gradient(90deg, #2e7d45, #4caf6e);
  border-radius: 999px;
  transition: width .35s ease;
}
.rsp-dim-prog--completo .rsp-dim-prog-text { color: #166534; }
.rsp-dim-prog--completo .rsp-dim-prog-inner { background: #27ae60; }

/* Lista de itens dentro da seção */
.rsp-itens-lista {
  padding: 8px 0;
}

/* ══════════════════════════════════════════════════════════════
   ITEM DE AVALIAÇÃO
══════════════════════════════════════════════════════════════ */
.rsp-item {
  padding: 18px 22px 14px;
  border-bottom: 1px solid #f0f1f3;
  transition: background .18s ease;
}
.rsp-item:last-child { border-bottom: none; }
.rsp-item:hover { background: #fafbfc; }
.rsp-item--respondido { background: #f8fffe; }
.rsp-item--readonly   { cursor: default; }
.rsp-item--nao-respondido { background: #fff; }

.rsp-item-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.rsp-item-num {
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e8ecf0;
  color: #4a5568;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.rsp-item--respondido .rsp-item-num {
  background: #dcfce7;
  color: #166534;
}
.rsp-item-enunciado {
  font-size: .9rem;
  color: #1a1e2d;
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
}
.rsp-item-inputs { padding-left: 38px; }

/* Status do item */
.rsp-item-status {
  margin-top: 8px;
  padding-left: 38px;
  min-height: 18px;
}
.rsp-item-ok {
  font-size: .75rem;
  font-weight: 600;
  color: #166534;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ══════════════════════════════════════════════════════════════
   ESCALA LIKERT
══════════════════════════════════════════════════════════════ */
.rsp-likert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rsp-likert-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid #e0e4e9;
  background: #fff;
  cursor: pointer;
  transition: all .15s ease;
  min-width: 90px;
  text-align: center;
  flex: 1;
  max-width: 160px;
}
.rsp-likert-opt:hover {
  border-color: #a8d5b5;
  background: #f0faf3;
  transform: translateY(-1px);
}
.rsp-likert-opt.selected {
  border-color: #2e7d45;
  background: #e8f5ec;
}
.rsp-likert-opt input { display: none; }
.rsp-likert-label {
  font-size: .78rem;
  font-weight: 500;
  color: #4a5568;
  line-height: 1.3;
  user-select: none;
}
.rsp-likert-opt.selected .rsp-likert-label { color: #1c5c2f; font-weight: 700; }

/* ══════════════════════════════════════════════════════════════
   LISTA DE OPÇÕES (escolha única / múltipla)
══════════════════════════════════════════════════════════════ */
.rsp-opcoes-lista {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rsp-opcao-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 7px;
  border: 1.5px solid #e0e4e9;
  background: #fff;
  cursor: pointer;
  transition: all .15s ease;
}
.rsp-opcao-item:hover {
  border-color: #a8d5b5;
  background: #f0faf3;
}
.rsp-opcao-item.selected {
  border-color: #2e7d45;
  background: #e8f5ec;
}
.rsp-radio, .rsp-checkbox {
  accent-color: #2e7d45;
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
.rsp-opcao-label {
  font-size: .86rem;
  color: #1a1e2d;
  user-select: none;
  line-height: 1.4;
}
.rsp-opcao-item.selected .rsp-opcao-label { color: #1c5c2f; font-weight: 600; }
.rsp-opcoes-lista--check .rsp-opcao-item.selected {
  border-color: #2563eb;
  background: #eff6ff;
}
.rsp-opcoes-lista--check .rsp-opcao-item.selected .rsp-opcao-label { color: #1e40af; }

/* Hint para múltipla escolha */
.rsp-multipla-hint {
  font-size: .78rem;
  color: #4a5568;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.rsp-multipla-hint i { color: #2563eb; }

/* ══════════════════════════════════════════════════════════════
   RODAPÉ DO FORMULÁRIO (fixo na parte inferior do conteúdo)
══════════════════════════════════════════════════════════════ */
.rsp-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  background: #fff;
  border: 1px solid #e0e4e9;
  border-radius: 10px;
  margin-top: 24px;
  box-shadow: 0 -2px 10px rgba(0,0,0,.06);
  flex-wrap: wrap;
  position: sticky;
  bottom: 0;
  z-index: 40;
}
.rsp-footer-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: #4a5568;
}
.rsp-footer-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   TELA DE ENVIO CONFIRMADO
══════════════════════════════════════════════════════════════ */
.rsp-enviado-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
  max-width: 560px;
  margin: 0 auto;
  animation: fadeInUp .35s ease;
}
.rsp-enviado-icon {
  font-size: 4rem;
  color: #27ae60;
  margin-bottom: 20px;
  animation: pulse-border 2s ease-in-out 3;
}
.rsp-enviado-titulo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1e2d;
  margin: 0 0 12px;
}
.rsp-enviado-desc {
  font-size: .9rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0 0 28px;
}
.rsp-enviado-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  width: 100%;
}
.rsp-enviado-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 22px;
  background: linear-gradient(135deg, #e8f5ec, #f0faf3);
  border: 1px solid #a8d5b5;
  border-radius: 10px;
  min-width: 110px;
}
.rsp-enviado-stat-valor {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1c5c2f;
  line-height: 1;
}
.rsp-enviado-stat-label {
  font-size: .73rem;
  font-weight: 600;
  color: #4a5568;
  text-align: center;
}
.rsp-enviado-q-nome {
  font-size: .85rem;
  color: #4a5568;
  font-style: italic;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.rsp-enviado-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════════
   VISUALIZAÇÃO DE RESPOSTAS (readonly)
══════════════════════════════════════════════════════════════ */
.rsp-item-resposta-vis {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 38px;
  flex-wrap: wrap;
}
.rsp-vis-label {
  font-size: .78rem;
  font-weight: 600;
  color: #8898a9;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.rsp-vis-resposta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .84rem;
  font-weight: 700;
  border: 1.5px solid;
}
.rsp-vis-sem-resposta {
  font-size: .82rem;
  color: #8898a9;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rsp-vis-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.rsp-vis-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  border: 1px solid #bfdbfe;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVIDADE
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .rsp-card-header   { flex-direction: column; gap: 10px; }
  .rsp-card-badges   { flex-direction: row; align-items: flex-start; }
  .rsp-card-actions  { justify-content: stretch; }
  .rsp-card-actions .rsp-btn { flex: 1; justify-content: center; }

  .rsp-form-header-top { flex-direction: column; align-items: flex-start; }

  .rsp-likert-grid  { gap: 6px; }
  .rsp-likert-opt   { min-width: 70px; padding: 8px 10px; }
  .rsp-likert-label { font-size: .72rem; }

  .rsp-form-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    bottom: 0;
  }
  .rsp-footer-buttons { justify-content: stretch; }
  .rsp-footer-buttons .rsp-btn { flex: 1; justify-content: center; }

  .rsp-dim-nav { gap: 6px; padding: 10px 12px; }
  .rsp-dim-nav-item { font-size: .72rem; padding: 4px 10px; }
  .rsp-dim-nav-label { max-width: 100px; }

  .rsp-enviado-container { padding: 32px 16px; }
  .rsp-enviado-stats     { gap: 12px; }
  .rsp-enviado-stat      { padding: 12px 16px; min-width: 90px; }

  .rsp-item-inputs, .rsp-item-status, .rsp-item-resposta-vis { padding-left: 0; }
}

@media (max-width: 480px) {
  .rsp-likert-grid { flex-direction: column; }
  .rsp-likert-opt  { max-width: 100%; flex-direction: row; text-align: left; }

  .rsp-dim-section-header { flex-wrap: wrap; }
  .rsp-dim-section-progresso { display: none; }
}
