#mozavagas-notificacao {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  max-width: 90%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  padding: 15px;
  font-family: Arial, sans-serif;
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: space-between;
  animation: slideIn 0.6s ease;
}
#mozavagas-notificacao strong {
  display: block;
  margin-bottom: 6px;
  color: #333;
}
#mozavagas-notificacao p {
  font-size: 14px;
  color: #555;
  margin: 0 0 10px 0;
}
#mozavagas-notificacao a {
  display: inline-block;
  padding: 6px 12px;
  background: #00c16e;
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.3s;
}
#mozavagas-notificacao a:hover {
  background: #009e59;
}
#mozavagas-fechar {
  font-size: 14px;
  cursor: pointer;
  color: #888;
  margin-left: 10px;
}
@keyframes slideIn {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@media (max-width: 480px) {
  #mozavagas-notificacao {
    width: 90%;
    right: 5%;
    bottom: 10px;
  }
}
