.programa, .mensal {
  margin-top: 20px;
}

.item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 8px 0;
  font-size: 14px;
}

.item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-bottom: 1px dotted #999;
  z-index: 0;
}

.descricao {
  background: var(--cor-fundo);
  padding-right: 10px;
  position: relative;
  z-index: 1;
}

.horario {
  background: var(--cor-fundo);
  padding-left: 10px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}