-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpru48e.html
More file actions
593 lines (439 loc) · 9.22 KB
/
pru48e.html
File metadata and controls
593 lines (439 loc) · 9.22 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
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
<!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;
}
/* FOR MOBILE */
@media(max-width:768px){
.logo-container img{
width:35%;
max-width:120px;
min-width:70px;
}
.video-frame iframe{
width:100%;
height:220px;
}
.checklist{
font-size:18px;
text-align:left;
}
}
/* STAR CANVAS */
#stars{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:-1;
}
/* HERO */
.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:40px;
}
.hero h1{
font-family:'Orbitron';
font-size:40px;
color:#ffc107;
line-height:1.1;
text-shadow:0 0 20px rgba(255,150,0,0.7);
}
.subtitle{
margin-top:25px;
font-size:22px;
color:#ccc;
}
.subtitle span{
color:#ff4444;
}
/* COUNTDOWN */
.countdown{
display:flex;
justify-content:center;
gap:30px;
margin-top:10px;
flex-wrap:wrap;
}
.box{
background:rgba(0,0,0,0.6);
backdrop-filter:blur(8px);
padding:5px;
border-radius:15px;
width:160px;
box-shadow:0 0 40px rgba(255,120,0,0.4);
}
.number{
font-family:'Orbitron';
font-size:55px;
color:#ffa500;
}
.label{
margin-top:8px;
letter-spacing:2px;
font-size:13px;
color:#aaa;
}
/* CTA */
.cta{
margin-top:10px;
background:rgba(20,0,0,0.6);
padding:50px;
border-radius:20px;
box-shadow:0 0 60px rgba(255,60,0,0.4);
}
.cta h2{
font-size:24px;
margin-bottom:15px;
}
.cta p{
color:#bbb;
margin-bottom:25px;
}
button{
padding:18px 35px;
border-radius:12px;
border:none;
font-size:16px;
font-weight:600;
cursor:pointer;
background:linear-gradient(90deg,#ff3c3c,#ff9900);
color:white;
box-shadow:0 0 20px rgba(255,100,0,0.8);
transition:0.3s;
}
button:hover{
transform:scale(1.05);
}
/* ROCKET */
.rocket{
position:fixed;
bottom:-150px;
right:40px;
font-size:60px;
transition:transform 1s ease-out;
}
/* SECTION */
.section{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
font-size:40px;
text-align:center;
color:#ddd;
}
/* VIDEO SECTION */
.video-section{
margin-top:80px;
display:flex;
flex-direction:column;
align-items:center;
gap:40px;
}
/* MARCO NARANJA DIFUMINADO */
.video-frame{
padding:1px;
border-radius:24px;
background:linear-gradient(25deg,#ff7a00,#ffb347,#ff7a00);
box-shadow:
0 0 10px rgba(255,140,0,0.9),
0 0 20px rgba(255,120,0,0.7),
0 0 40px rgba(255,100,0,0.6);
}
/* CONTENEDOR RESPONSIVE 16:9 */
.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%;
}
/* CHECKLIST */
.checklist{
display:flex;
flex-direction:column;
gap:18px;
font-size:20px;
}
.check{
color:#ff8c00;
font-size:28px;
text-shadow:0 0 10px rgba(255,140,0,0.8);
}
/* MEJORA MOBILE TITULO */
.hero{
padding-left:32px;
padding-right:20px;
}
.hero h1{
max-width:900px;
margin:auto;
}
/* AJUSTE MOVIL */
@media (max-width:768px){
.hero h1{
font-size:17px;
line-height:1.15;
padding:0 10px;
}
.subtitle{
padding:0 16px;
font-size:14px;
}
.countdown{
flex-wrap:nowrap;
gap:10px;
}
.box{
width:22%;
padding:18px 8px;
}
.number{
font-size:28px;
}
.label{
font-size:10px;
letter-spacing:1px;
}
}
.hero > div{
max-width:1100px;
margin:auto;
}
.checklist-title{
font-size:28px;
margin-bottom:25px;
text-align:center;
color:#ffa500;
text-shadow:0 0 12px rgba(255,140,0,0.8);
}
.logo-container{
display:flex;
justify-content:center;
margin-top:0px;
margin-bottom:60px;
}
.logo-container img{
filter:drop-shadow(0 0 15px rgba(255,140,0,0.8));
}
.checklist-section{
display:flex;
flex-direction:column;
align-items:center;
margin-top:40px;
}
.checklist{
max-width:700px;
width:90%;
display:flex;
flex-direction:column;
gap:28px;
}
.check-item{
display:flex;
align-items:flex-start;
gap:15px;
text-align:left;
line-height:1.5;
font-size:18px;
opacity:0;
transform:translateY(20px);
animation:fadeIn 0.6s ease forwards;
}
.check-item p{
margin:0;
}
.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;}
@keyframes fadeIn{
to{
opacity:1;
transform:translateY(0);
}
}
.check-item b{
font-size:1.15em;
color:#ffffff;
}
</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>
</br>
<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"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
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>
<!-- VIDEO SECTION -->
<div class="video-section">
<!-- CHECKLIST -->
<div class="checklist-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>
/* COUNTDOWN */
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);
/* WHATSAPP */
function whatsapp(){
const phone = "34616943398";
const text = "Quiero mas informacion sobre el curso";
window.open(`https://wa.me/${phone}?text=${encodeURIComponent(text)}`,"_blank");
}
/* ROCKET SCROLL */
window.addEventListener("scroll",()=>{
const rocket = document.getElementById("rocket");
const scroll = window.scrollY;
rocket.style.transform = `translateY(${-scroll*0.8}px)`;
});
/* STARS */
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>