/* =========================
   Mensagens do formulário
   ========================= */

.mensagem-box {
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Arial, sans-serif;
}

/* Cores das mensagens */
.alert-yellow {
  background-color: #fff4cc;
  color: #856404;
  border: 1px solid #ffeeba;
}

.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Botão fechar */
.mensagem-box .fechar-msg {
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  color: inherit;
  margin-left: 10px;
}

/* =========================
   Bolinhas animadas
   ========================= */

.bolinha-amarela,
.bolinha-verde,
.bolinha-vermelha {
  display: inline-block;
  margin-left: 8px;
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s ease;
}

/* Animação pulsante */
@keyframes pulsar {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

.bolinha-amarela {
  color: #ffc107;
  animation: pulsar 0.6s infinite;
}

.bolinha-verde {
  color: #28a745;
  animation: pulsar 0.6s infinite;
}

.bolinha-vermelha {
  color: #dc3545;
  animation: pulsar 0.6s infinite;
}
