body: JSON.stringify({ nome: nome, whatsapp: whatsapp, email: email, mensagem: mensagem }) }) .then(response => response.json()) .then(data => { form.style.display = 'none'; msgSucesso.style.display = 'block'; }) .catch(error => { // Fallback se der erro no envio de e-mail form.style.display = 'none'; msgSucesso.style.display = 'block'; }); }