/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 24 2026 | 15:34:50 */
/* EFEITO DE PULSE NOS BOTÕES */
.pulse {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(106, 192, 57, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(106, 192, 57, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(106, 192, 57, 0);
  }
}
