-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1208 lines (1126 loc) · 62.3 KB
/
index.html
File metadata and controls
1208 lines (1126 loc) · 62.3 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
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Braced Engineering</title>
<link rel="icon" type="image/png" href="img/favicon.png">
<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@400;500;600;700;800;900&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #0a0a0a;
--surface: #111111;
--border: #1a1a1a;
--text: #c8c8c8;
--text-bright: #f0f0f0;
--text-muted: #999;
--accent: #00b4d8;
--accent2: #7b2ff7;
--accent-dim: rgba(0,180,216,0.08);
--accent-glow: rgba(0,180,216,0.15);
}
html { font-size: 16px; }
body {
font-family: "Inter", system-ui, -apple-system, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
overflow: hidden;
height: 100vh; width: 100vw;
}
::selection { background: rgba(0,180,216,0.25); color: var(--text-bright); }
/* --- CINEMATIC FADE SECTIONS --- */
.snap-container {
position: relative; width: 100%; height: 100vh; overflow: hidden;
perspective: 1200px;
}
.snap-section {
position: absolute; inset: 0;
display: flex; flex-direction: column; justify-content: center;
overflow: hidden;
opacity: 0; visibility: hidden;
transform: translateY(50px) scale(0.98);
transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1),
visibility 0.55s,
transform 0.55s cubic-bezier(0.16,1,0.3,1);
pointer-events: none;
will-change: opacity, transform;
}
.snap-section.active {
opacity: 1; visibility: visible;
transform: translateY(0) scale(1);
pointer-events: auto;
overflow-y: auto;
}
.snap-section.active::-webkit-scrollbar { width: 0; }
.snap-section.active { scrollbar-width: none; }
.snap-section.exit-up {
opacity: 0;
transform: translateY(-40px) scale(0.98);
}
.snap-section.exit-down {
opacity: 0;
transform: translateY(40px) scale(0.98);
}
.snap-section.enter-up {
transform: translateY(50px) scale(0.98);
}
.snap-section.enter-down {
transform: translateY(-50px) scale(0.98);
}
/* --- CANVAS BG --- */
#particle-canvas {
position: fixed; inset: 0; width: 100%; height: 100%;
z-index: 0; pointer-events: none;
}
/* --- SECTION DECORATIVE ORBS --- */
.orb {
position: absolute; border-radius: 50%;
filter: blur(80px); pointer-events: none; z-index: 0;
animation: orbFloat 12s ease-in-out infinite alternate;
}
.orb-1 { width: 400px; height: 400px; background: rgba(0,180,216,0.06); top: -10%; right: -5%; }
.orb-2 { width: 300px; height: 300px; background: rgba(123,47,247,0.05); bottom: -10%; left: -5%; animation-delay: -4s; }
.orb-3 { width: 350px; height: 350px; background: rgba(0,180,216,0.05); top: 20%; left: -8%; animation-delay: -2s; }
.orb-4 { width: 280px; height: 280px; background: rgba(123,47,247,0.04); bottom: 5%; right: -3%; animation-delay: -6s; }
@keyframes orbFloat {
0% { transform: translate(0, 0) scale(1); }
100% { transform: translate(20px, -15px) scale(1.08); }
}
/* --- FADE-IN ANIMATION --- */
.reveal {
opacity: 0; transform: translateY(30px);
transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
/* --- NAV --- */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
background: rgba(10,10,10,0.7);
backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-inner {
max-width: 1100px; margin: 0 auto;
display: flex; align-items: center; justify-content: space-between;
padding: 0 40px; height: 60px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-text { font-size: 0.95rem; font-weight: 800; color: var(--text-bright); letter-spacing: -0.03em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-cta {
font-family: inherit; font-size: 0.78rem; font-weight: 600;
color: var(--accent); background: rgba(0,180,216,0.06);
border: 1px solid rgba(0,180,216,0.25);
padding: 8px 22px; border-radius: 6px;
cursor: pointer; text-decoration: none;
transition: all 0.25s;
box-shadow: 0 0 12px rgba(0,180,216,0.06);
}
.nav-cta:hover {
background: rgba(0,180,216,0.1); border-color: rgba(0,180,216,0.4);
box-shadow: 0 0 20px rgba(0,180,216,0.1);
}
.lang-btn {
background: transparent; border: 1px solid var(--border);
color: var(--text-muted); font-size: 0.72rem; font-weight: 700;
padding: 5px 14px; border-radius: 6px; cursor: pointer;
transition: all 0.2s; letter-spacing: 0.08em; font-family: inherit;
}
.nav-portal {
font-family: inherit; font-size: 0.72rem; font-weight: 600;
color: var(--text-bright); text-decoration: none;
padding: 7px 18px; border-radius: 6px;
background: linear-gradient(135deg, rgba(123,47,247,0.08), rgba(0,180,216,0.08));
border: 1px solid rgba(123,47,247,0.25);
transition: all 0.3s;
box-shadow: 0 0 8px rgba(123,47,247,0.06);
letter-spacing: 0.01em;
}
.nav-portal:hover {
background: linear-gradient(135deg, rgba(123,47,247,0.14), rgba(0,180,216,0.14));
border-color: rgba(123,47,247,0.45);
box-shadow: 0 0 16px rgba(123,47,247,0.12), 0 0 4px rgba(0,180,216,0.08);
transform: translateY(-1px);
}
.lang-btn:hover { border-color: var(--accent); color: var(--accent); }
.lang-flag { width: 16px; height: 12px; vertical-align: -1px; margin-right: 4px; border-radius: 1px; }
/* --- SECTION INNER --- */
.section-inner {
position: relative; z-index: 1;
max-width: 900px; margin: 0 auto; padding: 0 40px;
}
/* --- HERO --- */
.hero-inner {
text-align: center; max-width: 780px; margin: 0 auto;
padding: 0 40px; position: relative; z-index: 1;
}
.hero-logo {
display: flex; align-items: center; justify-content: center;
gap: 14px; margin-bottom: 32px;
}
.hero-brace { opacity: 0.9; filter: drop-shadow(0 0 12px rgba(0,180,216,0.4)); }
.hero-brand {
font-size: 1.8rem; font-weight: 900; color: var(--text-bright);
letter-spacing: -0.03em;
}
.hero h1 {
font-size: clamp(1.5rem, 2.8vw, 2.1rem);
font-weight: 800; color: var(--text-bright);
line-height: 1.25; letter-spacing: -0.03em;
margin-bottom: 0;
max-width: 680px; margin-left: auto; margin-right: auto;
}
.hero h1 .accent {
background: linear-gradient(135deg, var(--accent), #7be0f0);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-sub { font-size: 0.95rem; color: var(--text-muted); margin-top: 20px; line-height: 1.6; }
.hero-cta-wrap { margin-top: 48px; display: flex; justify-content: center; gap: 16px; }
.btn-glow {
display: inline-block; font-family: inherit; font-size: 0.88rem; font-weight: 600;
color: var(--accent); background: rgba(0,180,216,0.04);
border: 1.5px solid var(--accent); padding: 13px 36px;
border-radius: 8px; cursor: pointer; text-decoration: none;
transition: all 0.3s;
box-shadow: 0 0 8px rgba(0,180,216,0.15), 0 0 20px rgba(0,180,216,0.06), inset 0 0 6px rgba(0,180,216,0.05);
}
.btn-glow:hover {
background: rgba(0,180,216,0.08);
box-shadow: 0 0 16px rgba(0,180,216,0.3), 0 0 40px rgba(0,180,216,0.12), inset 0 0 10px rgba(0,180,216,0.08);
transform: translateY(-3px);
}
.scroll-hint {
position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.4;
}
.scroll-hint span {
font-size: 0.65rem; font-weight: 600; text-transform: uppercase;
letter-spacing: 0.1em; color: var(--text-muted);
}
.scroll-line {
width: 1px; height: 32px;
background: linear-gradient(to bottom, var(--accent), transparent);
animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
0%, 100% { opacity: 0.3; transform: scaleY(1); }
50% { opacity: 0.8; transform: scaleY(1.3); }
}
/* --- GRADIENT HEADINGS --- */
.section-label {
font-size: 0.6rem; font-weight: 700;
text-transform: uppercase; letter-spacing: 0.16em;
color: var(--accent); margin-bottom: 28px;
display: flex; align-items: center; gap: 12px;
}
.section-label::before {
content: ''; width: 28px; height: 2px;
background: linear-gradient(90deg, var(--accent), transparent); opacity: 0.6;
}
h2 {
font-size: clamp(1.6rem, 3.2vw, 2.4rem);
font-weight: 800; line-height: 1.12; letter-spacing: -0.035em;
margin-bottom: 20px;
background: linear-gradient(135deg, var(--text-bright) 40%, var(--accent));
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text;
}
.body-text { font-size: 0.95rem; color: var(--text); line-height: 1.7; max-width: 560px; }
.body-text + .body-text { margin-top: 12px; }
.body-text.muted { color: var(--text-muted); font-size: 0.9rem; }
/* --- GRADIENT DIVIDER --- */
.gradient-line {
width: 80px; height: 2px; margin-top: 28px;
background: linear-gradient(90deg, var(--accent), var(--accent2), transparent);
border-radius: 2px;
}
/* --- QUÉ HACEMOS HERO CARD --- */
.what-card {
position: relative;
background: rgba(255,255,255,0.02);
border: 1px solid rgba(0,180,216,0.1);
border-left: 3px solid var(--accent);
border-radius: 16px;
padding: 48px 52px;
overflow: hidden;
transition: all 0.4s;
}
.what-card:hover {
border-color: rgba(0,180,216,0.2);
box-shadow: 0 16px 60px rgba(0,180,216,0.06), 0 0 0 1px rgba(0,180,216,0.06);
}
.what-card::after {
content: ''; position: absolute; top: -1px; left: -1px; right: -1px; height: 3px;
background: linear-gradient(90deg, var(--accent), var(--accent2), transparent);
border-radius: 16px 16px 0 0;
}
.what-card-bg {
position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
width: 220px; height: 220px; opacity: 0.03;
transition: opacity 0.4s;
}
.what-card:hover .what-card-bg { opacity: 0.06; }
.what-card h2 { margin-bottom: 16px; }
.what-card .body-text { max-width: 520px; }
/* --- PUNCH GRID (QUÉ HACEMOS) --- */
.punch-grid {
display: grid; grid-template-columns: repeat(3, 1fr);
gap: 20px; margin-top: 48px;
}
.punch-item {
padding: 36px 28px; position: relative;
background: rgba(255,255,255,0.02);
border: 1px solid rgba(255,255,255,0.05);
border-radius: 14px;
transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
overflow: hidden; text-align: center;
}
.punch-item::before {
content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
background: linear-gradient(90deg, var(--accent), var(--accent2));
opacity: 0; transition: opacity 0.4s;
}
.punch-item:hover {
background: rgba(0,180,216,0.05);
border-color: rgba(0,180,216,0.2);
transform: translateY(-6px);
box-shadow: 0 16px 48px rgba(0,180,216,0.1), 0 0 0 1px rgba(0,180,216,0.08);
}
.punch-item:hover::before { opacity: 1; }
.punch-icon {
width: 48px; height: 48px; margin: 0 auto 20px;
color: var(--accent);
filter: drop-shadow(0 0 8px rgba(0,180,216,0.3));
transition: all 0.4s;
}
.punch-item:hover .punch-icon {
transform: scale(1.15);
filter: drop-shadow(0 0 16px rgba(0,180,216,0.5));
}
.punch-item h3 {
font-size: 1rem; font-weight: 700; color: var(--text-bright);
margin-bottom: 10px;
}
.punch-item p {
font-size: 0.82rem; color: var(--text-muted); line-height: 1.55;
}
@media (max-width: 768px) { .punch-grid { grid-template-columns: 1fr; gap: 12px; } }
/* --- PILLARS (WOW) --- */
.pillars {
display: grid; grid-template-columns: repeat(3, 1fr);
gap: 16px; margin-top: 48px;
}
.pillar {
padding: 32px 28px; position: relative;
background: rgba(255,255,255,0.02);
border: 1px solid rgba(255,255,255,0.04);
border-radius: 12px;
transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
overflow: hidden;
}
.pillar::before {
content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
background: linear-gradient(90deg, var(--accent), var(--accent2));
opacity: 0; transition: opacity 0.4s;
}
.pillar:hover {
background: rgba(0,180,216,0.04);
border-color: rgba(0,180,216,0.15);
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(0,180,216,0.08), 0 0 0 1px rgba(0,180,216,0.1);
}
.pillar:hover::before { opacity: 1; }
.pillar-icon {
position: absolute; bottom: 12px; right: 12px;
width: 72px; height: 72px; opacity: 0.06;
transition: opacity 0.4s;
}
.pillar:hover .pillar-icon { opacity: 0.12; }
.pillar { border-left: 2px solid rgba(0,180,216,0.12); }
.pillar:hover { border-left-color: var(--accent); }
.pillar-num {
font-size: 2.5rem; font-weight: 900; line-height: 1;
background: linear-gradient(135deg, rgba(0,180,216,0.35), rgba(123,47,247,0.2));
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text; margin-bottom: 16px;
}
.pillar h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-bright); margin-bottom: 10px; }
.pillar p { font-size: 0.82rem; color: var(--text); line-height: 1.6; }
/* --- CAPABILITIES (WOW) --- */
.cap-grid {
display: grid; grid-template-columns: 1fr 1fr;
gap: 16px; margin-top: 40px;
}
.cap-item {
padding: 24px 28px; position: relative;
background: rgba(255,255,255,0.02);
border: 1px solid rgba(255,255,255,0.04);
border-radius: 12px;
font-size: 0.88rem; color: var(--text);
display: flex; align-items: flex-start; gap: 18px;
transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
overflow: hidden;
}
.cap-content h4 {
font-size: 0.88rem; font-weight: 700; color: var(--text-bright);
margin-bottom: 6px;
}
.cap-content p {
font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; margin: 0;
}
.cap-icon {
position: absolute; bottom: 10px; right: 10px;
width: 56px; height: 56px; opacity: 0.05;
transition: opacity 0.4s;
}
.cap-item:hover .cap-icon { opacity: 0.1; }
.cap-item { border-left: 2px solid rgba(0,180,216,0.12); }
.cap-item:hover { border-left-color: var(--accent); }
.cap-item::before {
content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
background: linear-gradient(180deg, var(--accent), var(--accent2));
opacity: 0; transition: opacity 0.4s;
}
.cap-item:hover {
background: rgba(0,180,216,0.05);
border-color: rgba(0,180,216,0.15);
color: var(--text-bright);
transform: translateX(4px);
box-shadow: 0 8px 30px rgba(0,180,216,0.06);
}
.cap-item:hover::before { opacity: 1; }
.cap-dot {
width: 8px; height: 8px; border-radius: 50%;
background: var(--accent); flex-shrink: 0;
box-shadow: 0 0 10px rgba(0,180,216,0.4), 0 0 20px rgba(0,180,216,0.15);
animation: capPulse 3s ease-in-out infinite;
}
.cap-item:nth-child(2) .cap-dot { animation-delay: -0.5s; }
.cap-item:nth-child(3) .cap-dot { animation-delay: -1s; }
.cap-item:nth-child(4) .cap-dot { animation-delay: -1.5s; }
.cap-item:nth-child(5) .cap-dot { animation-delay: -2s; }
.cap-item:nth-child(6) .cap-dot { animation-delay: -2.5s; }
@keyframes capPulse {
0%, 100% { box-shadow: 0 0 6px rgba(0,180,216,0.3), 0 0 12px rgba(0,180,216,0.1); }
50% { box-shadow: 0 0 12px rgba(0,180,216,0.5), 0 0 24px rgba(0,180,216,0.2); }
}
/* --- PORTFOLIO (WOW) --- */
.portfolio-grid {
display: grid; grid-template-columns: repeat(3, 1fr);
gap: 16px; margin-top: 32px;
}
.portfolio-card {
background: rgba(255,255,255,0.02);
border: 1px solid rgba(255,255,255,0.05);
border-radius: 12px; padding: 22px 20px;
transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
display: flex; flex-direction: column; gap: 10px;
position: relative; overflow: hidden;
}
.portfolio-card::before {
content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
background: linear-gradient(90deg, var(--accent), var(--accent2));
opacity: 0.3; transition: opacity 0.4s;
}
.portfolio-card:hover {
border-color: rgba(0,180,216,0.2);
background: rgba(0,180,216,0.04);
transform: translateY(-4px);
box-shadow: 0 16px 48px rgba(0,180,216,0.08), 0 0 0 1px rgba(0,180,216,0.08);
}
.portfolio-card:hover::before { opacity: 1; }
.portfolio-sector {
font-size: 0.58rem; font-weight: 700; text-transform: uppercase;
letter-spacing: 0.1em; color: var(--accent);
background: var(--accent-dim); padding: 3px 10px;
border-radius: 4px; display: inline-block; width: fit-content;
}
.portfolio-card h3 { font-size: 0.88rem; font-weight: 700; color: var(--text-bright); line-height: 1.25; margin: 0; }
.portfolio-card p { font-size: 0.74rem; color: var(--text); line-height: 1.5; margin: 0; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 6px; }
.portfolio-tags span {
font-size: 0.58rem; font-weight: 600; padding: 3px 8px;
border-radius: 4px; background: rgba(0,180,216,0.06);
color: rgba(0,180,216,0.65); border: 1px solid rgba(0,180,216,0.1);
transition: all 0.3s;
}
.portfolio-card:hover .portfolio-tags span {
background: rgba(0,180,216,0.1); border-color: rgba(0,180,216,0.2);
color: rgba(0,180,216,0.85);
}
.portfolio-cta-card {
border: 1px dashed rgba(0,180,216,0.2);
background: rgba(0,180,216,0.02);
justify-content: center; align-items: center; text-align: center;
}
.portfolio-cta-card::before { display: none; }
.portfolio-cta-card h3 { font-size: 1.05rem; }
.portfolio-cta-card p { max-width: 220px; }
.portfolio-cta-link {
font-size: 0.82rem; font-weight: 700; color: var(--accent);
text-decoration: none; margin-top: 6px;
transition: all 0.3s; display: inline-block;
}
.portfolio-cta-link:hover { transform: translateX(4px); }
@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .portfolio-grid { grid-template-columns: 1fr; } }
/* --- CONTACT (WOW) --- */
#contacto::before {
content: ''; position: absolute; inset: 0;
background: radial-gradient(ellipse at center, rgba(0,180,216,0.06) 0%, transparent 65%);
pointer-events: none; z-index: 0;
}
.contact-inner {
text-align: center; max-width: 520px; margin: 0 auto;
padding: 0 40px; position: relative; z-index: 1;
}
.contact-divider {
width: 48px; height: 2px; margin: 0 auto 48px;
background: linear-gradient(90deg, transparent, var(--accent), transparent);
border-radius: 2px;
}
.contact-inner h2 { margin-bottom: 12px; }
.contact-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 48px; }
.contact-actions { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.contact-email { font-size: 0.82rem; color: var(--text-muted); }
.contact-email a {
color: var(--text); text-decoration: none;
border-bottom: 1px solid rgba(255,255,255,0.1);
transition: all 0.2s; padding-bottom: 1px;
}
.contact-email .email-link {
color: var(--text); text-decoration: none;
border-bottom: 1px solid rgba(255,255,255,0.1);
transition: all 0.2s; padding-bottom: 1px;
}
.contact-email .email-link:hover { color: var(--accent); border-color: var(--accent); }
.email-copy-wrap { display: inline-flex; align-items: center; gap: 8px; position: relative; }
.email-copy-btn {
background: rgba(0,180,216,0.06); border: 1px solid rgba(0,180,216,0.15);
color: var(--text-muted); border-radius: 4px; padding: 4px 6px;
cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center;
}
.email-copy-btn:hover { color: var(--accent); border-color: var(--accent); background: rgba(0,180,216,0.1); }
.email-copied {
font-size: 0.7rem; font-weight: 600; color: #4ade80;
opacity: 0; transform: translateY(4px);
transition: all 0.3s; position: absolute; right: -70px; white-space: nowrap;
}
.email-copied.show { opacity: 1; transform: translateY(0); }
/* --- FOOTER --- */
.footer-bar {
position: absolute; bottom: 0; left: 0; right: 0;
border-top: 1px solid rgba(255,255,255,0.04);
padding: 16px 40px; z-index: 1;
}
.footer-inner {
max-width: 1100px; margin: 0 auto;
display: flex; align-items: center; justify-content: space-between;
font-size: 0.68rem; color: var(--text-muted);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
/* --- SIDE DOTS NAV --- */
.side-nav {
position: fixed; right: 28px; top: 50%; transform: translateY(-50%);
display: flex; flex-direction: column; gap: 14px; z-index: 50;
}
.side-dot {
width: 8px; height: 8px; border-radius: 50%;
background: rgba(255,255,255,0.12); border: none;
cursor: pointer; transition: all 0.3s; padding: 0;
}
.side-dot:hover { background: rgba(0,180,216,0.4); transform: scale(1.3); }
.side-dot.active {
background: var(--accent);
box-shadow: 0 0 8px rgba(0,180,216,0.4);
transform: scale(1.4);
}
/* --- MOBILE NAV BUTTONS --- */
.nav-right-mobile { display: none; }
.nav-mobile-cta, .nav-mobile-lang { display: none; }
/* --- RESPONSIVE --- */
@media (max-width: 768px) {
/* Body */
body { height: 100vh; height: 100dvh; }
.snap-container { height: 100vh; height: 100dvh; }
/* Nav mobile: compact with essential buttons */
.nav-inner { padding: 0 16px; height: 52px; }
.nav-links { display: none; }
.nav-mobile-cta, .nav-mobile-lang {
display: inline-flex; align-items: center;
}
.nav-mobile-cta {
font-family: inherit; font-size: 0.7rem; font-weight: 600;
color: var(--accent); background: rgba(0,180,216,0.06);
border: 1px solid rgba(0,180,216,0.25);
padding: 6px 14px; border-radius: 6px;
text-decoration: none; gap: 4px;
}
.nav-mobile-lang {
background: transparent; border: 1px solid var(--border);
color: var(--text-muted); font-size: 0.65rem; font-weight: 700;
padding: 4px 10px; border-radius: 6px; cursor: pointer;
font-family: inherit; letter-spacing: 0.06em;
}
.nav-right-mobile { display: flex; align-items: center; gap: 10px; }
/* Sections: allow internal scroll, compact padding */
.snap-section {
padding: 60px 0 24px;
justify-content: flex-start;
align-items: stretch;
}
.snap-section.active { overflow-y: auto; -webkit-overflow-scrolling: touch; }
/* Section inner */
.section-inner, .hero-inner, .contact-inner { padding: 0 20px; }
/* Hero: centered, compact */
.hero { justify-content: center !important; padding: 0 !important; }
.hero-inner { padding: 0 20px; }
.hero-logo { margin-bottom: 20px; gap: 10px; }
.hero-brace { width: 32px; height: 54px; }
.hero-brand { font-size: 1.4rem; }
.hero h1 { font-size: clamp(1.3rem, 5.5vw, 1.8rem); }
.hero-sub { font-size: 0.85rem; margin-top: 14px; }
.hero-cta-wrap { margin-top: 32px; }
.btn-glow { font-size: 0.82rem; padding: 11px 28px; }
.scroll-hint { bottom: 20px; }
.scroll-hint span { font-size: 0.58rem; }
/* Section labels & headings */
.section-label { margin-bottom: 16px; font-size: 0.55rem; }
h2 { font-size: clamp(1.25rem, 5vw, 1.7rem); margin-bottom: 12px; }
.body-text { font-size: 0.85rem; }
/* Punch grid */
.punch-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
.punch-item { padding: 24px 20px; text-align: left; display: flex; gap: 16px; align-items: flex-start; }
.punch-icon { width: 36px; height: 36px; margin: 0; flex-shrink: 0; }
.punch-item h3 { font-size: 0.88rem; margin-bottom: 4px; }
.punch-item p { font-size: 0.76rem; }
/* Pillars */
.pillars { grid-template-columns: 1fr; gap: 10px; margin-top: 28px; }
.pillar { padding: 24px 20px; }
.pillar-num { font-size: 1.8rem; margin-bottom: 10px; }
.pillar h3 { font-size: 0.85rem; }
.pillar p { font-size: 0.76rem; }
/* Capabilities */
.cap-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 28px; }
.cap-item { padding: 18px 16px; gap: 12px; }
.cap-content h4 { font-size: 0.82rem; }
.cap-content p { font-size: 0.72rem; }
/* Portfolio */
.portfolio-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 20px; }
.portfolio-card { padding: 18px 16px; gap: 8px; }
.portfolio-card h3 { font-size: 0.82rem; }
.portfolio-card p { font-size: 0.7rem; }
.portfolio-tags span { font-size: 0.54rem; }
.portfolio-cta-card h3 { font-size: 0.9rem; }
/* Contact */
.contact-divider { margin-bottom: 28px; }
.contact-sub { margin-bottom: 28px; font-size: 0.82rem; }
.contact-email { font-size: 0.75rem; }
/* Footer */
.footer-bar { padding: 12px 20px; }
.footer-inner { flex-direction: column; gap: 6px; font-size: 0.62rem; }
/* Side nav & orbs off */
.side-nav { display: none; }
.orb { display: none; }
/* Canvas off on mobile */
#particle-canvas { display: none; }
}
@media (max-width: 380px) {
.hero h1 { font-size: clamp(1.1rem, 5vw, 1.5rem); }
.hero-brand { font-size: 1.2rem; }
.btn-glow { font-size: 0.78rem; padding: 10px 22px; }
}
</style>
</head>
<body>
<canvas id="particle-canvas"></canvas>
<!-- NAV -->
<nav>
<div class="nav-inner">
<a href="#" class="nav-logo">
<svg width="18" height="32" viewBox="0 0 24 48" fill="none">
<path d="M4 6 C4 6 9 6 11 6 C15 6 17 9 17 13 L17 19 C17 23 19 24 22 24 C19 24 17 25 17 29 L17 35 C17 39 15 42 11 42 C9 42 4 42 4 42" stroke="#00b4d8" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<span class="nav-logo-text">Braced</span>
</a>
<div class="nav-links">
<button id="lang-toggle" class="lang-btn" aria-label="Change language">EN</button>
<a href="#contacto" class="nav-cta"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="vertical-align:-2px;margin-right:6px"><path d="M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z"/></svg><span data-es="Contáctanos" data-en="Contact us">Contáctanos</span></a>
<a href="https://console.bracedeng.com/" target="_blank" rel="noopener noreferrer" class="nav-portal"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="vertical-align:-2px;margin-right:6px"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0110 0v4"/></svg><span data-es="Acceso Clientes" data-en="Client Access">Acceso Clientes</span></a>
</div>
<!-- Mobile nav buttons -->
<div class="nav-right-mobile">
<button id="lang-toggle-mobile" class="nav-mobile-lang" aria-label="Change language">EN</button>
<a href="#contacto" class="nav-mobile-cta" data-es="Contacto" data-en="Contact">Contacto</a>
</div>
</div>
</nav>
<!-- SIDE DOTS -->
<div class="side-nav" id="side-nav">
<button class="side-dot active" data-section="0"></button>
<button class="side-dot" data-section="1"></button>
<button class="side-dot" data-section="2"></button>
<button class="side-dot" data-section="3"></button>
<button class="side-dot" data-section="4"></button>
<button class="side-dot" data-section="5"></button>
</div>
<div class="snap-container" id="snap-container">
<!-- 1. HERO -->
<section class="snap-section hero" id="hero">
<div class="hero-inner">
<div class="hero-logo reveal">
<svg class="hero-brace" width="42" height="72" viewBox="0 0 24 48" fill="none">
<path d="M4 6 C4 6 9 6 11 6 C15 6 17 9 17 13 L17 19 C17 23 19 24 22 24 C19 24 17 25 17 29 L17 35 C17 39 15 42 11 42 C9 42 4 42 4 42" stroke="#00b4d8" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<span class="hero-brand">Braced</span>
</div>
<h1 id="hero-title" class="reveal reveal-d1"></h1>
<p class="hero-sub reveal reveal-d2" data-es="Ingeniería de software que se integra en tu empresa y la impulsa." data-en="Software engineering that integrates into your company and drives it forward.">Ingeniería de software que se integra en tu empresa y la impulsa.</p>
<div class="hero-cta-wrap reveal reveal-d3">
<a href="#contacto" class="btn-glow" id="hero-cta">Hablar con nosotros</a>
</div>
</div>
<div class="scroll-hint">
<span>Scroll</span>
<div class="scroll-line"></div>
</div>
</section>
<!-- 2. QUÉ HACEMOS -->
<section class="snap-section" id="que-hacemos">
<div class="orb orb-1"></div>
<div class="section-inner">
<div class="section-label reveal" data-es="Qué hacemos" data-en="What we do">Qué hacemos</div>
<h2 class="reveal reveal-d1" data-es="Convertimos tu operación en un sistema inteligente." data-en="We turn your operations into an intelligent system.">Convertimos tu operación en un sistema inteligente.</h2>
<p class="body-text reveal reveal-d2" data-es="No construimos software genérico — construimos la infraestructura que tu negocio necesita para operar, escalar y competir." data-en="We don't build generic software — we build the infrastructure your business needs to operate, scale, and compete.">No construimos software genérico — construimos la infraestructura que tu negocio necesita para operar, escalar y competir.</p>
<div class="punch-grid">
<div class="punch-item reveal reveal-d1">
<div class="punch-icon"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"><rect x="2" y="3" width="20" height="18" rx="2"/><path d="M8 7h8M8 11h5"/></svg></div>
<h3 data-es="Datos estructurados" data-en="Structured data">Datos estructurados</h3>
<p data-es="Tu información unificada, accesible y lista para actuar." data-en="Your information unified, accessible, and ready to act on.">Tu información unificada, accesible y lista para actuar.</p>
</div>
<div class="punch-item reveal reveal-d2">
<div class="punch-icon"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><rect x="5" y="5" width="14" height="14" rx="2"/><path d="M9 1v4M15 1v4M9 19v4M15 19v4M1 9h4M1 15h4M19 9h4M19 15h4"/><path d="M9.5 9c1 0 1.5.5 2.5 1.5S13 12 14.5 12c-1.5 0-2 .5-3 1.5S10.5 15 9.5 15"/></svg></div>
<h3 data-es="Procesos automatizados" data-en="Automated processes">Procesos automatizados</h3>
<p data-es="Sin tareas manuales. Tu equipo se centra en lo que importa." data-en="No manual tasks. Your team focuses on what matters.">Sin tareas manuales. Tu equipo se centra en lo que importa.</p>
</div>
<div class="punch-item reveal reveal-d3">
<div class="punch-icon"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"><path d="M3 3v18h18"/><path d="M7 16l4-6 4 3 5-7"/></svg></div>
<h3 data-es="Decisiones informadas" data-en="Informed decisions">Decisiones informadas</h3>
<p data-es="Métricas en tiempo real que guían cada paso del negocio." data-en="Real-time metrics guiding every business decision.">Métricas en tiempo real que guían cada paso del negocio.</p>
</div>
</div>
</div>
</section>
<!-- 3. CÓMO -->
<section class="snap-section" id="como">
<div class="orb orb-2"></div>
<div class="orb orb-3"></div>
<div class="section-inner">
<div class="section-label reveal" data-es="Cómo" data-en="How">Cómo</div>
<h2 class="reveal reveal-d1" data-es="Nos integramos en tu organización." data-en="We integrate into your organization.">Nos integramos en tu organización.</h2>
<p class="body-text reveal reveal-d2" data-es="Analizamos la operación. Construimos el sistema. Lo mantenemos vivo." data-en="We analyze operations. Build the system. Keep it alive.">Analizamos la operación. Construimos el sistema. Lo mantenemos vivo.</p>
<div class="pillars">
<div class="pillar reveal">
<svg class="pillar-icon" viewBox="0 0 24 24" fill="none" stroke="#00b4d8" stroke-width="1"><circle cx="12" cy="12" r="10"/><path d="M12 6v6l4 2"/></svg>
<div class="pillar-num">01</div>
<h3 data-es="Entendemos" data-en="Understand">Entendemos</h3>
<p data-es="Nos sumergimos en tu operación. Mapeamos procesos, detectamos fricción y definimos exactamente qué construir para generar impacto real." data-en="We dive into your operations. Map processes, detect friction, and define exactly what to build to generate real impact.">Nos sumergimos en tu operación. Mapeamos procesos, detectamos fricción y definimos exactamente qué construir para generar impacto real.</p>
</div>
<div class="pillar reveal reveal-d1">
<svg class="pillar-icon" viewBox="0 0 24 24" fill="none" stroke="#00b4d8" stroke-width="1"><rect x="3" y="3" width="7" height="7" rx="1"/><rect x="14" y="3" width="7" height="7" rx="1"/><rect x="3" y="14" width="7" height="7" rx="1"/><rect x="14" y="14" width="7" height="7" rx="1"/></svg>
<div class="pillar-num">02</div>
<h3 data-es="Construimos" data-en="Build">Construimos</h3>
<p data-es="Desarrollamos tecnología sólida, iterativa, integrada con tu equipo. Cada sprint entrega valor real, no demos vacías." data-en="We develop solid, iterative technology, integrated with your team. Every sprint delivers real value, not empty demos.">Desarrollamos tecnología sólida, iterativa, integrada con tu equipo. Cada sprint entrega valor real, no demos vacías.</p>
</div>
<div class="pillar reveal reveal-d2">
<svg class="pillar-icon" viewBox="0 0 24 24" fill="none" stroke="#00b4d8" stroke-width="1"><path d="M12 2v4m0 12v4M2 12h4m12 0h4M4.93 4.93l2.83 2.83m8.48 8.48l2.83 2.83M4.93 19.07l2.83-2.83m8.48-8.48l2.83-2.83"/></svg>
<div class="pillar-num">03</div>
<h3 data-es="Evolucionamos" data-en="Evolve">Evolucionamos</h3>
<p data-es="El sistema crece contigo. Mantenimiento continuo, nuevas capacidades, adaptación a medida que tu negocio escala." data-en="The system grows with you. Continuous maintenance, new capabilities, adaptation as your business scales.">El sistema crece contigo. Mantenimiento continuo, nuevas capacidades, adaptación a medida que tu negocio escala.</p>
</div>
</div>
</div>
</section>
<!-- 4. CAPACIDADES -->
<section class="snap-section" id="capacidades">
<div class="orb orb-4"></div>
<div class="section-inner">
<div class="section-label reveal" data-es="Capacidades" data-en="Capabilities">Capacidades</div>
<h2 class="reveal reveal-d1" data-es="Lo que construimos." data-en="What we build.">Lo que construimos.</h2>
<div class="cap-grid">
<div class="cap-item reveal"><svg class="cap-icon" viewBox="0 0 24 24" fill="none" stroke="#00b4d8" stroke-width="0.8"><rect x="2" y="3" width="20" height="18" rx="2"/><path d="M8 7h8M8 11h5"/></svg><span class="cap-dot" style="margin-top:6px"></span><div class="cap-content"><h4 data-es="Sistemas operativos a medida" data-en="Custom operating systems">Sistemas operativos a medida</h4><p data-es="Plataformas internas que centralizan datos, flujos y decisiones de tu negocio en un solo lugar." data-en="Internal platforms that centralize data, workflows, and business decisions in one place.">Plataformas internas que centralizan datos, flujos y decisiones de tu negocio en un solo lugar.</p></div></div>
<div class="cap-item reveal reveal-d1"><svg class="cap-icon" viewBox="0 0 24 24" fill="none" stroke="#00b4d8" stroke-width="0.8"><path d="M12 2l3 7h7l-5.5 4 2 7L12 16l-6.5 4 2-7L2 9h7z"/></svg><span class="cap-dot" style="margin-top:6px"></span><div class="cap-content"><h4 data-es="Automatización de procesos" data-en="Process automation">Automatización de procesos</h4><p data-es="Eliminamos tareas manuales y repetitivas. Tu equipo se centra en lo que importa." data-en="We eliminate manual, repetitive tasks. Your team focuses on what matters.">Eliminamos tareas manuales y repetitivas. Tu equipo se centra en lo que importa.</p></div></div>
<div class="cap-item reveal reveal-d1"><svg class="cap-icon" viewBox="0 0 24 24" fill="none" stroke="#00b4d8" stroke-width="0.8"><circle cx="6" cy="12" r="3"/><circle cx="18" cy="6" r="3"/><circle cx="18" cy="18" r="3"/><path d="M9 12h6M15 7.5l-6 3M15 16.5l-6-3"/></svg><span class="cap-dot" style="margin-top:6px"></span><div class="cap-content"><h4 data-es="Integración de datos" data-en="Data integration">Integración de datos</h4><p data-es="Conectamos tus fuentes de información para que fluyan sin fricción entre sistemas." data-en="We connect your data sources so information flows seamlessly between systems.">Conectamos tus fuentes de información para que fluyan sin fricción entre sistemas.</p></div></div>
<div class="cap-item reveal reveal-d2"><svg class="cap-icon" viewBox="0 0 24 24" fill="none" stroke="#00b4d8" stroke-width="0.8"><path d="M3 3v18h18"/><path d="M7 16l4-6 4 3 5-7"/></svg><span class="cap-dot" style="margin-top:6px"></span><div class="cap-content"><h4 data-es="Reporting en tiempo real" data-en="Real-time reporting">Reporting en tiempo real</h4><p data-es="Dashboards y métricas vivas que reflejan el estado real de tu operación." data-en="Live dashboards and metrics that reflect the real state of your operations.">Dashboards y métricas vivas que reflejan el estado real de tu operación.</p></div></div>
<div class="cap-item reveal reveal-d2"><svg class="cap-icon" viewBox="0 0 24 24" fill="none" stroke="#00b4d8" stroke-width="0.8"><path d="M12 2a7 7 0 017 7c0 3-2 5-3 7h-8c-1-2-3-4-3-7a7 7 0 017-7z"/><path d="M9 18h6M10 21h4"/></svg><span class="cap-dot" style="margin-top:6px"></span><div class="cap-content"><h4 data-es="IA aplicada" data-en="Applied AI">IA aplicada</h4><p data-es="Modelos, agentes y análisis predictivo integrados en tu flujo de trabajo diario." data-en="Models, agents, and predictive analytics integrated into your daily workflow.">Modelos, agentes y análisis predictivo integrados en tu flujo de trabajo diario.</p></div></div>
<div class="cap-item reveal reveal-d3"><svg class="cap-icon" viewBox="0 0 24 24" fill="none" stroke="#00b4d8" stroke-width="0.8"><path d="M4 14a1 1 0 01-1-1V5a1 1 0 011-1h16a1 1 0 011 1v8a1 1 0 01-1 1"/><path d="M2 18h20M8 18v2h8v-2"/></svg><span class="cap-dot" style="margin-top:6px"></span><div class="cap-content"><h4 data-es="Infraestructura y soporte" data-en="Infrastructure & support">Infraestructura y soporte</h4><p data-es="Cloud, DevOps, monitorización y mantenimiento continuo de todo lo que construimos." data-en="Cloud, DevOps, monitoring, and continuous maintenance of everything we build.">Cloud, DevOps, monitorización y mantenimiento continuo de todo lo que construimos.</p></div></div>
</div>
</div>
</section>
<!-- 5. CASOS -->
<section class="snap-section" id="casos">
<div class="orb orb-1"></div>
<div class="orb orb-2"></div>
<div class="section-inner" style="max-width:1000px">
<div class="section-label reveal" data-es="Casos" data-en="Cases">Casos</div>
<h2 class="reveal reveal-d1" data-es="Lo que hemos construido." data-en="What we've built.">Lo que hemos construido.</h2>
<div class="portfolio-grid">
<div class="portfolio-card reveal">
<div class="portfolio-sector" data-es="Construcción industrializada" data-en="Industrialized construction">Construcción industrializada</div>
<h3 data-es="Plataforma BIM-a-Fabricación" data-en="BIM-to-Manufacturing Platform">Plataforma BIM-a-Fabricación</h3>
<p data-es="Gestión completa de la fabricación industrializada: desde planos arquitectónicos hasta la automatización de máquinas en planta." data-en="Complete industrialized manufacturing management: from architectural plans to plant machine automation.">Gestión completa de la fabricación industrializada: desde planos arquitectónicos hasta la automatización de máquinas en planta.</p>
<div class="portfolio-tags"><span>Automatización</span><span>Integración de máquinas</span><span>Logística</span><span>Geometría 3D</span></div>
</div>
<div class="portfolio-card reveal reveal-d1">
<div class="portfolio-sector" data-es="Gestión de activos industriales" data-en="Industrial asset management">Gestión de activos industriales</div>
<h3 data-es="CRM de reparación multi-actor" data-en="Multi-actor repair CRM">CRM de reparación multi-actor</h3>
<p data-es="CRM a medida que orquesta el ciclo completo de reparación de componentes entre clientes, talleres regionales y logística." data-en="Custom CRM orchestrating the full component repair cycle between clients, regional workshops, and logistics.">CRM a medida que orquesta el ciclo completo de reparación de componentes entre clientes, talleres regionales y logística.</p>
<div class="portfolio-tags"><span>CRM a medida</span><span>Multi-actor</span><span>Trazabilidad</span></div>
</div>
<div class="portfolio-card reveal reveal-d2">
<div class="portfolio-sector" data-es="Contratación pública" data-en="Public procurement">Contratación pública</div>
<h3 data-es="Análisis de licitaciones con IA" data-en="AI tender analysis">Análisis de licitaciones con IA</h3>
<p data-es="Extrae y estructura automáticamente datos de licitaciones pasadas para evaluar nuevas oportunidades." data-en="Automatically extracts and structures data from past tenders to evaluate new opportunities.">Extrae y estructura automáticamente datos de licitaciones pasadas para evaluar nuevas oportunidades.</p>
<div class="portfolio-tags"><span>IA</span><span>Extracción de datos</span><span>OCR</span></div>
</div>
<div class="portfolio-card reveal">
<div class="portfolio-sector">Fintech</div>
<h3 data-es="Trading cuantitativo con agentes" data-en="Quantitative trading with agents">Trading cuantitativo con agentes</h3>
<p data-es="Plataforma para diseñar, probar y optimizar estrategias de trading cuantitativo con agentes autónomos en mercado." data-en="Platform to design, test, and optimize quantitative trading strategies with autonomous agents in the market.">Plataforma para diseñar, probar y optimizar estrategias de trading cuantitativo con agentes autónomos en mercado.</p>
<div class="portfolio-tags"><span>Agentes autónomos</span><span>Optimización</span><span>Simulación</span></div>
</div>
<div class="portfolio-card reveal reveal-d1">
<div class="portfolio-sector" data-es="Interacción con usuarios" data-en="User interaction">Interacción con usuarios</div>
<h3 data-es="Agentes conversacionales multicanal" data-en="Multichannel conversational agents">Agentes conversacionales multicanal</h3>
<p data-es="Agentes autónomos que interactúan por voz, WhatsApp y Telegram. Califican leads y ejecutan acciones sin intervención humana." data-en="Autonomous agents that interact via voice, WhatsApp, and Telegram. They qualify leads and execute actions without human intervention.">Agentes autónomos que interactúan por voz, WhatsApp y Telegram. Califican leads y ejecutan acciones sin intervención humana.</p>
<div class="portfolio-tags"><span>IA conversacional</span><span>Multicanal</span><span>Voz</span></div>
</div>
<div class="portfolio-card portfolio-cta-card reveal reveal-d2">
<h3 data-es="El tuyo es el siguiente." data-en="Yours is next.">El tuyo es el siguiente.</h3>
<p data-es="¿Tienes un proceso crítico que depende de hojas de cálculo, correos o herramientas desconectadas? Cuéntanos." data-en="Got a critical process running on spreadsheets, emails, or disconnected tools? Tell us.">¿Tienes un proceso crítico que depende de hojas de cálculo, correos o herramientas desconectadas? Cuéntanos.</p>
<a href="#contacto" class="portfolio-cta-link" data-es="Hablemos →" data-en="Let's talk →">Hablemos →</a>
</div>
</div>
</div>
</section>
<!-- 6. CONTACTO -->
<section class="snap-section" id="contacto">
<div class="contact-inner">
<div class="contact-divider reveal"></div>
<h2 class="reveal reveal-d1" data-es="Construimos el sistema que impulsa tu empresa." data-en="We build the system that drives your company.">Construimos el sistema que impulsa tu empresa.</h2>
<p class="contact-sub reveal reveal-d2" data-es="20 minutos para ver si encajamos." data-en="20 minutes to see if we're a fit.">20 minutos para ver si encajamos.</p>
<div class="contact-actions reveal reveal-d3">
<a href="https://calendar.google.com/calendar/u/0/appointments/schedules/AcZssZ1_0a6VAWvtBOOEXyGWpRZndUF5JMsPYWCyfMzKnBmCU-4DpqT5-PepYsnTuoADAac-2KjOHlAj" target="_blank" rel="noopener noreferrer" class="btn-glow" data-es="Agendar conversación" data-en="Schedule a conversation">Agendar conversación</a>
<div class="contact-email">
<span data-es="o escríbenos a " data-en="or write to us at ">o escríbenos a </span>
<span class="email-copy-wrap">
<a href="mailto:team@bracedeng.com" class="email-link">team@bracedeng.com</a>
<button class="email-copy-btn" id="copy-email-btn" aria-label="Copy email">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><rect x="9" y="9" width="13" height="13" rx="2"/><path d="M5 15V5a2 2 0 012-2h10"/></svg>
</button>
<span class="email-copied" id="email-copied" data-es="Copiado ✓" data-en="Copied ✓">Copiado ✓</span>
</span>
</div>
</div>
</div>
<div class="footer-bar">
<div class="footer-inner">
<span>© 2026 Braced Engineering</span>
<div class="footer-links">
<a href="legal.html">Aviso Legal</a>
<a href="privacidad.html">Privacidad</a>
<a href="cookies.html">Cookies</a>
</div>
</div>
</div>
</section>
</div>
<script>
(() => {
// --- Particle canvas ---
const canvas = document.getElementById('particle-canvas');
const ctx = canvas.getContext('2d');
let cW, cH;
const CDIST = 100;
const ANG = 60 * Math.PI / 180;
const cosA = Math.cos(ANG), sinA = Math.sin(ANG);
function cResize() { cW = canvas.width = window.innerWidth; cH = canvas.height = window.innerHeight; }
function sampleBrace(cx, cy, h, count) {
const w = h * 0.16, tipW = h * 0.25, pts = [];
for (let i = 0; i <= count; i++) {
const t = i / count; let x, y;
if (t <= 0.08) { const l = t / 0.08; x = cx + w * 0.3 + w * 0.7 * (1 - l); y = cy - h / 2 + h * 0.02 * l * l; }
else if (t <= 0.42) { const l = (t - 0.08) / 0.34; x = cx + w * 0.3 - w * 0.05 * Math.sin(l * Math.PI); y = cy - h / 2 + h * 0.02 + h * 0.44 * l; }
else if (t <= 0.5) { const l = (t - 0.42) / 0.08, e = l * l * (3 - 2 * l); x = cx + w * 0.3 - tipW * e; y = cy - h * 0.04 + h * 0.08 * e; }
else if (t <= 0.58) { const l = (t - 0.5) / 0.08, e = l * l * (3 - 2 * l); x = cx + w * 0.3 - tipW * (1 - e); y = cy + h * 0.04 - h * 0.08 * (1 - e); }
else if (t <= 0.92) { const l = (t - 0.58) / 0.34; x = cx + w * 0.3 - w * 0.05 * Math.sin(l * Math.PI); y = cy + h * 0.04 + h * 0.44 * l; }
else { const l = (t - 0.92) / 0.08; x = cx + w * 0.3 + w * 0.7 * l; y = cy + h / 2 - h * 0.02 * (1 - l) * (1 - l); }
const rx = cx + (x - cx) * cosA - (y - cy) * sinA, ry = cy + (x - cx) * sinA + (y - cy) * cosA;
pts.push({ x: rx, y: ry });
}
return pts;
}
let gCols, gRows, gGrid;
function buildGrid(nodes) {
gCols = Math.ceil(cW / CDIST) + 1; gRows = Math.ceil(cH / CDIST) + 1;
gGrid = new Array(gCols * gRows);
for (let i = 0; i < gGrid.length; i++) gGrid[i] = [];
for (let i = 0; i < nodes.length; i++) {
const n = nodes[i], col = Math.floor(n.x / CDIST), row = Math.floor(n.y / CDIST);
if (col >= 0 && col < gCols && row >= 0 && row < gRows) gGrid[row * gCols + col].push(i);
}
}
let hNodes = [], bTargets = [], hStart, hTime = 0, hLastAssign = 0;
const CONV_MS = 10000;
function hInit() {
hNodes = []; bTargets = [];
const cx = cW * 0.5, cy = cH * 0.47, bH = Math.min(cH * 0.76, 640);
sampleBrace(cx, cy, bH, 55).forEach(p => {
bTargets.push({ x: p.x, y: p.y });
if (Math.random() < 0.35) bTargets.push({ x: p.x + (Math.random() - 0.5) * 8, y: p.y + (Math.random() - 0.5) * 8 });
});
const isMobile = window.innerWidth <= 768;
const total = Math.min(Math.floor(cW * cH / (isMobile ? 4000 : 1800)), isMobile ? 400 : 1500);
for (let i = 0; i < total; i++) {
const gx = (Math.random() + Math.random() + Math.random()) / 3;
const gy = (Math.random() + Math.random() + Math.random()) / 3;
hNodes.push({
x: cx + (gx - 0.5) * cW * 1.4, y: cy + (gy - 0.5) * cH * 1.4,
vx: (Math.random() - 0.5) * 0.25, vy: (Math.random() - 0.5) * 0.25,
r: Math.random() * 1.4 + 0.2, baseAlpha: Math.random() * 0.38 + 0.02, alpha: 0,
phase: Math.random() * Math.PI * 2, braceIdx: -1,
driftR: Math.random() * 7 + 2, driftSpd: Math.random() * 0.15 + 0.06
});
}
hStart = performance.now(); hLastAssign = 0;
}
function assignBrace() {
hNodes.forEach(n => n.braceIdx = -1);
const taken = new Uint8Array(hNodes.length);
for (let ti = 0; ti < bTargets.length; ti++) {
const t = bTargets[ti]; let best = Infinity, bi = -1;
for (let ni = 0; ni < hNodes.length; ni++) {
if (taken[ni]) continue;
const dx = hNodes[ni].x - t.x, dy = hNodes[ni].y - t.y, d = dx * dx + dy * dy;
if (d < best) { best = d; bi = ni; }
}
if (bi !== -1) { hNodes[bi].braceIdx = ti; taken[bi] = 1; }
}
}
function hDraw() {
ctx.clearRect(0, 0, cW, cH);
const elapsed = performance.now() - hStart;
const conv = Math.pow(Math.min(elapsed / CONV_MS, 1), 2);
if (elapsed - hLastAssign > 2000) { assignBrace(); hLastAssign = elapsed; }
const cx = cW / 2, cy = cH * 0.47;
const g = ctx.createRadialGradient(cx, cy, 0, cx, cy, cH * 0.55);
g.addColorStop(0, `rgba(0,180,216,${0.006 + conv * 0.012})`);
g.addColorStop(1, 'rgba(0,0,0,0)');
ctx.fillStyle = g; ctx.fillRect(0, 0, cW, cH);
hTime += 0.01;
for (let i = 0; i < hNodes.length; i++) {
const n = hNodes[i];
if (n.braceIdx >= 0 && conv > 0.01) {
const t = bTargets[n.braceIdx];
const bx = Math.sin(hTime * n.driftSpd + n.phase) * n.driftR;
const by = Math.cos(hTime * n.driftSpd * 0.7 + n.phase) * n.driftR * 0.5;
const str = conv * 0.01;
n.x += (t.x + bx - n.x) * str; n.y += (t.y + by - n.y) * str;
n.x += n.vx * (1 - conv * 0.7); n.y += n.vy * (1 - conv * 0.7);
} else { n.x += n.vx; n.y += n.vy; }