<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
>
<title>Baixar e-book</title>
<style>
*{
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
font-family: Arial, Helvetica, sans-serif;
background: #f2f4f7;
color: #222222;
}
.container {
width: 100%;
max-width: 650px;
padding: 50px 35px;
background: #ffffff;
text-align: center;
border-radius: 15px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
h1 {
margin-top: 0;
margin-bottom: 20px;
font-size: 34px;
line-height: 1.2;
}
p {
margin-bottom: 30px;
font-size: 18px;
line-height: 1.6;
color: #555555;
}
.botao {
display: inline-block;
padding: 16px 32px;
background: #0057d9;
color: #ffffff;
font-size: 18px;
font-weight: bold;
text-decoration: none;
border-radius: 8px;
transition: 0.2s;
}
.botao:hover {
background: #0044aa;
transform: translateY(-2px);
}
.aviso {
margin-top: 25px;
margin-bottom: 0;
font-size: 14px;
color: #777777;
}
@media (max-width: 600px) {
.container {
padding: 35px 20px;
}
h1 {
font-size: 27px;
}
p {
font-size: 16px;
}
.botao {
width: 100%;
padding: 16px 20px;
}
}
</style>
</head>
<body>
<main class="container">
<h1>Baixe nosso e-book gratuito</h1>
<p>
Clique no botão abaixo para baixar o material completo
diretamente no seu dispositivo.
</p>
<a
class="botao"
href="meu-ebook1.pdf"
download="meu-ebook1.pdf"
>
Baixar e-book
</a>
<p class="aviso">
Caso o download não comece automaticamente,
oPDF será aberto no navegador.
</p>
</main>
</body>
</html>