/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Mar 23 2026 | 14:46:30 */
.pulsante-verde {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse-verde 1.8s infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.botao-whatsapp:hover {
  transform: scale(1.03);
}

@keyframes pulse-verde {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.75);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
