-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (52 loc) · 2.08 KB
/
index.html
File metadata and controls
59 lines (52 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!-- Salve como index.html e suba no GitHub Pages / Netlify -->
<!doctype html>
<html lang="pt-BR">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Pacote Pós-Formatação — SeuNome</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body class="bg-light">
<header class="bg-white shadow-sm">
<div class="container py-4 d-flex justify-content-between align-items-center">
<h1 class="h4 mb-0">Pacote Pós-Formatação — SeuNome</h1>
<span class="text-muted">Entrega digital • Suporte por e-mail</span>
</div>
</header>
<main class="container my-5">
<div class="row">
<div class="col-md-7">
<h2>O que você recebe</h2>
<ul>
<li>Script de instalação automático (baixa software oficial)</li>
<li>Drivers organizados + instruções passo-a-passo (PDF)</li>
<li>Guia rápido de pós-formatação</li>
<li>Suporte por e-mail por 7 dias</li>
</ul>
<h3 class="mt-4">Garantia</h3>
<p>Se não ficar satisfeito, solicite reembolso em até 7 dias.</p>
<h3 class="mt-4">Preço</h3>
<p class="fs-3">R$ 19,90 — Pagamento único</p>
<a href="LINK_DE_PAGAMENTO_AQUI" class="btn btn-primary btn-lg" target="_blank" rel="noopener">Comprar agora</a>
<section class="mt-4">
<h4>Segurança</h4>
<p>Arquivos verificados por antivírus. Incluímos checksums SHA256 e instruções.</p>
</section>
</div>
<div class="col-md-5">
<div class="card p-3">
<h5 class="card-title">Depoimentos</h5>
<p class="card-text small text-muted">"Resolvi tudo rápido, recomendo!" — Cliente</p>
<hr>
<h6>Suporte</h6>
<p class="small mb-0">Email: seuemail@email.com</p>
</div>
</div>
</div>
</main>
<footer class="text-center py-4">
<small class="text-muted">© 2025 SeuNome — Termos e Política de Reembolso</small>
</footer>
</body>
</html>