/*=============================================================================*/
/* TAGS DE ALERTA */
/*=============================================================================*/
.info-alert {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px 30px;
  border-radius: 3px;
  font-size: 110%;
  font-weight: bold;
  color: #ffffff;
  /* 'step-end' garante a troca brusca de cores */
  animation: bgStrobe 1.0s step-end infinite;
}

@keyframes bgStrobe {
  0% {
    background-color: #eb6259; /* Vermelho claro */
  }
  50% {
    background-color: #d63b31; /* Vermelho escuro */
  }
}