/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Nov 19 2025 | 17:42:34 */
.btn-pulando {
	display: inline-block;
	cursor: pointer;
	animation: puloSuave 1.2s ease-in-out infinite; /* mais rápido */
	transition: transform 0.25s ease;
}

.btn-pulando:hover {
  	animation-play-state: paused;
  	transform: translateY(0);
}

@keyframes puloSuave {
  0%   { transform: translateY(0); }
  25%  { transform: translateY(-6px); }
  50%  { transform: translateY(0); }
  70%  { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}
