.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-3909 .elementor-element.elementor-element-1915ed50{text-align:end;}.elementor-3909 .elementor-element.elementor-element-1915ed50 img{width:48%;}#elementor-popup-modal-3909 .dialog-widget-content{animation-duration:1.2s;background-color:#02010100;}#elementor-popup-modal-3909 .dialog-message{width:170px;height:auto;}#elementor-popup-modal-3909{justify-content:flex-end;align-items:flex-end;}@media(max-width:767px){.elementor-3909 .elementor-element.elementor-element-1915ed50 img{width:48%;}}/* Start custom CSS for image, class: .elementor-element-1915ed50 */.whatsapp-btn {
  animation: whatsapp-shake 5s infinite;
}

.whatsapp-btn.paused {
  animation: none !important;
}

@keyframes whatsapp-shake {
  0%, 80%, 100% {
    transform: rotate(0deg) translate(0, 0);
  }
  10% {
    transform: rotate(5deg) translate(-4px, 0);
  }
  20% {
    transform: rotate(-5deg) translate(4px, 0);
  }
  30% {
    transform: rotate(5deg) translate(-4px, 0);
  }
  40% {
    transform: rotate(-5deg) translate(4px, 0);
  }
  50% {
    transform: rotate(3deg) translate(-2px, 0);
  }
  60% {
    transform: rotate(-3deg) translate(2px, 0);
  }
  70% {
    transform: rotate(0deg) translate(0, 0);
  }
}
✅ Passo 4 – Adicione este JavaScript no seu site:
Se estiver usando Elementor Pro, vá em:
Configurações do Tema → Custom Code (Código personalizado) ou no final da página usando HTML → e cole isso:

html
Copiar
Editar
<script>
  document.addEventListener('DOMContentLoaded', function () {
    const whatsappButton = document.querySelector('.whatsapp-btn');
    const popup = document.getElementById('whatsapp-form');

    // Verifica se o popup do Elementor está aberto
    function checkPopupStatus() {
      if (popup && popup.classList.contains('elementor-popup-modal-show')) {
        whatsappButton.classList.add('paused');
      } else {
        whatsappButton.classList.remove('paused');
      }
    }

    // Verifica de tempo em tempo se o popup abriu ou fechou
    setInterval(checkPopupStatus, 300);
  });
</script>/* End custom CSS */