/* Barra de progresso — trilho + preenchimento. */
.progresso {
  display: flex;
  align-items: center;
  gap: var(--esp-3);
}
.progresso__trilho {
  flex: 1;
  height: 6px;
  background: var(--cor-superficie-2);
  border-radius: var(--raio-pill);
  overflow: hidden;
}
.progresso__preenchimento {
  height: 100%;
  background: var(--cor-primaria);
  border-radius: var(--raio-pill);
  transition: width var(--transicao);
}
.progresso__rotulo {
  font-size: var(--texto-xs);
  color: var(--cor-texto-suave);
  white-space: nowrap;
  min-width: 3.5em;
  text-align: right;
}
