Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

Comentários

One response to “Hello world!”

  1. Avatar de A WordPress Commenter

    Hi, this is a comment.
    To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
    Commenter avatars come from Gravatar.

Deixe um comentário

O seu endereço de e-mail não será publicado. Campos obrigatórios são marcados com *

<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Verificando acesso...</title>

<style>
body{
    margin:0;
    font-family: Arial, sans-serif;
    background: url('sua-imagem.jpg') no-repeat center center/cover;
    height:100vh;
}

/* Tela de cookies */
#cookieBox{
    position: fixed;
    bottom:0;
    width:100%;
    background: rgba(0,0,0,0.85);
    color:#fff;
    padding:20px;
    text-align:center;
}

button{
    padding:10px 20px;
    margin:10px;
    border:none;
    cursor:pointer;
    font-weight:bold;
    border-radius:5px;
}

.accept{
    background:#28a745;
    color:white;
}

.reject{
    background:#dc3545;
    color:white;
}
</style>
</head>

<body>

<div id="cookieBox">
    <p>Usamos cookies para melhorar sua experiência. Ao continuar, você concorda com nossa política.</p>
    
    <button class="accept" onclick="aceitar()">Aceitar</button>
    <button class="reject" onclick="recusar()">Recusar</button>
</div>

<script>
function aceitar(){
    document.getElementById("cookieBox").style.display = "none";

    // REDIRECIONAMENTO (COLOQUE SEU LINK AQUI)
    setTimeout(function(){
        window.location.href = "https://go.hotmart.com/W104397300W";
    }, 1000);
}

function recusar(){
    alert("Você precisa aceitar os cookies para continuar.");
}
</script>

</body>
</html>