-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpru53.html
More file actions
497 lines (375 loc) · 7.73 KB
/
pru53.html
File metadata and controls
497 lines (375 loc) · 7.73 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Launch Framework</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Inter:wght@300;400;600&display=swap" rel="stylesheet">
<style>
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
font-family:'Inter',sans-serif;
background:#000;
color:white;
overflow-x:hidden;
}
/* STAR CANVAS */
#stars{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:-1;
}
/* HERO */
.hero{
min-height:100svh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:20px 16px;
}
.hero > div{
max-width:420px;
display:flex;
flex-direction:column;
gap:16px;
margin:auto;
}
/* TITULO */
.hero h1{
font-family:'Orbitron';
font-size:clamp(30px,7vw,36px);
color:#ffc107;
line-height:1.15;
text-shadow:0 0 20px rgba(255,150,0,0.7);
}
/* SUBTITULO */
.subtitle{
font-size:clamp(16px,4.5vw,18px);
line-height:1.35;
color:#ccc;
padding:0 6px;
}
.subtitle span{
color:#ff4444;
}
/* VIDEO */
.video-frame{
width:78%;
margin:auto;
padding:2px;
border-radius:20px;
background:linear-gradient(25deg,#ff7a00,#ffb347,#ff7a00);
box-shadow:
0 0 6px rgba(255,140,0,0.7),
0 0 14px rgba(255,120,0,0.6);
}
.video-container{
position:relative;
width:100%;
padding-bottom:56.25%;
height:0;
overflow:hidden;
border-radius:18px;
}
.video-container iframe{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}
/* COUNTDOWN */
.countdown{
display:flex;
justify-content:center;
gap:8px;
margin-top:4px;
}
.box{
background:rgba(0,0,0,0.6);
backdrop-filter:blur(8px);
padding:10px 6px;
border-radius:14px;
width:22%;
box-shadow:
0 0 10px rgba(255,120,0,0.35);
}
.number{
font-family:'Orbitron';
font-size:22px;
color:#ffa500;
}
.label{
font-size:9px;
letter-spacing:1px;
color:#aaa;
}
/* CTA */
.cta{
margin-top:6px;
background:rgba(20,0,0,0.6);
padding:18px 16px;
border-radius:16px;
box-shadow:
0 0 18px rgba(255,80,0,0.35);
}
.cta h2{
font-size:18px;
margin-bottom:6px;
}
.cta p{
font-size:16px;
margin-bottom:10px;
color:#bbb;
}
button{
padding:12px 20px;
border-radius:10px;
border:none;
font-size:14px;
font-weight:600;
cursor:pointer;
background:linear-gradient(90deg,#ff3c3c,#ff9900);
color:white;
box-shadow:0 0 15px rgba(255,100,0,0.8);
transition:0.3s;
}
button:hover{
transform:scale(1.05);
}
/* CHECKLIST SECTION */
.video-section{
margin-top:35px;
display:flex;
flex-direction:column;
align-items:center;
gap:30px;
}
.checklist-title{
font-size:26px;
margin-bottom:20px;
text-align:center;
color:#ffa500;
text-shadow:0 0 12px rgba(255,140,0,0.8);
}
.checklist{
max-width:700px;
width:90%;
display:flex;
flex-direction:column;
gap:24px;
}
.check-item{
display:flex;
align-items:flex-start;
gap:14px;
text-align:left;
line-height:1.5;
font-size:18px;
opacity:0;
transform:translateY(20px);
animation:fadeIn 0.6s ease forwards;
}
.check{
color:#ff8c00;
font-size:26px;
margin-top:3px;
text-shadow:0 0 10px rgba(255,140,0,0.8);
}
.check-item:nth-child(1){animation-delay:0.2s;}
.check-item:nth-child(2){animation-delay:0.4s;}
.check-item:nth-child(3){animation-delay:0.6s;}
.check-item b{
font-size:1.15em;
color:#ffffff;
}
@keyframes fadeIn{
to{
opacity:1;
transform:translateY(0);
}
}
/* LOGO FINAL */
.logo-container{
display:flex;
justify-content:center;
margin-top:40px;
margin-bottom:20px;
}
.logo-container img{
width:35%;
max-width:120px;
min-width:70px;
filter:drop-shadow(0 0 15px rgba(255,140,0,0.8));
}
/* ROCKET */
.rocket{
position:fixed;
bottom:-150px;
right:40px;
font-size:60px;
transition:transform 1s ease-out;
}
@keyframes pulseButton{
0%{
transform:scale(1);
box-shadow:0 0 15px rgba(255,100,0,0.6);
}
50%{
transform:scale(1.05);
box-shadow:0 0 30px rgba(255,120,0,0.9);
}
100%{
transform:scale(1);
box-shadow:0 0 15px rgba(255,100,0,0.6);
}
}
.cta button{
animation:pulseButton 3.5s infinite;
}
</style>
</head>
<body>
<canvas id="stars"></canvas>
<div class="rocket" id="rocket">🚀</div>
<section class="hero">
<div>
<h1>
INICIANDO CUENTA ATRÁS<br>
PARA EL DESPEGUE
</h1>
<p class="subtitle">
El <b>Framework</b> que cambiará tu órbita digital.<br>
Preparando motores para <span>lanzarte al infinito</span>.
</p>
<div class="video-frame">
<div class="video-container">
<iframe
src="https://www.youtube.com/embed/tnx7uwiz7eI?rel=0&modestbranding=1&playsinline=1"
title="YouTube video player"
frameborder="0"
allowfullscreen>
</iframe>
</div>
</div>
<div class="countdown">
<div class="box">
<div id="days" class="number">0</div>
<div class="label">DÍAS</div>
</div>
<div class="box">
<div id="hours" class="number">0</div>
<div class="label">HORAS</div>
</div>
<div class="box">
<div id="minutes" class="number">0</div>
<div class="label">MINUTOS</div>
</div>
<div class="box">
<div id="seconds" class="number">0</div>
<div class="label">SEGUNDOS</div>
</div>
</div>
<div class="cta">
<h2>Reserva tu Asiento</h2>
<p>Únete al canal privado para recibir las coordenadas del lanzamiento.</p>
<button onclick="whatsapp()">
RESERVAR MI PLAZA EN LA NAVE
</button>
</div>
<div class="video-section">
<h3 class="checklist-title">
🔥 Lo que vas a descubrir en este Webinar:
</h3>
<div class="checklist">
<div class="check-item">
<span class="check">✔</span>
<p>
<b>Monetiza tu pasión</b><br>
Cómo identificar lo que ya sabes hacer y empaquetarlo en una oferta digital que el mercado esté deseando comprar, aunque ahora mismo no sepas ni por dónde empezar.
</p>
</div>
<div class="check-item">
<span class="check">✔</span>
<p>
<b>Construye tu marca digital</b><br>
El sistema para construir tu presencia online partiendo de cero absoluto, atrayendo a las personas adecuadas sin necesidad de tener seguidores ni experiencia previa en ventas.
</p>
</div>
<div class="check-item">
<span class="check">✔</span>
<p>
<b>Haz que el dinero trabaje para ti</b><br>
Cómo diseñar una infraestructura digital que funcione de forma automática, permitiéndote gestionar tu tiempo y escalar tu impacto aunque no tengas conocimientos técnicos previos.
</p>
</div>
</div>
</div>
</div>
</section>
<div class="logo-container">
<img src="https://adrines423.github.io/web/Logo-oaf.png" alt="Logo OAF">
</div>
<script>
const target = new Date("April 11, 2026 00:00:00").getTime();
function updateCountdown(){
const now = new Date().getTime();
const diff = target - now;
const days = Math.floor(diff/(1000*60*60*24));
const hours = Math.floor((diff%(1000*60*60*24))/(1000*60*60));
const minutes = Math.floor((diff%(1000*60*60))/(1000*60));
const seconds = Math.floor((diff%(1000*60))/1000);
document.getElementById("days").innerText = days;
document.getElementById("hours").innerText = hours;
document.getElementById("minutes").innerText = minutes;
document.getElementById("seconds").innerText = seconds;
}
setInterval(updateCountdown,1000);
function whatsapp(){
const phone = "34616943398";
const text = "Quiero mas informacion sobre el curso";
window.open(`https://wa.me/${phone}?text=${encodeURIComponent(text)}`,"_blank");
}
window.addEventListener("scroll",()=>{
const rocket = document.getElementById("rocket");
const scroll = window.scrollY;
rocket.style.transform = `translateY(${-scroll*0.8}px)`;
});
const canvas = document.getElementById("stars");
const ctx = canvas.getContext("2d");
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
let stars = [];
for(let i=0;i<300;i++){
stars.push({
x:Math.random()*canvas.width,
y:Math.random()*canvas.height,
size:Math.random()*2
})
}
function animate(){
ctx.clearRect(0,0,canvas.width,canvas.height);
ctx.fillStyle="white";
stars.forEach(s=>{
ctx.beginPath();
ctx.arc(s.x,s.y,s.size,0,Math.PI*2);
ctx.fill();
s.y +=0.2;
if(s.y>canvas.height){
s.y=0;
}
})
requestAnimationFrame(animate);
}
animate();
</script>
</body>
</html>