/* ─── Dashboard Comitê — cards de Champions agrupados ─────────── */
.champion-stats {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.champion-group-title {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 16px;
}

.champion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.champion-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 130px;
  width: 130px;
  background: rgba(0,0,0,0.53);
  border-radius: 20px;
  padding: 20px 14px;
  text-align: center;
}

.champion-logo {
  max-width: 90px;
  max-height: 62px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: grayscale(1);
  opacity: .35;
  transition: filter .2s ease, opacity .2s ease;
}
.champion-card.is-earned .champion-logo {
  filter: none;
  opacity: 1;
}

.champion-tag {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: #696974;
  margin-bottom: 6px;
}

.champion-thermo {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: #fd7222;
  margin-bottom: 20px;
}

.champion-value {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 28px;
  color: #fafafb;
  margin-bottom: 4px;
}
.champion-card.is-earned .champion-value { color: #3dd598; }

.champion-caption {
  width: 100%;
  font-family: var(--font-poppins);
  font-weight: 300;
  font-size: 10px;
  color: #fafafb;
}

@media (max-width: 640px) {
  .champion-card { flex: 0 0 calc(50% - 8px); width: calc(50% - 8px); }
}

/* ─── Card de perfil do comitê — botão Validar Atividade ──────── */
.dash-validate-btn {
  display: flex;
  width: 100%;
  margin-top: 24px;
  padding: 16px 0;
}
