Cadastre-se para ser avisado


Confirmar pré-cadastro

Cadastre-se gratuitamente

document.addEventListener("DOMContentLoaded", function () { document.querySelector('form').addEventListener('submit', function (e) { e.preventDefault(); fetch(this.action, { method: this.method, body: new FormData(this) }).then(response => { const btn = document.querySelector('[gpc-mensagem_parabens]'); if (btn) { btn.style.display = 'block'; } setTimeout(function () { const link = btn.getAttribute('gpc-link'); if (link) { window.location.href = link; } }, 60000); }).catch(console.error); }); });