-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathconfiguracion.html
More file actions
1594 lines (1402 loc) · 65.4 KB
/
Copy pathconfiguracion.html
File metadata and controls
1594 lines (1402 loc) · 65.4 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>
<script type="module" crossorigin src="/assets/js/polyfills--1Z-T_Bc.js"></script>
<meta charset="UTF-8">
<!-- Resource Optimization -->
<!-- DNS Prefetch for external resources -->
<link rel="dns-prefetch" href="https://cdnjs.cloudflare.com">
<link rel="dns-prefetch" href="https://fonts.googleapis.com">
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
<link rel="dns-prefetch" href="https://cdn.jsdelivr.net">
<!-- Preconnect to critical origins -->
<link rel="preconnect" href="https://cdnjs.cloudflare.com" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>⚙️ Configuración | La Tanda Web3</title>
<!-- Critical CSS: Font Awesome with async loading -->
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" as="style" crossorigin="anonymous" onload="this.onload=null;this.rel=stylesheet">
<noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha384-iw3OoTErCYJJB9mCa8LNS2hbsQ7M3C0EpIsO/H5+EGAkPGc6rk+V8i04oW/K5xq0" crossorigin="anonymous"></noscript>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Optimized Google Fonts loading -->
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" as="style" onload="this.onload=null;this.rel=stylesheet">
<noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap"></noscript>
<style>
/* ================================
🌐 WEB3 DESIGN SYSTEM
================================ */
:root {
/* La Tanda Web3 Colors */
--tanda-cyan: #00FFFF;
--tanda-cyan-light: #7FFFD8;
--tanda-cyan-dark: #00E5E5;
--tanda-black: #000000;
--text-primary: #f8fafc;
--text-secondary: rgba(248, 250, 252, 0.7);
--text-accent: #00FFFF;
--bg-primary: #0f172a;
--bg-secondary: #1e293b;
--bg-card: rgba(15, 23, 42, 0.6);
--border-card: rgba(0, 255, 255, 0.1);
--border-accent: rgba(0, 255, 255, 0.2);
--crypto-gold: #ffd700;
--success-color: #22d55e;
--warning-color: #fbbf24;
--error-color: #f87171;
--info-color: #3b82f6;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: var(--bg-primary);
min-height: 100vh;
padding: 20px;
color: var(--text-primary);
overflow-x: hidden;
position: relative;
}
/* ================================
✨ BACKGROUND EFFECTS
================================ */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
radial-gradient(circle at 40% 60%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
pointer-events: none;
z-index: 0;
}
/* ================================
🧭 NAVIGATION
================================ */
.nav-header {
margin-top: 80px; /* Space below fixed global header */
background: var(--bg-card);
backdrop-filter: blur(24px);
border: 1px solid var(--border-accent);
border-radius: 16px;
padding: 20px 24px;
margin-bottom: 32px;
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
z-index: 1;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.nav-left {
display: flex;
align-items: center;
gap: 20px;
}
.back-btn {
background: linear-gradient(135deg, var(--tanda-cyan), var(--tanda-cyan-light));
color: var(--tanda-black);
border: none;
padding: 10px 20px;
border-radius: 10px;
cursor: pointer;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
}
.back-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
}
.page-title {
font-size: 28px;
font-weight: 700;
background: linear-gradient(135deg, var(--tanda-cyan), var(--tanda-cyan-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}
.nav-links {
display: flex;
gap: 16px;
}
.nav-link {
color: var(--text-secondary);
text-decoration: none;
padding: 8px 16px;
border-radius: 8px;
transition: all 0.3s ease;
border: 1px solid transparent;
}
.nav-link:hover {
color: var(--tanda-cyan);
background: rgba(0, 255, 255, 0.1);
border-color: var(--border-accent);
}
/* ================================
📊 MAIN CONTAINER
================================ */
.config-container {
max-width: 1200px;
margin: 0 auto;
position: relative;
z-index: 1;
}
/* ================================
📋 CONFIG TABS
================================ */
.config-tabs {
background: var(--bg-card);
backdrop-filter: blur(24px);
border: 1px solid var(--border-card);
border-radius: 16px;
padding: 24px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.tab-navigation {
display: flex;
gap: 4px;
margin-bottom: 32px;
background: rgba(0, 0, 0, 0.3);
padding: 4px;
border-radius: 12px;
overflow-x: auto;
}
.tab-btn {
flex: 1;
min-width: 140px;
padding: 12px 16px;
background: transparent;
border: none;
border-radius: 8px;
color: var(--text-secondary);
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
white-space: nowrap;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
font-size: 14px;
}
.tab-btn.active {
background: linear-gradient(135deg, var(--tanda-cyan), var(--tanda-cyan-light));
color: var(--tanda-black);
box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}
.tab-btn:hover:not(.active) {
background: rgba(0, 255, 255, 0.1);
color: var(--tanda-cyan);
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
animation: fadeIn 0.3s ease;
}
/* ================================
⚙️ CONFIG SECTIONS
================================ */
.config-section {
background: rgba(0, 0, 0, 0.3);
backdrop-filter: blur(10px);
border: 1px solid var(--border-card);
border-radius: 12px;
padding: 24px;
margin-bottom: 20px;
transition: all 0.3s ease;
}
.config-section:hover {
border-color: var(--border-accent);
transform: translateY(-1px);
}
.section-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
padding-bottom: 16px;
border-bottom: 1px solid var(--border-card);
}
.section-title {
font-size: 18px;
color: var(--text-primary);
font-weight: 600;
display: flex;
align-items: center;
gap: 10px;
}
.config-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.config-item:last-child {
border-bottom: none;
}
.config-info {
flex: 1;
}
.config-label {
font-size: 16px;
color: var(--text-primary);
font-weight: 500;
margin-bottom: 4px;
}
.config-description {
font-size: 14px;
color: var(--text-secondary);
line-height: 1.4;
}
.config-control {
display: flex;
align-items: center;
gap: 12px;
}
/* ================================
🎛️ FORM CONTROLS
================================ */
.toggle-switch {
position: relative;
width: 48px;
height: 24px;
background: rgba(100, 116, 139, 0.3);
border-radius: 12px;
cursor: pointer;
transition: all 0.3s ease;
}
.toggle-switch.active {
background: var(--tanda-cyan);
}
.toggle-slider {
position: absolute;
top: 2px;
left: 2px;
width: 20px;
height: 20px;
background: white;
border-radius: 50%;
transition: transform 0.3s ease;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.toggle-switch.active .toggle-slider {
transform: translateX(24px);
}
.config-select {
background: rgba(0, 0, 0, 0.3);
border: 1px solid var(--border-card);
border-radius: 8px;
padding: 8px 12px;
color: var(--text-primary);
font-size: 14px;
min-width: 150px;
cursor: pointer;
transition: all 0.3s ease;
}
.config-select:focus {
outline: none;
border-color: var(--tanda-cyan);
box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.2);
}
.config-input {
background: rgba(0, 0, 0, 0.3);
border: 1px solid var(--border-card);
border-radius: 8px;
padding: 8px 12px;
color: var(--text-primary);
font-size: 14px;
min-width: 200px;
transition: all 0.3s ease;
}
.config-input:focus {
outline: none;
border-color: var(--tanda-cyan);
box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.2);
}
.btn-config {
background: linear-gradient(135deg, var(--tanda-cyan), var(--tanda-cyan-light));
color: var(--tanda-black);
border: none;
padding: 8px 16px;
border-radius: 8px;
cursor: pointer;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 6px;
}
.btn-config:hover {
transform: translateY(-1px);
box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}
.btn-secondary {
background: transparent;
color: var(--text-secondary);
border: 1px solid var(--border-card);
padding: 8px 16px;
border-radius: 8px;
cursor: pointer;
font-size: 14px;
transition: all 0.3s ease;
}
.btn-secondary:hover {
color: var(--tanda-cyan);
border-color: var(--tanda-cyan);
}
.btn-danger {
background: rgba(248, 113, 113, 0.2);
color: var(--error-color);
border: 1px solid var(--error-color);
padding: 8px 16px;
border-radius: 8px;
cursor: pointer;
font-size: 14px;
transition: all 0.3s ease;
}
.btn-danger:hover {
background: var(--error-color);
color: white;
}
/* ================================
🎨 THEME SELECTOR
================================ */
.theme-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 16px;
margin-top: 16px;
}
.theme-option {
background: rgba(0, 0, 0, 0.3);
border: 2px solid var(--border-card);
border-radius: 12px;
padding: 16px;
cursor: pointer;
transition: all 0.3s ease;
text-align: center;
}
.theme-option.active {
border-color: var(--tanda-cyan);
box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}
.theme-option:hover {
border-color: var(--border-accent);
transform: translateY(-2px);
}
.theme-preview {
width: 60px;
height: 40px;
border-radius: 8px;
margin: 0 auto 8px;
position: relative;
overflow: hidden;
}
.theme-name {
font-size: 12px;
color: var(--text-primary);
font-weight: 500;
}
/* Theme Previews */
.theme-cyber {
background: linear-gradient(135deg, #00FFFF, #7FFFD8);
}
.theme-dark {
background: linear-gradient(135deg, #1a1a2e, #16213e);
}
.theme-gold {
background: linear-gradient(135deg, #ffd700, #ffed4e);
}
.theme-purple {
background: linear-gradient(135deg, #8b5cf6, #a855f7);
}
/* ================================
📱 RESPONSIVE DESIGN
================================ */
@media (max-width: 768px) {
body {
padding: 16px;
}
.nav-header {
margin-top: 80px; /* Space below fixed global header */
flex-direction: column;
gap: 16px;
text-align: center;
}
.nav-left {
flex-direction: column;
gap: 12px;
}
.tab-navigation {
flex-wrap: wrap;
}
.tab-btn {
min-width: 100px;
font-size: 12px;
}
.config-item {
flex-direction: column;
gap: 16px;
align-items: flex-start;
}
.config-control {
align-self: stretch;
justify-content: space-between;
}
.theme-grid {
grid-template-columns: repeat(2, 1fr);
}
}
/* ================================
✨ ANIMATIONS
================================ */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
.pulse {
animation: pulse 2s infinite;
}
/* Status Indicators */
.status-indicator {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 4px 8px;
border-radius: 12px;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.status-enabled {
background: rgba(34, 213, 94, 0.2);
color: var(--success-color);
}
.status-disabled {
background: rgba(100, 116, 139, 0.2);
color: var(--text-secondary);
}
.status-premium {
background: rgba(255, 215, 0, 0.2);
color: var(--crypto-gold);
}
</style>
<script async type="module" crossorigin src="/assets/js/configuracion-6F3hq9O7.js"></script>
<script type="module">import.meta.url;import("_").catch(()=>1);(async function*(){})().next();if(location.protocol!="file:"){window.__vite_is_modern_browser=true}</script>
<script type="module">!function(){if(window.__vite_is_modern_browser)return;console.warn("vite: loading legacy chunks, syntax error above and the same error below should be ignored");var e=document.getElementById("vite-legacy-polyfill"),n=document.createElement("script");n.src=e.src,n.onload=function(){System.import(document.getElementById('vite-legacy-entry').getAttribute('data-src'))},document.body.appendChild(n)}();</script>
<link rel="manifest" href="/manifest.webmanifest"><script id="vite-plugin-pwa:register-sw" src="/registerSW.js"></script> <link rel="stylesheet" href="css/variables.css">
<link rel="stylesheet" href="css/header.css?v=26.0">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://latanda.online/configuracion.html">
<meta property="og:title" content="Configuracion | La Tanda">
<meta property="og:description" content="Ajusta tus preferencias y configuracion de cuenta.">
<meta property="og:image" content="https://latanda.online/assets/og-image.png">
<meta property="og:site_name" content="La Tanda">
<meta property="og:locale" content="es_HN">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Configuracion | La Tanda">
<meta name="twitter:description" content="Ajusta tus preferencias y configuracion de cuenta.">
<meta name="twitter:image" content="https://latanda.online/assets/og-image.png">
</head>
<body>
<!-- Global Header Component -->
<div id="global-header"></div>
<!-- Navigation Header -->
<nav class="nav-header">
<div class="nav-left">
<button class="back-btn" onclick="window.location.href='home-dashboard.html'">
<i class="fas fa-arrow-left"></i> Dashboard
</button>
<h1 class="page-title">
<i class="fas fa-cog"></i> Configuración
</h1>
</div>
<div class="nav-links">
<a href="perfil.html" id="navProfileLink" class="nav-link">
<i class="fas fa-user"></i> Mi Perfil
</a>
<a href="seguridad.html" class="nav-link">
<i class="fas fa-shield-alt"></i> Seguridad
</a>
<a href="my-wallet.html" class="nav-link">
<i class="fas fa-wallet"></i> Wallet
</a>
</div>
</nav>
<div class="config-container">
<!-- Configuration Tabs -->
<div class="config-tabs">
<div class="tab-navigation">
<button class="tab-btn active" onclick="switchTab('general')">
<i class="fas fa-sliders-h"></i> General
</button>
<button class="tab-btn" onclick="switchTab('appearance')">
<i class="fas fa-palette"></i> Apariencia
</button>
<button class="tab-btn" onclick="switchTab('notifications')">
<i class="fas fa-bell"></i> Notificaciones
</button>
<button class="tab-btn" onclick="switchTab('blockchain')">
<i class="fas fa-link"></i> Blockchain
</button>
<button class="tab-btn" onclick="switchTab('advanced')">
<i class="fas fa-cogs"></i> Avanzado
</button>
</div>
<!-- General Tab -->
<div id="general" class="tab-content active">
<div class="config-section">
<div class="section-header">
<h3 class="section-title">
<i class="fas fa-globe"></i> Configuración Regional
</h3>
</div>
<div class="config-item">
<div class="config-info">
<div class="config-label">Idioma</div>
<div class="config-description">Selecciona tu idioma preferido para la interfaz</div>
</div>
<div class="config-control">
<select class="config-select" id="languageSelect">
<option value="es">Español</option>
<option value="en">English</option>
<option value="pt">Português</option>
<option value="fr">Français</option>
</select>
</div>
</div>
<div class="config-item">
<div class="config-info">
<div class="config-label">Zona Horaria</div>
<div class="config-description">Configura tu zona horaria local</div>
</div>
<div class="config-control">
<select class="config-select" id="timezoneSelect">
<option value="America/Mexico_City">Ciudad de México (GMT-6)</option>
<option value="America/New_York">Nueva York (GMT-5)</option>
<option value="Europe/Madrid">Madrid (GMT+1)</option>
<option value="Asia/Tokyo">Tokio (GMT+9)</option>
</select>
</div>
</div>
<div class="config-item">
<div class="config-info">
<div class="config-label">Moneda Principal</div>
<div class="config-description">Moneda para mostrar equivalencias</div>
</div>
<div class="config-control">
<select class="config-select" id="currencySelect">
<option value="USD">USD - Dólar Americano</option>
<option value="MXN">MXN - Peso Mexicano</option>
<option value="EUR">EUR - Euro</option>
<option value="BTC">BTC - Bitcoin</option>
</select>
</div>
</div>
</div>
<div class="config-section">
<div class="section-header">
<h3 class="section-title">
<i class="fas fa-user-cog"></i> Preferencias de Cuenta
</h3>
</div>
<div class="config-item">
<div class="config-info">
<div class="config-label">Modo Experto</div>
<div class="config-description">Activa funciones avanzadas y opciones detalladas</div>
</div>
<div class="config-control">
<div class="toggle-switch" onclick="toggleExpertMode()">
<div class="toggle-slider"></div>
</div>
</div>
</div>
<div class="config-item">
<div class="config-info">
<div class="config-label">Confirmaciones de Transacciones</div>
<div class="config-description">Requiere confirmación manual para todas las transacciones</div>
</div>
<div class="config-control">
<div class="toggle-switch active" onclick="toggleTransactionConfirmation()">
<div class="toggle-slider"></div>
</div>
</div>
</div>
</div>
</div>
<!-- Appearance Tab -->
<div id="appearance" class="tab-content">
<div class="config-section">
<div class="section-header">
<h3 class="section-title">
<i class="fas fa-paint-brush"></i> Tema Visual
</h3>
</div>
<div class="config-item">
<div class="config-info">
<div class="config-label">Tema de Color</div>
<div class="config-description">Selecciona el esquema de colores para La Tanda</div>
</div>
</div>
<div class="theme-grid">
<div class="theme-option active" onclick="selectTheme('cyber')">
<div class="theme-preview theme-cyber"></div>
<div class="theme-name">Cyber Tanda</div>
</div>
<div class="theme-option" onclick="selectTheme('dark')">
<div class="theme-preview theme-dark"></div>
<div class="theme-name">Dark Mode</div>
</div>
<div class="theme-option" onclick="selectTheme('gold')">
<div class="theme-preview theme-gold"></div>
<div class="theme-name">Golden Hour</div>
</div>
<div class="theme-option" onclick="selectTheme('purple')">
<div class="theme-preview theme-purple"></div>
<div class="theme-name">Purple Rain</div>
</div>
</div>
</div>
<div class="config-section">
<div class="section-header">
<h3 class="section-title">
<i class="fas fa-desktop"></i> Interfaz
</h3>
</div>
<div class="config-item">
<div class="config-info">
<div class="config-label">Animaciones</div>
<div class="config-description">Habilita efectos y transiciones animadas</div>
</div>
<div class="config-control">
<div class="toggle-switch active" onclick="toggleAnimations()">
<div class="toggle-slider"></div>
</div>
</div>
</div>
<div class="config-item">
<div class="config-info">
<div class="config-label">Efectos de Glassmorfismo</div>
<div class="config-description">Activa efectos de vidrio esmerilado en tarjetas</div>
</div>
<div class="config-control">
<div class="toggle-switch active" onclick="toggleGlassmorphism()">
<div class="toggle-slider"></div>
</div>
</div>
</div>
<div class="config-item">
<div class="config-info">
<div class="config-label">Densidad de Información</div>
<div class="config-description">Controla la cantidad de información mostrada</div>
</div>
<div class="config-control">
<select class="config-select" id="densitySelect">
<option value="compact">Compacto</option>
<option value="normal" selected>Normal</option>
<option value="comfortable">Cómodo</option>
</select>
</div>
</div>
</div>
</div>
<!-- Notifications Tab -->
<div id="notifications" class="tab-content">
<div class="config-section">
<div class="section-header">
<h3 class="section-title">
<i class="fas fa-envelope"></i> Notificaciones por Email
</h3>
</div>
<div class="config-item">
<div class="config-info">
<div class="config-label">Resumen Diario</div>
<div class="config-description">Recibe un resumen de tu actividad diaria</div>
</div>
<div class="config-control">
<div class="toggle-switch active" onclick="toggleDailySummary()">
<div class="toggle-slider"></div>
</div>
</div>
</div>
<div class="config-item">
<div class="config-info">
<div class="config-label">Alertas de Transacciones</div>
<div class="config-description">Notificaciones cuando recibas o envíes pagos</div>
</div>
<div class="config-control">
<div class="toggle-switch active" onclick="toggleTransactionAlerts()">
<div class="toggle-slider"></div>
</div>
</div>
</div>
<div class="config-item">
<div class="config-info">
<div class="config-label">Actualizaciones del Sistema</div>
<div class="config-description">Información sobre nuevas funciones y mantenimiento</div>
</div>
<div class="config-control">
<div class="toggle-switch" onclick="toggleSystemUpdates()">
<div class="toggle-slider"></div>
</div>
</div>
</div>
</div>
<div class="config-section">
<div class="section-header">
<h3 class="section-title">
<i class="fas fa-mobile-alt"></i> Notificaciones Push
</h3>
</div>
<div class="config-item">
<div class="config-info">
<div class="config-label">Activar Push</div>
<div class="config-description">Permite notificaciones push en tu navegador</div>
</div>
<div class="config-control">
<button class="btn-config" onclick="enablePushNotifications()">
<i class="fas fa-bell"></i> Activar
</button>
</div>
</div>
<div class="config-item">
<div class="config-info">
<div class="config-label">Horario de Notificaciones</div>
<div class="config-description">Establece cuando recibir notificaciones</div>
</div>
<div class="config-control">
<input type="time" class="config-input" id="notificationStart" value="08:00">
<span style="color: var(--text-secondary);">a</span>
<input type="time" class="config-input" id="notificationEnd" value="22:00">
</div>
</div>
</div>
</div>
<!-- Blockchain Tab -->
<div id="blockchain" class="tab-content">
<div class="config-section">
<div class="section-header">
<h3 class="section-title">
<i class="fas fa-link"></i> Conexión Blockchain
</h3>
</div>
<div class="config-item">
<div class="config-info">
<div class="config-label">Red Activa</div>
<div class="config-description">Red blockchain principal para transacciones</div>
</div>
<div class="config-control">
<select class="config-select" id="networkSelect">
<option value="latanda-mainnet" selected>La Tanda Chain Mainnet</option>
<option value="latanda-testnet">La Tanda Chain Testnet</option>
<option value="ethereum">Ethereum Mainnet</option>
<option value="polygon">Polygon</option>
</select>
</div>
</div>
<div class="config-item">
<div class="config-info">
<div class="config-label">Nodo RPC Personalizado</div>
<div class="config-description">URL del nodo RPC para conexión directa</div>
</div>
<div class="config-control">
<input type="url" class="config-input" id="rpcUrl" placeholder="https://rpc.latanda.online" value="https://rpc.latanda.online">
<button class="btn-secondary" onclick="testRPCConnection()">
<i class="fas fa-wifi"></i> Probar
</button>
</div>
</div>
</div>
<div class="config-section">
<div class="section-header">
<h3 class="section-title">
<i class="fas fa-gas-pump"></i> Gas y Comisiones
</h3>
</div>
<div class="config-item">
<div class="config-info">
<div class="config-label">Límite de Gas Predeterminado</div>
<div class="config-description">Gas limit para transacciones automáticas</div>
</div>
<div class="config-control">
<input type="number" class="config-input" id="gasLimit" value="21000" min="21000">
</div>
</div>
<div class="config-item">
<div class="config-info">
<div class="config-label">Precio de Gas</div>
<div class="config-description">Estrategia para el precio del gas</div>
</div>
<div class="config-control">
<select class="config-select" id="gasPriceStrategy">
<option value="slow">Lento (Económico)</option>
<option value="standard" selected>Estándar</option>
<option value="fast">Rápido</option>
<option value="custom">Personalizado</option>
</select>
</div>
</div>
</div>
</div>
<!-- Advanced Tab -->
<div id="advanced" class="tab-content">
<div class="config-section">
<div class="section-header">
<h3 class="section-title">
<i class="fas fa-code"></i> Configuración de Desarrollador
</h3>
</div>
<div class="config-item">
<div class="config-info">
<div class="config-label">Modo Desarrollador</div>
<div class="config-description">Activa herramientas y logs de desarrollo</div>
</div>
<div class="config-control">
<div class="toggle-switch" onclick="toggleDeveloperMode()">
<div class="toggle-slider"></div>
</div>
</div>
</div>
<div class="config-item">
<div class="config-info">
<div class="config-label">Logs de Consola</div>
<div class="config-description">Nivel de detalle en los logs del navegador</div>
</div>
<div class="config-control">
<select class="config-select" id="logLevel">
<option value="error">Solo Errores</option>
<option value="warn">Advertencias</option>
<option value="info" selected>Información</option>
<option value="debug">Debug Completo</option>
</select>
</div>
</div>
<div class="config-item">
<div class="config-info">