-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (106 loc) · 5.29 KB
/
index.html
File metadata and controls
122 lines (106 loc) · 5.29 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CÓDIGO ALFA VIP | El Manifiesto del 1%</title>
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
<style>
:root {
--oro-real: #bf953f;
--negro-absoluto: #000000;
--gris-premium: #0a0a0a;
--blanco-nitido: #ffffff;
--oro-gradiente: linear-gradient(to bottom, #fcf6ba 0%, #bf953f 25%, #fcf6ba 50%, #bf953f 75%, #aa771c 100%);
}
body { font-family: 'Roboto', sans-serif; background-color: var(--negro-absoluto); color: #f0f0f0; margin: 0; text-align: center; line-height: 1.7; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Oswald', sans-serif; text-transform: uppercase; color: var(--blanco-nitido); }
.hero { padding: 100px 20px; background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1554469384-e58fac16e23a?q=80&w=1974&auto=format&fit=crop'); background-size: cover; border-bottom: 3px solid var(--oro-real); }
.titulo-alfa { font-size: clamp(2.5rem, 8vw, 5rem); background: var(--oro-gradiente); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin: 0; }
.optin-container { max-width: 450px; margin: 30px auto; background: rgba(255,255,255,0.05); padding: 30px; border: 1px solid var(--oro-real); backdrop-filter: blur(10px); }
input { width: 100%; padding: 15px; margin-bottom: 15px; background: #111; border: 1px solid #333; color: white; box-sizing: border-box; }
.cta-btn {
display: inline-block;
width: 100%;
max-width: 280px;
background: var(--oro-gradiente);
color: #000 !important;
padding: 18px;
text-decoration: none;
font-weight: 700;
font-family: 'Oswald', sans-serif;
border: none;
cursor: pointer;
text-transform: uppercase;
transition: transform 0.3s ease;
box-sizing: border-box;
}
.cta-btn:hover { transform: scale(1.05); }
.section { padding: 60px 20px; max-width: 900px; margin: 0 auto; }
.card { background: #050505; padding: 30px; border: 1px solid #1a1a1a; margin-bottom: 20px; }
#comprar {
margin-top: 40px;
padding: 40px 20px;
border: 2px solid var(--oro-real);
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.btn-wrapper { width: 100%; display: flex; justify-content: center; }
footer { padding: 40px; color: #555; font-size: 0.8rem; }
</style>
</head>
<body>
<header class="hero">
<h1 class="titulo-alfa">CÓDIGO ALFA VIP</h1>
<p>EL MANIFIESTO DEL 1%: NO COMPITAS, LIDERA</p>
<div class="optin-container">
<p style="font-weight:700;">DESCARGA EL MANIFIESTO GRATIS</p>
<form id="form-alfa">
<input type="text" name="name" placeholder="Tu Nombre" required>
<input type="email" name="email" placeholder="Tu Email" required>
<div class="btn-wrapper">
<button type="submit" id="btn-submit" class="cta-btn">Acceder Gratis Ahora</button>
</div>
</form>
</div>
</header>
<main class="section">
<div class="card">
<h3 style="color:var(--oro-real)">El Despertar</h3>
<p>Deja de ser un participante en la vida de otros y conviértete en el arquitecto de tu propio destino.</p>
</div>
<div id="comprar">
<h2 style="margin-top:0;">¿QUIERES MÁS?</h2>
<p>Domina tu mente con los <b>Protocolos de Sabiduría Estoica</b>. El complemento táctico para el 1%.</p>
<br>
<div class="btn-wrapper">
<a href="https://go.hotmart.com/R105307128Q" class="cta-btn">Adquirir Protocolo VIP</a>
</div>
<p style="font-size:0.7rem; margin-top:15px; opacity: 0.7;">Garantía de 7 días • 100% Calificaciones Positivas</p>
</div>
</main>
<footer>© 2026 CÓDIGO ALFA VIP</footer>
<script>
const form = document.getElementById("form-alfa");
const btn = document.getElementById("btn-submit");
form.addEventListener("submit", function(e) {
e.preventDefault();
btn.innerHTML = "PROCESANDO...";
btn.disabled = true;
// LINK DE DRIVE ACTUALIZADO CON PERMISOS PÚBLICOS
const ebookLink = "https://drive.google.com/file/d/1nUlSOzEGNRx9r4S36GyrZRUjasrnn8vK/view?usp=sharing";
fetch("https://formspree.io/f/mbdpqqpv", {
method: "POST",
body: new FormData(form),
headers: { 'Accept': 'application/json' }
}).finally(() => {
window.location.href = ebookLink;
});
// Redirección de respaldo por si el fetch tarda demasiado
setTimeout(() => { window.location.href = ebookLink; }, 4000);
});
</script>
</body>
</html>