-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
3084 lines (3022 loc) · 142 KB
/
Copy pathindex.html
File metadata and controls
3084 lines (3022 loc) · 142 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-MX">
<head>
<!-- ═══════════════════════════════════════════════════════════════ -->
<!-- METADATOS BÁSICOS -->
<!-- ═══════════════════════════════════════════════════════════════ -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
<meta name="author" content="Mahitek 3D Lab" />
<meta
name="description"
content="Estudio creativo tecnológico y digital en Pachuca: impresión 3D con gráfica aplicada a color y prototipos con acabados cuidados. Exploramos ideas, series cortas y objetos con identidad para México."
/>
<meta
name="keywords"
content="estudio creativo digital, impresión 3D, gráfica aplicada, color, fabricación digital, prototipos, piezas artesanales, diseño, Pachuca, México"
/>
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
<!-- ═══════════════════════════════════════════════════════════════ -->
<!-- METADATOS MÓVIL Y PWA -->
<!-- ═══════════════════════════════════════════════════════════════ -->
<meta name="theme-color" content="#140b1f" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="Mahitek 3D" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="application-name" content="Mahitek 3D Lab" />
<title>Mahitek 3D Lab - Estudio creativo digital | Pachuca</title>
<!-- ═══════════════════════════════════════════════════════════════ -->
<!-- LOCALIZACIÓN E IDIOMA -->
<!-- ═══════════════════════════════════════════════════════════════ -->
<meta property="og:locale" content="es_MX" />
<meta property="og:locale:alternate" content="es_ES" />
<meta property="og:locale:alternate" content="en_US" />
<link rel="alternate" hreflang="es" href="https://mahitek3dlab.com/" />
<link rel="alternate" hreflang="en" href="https://mahitek3dlab.com/" />
<link rel="alternate" hreflang="x-default" href="https://mahitek3dlab.com/" />
<!-- ═══════════════════════════════════════════════════════════════ -->
<!-- OPEN GRAPH / SOCIAL MEDIA -->
<!-- ═══════════════════════════════════════════════════════════════ -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Mahitek 3D Lab - Estudio creativo digital | Pachuca" />
<meta
property="og:description"
content="Estudio creativo tecnológico en Pachuca: impresión 3D con gráfica aplicada a color, piezas expresivas y prototipos con acabados cuidados. Diseño y producción con enfoque artesanal."
/>
<meta property="og:url" content="https://mahitek3dlab.com/" />
<meta property="og:image" content="https://mahitek3dlab.com/assets/img/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<!-- ═══════════════════════════════════════════════════════════════ -->
<!-- TWITTER CARD -->
<!-- ═══════════════════════════════════════════════════════════════ -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Mahitek 3D Lab - Estudio creativo digital" />
<meta
name="twitter:description"
content="Impresión 3D con gráfica aplicada a color para piezas y prototipos con identidad."
/>
<!-- ═══════════════════════════════════════════════════════════════ -->
<!-- PRECONNECT / DNS-PREFETCH (Optimización de carga) -->
<!-- ═══════════════════════════════════════════════════════════════ -->
<link rel="preconnect" href="https://www.googletagmanager.com" crossorigin />
<!-- Removed unused icon CDN preconnect to reduce early connections -->
<!-- ═══════════════════════════════════════════════════════════════ -->
<!-- PRELOAD (Recursos críticos) -->
<!-- ═══════════════════════════════════════════════════════════════ -->
<link rel="preload" href="assets/css/styles.css?v=20260102" as="style" />
<link rel="modulepreload" href="assets/js/app.js?v=20251027" />
<!-- ═══════════════════════════════════════════════════════════════ -->
<!-- CANONICAL & SEO -->
<!-- ═══════════════════════════════════════════════════════════════ -->
<link rel="canonical" href="https://mahitek3dlab.com/" />
<!-- ═══════════════════════════════════════════════════════════════ -->
<!-- ESTILOS CSS -->
<!-- ═══════════════════════════════════════════════════════════════ -->
<link rel="stylesheet" href="assets/css/critical.css?v=20260102" />
<!-- ═══════════════════════════════════════════════════════════════ -->
<!-- FAVICONS -->
<!-- ═══════════════════════════════════════════════════════════════ -->
<link rel="icon" type="image/png" href="assets/img/favicon_512.png" sizes="any" />
<link rel="apple-touch-icon" href="assets/img/favicon_512.png" />
<link rel="manifest" href="manifest.json" />
<!-- ═══════════════════════════════════════════════════════════════ -->
<!-- ANALYTICS (Google Tag Manager) -->
<!-- ═══════════════════════════════════════════════════════════════ -->
<!-- Analytics se carga desde `assets/js/app.js` (sin scripts inline para compatibilidad con CSP) -->
</head>
<body class="theme-nocturne">
<!-- Skip Link para accesibilidad -->
<a href="#inicio" class="skip-link">Saltar al contenido principal</a>
<!-- Navbar/Header con decoraciones cyberpunk -->
<header class="header">
<div class="promo-ticker" role="region" aria-label="Combos activos" hidden>
<div class="promo-ticker__inner">
<div class="promo-ticker__frame">
<span class="promo-ticker__label">
<svg class="promo-ticker__icon" viewBox="0 0 24 24" aria-hidden="true" focusable="false">
<rect
x="2.5"
y="4"
width="19"
height="12"
rx="3"
fill="rgba(6, 182, 212, 0.12)"
stroke="var(--accent-cyan)"
stroke-width="1.2"
/>
<path d="M5 16.5h14" stroke="var(--accent-green)" stroke-width="1.2" stroke-linecap="round" />
<circle cx="7" cy="8" r="1.3" fill="var(--accent-cyan)">
<animate attributeName="opacity" values="0.4;1;0.4" dur="2.4s" repeatCount="indefinite" />
</circle>
<circle cx="11.5" cy="8" r="1.3" fill="var(--accent-green)">
<animate
attributeName="opacity"
values="0.4;1;0.4"
dur="2.4s"
begin="0.6s"
repeatCount="indefinite"
/>
</circle>
<circle cx="16" cy="8" r="1.3" fill="var(--accent-primary)">
<animate
attributeName="opacity"
values="0.4;1;0.4"
dur="2.4s"
begin="1.2s"
repeatCount="indefinite"
/>
</circle>
</svg>
<span>Combos activos</span>
</span>
<div class="promo-ticker__track" data-promo-ticker aria-hidden="true"></div>
<span class="promo-ticker__sr sr-only" data-promo-ticker-sr></span>
<a class="promo-ticker__cta" href="#promos">Ver combos</a>
</div>
</div>
</div>
<div class="nav-decorations" aria-hidden="true">
<svg class="nav-deco nav-nopal nav-nopal-left" viewBox="0 0 40 60" fill="none">
<path
d="M20 5 Q15 15, 18 25 Q20 35, 15 45 Q12 55, 20 60"
stroke="var(--accent-green)"
stroke-width="2"
fill="none"
opacity="0.4"
/>
<ellipse cx="18" cy="15" rx="8" ry="12" fill="var(--accent-green)" opacity="0.2" />
<ellipse cx="16" cy="35" rx="6" ry="10" fill="var(--accent-green)" opacity="0.2" />
<circle cx="20" cy="20" r="2" fill="var(--accent-cyan)" opacity="0.6" />
<circle cx="15" cy="40" r="2" fill="var(--accent-cyan)" opacity="0.6" />
</svg>
<!-- Nopales esquina derecha -->
<svg class="nav-deco nav-nopal nav-nopal-right" viewBox="0 0 40 60" fill="none">
<path
d="M20 5 Q25 15, 22 25 Q20 35, 25 45 Q28 55, 20 60"
stroke="var(--accent-green)"
stroke-width="2"
fill="none"
opacity="0.4"
/>
<ellipse cx="22" cy="15" rx="8" ry="12" fill="var(--accent-green)" opacity="0.2" />
<ellipse cx="24" cy="35" rx="6" ry="10" fill="var(--accent-green)" opacity="0.2" />
<circle cx="20" cy="20" r="2" fill="var(--accent-cyan)" opacity="0.6" />
<circle cx="25" cy="40" r="2" fill="var(--accent-cyan)" opacity="0.6" />
</svg>
<!-- Águila mexicana estilizada -->
<svg class="nav-deco nav-aguila" viewBox="0 0 80 80" fill="none">
<path
class="aguila-body"
d="M40 25 L35 35 L30 40 L35 45 L40 55 L45 45 L50 40 L45 35 Z"
fill="var(--accent-cyan)"
opacity="0.3"
/>
<path
class="aguila-wing-left"
d="M35 35 Q25 30, 20 35 Q15 40, 20 45 L30 40 Z"
fill="var(--accent-cyan)"
opacity="0.2"
/>
<path
class="aguila-wing-right"
d="M45 35 Q55 30, 60 35 Q65 40, 60 45 L50 40 Z"
fill="var(--accent-cyan)"
opacity="0.2"
/>
<circle cx="40" cy="28" r="4" fill="var(--accent-primary)" opacity="0.6" />
</svg>
<!-- Líneas de escaneo cyberpunk -->
<div class="scan-lines"></div>
<!-- Partículas flotantes -->
<div class="nav-particles">
<span class="particle"></span>
<span class="particle"></span>
<span class="particle"></span>
<span class="particle"></span>
<span class="particle"></span>
</div>
<!-- Bordes glitch -->
<div class="nav-border nav-border-top"></div>
<div class="nav-border nav-border-bottom"></div>
</div>
<div class="container">
<nav class="nav" aria-label="Menú principal">
<div class="nav-brand">
<a href="#inicio" class="logo brand-logo" aria-label="Mahitek 3D Lab">
<!-- Hexágono cyberpunk alrededor del logo -->
<svg class="logo-hexagon" viewBox="0 0 100 100" fill="none" aria-hidden="true">
<path
d="M50 5 L85 27.5 L85 72.5 L50 95 L15 72.5 L15 27.5 Z"
stroke="var(--accent-cyan)"
stroke-width="1.5"
fill="none"
opacity="0.4"
/>
<path
class="hex-pulse"
d="M50 5 L85 27.5 L85 72.5 L50 95 L15 72.5 L15 27.5 Z"
stroke="var(--accent-primary)"
stroke-width="2"
fill="none"
opacity="0"
/>
</svg>
<svg class="logo-orbit" viewBox="0 0 120 120" fill="none" aria-hidden="true">
<circle
cx="60"
cy="60"
r="46"
stroke="rgba(6, 182, 212, 0.35)"
stroke-width="1.2"
stroke-dasharray="2 6"
/>
<circle cx="60" cy="60" r="40" stroke="rgba(16, 185, 129, 0.28)" stroke-width="1" />
<g class="logo-orbit-dots">
<circle cx="60" cy="12" r="2.2" fill="var(--accent-cyan)" />
<circle cx="108" cy="68" r="1.8" fill="var(--accent-green)" />
<circle cx="24" cy="94" r="1.6" fill="var(--accent-primary)" />
</g>
</svg>
<img
src="assets/img/logo-color.svg"
alt="Mahitek 3D Lab, marca gráfica"
class="logo-img"
width="136"
height="136"
loading="eager"
decoding="async"
/>
<span class="sr-only">Mahitek 3D Lab</span>
</a>
<div class="nav-brand-info">
<p class="nav-tagline">
<span class="nav-tagline-icon" aria-hidden="true">
<svg class="nav-icon nav-icon--tagline" viewBox="0 0 24 24" focusable="false">
<path
d="M12 3.5l1.8 3.8 4.2.6-3 3 0.7 4.3-3.7-2-3.7 2 0.7-4.3-3-3 4.2-.6z"
fill="var(--nav-icon-secondary)"
opacity="0.85"
/>
<circle cx="12" cy="12" r="6.5" fill="none" stroke="var(--nav-icon-primary)" stroke-width="1">
<animate
attributeName="stroke-dasharray"
values="0 42;18 24;0 42"
dur="3s"
repeatCount="indefinite"
/>
</circle>
</svg>
</span>
<span class="nav-tagline-text">Estudio creativo digital</span>
<span class="tagline-glitch" aria-hidden="true">Estudio creativo digital</span>
</p>
<p class="nav-location">
<span class="nav-location-icon" aria-hidden="true">
<svg class="nav-icon nav-icon--location" viewBox="0 0 24 24" focusable="false">
<path
d="M12 3.5c-3.3 0-6 2.5-6 5.8 0 4.6 6 10.6 6 10.6s6-6 6-10.6c0-3.3-2.7-5.8-6-5.8z"
fill="rgba(6, 182, 212, 0.18)"
stroke="var(--nav-icon-primary)"
stroke-width="1.2"
/>
<circle cx="12" cy="9.2" r="2.2" fill="var(--nav-icon-secondary)">
<animate attributeName="r" values="1.6;2.2;1.6" dur="2.6s" repeatCount="indefinite" />
</circle>
<circle cx="12" cy="17.8" r="4.5" fill="none" stroke="var(--nav-icon-tertiary)" stroke-width="1">
<animate attributeName="opacity" values="0;0.6;0" dur="3s" repeatCount="indefinite" />
<animate attributeName="r" values="3.5;5.5" dur="3s" repeatCount="indefinite" />
</circle>
</svg>
</span>
<span class="nav-location-text">Pachuca, México</span>
</p>
</div>
</div>
<button
class="nav-toggle"
type="button"
aria-expanded="false"
aria-controls="primary-menu"
aria-label="Abrir menú"
>
<span class="nav-toggle-icon">
<span></span>
<span></span>
<span></span>
</span>
<!-- Efecto de circuito alrededor del botón -->
<svg class="toggle-circuit" viewBox="0 0 50 50" fill="none" aria-hidden="true">
<circle cx="25" cy="25" r="20" stroke="var(--accent-cyan)" stroke-width="1" opacity="0.3" />
<circle
cx="25"
cy="25"
r="23"
stroke="var(--accent-primary)"
stroke-width="0.5"
opacity="0.2"
stroke-dasharray="4 4"
/>
</svg>
</button>
<ul class="nav-menu" id="primary-menu">
<li class="nav-item">
<a href="#servicios" class="nav-link">
<svg class="nav-icon nav-icon--services" viewBox="0 0 24 24" aria-hidden="true" focusable="false">
<defs>
<linearGradient id="nav-services-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="var(--nav-icon-primary)" stop-opacity="0.55" />
<stop offset="100%" stop-color="var(--nav-icon-secondary)" stop-opacity="0.55" />
</linearGradient>
</defs>
<rect
x="3.5"
y="6.5"
width="17"
height="11"
rx="2.4"
fill="rgba(6, 182, 212, 0.08)"
stroke="url(#nav-services-grad)"
stroke-width="1.2"
/>
<rect
x="6"
y="4"
width="12"
height="3"
rx="1.4"
fill="rgba(16, 185, 129, 0.18)"
stroke="var(--nav-icon-secondary)"
stroke-width="0.9"
/>
<g class="nav-icon__float">
<rect
x="9.6"
y="11"
width="4.8"
height="3.6"
rx="1"
fill="var(--nav-icon-secondary)"
opacity="0.85"
/>
<path
d="M12 14.8v3.1"
stroke="var(--nav-icon-secondary)"
stroke-width="1.1"
stroke-linecap="round"
/>
<circle cx="12" cy="18.3" r="1" fill="var(--nav-icon-tertiary)" class="nav-icon__pulse" />
</g>
<g class="nav-icon__rotate">
<circle cx="18" cy="9" r="2.6" fill="none" stroke="var(--nav-icon-primary)" stroke-width="1" />
<path
d="M18 5.8v1.1 M18 11.1v1.1 M14.8 9h1.1 M20.1 9h1.1 M15.7 6.7l.8.8 M19.5 10.5l.8.8 M15.7 11.3l.8-.8 M19.5 7.5l.8-.8"
stroke="var(--nav-icon-tertiary)"
stroke-width="0.8"
stroke-linecap="round"
/>
</g>
<path
class="nav-icon__dash"
d="M6.5 9.5h10.5"
stroke="var(--nav-icon-primary)"
stroke-width="1"
stroke-dasharray="4 3"
/>
<path
d="M6.5 15.6h7"
stroke="var(--nav-icon-tertiary)"
stroke-width="0.9"
stroke-linecap="round"
opacity="0.7"
/>
<circle cx="7" cy="15.6" r="0.7" fill="var(--nav-icon-secondary)" class="nav-icon__pulse" />
</svg>
<span class="nav-link-text">Servicios</span>
<span class="nav-link-bg"></span>
</a>
</li>
<li class="nav-item">
<a href="#catalogo" class="nav-link">
<svg class="nav-icon nav-icon--catalog" viewBox="0 0 24 24" aria-hidden="true" focusable="false">
<defs>
<linearGradient id="nav-catalog-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="var(--nav-icon-secondary)" stop-opacity="0.5" />
<stop offset="100%" stop-color="var(--nav-icon-primary)" stop-opacity="0.6" />
</linearGradient>
</defs>
<g class="nav-icon__float">
<rect
x="4"
y="5"
width="13.5"
height="7.5"
rx="2"
fill="rgba(6, 182, 212, 0.08)"
stroke="url(#nav-catalog-grad)"
stroke-width="1.1"
/>
<rect
x="6.2"
y="6.7"
width="5"
height="1.4"
rx="0.7"
fill="var(--nav-icon-secondary)"
opacity="0.7"
/>
</g>
<rect
x="6"
y="9"
width="13"
height="7.5"
rx="2"
fill="rgba(16, 185, 129, 0.1)"
stroke="var(--nav-icon-secondary)"
stroke-width="1.1"
/>
<rect
x="8.2"
y="12.5"
width="11.2"
height="6.2"
rx="1.6"
fill="rgba(14, 165, 233, 0.08)"
stroke="var(--nav-icon-primary)"
stroke-width="1"
/>
<path
d="M16.8 6.2l3 3-3 3-1.8-1.8v-2.4z"
fill="rgba(6, 182, 212, 0.15)"
stroke="var(--nav-icon-primary)"
stroke-width="0.9"
class="nav-icon__pulse"
/>
<path
class="nav-icon__dash"
d="M9.2 15.7h7.2"
stroke="var(--nav-icon-tertiary)"
stroke-width="1"
stroke-dasharray="4 3"
/>
<circle cx="18.2" cy="14.2" r="1.1" fill="var(--nav-icon-secondary)" class="nav-icon__pulse" />
<circle
cx="10.2"
cy="18"
r="0.9"
fill="var(--nav-icon-primary)"
opacity="0.8"
class="nav-icon__pulse"
/>
</svg>
<span class="nav-link-text">Muestrario</span>
<span class="nav-link-bg"></span>
</a>
</li>
<li class="nav-item">
<a href="#proceso" class="nav-link">
<svg class="nav-icon nav-icon--process" viewBox="0 0 24 24" aria-hidden="true" focusable="false">
<path
class="nav-icon__dash"
d="M4 17c3.8-6.2 8.2-8.4 16-11"
fill="none"
stroke="var(--nav-icon-primary)"
stroke-width="1.4"
stroke-linecap="round"
stroke-dasharray="6 6"
/>
<path
d="M13.5 9.4l2.2-.8-1.2 2.1"
fill="none"
stroke="var(--nav-icon-secondary)"
stroke-width="1.2"
stroke-linecap="round"
stroke-linejoin="round"
class="nav-icon__float"
/>
<circle cx="4" cy="17" r="2.4" fill="var(--nav-icon-secondary)" class="nav-icon__pulse" />
<circle
cx="12"
cy="11"
r="2.4"
fill="rgba(6, 182, 212, 0.2)"
stroke="var(--nav-icon-primary)"
stroke-width="1"
/>
<circle cx="20" cy="6" r="2.4" fill="var(--nav-icon-secondary)" class="nav-icon__pulse" />
<circle
cx="12"
cy="11"
r="5.2"
fill="none"
stroke="var(--nav-icon-tertiary)"
stroke-width="0.9"
class="nav-icon__rotate"
/>
<circle cx="12" cy="11" r="1" fill="var(--nav-icon-tertiary)" opacity="0.8" />
</svg>
<span class="nav-link-text">Proceso</span>
<span class="nav-link-bg"></span>
</a>
</li>
<li class="nav-item">
<a href="#faq" class="nav-link">
<svg class="nav-icon nav-icon--faq" viewBox="0 0 24 24" aria-hidden="true" focusable="false">
<rect
x="3.8"
y="4.5"
width="13.8"
height="9.5"
rx="2.6"
fill="rgba(6, 182, 212, 0.1)"
stroke="var(--nav-icon-primary)"
stroke-width="1.1"
/>
<rect
x="8.5"
y="9"
width="11.5"
height="9.5"
rx="2.6"
fill="rgba(16, 185, 129, 0.1)"
stroke="var(--nav-icon-secondary)"
stroke-width="1.1"
/>
<path
d="M10.2 17.8l-2.2 3.2 5.8-3.2"
fill="none"
stroke="var(--nav-icon-secondary)"
stroke-width="1.1"
stroke-linecap="round"
/>
<path
d="M12.3 9.8c1.6 0 2.6.8 2.6 1.9 0 1.1-.7 1.5-1.6 2-.7.3-1 .7-1 1.6"
fill="none"
stroke="var(--nav-icon-tertiary)"
stroke-width="1.2"
stroke-linecap="round"
/>
<circle cx="12.3" cy="16.1" r="1" fill="var(--nav-icon-tertiary)" class="nav-icon__pulse" />
<circle
cx="12.3"
cy="13.3"
r="4.8"
fill="none"
stroke="var(--nav-icon-primary)"
stroke-width="0.8"
class="nav-icon__pulse"
/>
</svg>
<span class="nav-link-text">FAQ</span>
<span class="nav-link-bg"></span>
</a>
</li>
<li class="nav-item">
<a href="#contacto" class="nav-link">
<svg class="nav-icon nav-icon--contact" viewBox="0 0 24 24" aria-hidden="true" focusable="false">
<path
d="M4 12l16-7-4 14-4-4-4 4z"
fill="rgba(6, 182, 212, 0.15)"
stroke="var(--nav-icon-primary)"
stroke-width="1.2"
stroke-linejoin="round"
/>
<path d="M9 12l4 3" stroke="var(--nav-icon-secondary)" stroke-width="1.2" stroke-linecap="round" />
<path
class="nav-icon__dash"
d="M6 16.6c2.5 1.2 5.4 1 8-0.2"
fill="none"
stroke="var(--nav-icon-tertiary)"
stroke-width="1"
stroke-linecap="round"
stroke-dasharray="4 3"
/>
<circle
cx="18"
cy="6"
r="2.3"
fill="none"
stroke="var(--nav-icon-secondary)"
stroke-width="1"
class="nav-icon__pulse"
/>
<path
d="M18.2 2.8c1.6.6 2.8 2 3 3.7"
fill="none"
stroke="var(--nav-icon-primary)"
stroke-width="0.9"
stroke-linecap="round"
class="nav-icon__float"
/>
<path
d="M15.2 5.6c1.2-1.2 2.7-1.8 4.3-1.8"
fill="none"
stroke="var(--nav-icon-secondary)"
stroke-width="0.9"
stroke-linecap="round"
/>
</svg>
<span class="nav-link-text">Contacto</span>
<span class="nav-link-bg"></span>
</a>
</li>
<li class="nav-item nav-item-cta">
<a href="https://m.me/mahitek3dlabmx" class="btn-messenger" target="_blank" rel="noopener noreferrer">
<span class="btn-messenger-icon" aria-hidden="true">
<svg viewBox="0 0 24 24" focusable="false">
<path
d="M5 6.5h14a3 3 0 0 1 3 3v4a3 3 0 0 1-3 3H11l-4.5 3v-3H5a3 3 0 0 1-3-3v-4a3 3 0 0 1 3-3z"
fill="rgba(6, 182, 212, 0.2)"
stroke="var(--accent-cyan)"
stroke-width="1.2"
stroke-linejoin="round"
/>
<circle cx="9" cy="12" r="1.2" fill="var(--accent-cyan)">
<animate attributeName="opacity" values="0.3;1;0.3" dur="1.8s" repeatCount="indefinite" />
</circle>
<circle cx="13" cy="12" r="1.2" fill="var(--accent-green)">
<animate
attributeName="opacity"
values="0.3;1;0.3"
dur="1.8s"
begin="0.4s"
repeatCount="indefinite"
/>
</circle>
<circle cx="17" cy="12" r="1.2" fill="var(--accent-primary)">
<animate
attributeName="opacity"
values="0.3;1;0.3"
dur="1.8s"
begin="0.8s"
repeatCount="indefinite"
/>
</circle>
</svg>
</span>
<span class="btn-messenger-text">Iniciar proyecto</span>
<!-- Pulso cyberpunk -->
<span class="btn-pulse" aria-hidden="true"></span>
</a>
</li>
</ul>
</nav>
</div>
</header>
<main id="main">
<section class="hero hero--lite" id="inicio" aria-labelledby="hero-title">
<div class="container hero-grid">
<!-- Hero Visual + Branding - Prioridad máxima -->
<div class="hero-visual" data-animate="zoom-in">
<figure class="hero-illustration-main">
<img
src="assets/img/hero-lab.svg"
alt="Laboratorio Mahitek 3D con impresoras en marcha"
class="hero-illustration-img-main"
width="512"
height="512"
loading="eager"
fetchpriority="high"
decoding="async"
/>
</figure>
</div>
<div class="hero-content" data-animate="fade-up">
<span class="hero-badge">Micro-lab artesanal desde <span class="accent-text">Pachuca, Hidalgo</span></span>
<h1 class="hero-title" id="hero-title">
<span class="hero-title-line" data-copy="hero.title.line1">Del trazo al objeto</span>
<span class="hero-title-line hero-title-line--emphasis" data-copy="hero.title.line2"
>con oficio y detalle artesanal</span
>
</h1>
<p class="hero-subtitle" data-copy="hero.subtitle">
Impresión 3D con gráfica aplicada a color para piezas, prototipos y series cortas.
</p>
<ul class="hero-highlights" aria-label="Diferenciadores de Mahitek 3D Lab">
<li><strong>Diseño con intención:</strong> Aterrizamos tu idea en una ruta creativa clara.</li>
<li><strong>Series cortas y pruebas:</strong> Iteramos con cuidado, sin inventario pesado.</li>
<li><strong>Enfoque boutique:</strong> Micro marcas, colecciones, regalos, gaming e IoT.</li>
</ul>
<div class="hero-ctas">
<a href="https://m.me/mahitek3dlabmx" class="btn btn-primary" target="_blank" rel="noopener noreferrer">
<span data-copy="hero.cta_primary.text">Hablemos por Messenger</span>
<span data-copy="hero.cta_primary.icon"></span>
</a>
<a href="#catalogo" class="btn btn-ghost">
<span>Ver muestrario</span>
</a>
</div>
<div class="hero-note">
<button
type="button"
class="accent-chip accent-chip--green"
data-action="scroll"
data-target="#compra-entrega"
data-highlight-target="#compra-entrega"
>
Envíos a todo México o pickup en Pachuca
</button>
</div>
<!-- Insignia Hecho en México: visible solo en es-MX -->
<div class="badge-made-mx show-when-mx" role="img" aria-label="Hecho en México">
<svg class="badge-made-mx-svg" viewBox="0 0 160 32" width="160" height="32" aria-hidden="true">
<defs>
<linearGradient id="mx-badge-border" x1="0" y1="0" x2="160" y2="0">
<stop offset="0%" stop-color="rgba(6,182,212,0.65)" />
<stop offset="55%" stop-color="rgba(16,185,129,0.55)" />
<stop offset="100%" stop-color="rgba(139,92,246,0.45)" />
</linearGradient>
<linearGradient id="mx-badge-seal" x1="0" y1="0" x2="24" y2="24">
<stop offset="0%" stop-color="rgba(6,182,212,0.9)" />
<stop offset="100%" stop-color="rgba(16,185,129,0.9)" />
</linearGradient>
<clipPath id="mx-badge-flag-clip">
<rect x="0" y="0" width="28" height="16" rx="3" ry="3" />
</clipPath>
</defs>
<!-- Placa base -->
<rect
x="0.5"
y="0.5"
width="159"
height="31"
rx="10"
ry="10"
fill="rgba(8,12,18,0.62)"
stroke="url(#mx-badge-border)"
stroke-width="1"
/>
<path d="M10 7H150" stroke="rgba(224,242,254,0.09)" stroke-width="1" stroke-linecap="round" />
<!-- Sello (izquierda) -->
<g transform="translate(8,4)">
<circle
cx="12"
cy="12"
r="11.5"
fill="rgba(6,182,212,0.06)"
stroke="url(#mx-badge-seal)"
stroke-width="1.2"
/>
<circle
cx="12"
cy="12"
r="9.2"
fill="none"
stroke="rgba(224,242,254,0.22)"
stroke-width="1.8"
stroke-dasharray="1.2 2.6"
/>
<g stroke="rgba(6,182,212,0.55)" stroke-width="1" stroke-linecap="round">
<path d="M12 2.6V4.6" />
<path d="M12 19.4V21.4" />
<path d="M2.6 12H4.6" />
<path d="M19.4 12H21.4" />
</g>
<g
opacity="0.7"
stroke="rgba(224,242,254,0.28)"
stroke-width="0.8"
fill="none"
stroke-linecap="round"
>
<path d="M7.4 8.6H9.6" />
<path d="M14.4 15.6H16.6" />
<path d="M8.2 16.2V14.2" />
<path d="M15.8 7.8V9.8" />
<circle cx="9.6" cy="8.6" r="0.9" fill="rgba(6,182,212,0.45)" stroke="none" />
<circle cx="16.6" cy="15.6" r="0.9" fill="rgba(16,185,129,0.45)" stroke="none" />
</g>
<path
d="M12 6.3l4.9 2v4.1c0 3.1-2.2 5.4-4.9 6.4-2.7-1-4.9-3.3-4.9-6.4V8.3z"
fill="rgba(8,12,18,0.35)"
stroke="rgba(6,182,212,0.7)"
stroke-width="0.9"
stroke-linejoin="round"
/>
<path d="M8.6 15.8c.8 1.4 2 2.4 3.4 3" stroke="#006847" stroke-width="0.7" stroke-linecap="round" />
<path d="M15.4 15.8c-.8 1.4-2 2.4-3.4 3" stroke="#006847" stroke-width="0.7" stroke-linecap="round" />
<circle cx="10.1" cy="16.9" r="0.55" fill="#006847" opacity="0.85" />
<circle cx="13.9" cy="16.9" r="0.55" fill="#006847" opacity="0.85" />
<path
d="M9.1 13.4l2.2-2.4 1.5.9 2.5-.5-1.2 1.6 1 1.4-2.5.6-1.7 1.9-1.8-1.1z"
fill="rgba(224,242,254,0.86)"
stroke="rgba(6,182,212,0.55)"
stroke-width="0.7"
stroke-linejoin="round"
/>
</g>
<!-- Texto -->
<g transform="translate(40,9)" fill="rgba(224, 242, 254, 0.92)">
<text x="0" y="8" font-size="8.6" font-weight="750" letter-spacing="1.25">HECHO EN</text>
<text x="0" y="19" font-size="10.2" font-weight="850" letter-spacing="1.05">MÉXICO</text>
</g>
<path
d="M40 25H120"
stroke="rgba(224,242,254,0.12)"
stroke-width="1"
stroke-linecap="round"
stroke-dasharray="2 4"
/>
<!-- Bandera (derecha) - tricolor vertical con escudo simplificado centrado -->
<g transform="translate(124,8)">
<g clip-path="url(#mx-badge-flag-clip)">
<rect x="0" y="0" width="28" height="16" fill="#FFFFFF" />
<rect x="0" y="0" width="9.3333" height="16" fill="#006847" />
<rect x="18.6666" y="0" width="9.3334" height="16" fill="#CE1126" />
<g transform="translate(14,8)">
<circle r="2.25" fill="rgba(8,12,18,0.18)" />
<path d="M-1.4.2l.9-1 .7.4 1.1-.2-.5.7.4.5-1 .2-.7.8-.8-.4z" fill="#8b5e3c" opacity="0.95" />
<path
d="M-2.2 1.6c.9 1 2.1 1.5 4.4 1.5"
stroke="#006847"
stroke-width="0.5"
fill="none"
stroke-linecap="round"
/>
</g>
</g>
<rect
x="0.5"
y="0.5"
width="27"
height="15"
rx="3"
ry="3"
fill="none"
stroke="rgba(224,242,254,0.22)"
/>
</g>
</svg>
</div>
</div>
</div>
</section>
<!-- ===== SECCIÓN: TIPOS DE PIEZAS + COMUNIDAD ===== -->
<section class="section section-alt section-accent--cyan" aria-labelledby="piezas-title">
<div class="container">
<div class="section-header" data-animate="fade-up">
<div class="section-heading">
<img
src="assets/img/logo-color.svg"
alt="Mahitek 3D Lab"
class="section-heading-logo"
width="64"
height="64"
loading="lazy"
decoding="async"
/>
<h2 class="section-title" id="piezas-title">Piezas, gráficas y exploraciones</h2>
</div>
<p class="section-intro">
Un mapa rápido de familias que trabajamos. Del objeto 3D a los detalles gráficos a color, definimos
escala, acabado y tono para que cada entrega tenga presencia propia.
</p>
</div>
<div class="hero-product-types" data-animate="fade-up">
<div class="product-type-card" data-animate="fade-up">
<div class="product-type-icon">🎨</div>
<h3 class="product-type-title">Figuras, tótems y arte</h3>
<p class="product-type-desc">
Coleccionables con sombra y presencia, bases estables y detalles que aguantan uso real.
</p>
<div class="product-type-tags">
<button
type="button"
class="tag"
data-action="scroll"
data-target="#catalogo"
data-highlight-target="#catalogo"
>
PLA/PETG
</button>
<button
type="button"
class="tag"
data-action="scroll"
data-target="#catalogo"
data-highlight-target="#catalogo"
>
Textura
</button>
<button
type="button"
class="tag"
data-action="scroll"
data-target="#catalogo"
data-highlight-target="#catalogo"
>
Edición limitada
</button>
</div>
</div>
<div class="product-type-card animate-delay-1" data-animate="fade-up">
<div class="product-type-icon">✨</div>
<h3 class="product-type-title">Detalles gráficos y color</h3>
<p class="product-type-desc">
Intervenciones gráficas que acompañan la pieza 3D: color aplicado, etiquetas, vinilo o placas. Ajustamos
estilo, formato y terminados según el uso.
</p>
<div class="product-type-tags">
<button
type="button"
class="tag"
data-action="scroll"
data-target="#catalogo"
data-highlight-target="#catalogo"
>
Gráfica aplicada
</button>
<button
type="button"
class="tag"
data-action="scroll"
data-target="#catalogo"
data-highlight-target="#catalogo"
>
Vinilo
</button>
<button
type="button"
class="tag"
data-action="scroll"
data-target="#catalogo"
data-highlight-target="#catalogo"
>
Color
</button>
</div>
</div>
<div class="product-type-card animate-delay-2" data-animate="fade-up">
<div class="product-type-icon">🛠️</div>
<h3 class="product-type-title">Piezas funcionales</h3>
<p class="product-type-desc">
Organizadores, módulos y soportes con tolerancias medidas y estética sobria.
</p>
<div class="product-type-tags">
<button
type="button"
class="tag"
data-action="scroll"
data-target="#catalogo"
data-highlight-target="#catalogo"
>
Modular
</button>
<button
type="button"
class="tag"