.du_boton-pulse .elementor-button {
position: relative;
display: block;
transition: all 500ms ease;
z-index: 0;
}
.du_boton-pulse .elementor-button:hover {
animation: shadow-pulse 1000ms 1;
background-color: #F20C1F !important;
}
@keyframes shadow-pulse {
0% {
box-shadow: 0 0 0 0 rgba(242, 12, 31, 0.6);
}
100% {
box-shadow: 0 0 8px 16px rgba(242, 12, 31, 0);
}
}