/*
 * OCCUPANCY — bloco de ocupação dos imóveis: donut + legenda.
 * Donut à esquerda (tamanho fixo), legenda à direita ocupando o resto.
 */
.occupancy {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.occupancy__chart {
  flex-shrink: 0;
  width: 11rem;
}

.occupancy__legend {
  flex: 1;
  min-width: 10rem;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* Item de legenda: ponto colorido + rótulo + valor à direita. Reutilizável. */
.legend-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
}

.legend-item__dot {
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: var(--radius-full);
}

.legend-item__dot--accent  { background-color: var(--color-accent); }
.legend-item__dot--neutral { background-color: var(--color-status-neutral); }

.legend-item__label {
  color: var(--color-text);
}

.legend-item__value {
  margin-left: auto;
  color: var(--color-text-muted);
}
