.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.month-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.month-switcher button {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--color-surface-2);
  display: flex; align-items: center; justify-content: center;
}
.month-switcher button svg { width: 16px; height: 16px; }
.month-switcher .label { font-weight: 700; min-width: 140px; text-align: center; }

.bar-row { margin-bottom: var(--space-3); }
.bar-row:last-child { margin-bottom: 0; }
.bar-row__top {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-sm);
  margin-bottom: 6px;
}
.bar-row__top .nome { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.bar-row__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.bar-row__track {
  height: 10px;
  border-radius: var(--radius-pill);
  background: var(--color-surface-2);
  overflow: hidden;
}
.bar-row__fill { height: 100%; border-radius: var(--radius-pill); }

.mini-list .list-item { cursor: pointer; }
