/* Customizações de botões */
.btn-custom {
  background-color: #005fa3;
  color: #fff;
  border-radius: 6px;
  padding: 0.5em 1.2em;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-custom:hover {
  background-color: #003d6b;
}
