-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
975 lines (883 loc) · 48.1 KB
/
Copy pathindex.html
File metadata and controls
975 lines (883 loc) · 48.1 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
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
<!DOCTYPE html>
<html lang="es" class="scroll-smooth">
<script src="https://app.dante-ai.com/bubble-embed.js?kb_id=a2a24a0b-ed08-4dde-b563-e690ea83047a&token=a97ac0ef-79a1-4beb-b07a-d0e042b6dd00"></script>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cultura IA - Colombia</title>
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap"
rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['"Plus Jakarta Sans"', 'sans-serif'],
body: ['"Inter"', 'sans-serif'],
mono: ['"Space Grotesk"', 'monospace'],
},
colors: {
background: '#030712',
surface: '#0f172a',
},
animation: {
'shimmer': 'shimmer 2.5s linear infinite',
'fade-in-up': 'fadeInUp 0.8s ease-out forwards',
},
keyframes: {
shimmer: {
'0%': { backgroundPosition: '200% 0' },
'100%': { backgroundPosition: '-200% 0' }
},
fadeInUp: {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
}
}
}
}
}
</script>
<style>
body {
background-color: #02040a;
/* Fondo ultra oscuro y limpio */
font-family: 'Inter', sans-serif;
overflow-x: hidden;
cursor: default;
}
/* --- SPOTLIGHT EFFECT (Fondo linterna) --- */
#spotlight {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
pointer-events: none;
z-index: -1;
background: radial-gradient(800px circle at var(--x) var(--y),
rgba(99, 102, 241, 0.06),
transparent 40%);
transition: background 0.1s ease;
will-change: background;
}
/* --- LIQUID GLASS STYLE --- */
.glass {
background: rgba(255, 255, 255, 0.01);
backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);
border-top: 1px solid rgba(255, 255, 255, 0.1);
border-left: 1px solid rgba(255, 255, 255, 0.05);
border-right: 1px solid rgba(255, 255, 255, 0.05);
border-bottom: 1px solid rgba(255, 255, 255, 0.02);
box-shadow:
0 4px 30px rgba(0, 0, 0, 0.3),
inset 0 0 20px rgba(255, 255, 255, 0.005);
}
.glass-card {
background: linear-gradient(160deg, rgba(30, 41, 59, 0.2) 0%, rgba(15, 23, 42, 0.3) 100%);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.05);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
/* Transición suave */
}
/* Generic Hover Zoom */
.glass-card:hover {
transform: scale(1.02);
/* Zoom sutil solicitado */
border-color: rgba(99, 102, 241, 0.3);
box-shadow:
0 20px 40px -10px rgba(0, 0, 0, 0.5),
0 0 30px rgba(99, 102, 241, 0.05);
background: linear-gradient(160deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.5) 100%);
}
/* Specific Glows for Qualifier Section */
.glass-card.card-green:hover {
border-color: rgba(16, 185, 129, 0.4);
box-shadow: 0 0 40px rgba(16, 185, 129, 0.15);
/* Green Glow */
}
.glass-card.card-red:hover {
border-color: rgba(239, 68, 68, 0.4);
box-shadow: 0 0 40px rgba(239, 68, 68, 0.15);
/* Red Glow */
}
.reveal {
opacity: 0;
transform: translateY(20px);
transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
opacity: 1;
transform: translateY(0);
}
.heading-gradient {
background: linear-gradient(to bottom, #ffffff 10%, #94a3b8 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* Form Focus Glow Effect */
.form-container {
transition: all 0.6s ease;
border: 1px solid rgba(255, 255, 255, 0.05);
}
.form-container:hover {
transform: scale(1.01);
background: rgba(30, 41, 59, 0.3);
box-shadow: 0 0 50px rgba(99, 102, 241, 0.1);
border-color: rgba(255, 255, 255, 0.2);
}
</style>
</head>
<body class="text-slate-300 antialiased relative selection:bg-indigo-500/30 selection:text-white">
<div id="spotlight" style="--x: 50%; --y: 50%;"></div>
<!-- --- NAV --- -->
<nav class="fixed w-full z-40 glass border-b-0 transition-all duration-300" id="navbar">
<div class="max-w-6xl mx-auto px-6 h-20 flex items-center justify-between">
<div class="flex items-center gap-3 font-sans font-bold text-xl tracking-tight text-white">
<div
class="relative w-8 h-8 flex items-center justify-center bg-indigo-500/10 rounded-lg border border-indigo-500/20 backdrop-blur-sm">
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="text-indigo-400">
<path d="M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z" />
<path d="M9 13a3 3 0 1 0 6 0a3 3 0 0 0-6 0" />
<path d="M12 5v3" />
<path d="M12 18v3" />
<path d="M12 8a3 3 0 0 0 0 6" />
</svg>
</div>
<span>CULTURA <span class="text-indigo-400">IA</span></span>
</div>
<button onclick="document.getElementById('apply-form').scrollIntoView({ behavior: 'smooth' })"
class="hidden md:flex items-center gap-2 text-sm font-medium text-slate-400 hover:text-white transition-colors group">
<span class="w-1.5 h-1.5 rounded-full bg-emerald-500 animate-pulse"></span>
Postúlate
<svg class="w-4 h-4 text-slate-500 group-hover:translate-x-0.5 transition-transform" fill="none"
viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
</svg>
</button>
</div>
</nav>
<!-- --- HERO SECTION --- -->
<header class="pt-40 pb-24 md:pt-48 md:pb-32 px-6 relative overflow-hidden">
<div class="max-w-5xl mx-auto text-center relative z-10 reveal active">
<div
class="inline-flex items-center gap-2 px-4 py-1.5 rounded-full bg-indigo-950/20 border border-indigo-500/20 backdrop-blur-md mb-8 hover:bg-indigo-900/30 transition-colors cursor-default shadow-lg shadow-indigo-500/5">
<span class="relative flex h-2 w-2">
<span class="animate-ping absolute inline-flex h-full w-full rounded-full bg-indigo-400 opacity-75"></span>
<span class="relative inline-flex rounded-full h-2 w-2 bg-indigo-500"></span>
</span>
<span class="text-indigo-200 text-xs font-bold uppercase tracking-widest font-mono">Cupos Q1 2026
Abiertos</span>
</div>
<h1 class="font-sans text-5xl md:text-7xl font-extrabold leading-[1.1] mb-8 tracking-tight text-white">
¿Compraste herramientas IA <br class="hidden md:block" />
<span class="relative inline-block mt-2">
y tu equipo
<span class="relative z-10 heading-gradient">NO las usa?</span>
<svg class="absolute -bottom-2 left-0 w-full h-3 text-indigo-600/60 -z-10" viewBox="0 0 100 10"
preserveAspectRatio="none">
<path d="M0 5 Q 50 10 100 5" stroke="currentColor" stroke-width="8" fill="none" />
</svg>
</span>
</h1>
<p class="text-lg md:text-xl text-slate-400 mb-12 max-w-2xl mx-auto leading-relaxed font-light">
El <strong class="text-slate-200">67% de empresas</strong> compra licencias que se abandonan en 3 meses.
Convierte ese "gasto muerto" en ROI real en <strong class="text-white font-medium">30 días</strong>. Sin
consultoría eterna.
</p>
<div class="flex flex-col sm:flex-row items-center justify-center gap-6 mb-16">
<button onclick="document.getElementById('apply-form').scrollIntoView({ behavior: 'smooth' })"
class="relative w-full sm:w-auto px-8 py-4 bg-indigo-600 hover:bg-indigo-500 text-white font-bold rounded-xl transition-all shadow-[0_0_40px_-10px_rgba(79,70,229,0.5)] hover:shadow-[0_0_60px_-15px_rgba(79,70,229,0.6)] hover:-translate-y-1 flex items-center justify-center gap-3 group overflow-hidden border-t border-white/20">
<div
class="absolute inset-0 w-full h-full bg-gradient-to-r from-transparent via-white/10 to-transparent -translate-x-full group-hover:animate-shimmer">
</div>
<span class="relative z-10">Postula tu empresa</span>
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="group-hover:translate-x-1 transition-transform relative z-10">
<path d="M5 12h14" />
<path d="m12 5 7 7-7 7" />
</svg>
</button>
<div class="flex items-center gap-2 text-sm text-slate-400">
<div class="flex -space-x-2">
<div
class="w-8 h-8 rounded-full border-2 border-slate-900 bg-slate-700 flex items-center justify-center text-xs text-white font-bold">
JD</div>
<div
class="w-8 h-8 rounded-full border-2 border-slate-900 bg-slate-600 flex items-center justify-center text-xs text-white font-bold">
MA</div>
<div
class="w-8 h-8 rounded-full border-2 border-slate-900 bg-slate-500 flex items-center justify-center text-xs text-white font-bold">
+4</div>
</div>
<span class="text-xs font-mono uppercase tracking-wide opacity-70">Empresas en espera</span>
</div>
</div>
<div class="pt-10 border-t border-white/5">
<p class="text-xs font-mono text-slate-500 mb-6 uppercase tracking-widest">Optimizando procesos en los sectores:
</p>
<div
class="flex flex-wrap justify-center gap-8 md:gap-16 opacity-50 grayscale hover:grayscale-0 hover:opacity-100 transition-all duration-700">
<span class="font-bold text-lg tracking-tight text-white">MARKETING<span
class="text-indigo-500">.AI</span></span>
<span class="font-bold text-lg tracking-tight text-white">AGRO<span class="text-indigo-500">TECH</span></span>
<span class="font-bold text-lg tracking-tight text-white">AUTO<span
class="text-indigo-500">MOTIVE</span></span>
<span class="font-bold text-lg tracking-tight text-white">ECOMMERCE</span>
<span class="font-bold text-lg tracking-tight text-white">HEALTH<span
class="text-indigo-500">CARE</span></span>
</div>
<!-- Methodologies Badge -->
<div
class="mt-8 inline-flex items-center justify-center gap-2 px-4 py-2 rounded-lg bg-white/5 border border-white/5 text-[10px] text-slate-400 font-mono tracking-tight max-w-2xl mx-auto leading-relaxed">
<span class="text-indigo-400 shrink-0">METODOLOGÍAS DE:</span>
Google • Microsoft • AI for Good Lab • IBM • OpenAI Academy • Deeplearning • AWS
</div>
</div>
</div>
</header>
<!-- --- AGITATION SECTION --- -->
<section class="py-24 px-6 relative">
<div class="max-w-5xl mx-auto grid md:grid-cols-2 gap-16 items-center">
<div class="reveal">
<div
class="w-14 h-14 bg-gradient-to-br from-red-500/20 to-orange-500/20 rounded-2xl flex items-center justify-center mb-8 border border-red-500/20 shadow-lg shadow-red-900/10">
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="text-red-400">
<polyline points="22 17 13.5 8.5 8.5 13.5 2 7" />
<polyline points="16 17 22 17 22 11" />
</svg>
</div>
<h2 class="font-sans text-3xl md:text-4xl font-bold mb-6 text-white leading-tight">
La trampa de la <br>
<span class="text-transparent bg-clip-text bg-gradient-to-r from-red-400 to-orange-400">"Suscripción
Fantasma"</span>
</h2>
<p class="text-slate-400 mb-8 text-lg leading-relaxed">
Tu equipo tiene miedo de romper cosas. Los líderes no saben por dónde empezar.
El resultado es una factura mensual de cientos de dólares por software que es, esencialmente, decoración
digital.
</p>
<div class="pl-6 border-l-2 border-red-500/30 text-slate-300 italic font-light">
"Es como comprar un Ferrari y dejarlo en el garaje porque nadie sabe manejarlo y le tienen miedo a la
velocidad."
</div>
</div>
<div class="glass-card p-10 rounded-3xl relative reveal delay-100">
<div
class="absolute -top-3 -right-3 bg-red-500/90 backdrop-blur text-white text-[10px] font-bold px-3 py-1 rounded-full uppercase tracking-widest shadow-lg shadow-red-900/40 border border-white/20">
Realidad Actual
</div>
<div class="space-y-8">
<div>
<div class="flex justify-between text-sm mb-2">
<span class="text-slate-400 font-medium">Gasto en Licencias</span>
<span class="text-white font-mono">+ $1,000 USD/mes</span>
</div>
<!-- Bar Container -->
<div class="w-full bg-slate-800/50 h-3 rounded-full overflow-hidden border border-white/5">
<!-- Animated Bar: Starts width-0, turns red as fills -->
<div id="expense-bar"
class="h-full rounded-full w-0 transition-all duration-[2500ms] ease-out bg-indigo-500"></div>
</div>
</div>
<div>
<div class="flex justify-between text-sm mb-2">
<span class="text-slate-400 font-medium">Retorno (ROI)</span>
<span class="text-red-400 font-mono font-bold">0% Incremento</span>
</div>
<div class="w-full bg-slate-800/50 h-3 rounded-full overflow-hidden border border-white/5">
<div class="bg-red-500 h-full rounded-full w-[2%]"></div>
</div>
</div>
<p class="text-xs text-center text-slate-500 mt-6 pt-6 border-t border-white/5">
Datos basados en el promedio de PYMES en Latam 2025
</p>
</div>
</div>
</div>
</section>
<!-- --- HOW IT WORKS --- -->
<section class="py-32 px-6 border-y border-white/5 relative bg-slate-900/10">
<div class="max-w-6xl mx-auto">
<div class="text-center mb-20 reveal">
<span class="text-indigo-400 font-mono text-xs font-bold tracking-widest uppercase mb-3 block">Process
Framework</span>
<h2 class="font-sans text-3xl md:text-5xl font-bold text-white mb-4">Inmersión Táctica</h2>
<p class="text-slate-400 max-w-xl mx-auto text-lg">Teoría mínima. Implementación máxima.</p>
</div>
<div class="grid md:grid-cols-3 gap-6">
<!-- Step 1 -->
<div class="glass-card p-8 rounded-2xl reveal group hover:bg-slate-800/40">
<div
class="mb-6 w-12 h-12 rounded-xl bg-slate-800/50 border border-white/10 flex items-center justify-center group-hover:bg-indigo-500/20 group-hover:border-indigo-500/30 transition-colors shadow-inner">
<span class="font-mono text-xl font-bold text-slate-300 group-hover:text-indigo-400">01</span>
</div>
<h3 class="text-xl font-bold mb-4 text-white">Identificación de Oportunidades</h3>
<p class="text-slate-400 text-sm leading-relaxed">
Entendemos dónde duele, no solo qué software tienen, e identificamos las oportunidades más eficientes para
empezar a implementar IA.
</p>
</div>
<!-- Step 2 -->
<div
class="glass-card p-8 rounded-2xl reveal delay-100 group border-indigo-500/20 bg-indigo-900/5 hover:bg-indigo-900/10">
<div
class="mb-6 w-12 h-12 rounded-xl bg-slate-800/50 border border-white/10 flex items-center justify-center group-hover:bg-indigo-500/20 group-hover:border-indigo-500/30 transition-colors shadow-inner">
<span class="font-mono text-xl font-bold text-indigo-400">02</span>
</div>
<h3 class="text-xl font-bold mb-4 text-white flex items-center gap-2">
Taller Intensivo
<span
class="bg-indigo-500 text-[10px] px-1.5 py-0.5 rounded text-white font-mono shadow-lg shadow-indigo-500/20">LIVE</span>
</h3>
<p class="text-slate-300 text-sm leading-relaxed">
Construcción en vivo. Tu equipo sale del taller con automatizaciones funcionando, no con diapositivas.
</p>
</div>
<!-- Step 3 -->
<div class="glass-card p-8 rounded-2xl reveal delay-200 group hover:bg-slate-800/40">
<div
class="mb-6 w-12 h-12 rounded-xl bg-slate-800/50 border border-white/10 flex items-center justify-center group-hover:bg-indigo-500/20 group-hover:border-indigo-500/30 transition-colors shadow-inner">
<span class="font-mono text-xl font-bold text-slate-300 group-hover:text-indigo-400">03</span>
</div>
<h3 class="text-xl font-bold mb-4 text-white">Autonomía Total</h3>
<p class="text-slate-400 text-sm leading-relaxed">
Seguimiento y acompañamiento para destrabar cuellos de botella (para que no nos necesites el mes siguiente).
</p>
</div>
</div>
</div>
</section>
<!-- --- QUALIFIER --- -->
<section class="py-24 px-6">
<div class="max-w-5xl mx-auto">
<div class="grid md:grid-cols-2 gap-8">
<!-- Green Side -->
<div class="glass p-10 rounded-3xl border-l-4 border-l-emerald-500/50 reveal glass-card card-green">
<h3 class="text-xl font-bold mb-8 flex items-center gap-3 text-white">
<div class="p-2 bg-emerald-500/10 rounded-lg text-emerald-400 border border-emerald-500/20">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
</div>
Match Perfecto Si...
</h3>
<ul class="space-y-6">
<li class="flex gap-4 text-slate-300 text-sm group">
<div
class="w-1.5 h-1.5 rounded-full bg-emerald-500 mt-2 shrink-0 group-hover:scale-150 transition-transform shadow-[0_0_10px_rgba(16,185,129,0.5)]">
</div>
<span class="group-hover:text-white transition-colors">Pagas licencias (ChatGPT, Copilot) pero el uso es
esporádico y cero sistematizado.</span>
</li>
<li class="flex gap-4 text-slate-300 text-sm group">
<div
class="w-1.5 h-1.5 rounded-full bg-emerald-500 mt-2 shrink-0 group-hover:scale-150 transition-transform shadow-[0_0_10px_rgba(16,185,129,0.5)]">
</div>
<span class="group-hover:text-white transition-colors">Tienes presupuesto de innovación pero no ves el
retorno claro.</span>
</li>
<li class="flex gap-4 text-slate-300 text-sm group">
<div
class="w-1.5 h-1.5 rounded-full bg-emerald-500 mt-2 shrink-0 group-hover:scale-150 transition-transform shadow-[0_0_10px_rgba(16,185,129,0.5)]">
</div>
<span class="group-hover:text-white transition-colors">Buscas capacidad interna (In-House), no depender de
agencias.</span>
</li>
</ul>
</div>
<!-- Red Side -->
<div class="glass p-10 rounded-3xl border-l-4 border-l-red-500/50 reveal delay-100 glass-card card-red">
<h3 class="text-xl font-bold mb-8 flex items-center gap-3 text-white">
<div class="p-2 bg-red-500/10 rounded-lg text-red-400 border border-red-500/20">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="18" y1="6" x2="6" y2="18"></line>
<line x1="6" y1="6" x2="18" y2="18"></line>
</svg>
</div>
No Es Para Ti Si...
</h3>
<ul class="space-y-6">
<li class="flex gap-4 text-slate-400 text-sm group">
<div class="w-1.5 h-1.5 rounded-full bg-slate-700 mt-2 shrink-0 group-hover:bg-red-500 transition-colors">
</div>
<span class="group-hover:text-slate-200 transition-colors">Buscas solo una 'charla motivacional'
futurista.</span>
</li>
<li class="flex gap-4 text-slate-400 text-sm group">
<div class="w-1.5 h-1.5 rounded-full bg-slate-700 mt-2 shrink-0 group-hover:bg-red-500 transition-colors">
</div>
<span class="group-hover:text-slate-200 transition-colors">No tienes presupuesto asignado para
tecnología.</span>
</li>
<li class="flex gap-4 text-slate-400 text-sm group">
<div class="w-1.5 h-1.5 rounded-full bg-slate-700 mt-2 shrink-0 group-hover:bg-red-500 transition-colors">
</div>
<span class="group-hover:text-slate-200 transition-colors">Prefieres pagar consultores eternamente en
lugar de educar a tu equipo.</span>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- --- SCARCITY --- -->
<section class="py-12 px-6">
<div class="max-w-4xl mx-auto">
<div
class="glass border-t border-rose-500/20 rounded-2xl p-8 md:p-12 flex flex-col md:flex-row items-center justify-between gap-8 backdrop-blur-sm reveal glass-card">
<div class="text-center md:text-left">
<div
class="flex items-center justify-center md:justify-start gap-2 text-rose-400 font-bold mb-2 text-sm tracking-wide">
<span class="w-2 h-2 rounded-full bg-rose-500 animate-pulse shadow-[0_0_10px_rgba(244,63,94,0.6)]"></span>
DISPONIBILIDAD LIMITADA
</div>
<h3 class="text-2xl font-bold text-white mb-2">Solo 6 empresas por trimestre.</h3>
<p class="text-slate-400 text-sm">Garantizamos calidad cerrando agenda. Próxima apertura: Q2 2026.</p>
</div>
<!-- Animación de Cupos -->
<div id="scarcity-box"
class="bg-slate-950/80 border border-white/10 px-8 py-5 rounded-xl text-center min-w-[200px] shadow-2xl relative overflow-hidden group">
<div class="absolute inset-0 bg-rose-500/5 group-hover:bg-rose-500/10 transition-colors"></div>
<span class="block text-slate-500 text-[10px] font-mono uppercase tracking-widest mb-2 relative z-10">Cupos Q1
2026</span>
<div class="relative z-10 mb-3">
<span id="slots-counter" class="text-4xl font-bold text-white font-mono">0</span><span
class="text-lg font-normal text-slate-600 font-mono">/6</span>
</div>
<!-- Scarcity Bar -->
<div class="w-full bg-slate-800/80 h-1.5 rounded-full overflow-hidden relative z-10 border border-white/5">
<div id="slots-bar"
class="h-full bg-rose-500 w-0 transition-all duration-[2000ms] ease-out shadow-[0_0_10px_rgba(244,63,94,0.5)]">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- --- APPLICATION FORM (CONECTADO) --- -->
<section id="apply-form" class="py-24 px-6 relative">
<div
class="max-w-xl mx-auto glass p-10 rounded-3xl shadow-2xl relative z-10 reveal group form-container overflow-hidden min-h-[600px] flex flex-col justify-center">
<!-- Success Message (Oculto inicialmente) -->
<div id="success-message" class="hidden text-center animate-fade-in-up">
<div
class="w-20 h-20 bg-emerald-500/20 rounded-full flex items-center justify-center mx-auto mb-6 border border-emerald-500/30 shadow-[0_0_30px_rgba(16,185,129,0.2)]">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="text-emerald-400">
<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path>
<polyline points="22 4 12 14.01 9 11.01"></polyline>
</svg>
</div>
<h3 class="text-3xl font-bold text-white mb-4">¡Registro Recibido!</h3>
<p class="text-slate-300 text-lg mb-8 leading-relaxed">
Hemos recibido tu solicitud correctamente. En menos de <span class="text-emerald-400 font-bold">24
horas</span> analizaremos tu perfil y te contactaremos para confirmar si tu empresa califica para el
programa.
</p>
<div class="p-4 bg-slate-900/50 rounded-xl border border-white/5 text-sm text-slate-400">
Revisa tu bandeja de entrada (o spam) mañana por la mañana.
</div>
</div>
<!-- Form Content -->
<div id="form-content" class="transition-opacity duration-500">
<div class="text-center mb-10">
<h2 class="text-3xl font-bold mb-3 text-white transition-colors group-hover:text-white">Postula tu empresa
</h2>
<p class="text-slate-400 text-sm transition-colors group-hover:text-slate-300">Completa el perfil para
verificar eligibilidad de tu empresa.</p>
</div>
<!-- Formulario Conectado a FormSubmit.co via AJAX -->
<form id="lead-form" action="https://formsubmit.co/juan.culturaia@gmail.com" method="POST" class="space-y-6">
<!-- FormSubmit Configuration -->
<input type="hidden" name="_subject" value="¡Nuevo Lead! Auditoría Cultura IA">
<input type="hidden" name="_captcha" value="false">
<input type="hidden" name="_template" value="table">
<div class="space-y-6">
<div class="group/input">
<label
class="block text-xs font-mono text-slate-500 uppercase tracking-widest mb-2 group-focus-within/input:text-indigo-400 group-hover:text-slate-400 transition-colors">Nombre
Completo</label>
<input type="text" name="name"
class="w-full bg-slate-900/50 border border-slate-700/50 rounded-lg p-4 text-white focus:border-indigo-500 focus:ring-1 focus:ring-indigo-500 outline-none transition-all placeholder:text-slate-700 font-light group-hover:bg-slate-900/80 group-hover:border-slate-600/50"
placeholder="Ej. Juan Pérez" required>
</div>
<div class="group/input">
<label
class="block text-xs font-mono text-slate-500 uppercase tracking-widest mb-2 group-focus-within/input:text-indigo-400 group-hover:text-slate-400 transition-colors">Email
Corporativo</label>
<input type="email" name="email"
class="w-full bg-slate-900/50 border border-slate-700/50 rounded-lg p-4 text-white focus:border-indigo-500 focus:ring-1 focus:ring-indigo-500 outline-none transition-all placeholder:text-slate-700 font-light group-hover:bg-slate-900/80 group-hover:border-slate-600/50"
placeholder="juan@empresa.com" required>
</div>
<div class="grid grid-cols-2 gap-4">
<div class="group/input">
<label
class="block text-xs font-mono text-slate-500 uppercase tracking-widest mb-2 group-focus-within/input:text-indigo-400 group-hover:text-slate-400 transition-colors">Empresa</label>
<input type="text" name="company"
class="w-full bg-slate-900/50 border border-slate-700/50 rounded-lg p-4 text-white focus:border-indigo-500 focus:ring-1 focus:ring-indigo-500 outline-none transition-all placeholder:text-slate-700 font-light group-hover:bg-slate-900/80 group-hover:border-slate-600/50"
placeholder="Nombre" required>
</div>
<div class="group/input">
<label
class="block text-xs font-mono text-slate-500 uppercase tracking-widest mb-2 group-focus-within/input:text-indigo-400 group-hover:text-slate-400 transition-colors">Cargo</label>
<input type="text" name="role"
class="w-full bg-slate-900/50 border border-slate-700/50 rounded-lg p-4 text-white focus:border-indigo-500 focus:ring-1 focus:ring-indigo-500 outline-none transition-all placeholder:text-slate-700 font-light group-hover:bg-slate-900/80 group-hover:border-slate-600/50"
placeholder="CEO / Director" required>
</div>
</div>
<div class="group/input">
<label
class="block text-xs font-mono text-slate-500 uppercase tracking-widest mb-2 group-focus-within/input:text-indigo-400 group-hover:text-slate-400 transition-colors">Tamaño
del Equipo</label>
<select name="team_size"
class="w-full bg-slate-900/50 border border-slate-700/50 rounded-lg p-4 text-white focus:border-indigo-500 focus:ring-1 focus:ring-indigo-500 outline-none transition-all font-light appearance-none group-hover:bg-slate-900/80 group-hover:border-slate-600/50"
required>
<option value="" disabled selected class="text-slate-700">Seleccionar rango</option>
<option class="bg-slate-900" value="1-5">1 - 5 personas</option>
<option class="bg-slate-900" value="6-20">6 - 20 personas</option>
<option class="bg-slate-900" value="21-50">21 - 50 personas</option>
<option class="bg-slate-900" value="+50">+50 personas</option>
</select>
</div>
<div class="group/input">
<label
class="block text-xs font-mono text-slate-500 uppercase tracking-widest mb-2 group-focus-within/input:text-indigo-400 group-hover:text-slate-400 transition-colors">Obstáculo
Principal</label>
<textarea name="message"
class="w-full bg-slate-900/50 border border-slate-700/50 rounded-lg p-4 text-white focus:border-indigo-500 focus:ring-1 focus:ring-indigo-500 outline-none transition-all h-32 resize-none placeholder:text-slate-700 font-light group-hover:bg-slate-900/80 group-hover:border-slate-600/50"
placeholder="Breve descripción de la situación actual..." required></textarea>
</div>
</div>
<button type="submit" id="submit-btn"
class="w-full bg-white text-slate-950 font-bold py-4 rounded-xl transition-all hover:scale-[1.02] active:scale-[0.98] shadow-lg hover:shadow-white/20 mt-8 flex items-center justify-center gap-2 group-hover:shadow-white/30 cursor-pointer">
<span>Enviar Solicitud</span>
<svg id="btn-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="22" y1="2" x2="11" y2="13"></line>
<polygon points="22 2 15 22 11 13 13 11 2 15 22 2"></polygon>
</svg>
</button>
<p
class="text-center text-[10px] text-slate-600 mt-6 flex items-center justify-center gap-1.5 group-hover:text-slate-500 transition-colors">
<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect width="18" height="11" x="3" y="11" rx="2" ry="2" />
<path d="M7 11V7a5 5 0 0 1 10 0v4" />
</svg>
Datos encriptados. Respuesta en menos de 24h.
</p>
</form>
</div>
</div>
</section>
<!-- --- FAQ SECTION --- -->
<section class="py-24 px-6 border-t border-white/5 bg-slate-950/30">
<div class="max-w-2xl mx-auto">
<h2 class="text-2xl font-bold mb-10 text-center text-white">Preguntas Frecuentes</h2>
<div class="space-y-4" id="faq-container">
<!-- FAQ 1 (Nueva) -->
<div
class="group border border-white/5 rounded-xl bg-white/5 overflow-hidden transition-all hover:border-white/10 hover:bg-white/[0.07]">
<button
class="faq-toggle w-full flex justify-between items-center p-5 text-left font-medium text-slate-200 focus:outline-none">
¿Es seguro dar acceso a IA con información sensible de la empresa?
<span class="p-1 rounded-full bg-white/5 group-hover:bg-white/10 transition-colors">
<svg class="chevron-down w-4 h-4 text-slate-400 transition-transform duration-300"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m6 9 6 6 6-6" />
</svg>
</span>
</button>
<div class="faq-content hidden p-5 pt-0 text-slate-400 text-sm leading-relaxed border-t border-white/5">
<div class="pt-4">
Es una preocupación válida, pero lo más probable es que tus empleados <strong>ya estén compartiendo
información</strong> con ChatGPT u otras herramientas gratuitas para redactar correos o informes, sin
ningún protocolo de seguridad. Nuestra guía de adopción previene este mal uso ("Shadow AI"), enseñando al
equipo a usar las herramientas correctamente para proteger la data confidencial en lugar de exponerla.
</div>
</div>
</div>
<div
class="group border border-white/5 rounded-xl bg-white/5 overflow-hidden transition-all hover:border-white/10 hover:bg-white/[0.07]">
<button
class="faq-toggle w-full flex justify-between items-center p-5 text-left font-medium text-slate-200 focus:outline-none">
¿Cuánto dura el programa de implementación?
<span class="p-1 rounded-full bg-white/5 group-hover:bg-white/10 transition-colors">
<svg class="chevron-down w-4 h-4 text-slate-400 transition-transform duration-300"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m6 9 6 6 6-6" />
</svg>
</span>
</button>
<div class="faq-content hidden p-5 pt-0 text-slate-400 text-sm leading-relaxed border-t border-white/5">
<div class="pt-4">
2-3 días de diagnóstico. Luego, un taller presencial intensivo (Bootcamp) de 4 horas. Finalmente,
acompañamiento de 30 días post-implementación.
</div>
</div>
</div>
<div
class="group border border-white/5 rounded-xl bg-white/5 overflow-hidden transition-all hover:border-white/10 hover:bg-white/[0.07]">
<button
class="faq-toggle w-full flex justify-between items-center p-5 text-left font-medium text-slate-200 focus:outline-none">
¿Qué pasa si mi equipo no es técnico?
<span class="p-1 rounded-full bg-white/5 group-hover:bg-white/10 transition-colors">
<svg class="chevron-down w-4 h-4 text-slate-400 transition-transform duration-300"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m6 9 6 6 6-6" />
</svg>
</span>
</button>
<div class="faq-content hidden p-5 pt-0 text-slate-400 text-sm leading-relaxed border-t border-white/5">
<div class="pt-4">
Está diseñado para áreas de negocio (Marketing, Ventas, HR). Si saben usar Excel o email, califican.
Nosotros traducimos la complejidad técnica.
</div>
</div>
</div>
<div
class="group border border-white/5 rounded-xl bg-white/5 overflow-hidden transition-all hover:border-white/10 hover:bg-white/[0.07]">
<button
class="faq-toggle w-full flex justify-between items-center p-5 text-left font-medium text-slate-200 focus:outline-none">
¿Mi equipo dependerá de ustedes para siempre?
<span class="p-1 rounded-full bg-white/5 group-hover:bg-white/10 transition-colors">
<svg class="chevron-down w-4 h-4 text-slate-400 transition-transform duration-300"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m6 9 6 6 6-6" />
</svg>
</span>
</button>
<div class="faq-content hidden p-5 pt-0 text-slate-400 text-sm leading-relaxed border-t border-white/5">
<div class="pt-4">
Rotundamente no. Nuestra métrica de éxito es la autonomía del cliente construida desde el día 1.
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="py-10 text-center text-slate-600 text-xs border-t border-white/5 bg-slate-950">
<p>Cultura IA para Latam. © 2026</p>
<p class="mt-2 text-slate-700">Propiedad de <a href="#"
class="hover:text-indigo-400 transition-colors">@jara.mkt</a></p>
</footer>
<!-- --- STICKY CTA BUTTON (FLOATING PILL) --- -->
<div id="sticky-cta"
class="fixed bottom-8 left-1/2 -translate-x-1/2 z-50 opacity-0 translate-y-10 transition-all duration-500 pointer-events-none">
<button onclick="document.getElementById('apply-form').scrollIntoView({ behavior: 'smooth' })"
class="glass px-6 py-3 rounded-full text-white font-bold flex items-center gap-2 shadow-[0_0_20px_rgba(79,70,229,0.4)] hover:shadow-[0_0_30px_rgba(79,70,229,0.6)] hover:scale-105 transition-transform cursor-pointer border border-indigo-500/30 bg-slate-900/80 backdrop-blur-md">
<span>Hablemos</span>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="22" y1="2" x2="11" y2="13"></line>
<polygon points="22 2 15 22 11 13 13 11 2 15 22 2"></polygon>
</svg>
</button>
</div>
<!-- --- BACK TO TOP BUTTON (RIGHT) --- -->
<button id="back-to-top" onclick="window.scrollTo({top: 0, behavior: 'smooth'})"
class="fixed bottom-8 right-8 z-40 p-3 rounded-full glass text-slate-400 hover:text-white hover:bg-white/10 transition-all duration-300 opacity-0 translate-y-10 shadow-lg border border-white/10 pointer-events-none cursor-pointer">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m18 15-6-6-6 6" />
</svg>
</button>
<!-- --- WHATSAPP BUTTON (LEFT) --- -->
<a id="whatsapp-btn" href="https://tinyurl.com/taller-cultura-ia" target="_blank"
class="fixed bottom-8 left-8 z-40 p-3 rounded-full bg-[#25D366] text-white hover:bg-[#20bd5a] hover:scale-110 transition-all duration-300 opacity-0 translate-y-10 shadow-[0_0_20px_rgba(37,211,102,0.4)] pointer-events-none cursor-pointer flex items-center justify-center">
<!-- Usando SVG por defecto, pero puedes reemplazar src con 'whatsapp.png' si lo tienes localmente -->
<img src="whatsapp.png" onerror="this.src='https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg'"
alt="WhatsApp" class="w-6 h-6 text-white" />
</a>
<!-- JS Logic -->
<script>
// Spotlight Logic
const spotlight = document.getElementById('spotlight');
window.addEventListener('mousemove', e => {
requestAnimationFrame(() => {
spotlight.style.setProperty('--x', `${e.clientX}px`);
spotlight.style.setProperty('--y', `${e.clientY}px`);
});
});
// Form Submit Logic (AJAX Replacement)
const form = document.getElementById('lead-form');
const formContent = document.getElementById('form-content');
const successMessage = document.getElementById('success-message');
const submitBtn = document.getElementById('submit-btn');
if (form) {
form.addEventListener('submit', function (e) {
e.preventDefault();
const originalBtnText = submitBtn.innerHTML;
submitBtn.innerHTML = '<span class="animate-pulse">Enviando...</span>';
submitBtn.disabled = true;
submitBtn.classList.add('opacity-75', 'cursor-not-allowed');
const formData = new FormData(form);
fetch("https://formsubmit.co/ajax/juan.culturaia@gmail.com", {
method: "POST",
body: formData
})
.then(response => response.json())
.then(data => {
formContent.style.opacity = '0';
setTimeout(() => {
formContent.classList.add('hidden');
successMessage.classList.remove('hidden');
requestAnimationFrame(() => {
successMessage.classList.add('active');
});
}, 500);
})
.catch(error => {
console.error('Error:', error);
alert('Hubo un problema al enviar. Por favor verifica tu conexión.');
submitBtn.innerHTML = originalBtnText;
submitBtn.disabled = false;
submitBtn.classList.remove('opacity-75', 'cursor-not-allowed');
});
});
}
// Accordion Logic
document.querySelectorAll('.faq-toggle').forEach(button => {
button.addEventListener('click', () => {
const content = button.nextElementSibling;
const icon = button.querySelector('.chevron-down');
content.classList.toggle('hidden');
if (content.classList.contains('hidden')) {
icon.style.transform = 'rotate(0deg)';
} else {
icon.style.transform = 'rotate(180deg)';
}
document.querySelectorAll('.faq-toggle').forEach(otherBtn => {
if (otherBtn !== button) {
otherBtn.nextElementSibling.classList.add('hidden');
otherBtn.querySelector('.chevron-down').style.transform = 'rotate(0deg)';
}
});
});
});
// Scroll Reveal Logic (For Text/Cards)
const observerOptions = {
threshold: 0.1,
rootMargin: "0px 0px -50px 0px"
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('active');
observer.unobserve(entry.target);
}
});
}, observerOptions);
document.querySelectorAll('.reveal').forEach(el => {
observer.observe(el);
});
// --- EXPENSE BAR ANIMATION ---
const barObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const bar = entry.target;
bar.style.width = '100%';
bar.classList.remove('bg-indigo-500');
bar.classList.add('bg-gradient-to-r', 'from-orange-500', 'to-red-600');
barObserver.unobserve(bar);
}
});
}, { threshold: 0.5 });
const expenseBar = document.getElementById('expense-bar');
if (expenseBar) {
barObserver.observe(expenseBar);
}
// --- SCARCITY COUNTER ANIMATION (UPDATED to 3/6) ---
const slotsObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const counter = document.getElementById('slots-counter');
const bar = document.getElementById('slots-bar');
// Animate Bar (50% because 3 is half of 6)
if (bar) bar.style.width = '50%';
// Animate Counter to 3
if (counter) {
let start = 0;
const end = 3; // Changed from 6 to 3
const duration = 2000;
const stepTime = Math.abs(Math.floor(duration / end));
const timer = setInterval(() => {
start += 1;
counter.innerText = start;
if (start == end) clearInterval(timer);
}, stepTime);
}
slotsObserver.unobserve(entry.target);
}
});
}, { threshold: 0.5 });
const scarcityBox = document.getElementById('scarcity-box');
if (scarcityBox) {
slotsObserver.observe(scarcityBox);
}
// Navbar blur, Sticky CTA, Back to Top & WhatsApp logic
const nav = document.getElementById('navbar');
const stickyCta = document.getElementById('sticky-cta');
const backToTopBtn = document.getElementById('back-to-top');
const whatsappBtn = document.getElementById('whatsapp-btn');
const formSection = document.getElementById('apply-form');
window.addEventListener('scroll', () => {
const scrollY = window.scrollY;
// Navbar
if (scrollY > 50) {
nav.classList.add('shadow-lg');
nav.style.background = 'rgba(2, 4, 10, 0.8)';
} else {
nav.classList.remove('shadow-lg');
nav.style.background = 'rgba(255, 255, 255, 0.01)';
}
// Sticky CTA Logic
const formTop = formSection.offsetTop;
const viewportBottom = scrollY + window.innerHeight;
if (scrollY > 600 && viewportBottom < formTop + 300) {
stickyCta.classList.remove('opacity-0', 'translate-y-10', 'pointer-events-none');
stickyCta.classList.add('opacity-100', 'translate-y-0', 'pointer-events-auto');
} else {
stickyCta.classList.add('opacity-0', 'translate-y-10', 'pointer-events-none');
stickyCta.classList.remove('opacity-100', 'translate-y-0', 'pointer-events-auto');
}
// Back to top & WhatsApp Logic (Simple scroll check)
if (scrollY > 600) {
// Show Back to Top
backToTopBtn.classList.remove('opacity-0', 'translate-y-10', 'pointer-events-none');
backToTopBtn.classList.add('opacity-100', 'translate-y-0', 'pointer-events-auto');
// Show WhatsApp (Symmetric)
whatsappBtn.classList.remove('opacity-0', 'translate-y-10', 'pointer-events-none');
whatsappBtn.classList.add('opacity-100', 'translate-y-0', 'pointer-events-auto');
} else {
// Hide Back to Top
backToTopBtn.classList.add('opacity-0', 'translate-y-10', 'pointer-events-none');
backToTopBtn.classList.remove('opacity-100', 'translate-y-0', 'pointer-events-auto');
// Hide WhatsApp
whatsappBtn.classList.add('opacity-0', 'translate-y-10', 'pointer-events-none');
whatsappBtn.classList.remove('opacity-100', 'translate-y-0', 'pointer-events-auto');
}
});
</script>
</body>
</html>