document.addEventListener("DOMContentLoaded", function () {
const botoes = document.querySelectorAll('a[href="https://api.whatsapp.com/send?phone=5554996870201&text=Ol%C3%A1!"]');botoes.forEach(botao => {
botao.addEventListener("click", function (e) {
e.preventDefault();
const rdBtn = document.querySelector("#rd-floating_button-ljq2ejnm");
if (rdBtn) {
rdBtn.click();
} else {
console.warn("Botão do WhatsApp do RD Station não encontrado.");
}
});
});
});