// Selecione o botão RSVP pelo atributo data-hook var rsvpButton = document.querySelector('[data-hook="rsvp-button"]'); // Verifique se o botão RSVP foi encontrado if (rsvpButton) { // Altere o texto do botão para "Inscreva-se agora" rsvpButton.innerText = 'Inscreva-se agora'; }