/* ─── Título + filtro de período (timeline) na mesma linha — badges/
   ranking de um bimestre específico, ao lado do "Dashboard" ────────── */
.dash-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.dash-title-row .dash-title { margin-bottom: 0; }

.dash-comite-filtro {
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

.dash-comite-filtro .select-wrap { position: relative; min-width: 220px; }
.dash-comite-filtro .select-wrap::after {
  content: '▾';
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.4);
  pointer-events: none;
  font-size: 12px;
}

.dash-comite-filtro .env-select {
  width: 100%;
  appearance: none;
  background: rgba(0,0,0,0.3);
  border: none;
  border-radius: 20px;
  padding: 14px 40px 14px 16px;
  font-family: var(--font-montserrat);
  font-size: 14px;
  letter-spacing: 0.28px;
  color: var(--white);
  cursor: pointer;
  outline: none;
}
.dash-comite-filtro .env-select option { background: #1a1a1a; color: var(--white); }

/* ─── 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); }
  .dash-title-row { flex-wrap: wrap; }
  .dash-comite-filtro .select-wrap { min-width: 0; }
}

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