-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
998 lines (935 loc) · 62.6 KB
/
index.html
File metadata and controls
998 lines (935 loc) · 62.6 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
<!DOCTYPE html>
<html lang="pt-BR" data-theme="light">
<head>
<!-- Meta Tags Essenciais -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Portal brasileiro de vanguarda contra golpes digitais. Verificação em tempo real, orientações especializadas e proteção completa para todos os brasileiros.">
<meta name="keywords" content="golpe digital, fraude online, golpe PIX, golpe WhatsApp, site falso, verificar golpe, denunciar fraude, proteção digital, segurança online">
<meta name="author" content="Proteção Digital Brasil">
<meta name="robots" content="index, follow">
<meta name="language" content="pt-BR">
<meta name="geo.region" content="BR">
<meta name="geo.country" content="Brazil">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://protecaodigitalbrasil.gov.br/">
<meta property="og:title" content="Proteção Digital Brasil - Site de Vanguarda Contra Golpes Digitais">
<meta property="og:description" content="A plataforma mais avançada do Brasil para proteção contra fraudes digitais. Verificação em tempo real, educação especializada e recursos de emergência.">
<meta property="og:image" content="https://protecaodigitalbrasil.gov.br/assets/images/og-image-1200x630.jpg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:locale" content="pt_BR">
<meta property="og:site_name" content="Proteção Digital Brasil">
<!-- Twitter Cards -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://protecaodigitalbrasil.gov.br/">
<meta name="twitter:title" content="Proteção Digital Brasil - Site de Vanguarda Contra Golpes Digitais">
<meta name="twitter:description" content="A plataforma mais avançada do Brasil para proteção contra fraudes digitais. Verificação em tempo real, educação especializada e recursos de emergência.">
<meta name="twitter:image" content="https://protecaodigitalbrasil.gov.br/assets/images/twitter-image-1200x600.jpg">
<meta name="twitter:creator" content="@ProtecaoDigitalBR">
<!-- PWA Meta Tags -->
<meta name="theme-color" content="#0F172A">
<meta name="msapplication-TileColor" content="#0F172A">
<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="Proteção Digital">
<!-- Canonical URL -->
<link rel="canonical" href="https://protecaodigitalbrasil.gov.br/">
<!-- Favicons e Icons -->
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/icons/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/icons/apple-touch-icon.png">
<link rel="mask-icon" href="/assets/icons/safari-pinned-tab.svg" color="#0F172A">
<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.json">
<!-- Preconnect para Performance -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="css/main.css">
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Proteção Digital Brasil",
"description": "Portal brasileiro de vanguarda contra golpes digitais",
"url": "https://protecaodigitalbrasil.gov.br/",
"potentialAction": {
"@type": "SearchAction",
"target": "https://protecaodigitalbrasil.gov.br/buscar?q={search_term_string}",
"query-input": "required name=search_term_string"
},
"publisher": {
"@type": "Organization",
"name": "Proteção Digital Brasil",
"url": "https://protecaodigitalbrasil.gov.br/",
"logo": {
"@type": "ImageObject",
"url": "https://protecaodigitalbrasil.gov.br/assets/images/logo-structured-data.png"
}
}
}
</script>
<title>Proteção Digital Brasil - Site de Vanguarda Contra Golpes Digitais</title>
</head>
<body>
<!-- Skip Links para Acessibilidade -->
<a href="#main-content" class="skip-link">Pular para o conteúdo principal</a>
<a href="#main-navigation" class="skip-link">Pular para a navegação</a>
<!-- Header Principal -->
<header class="site-header" role="banner">
<div class="container">
<div class="header-content">
<!-- Logo e Identidade -->
<div class="brand-section">
<a href="/" class="brand-link" aria-label="Proteção Digital Brasil - Página Inicial">
<div class="brand-logo">
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="logoGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#10B981;stop-opacity:1" />
<stop offset="100%" style="stop-color:#0F172A;stop-opacity:1" />
</linearGradient>
</defs>
<path d="M24 6L42 12L42 30C42 36 24 42 24 42C24 42 6 36 6 30L6 12L24 6Z" fill="url(#logoGradient)" />
<path d="M18 24L22 28L30 20" stroke="white" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
<div class="brand-text">
<span class="brand-name">Proteção Digital Brasil</span>
<span class="brand-tagline">Vanguarda contra golpes digitais</span>
</div>
</a>
</div>
<!-- Navegação Principal -->
<nav class="main-navigation" role="navigation" aria-label="Navegação principal" id="main-navigation">
<ul class="nav-list">
<li class="nav-item">
<a href="#verificar" class="nav-link" aria-current="page">
<svg class="nav-icon" aria-hidden="true" width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
Verificar Agora
</a>
</li>
<li class="nav-item">
<a href="#identificar" class="nav-link">
<svg class="nav-icon" aria-hidden="true" width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"/>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"/>
</svg>
Identificar Golpes
</a>
</li>
<li class="nav-item">
<a href="#denunciar" class="nav-link">
<svg class="nav-icon" aria-hidden="true" width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 5.882V19.24a1.76 1.76 0 01-3.417.592l-2.147-6.15M18 13a3 3 0 100-6M5.436 13.683A4.001 4.001 0 017 6h1.832c4.1 0 7.625-1.234 9.168-3v14c-1.543-1.766-5.067-3-9.168-3H7a3.988 3.988 0 01-1.564-.317z"/>
</svg>
Denunciar
</a>
</li>
<li class="nav-item">
<a href="#noticias" class="nav-link">
<svg class="nav-icon" aria-hidden="true" width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 20H5a2 2 0 01-2-2V6a2 2 0 012-2h10a2 2 0 012 2v1m2 13a2 2 0 01-2-2V7m2 13a2 2 0 002-2V9a2 2 0 00-2-2h-2m-4-3H9M7 16h6M7 8h6v4H7V8z"/>
</svg>
Notícias
</a>
</li>
<li class="nav-item">
<a href="#emergencia" class="nav-link nav-link--emergency">
<svg class="nav-icon" aria-hidden="true" width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"/>
</svg>
Emergência
</a>
</li>
</ul>
</nav>
<!-- Ferramentas do Header -->
<div class="header-tools">
<!-- Busca Inteligente -->
<div class="search-container">
<form class="search-form" role="search" aria-label="Buscar no site">
<label for="search-input" class="sr-only">Buscar informações sobre golpes e proteção digital</label>
<input
type="search"
id="search-input"
class="search-input"
placeholder="Buscar golpes, orientações..."
autocomplete="off"
aria-describedby="search-suggestions"
>
<button type="submit" class="search-button" aria-label="Realizar busca">
<svg class="search-icon" aria-hidden="true" width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"/>
</svg>
</button>
<div id="search-suggestions" class="search-suggestions" aria-live="polite"></div>
</form>
</div>
<!-- Botão de Emergência -->
<button class="emergency-button" type="button" aria-label="Botão de emergência - Caí em um golpe">
<svg class="emergency-icon" aria-hidden="true" width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
Caí em um Golpe
</button>
<!-- Alternador de Tema -->
<button class="theme-toggle" type="button" aria-label="Alternar entre tema claro e escuro">
<svg class="theme-icon theme-icon--light" aria-hidden="true" width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z"/>
</svg>
<svg class="theme-icon theme-icon--dark" aria-hidden="true" width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z"/>
</svg>
</button>
<!-- Menu Mobile -->
<button class="mobile-menu-toggle" type="button" aria-label="Abrir menu de navegação" aria-expanded="false" aria-controls="main-navigation">
<span class="hamburger-line"></span>
<span class="hamburger-line"></span>
<span class="hamburger-line"></span>
</button>
</div>
</div>
</div>
</header>
<!-- Banner de Alerta Dinâmico -->
<div class="alert-banner" role="alert" aria-live="assertive" id="alert-banner">
<div class="container">
<div class="alert-content">
<svg class="alert-icon" aria-hidden="true" width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"/>
</svg>
<div class="alert-text">
<strong>Novo golpe identificado:</strong> Falsos cupons de desconto via WhatsApp imitando grandes varejistas
</div>
<a href="#alerta-detalhes" class="alert-link">Ver detalhes</a>
<button class="alert-close" type="button" aria-label="Fechar alerta">
<svg aria-hidden="true" width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"/>
</svg>
</button>
</div>
</div>
</div>
<!-- Conteúdo Principal -->
<main class="main-content" role="main" id="main-content">
<!-- Seção Hero -->
<section class="hero-section" id="inicio">
<div class="container">
<div class="hero-content">
<h1 class="hero-title">
Proteja-se contra
<span class="hero-title-highlight">Golpes Digitais</span>
</h1>
<p class="hero-subtitle">
A plataforma mais avançada do Brasil para proteção contra fraudes digitais.
Verificação em tempo real, educação especializada e recursos de emergência.
</p>
<!-- Ações Principais -->
<div class="hero-actions">
<a href="#verificar" class="cta-button cta-button--primary">
<svg class="cta-icon" aria-hidden="true" width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z"/>
</svg>
Verificar se é Golpe
</a>
<a href="#identificar" class="cta-button cta-button--secondary">
<svg class="cta-icon" aria-hidden="true" width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253"/>
</svg>
Aprender a Identificar
</a>
<a href="#noticias" class="cta-button cta-button--outline">
<svg class="cta-icon" aria-hidden="true" width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7h8m0 0v8m0-8l-8 8-4-4-6 6"/>
</svg>
Últimas Ameaças
</a>
</div>
<!-- Estatísticas em Tempo Real -->
<div class="hero-stats">
<div class="stat-card">
<div class="stat-number" data-count="15847">0</div>
<div class="stat-label">Golpes Catalogados</div>
</div>
<div class="stat-card">
<div class="stat-number" data-count="2456789">0</div>
<div class="stat-label">Brasileiros Protegidos</div>
</div>
<div class="stat-card">
<div class="stat-number" data-count="8934">0</div>
<div class="stat-label">Verificações Hoje</div>
</div>
<div class="stat-card">
<div class="stat-number" data-count="156">0</div>
<div class="stat-label">Denúncias Este Mês</div>
</div>
</div>
</div>
<!-- Elemento Visual Moderno -->
<div class="hero-visual">
<div class="protection-shield">
<svg class="shield-graphic" viewBox="0 0 400 400" aria-hidden="true">
<defs>
<linearGradient id="shieldGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#10B981;stop-opacity:1" />
<stop offset="100%" style="stop-color:#0F172A;stop-opacity:1" />
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="3" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<path d="M200 50 L350 100 L350 250 Q350 350 200 350 Q50 350 50 250 L50 100 Z" fill="url(#shieldGradient)" filter="url(#glow)" />
<path d="M150 200 L180 230 L250 160" stroke="white" stroke-width="8" fill="none" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
</div>
</div>
</section>
<!-- Seção Verificador Avançado -->
<section class="verificador-section" id="verificar">
<div class="container">
<header class="section-header">
<h2 class="section-title">Verificador Inteligente de Golpes</h2>
<p class="section-subtitle">
Tecnologia de ponta que integra ReclameAqui, VirusTotal e análise heurística
para verificação instantânea de links, números e mensagens suspeitas
</p>
</header>
<div class="verificador-container">
<div class="verificador-interface">
<div class="input-section">
<label for="verificador-input" class="input-label">
Cole aqui o conteúdo suspeito para verificação
</label>
<div class="input-wrapper">
<textarea
id="verificador-input"
class="verificador-input"
placeholder="Cole aqui: links, números de telefone, e-mails ou mensagens suspeitas..."
aria-describedby="input-help"
rows="4"
></textarea>
<div class="input-actions">
<button type="button" class="input-action" aria-label="Colar da área de transferência" tabindex="0">
<svg aria-hidden="true" width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 17l4 4 4-4m0-5V3a1 1 0 00-1-1H7a1 1 0 00-1 1v14a1 1 0 001 1h3"/></svg>
</button>
<button type="button" class="input-action" aria-label="Limpar campo" tabindex="0">
<svg aria-hidden="true" width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"/></svg>
</button>
</div>
</div>
<div id="input-help" class="input-help">
Aceita URLs, números de telefone, e-mails e textos de mensagens
</div>
</div>
<div class="verification-actions">
<button type="button" class="verify-button" id="verify-button">
<svg class="verify-icon" aria-hidden="true" width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"/>
</svg>
Verificar Agora
</button>
<div class="verification-options">
<label class="option-checkbox">
<input type="checkbox" id="deep-analysis" checked>
<span class="checkmark"></span>
Análise profunda (ReclameAqui + VirusTotal)
</label>
<label class="option-checkbox">
<input type="checkbox" id="save-history" checked>
<span class="checkmark"></span>
Salvar no histórico local
</label>
</div>
</div>
</div>
<!-- Resultado da Verificação -->
<div class="verification-result" id="verification-result" style="display: none;">
<div class="result-header">
<div class="result-status">
<svg class="result-icon" aria-hidden="true" width="32" height="32" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z"/>
</svg>
<div class="result-text">
<h3 class="result-title">Resultado da Verificação</h3>
<p class="result-summary">Analisando conteúdo...</p>
</div>
</div>
<div class="result-score">
<div class="score-circle">
<svg class="score-progress" viewBox="0 0 36 36">
<path class="score-bg" d="M18 2.0845 a 15.9155 15.9155 0 0 1 0 31.831 a 15.9155 15.9155 0 0 1 0 -31.831" />
<path class="score-fill" d="M18 2.0845 a 15.9155 15.9155 0 0 1 0 31.831 a 15.9155 15.9155 0 0 1 0 -31.831" />
</svg>
<div class="score-text">85%</div>
</div>
<div class="score-label">Confiabilidade</div>
</div>
</div>
</div>
<!-- Histórico de Verificações -->
<div class="verification-history">
<h3>Verificações Recentes</h3>
<div class="history-list" id="history-list">
<p class="history-empty">Nenhuma verificação realizada ainda.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Seção Como Identificar Golpes -->
<section class="identificar-section" id="identificar">
<div class="container">
<header class="section-header">
<h2 class="section-title">Como Identificar Golpes Digitais</h2>
<p class="section-subtitle">
Aprenda a reconhecer sinais de alerta e proteger-se contra as principais ameaças digitais
</p>
</header>
<div class="identificar-grid">
<!-- Card ReclameAqui -->
<div class="identificar-card">
<div class="card-icon">
<svg width="32" height="32" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
</div>
<h3 class="card-title">Verificar com ReclameAqui</h3>
<p class="card-description">
Use o Detector de Site Confiável para verificar a reputação de empresas e sites antes de fazer compras ou fornecer dados pessoais.
</p>
<div class="card-steps">
<ol>
<li>Acesse o site do ReclameAqui</li>
<li>Use o "Detector de Site Confiável"</li>
<li>Cole a URL do site suspeito</li>
<li>Analise o histórico de reclamações</li>
<li>Verifique a nota de confiabilidade</li>
</ol>
</div>
<a href="https://www.reclameaqui.com.br/detector-site-confiavel/" target="_blank" class="card-link">
Acessar ReclameAqui
<svg width="16" height="16" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"/>
</svg>
</a>
</div>
<!-- Card VirusTotal -->
<div class="identificar-card">
<div class="card-icon">
<svg width="32" height="32" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z"/>
</svg>
</div>
<h3 class="card-title">Análise com VirusTotal</h3>
<p class="card-description">
Verifique links e arquivos suspeitos usando múltiplos antivírus simultaneamente para detectar malware e ameaças.
</p>
<div class="card-steps">
<ol>
<li>Acesse o VirusTotal</li>
<li>Cole a URL ou faça upload do arquivo</li>
<li>Aguarde a análise de 70+ antivírus</li>
<li>Verifique o número de detecções</li>
<li>Leia os detalhes das ameaças encontradas</li>
</ol>
</div>
<a href="https://www.virustotal.com/" target="_blank" class="card-link">
Acessar VirusTotal
<svg width="16" height="16" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"/>
</svg>
</a>
</div>
<!-- Card Links Maliciosos -->
<div class="identificar-card">
<div class="card-icon">
<svg width="32" height="32" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13.828 10.172a4 4 0 00-5.656 0l-4 4a4 4 0 105.656 5.656l1.102-1.101m-.758-4.899a4 4 0 005.656 0l4-4a4 4 0 00-5.656-5.656l-1.1 1.1"/>
</svg>
</div>
<h3 class="card-title">Identificar Links Maliciosos</h3>
<p class="card-description">
Reconheça sinais de alerta em URLs suspeitas e aprenda técnicas para verificar a legitimidade de links.
</p>
<div class="card-warning-signs">
<h4>Sinais de Alerta:</h4>
<ul>
<li>URLs muito longas ou confusas</li>
<li>Domínios similares a sites conhecidos</li>
<li>Uso de encurtadores suspeitos</li>
<li>Caracteres especiais estranhos</li>
<li>Protocolo HTTP em vez de HTTPS</li>
<li>Subdomínios excessivos</li>
</ul>
</div>
</div>
<!-- Card URLs Maliciosas -->
<div class="identificar-card">
<div class="card-icon">
<svg width="32" height="32" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"/>
</svg>
</div>
<h3 class="card-title">Detectar URLs Maliciosas</h3>
<p class="card-description">
Aprenda técnicas avançadas para identificar URLs perigosas e evitar sites que podem roubar seus dados.
</p>
<div class="card-techniques">
<h4>Técnicas de Verificação:</h4>
<ul>
<li>Verificar certificado SSL</li>
<li>Analisar idade do domínio</li>
<li>Conferir informações WHOIS</li>
<li>Verificar reputação online</li>
<li>Testar em sandbox seguro</li>
<li>Consultar listas de bloqueio</li>
</ul>
</div>
</div>
</div>
<!-- Seção de Plataformas Disponíveis -->
<div class="plataformas-section">
<h3 class="plataformas-title">Plataformas de Verificação Disponíveis</h3>
<div class="plataformas-grid">
<div class="plataforma-item">
<img src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiByeD0iOCIgZmlsbD0iIzAwN0JGRiIvPgo8cGF0aCBkPSJNMTIgMjBMMTggMjZMMjggMTYiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=" alt="ReclameAqui" class="plataforma-logo">
<div class="plataforma-info">
<h4>ReclameAqui</h4>
<p>Detector de Site Confiável</p>
<span class="plataforma-status">Integrado</span>
</div>
</div>
<div class="plataforma-item">
<img src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiByeD0iOCIgZmlsbD0iIzM5NEJBMCIvPgo8cGF0aCBkPSJNMjAgMTBWMzBNMTAgMjBIMzAiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo=" alt="VirusTotal" class="plataforma-logo">
<div class="plataforma-info">
<h4>VirusTotal</h4>
<p>Análise de Malware</p>
<span class="plataforma-status">Integrado</span>
</div>
</div>
<div class="plataforma-item">
<img src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiByeD0iOCIgZmlsbD0iIzEwQjk4MSIvPgo8cGF0aCBkPSJNMjAgMTJWMjhNMTIgMjBIMjgiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo=" alt="Google Safe Browsing" class="plataforma-logo">
<div class="plataforma-info">
<h4>Google Safe Browsing</h4>
<p>Proteção do Navegador</p>
<span class="plataforma-status">Disponível</span>
</div>
</div>
<div class="plataforma-item">
<img src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiByeD0iOCIgZmlsbD0iI0Y1OUUwQiIvPgo8cGF0aCBkPSJNMjAgMTBMMjggMjBMMjAgMzBMMTIgMjBMMjAgMTBaIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==" alt="Análise Heurística" class="plataforma-logo">
<div class="plataforma-info">
<h4>Análise Heurística</h4>
<p>IA Própria</p>
<span class="plataforma-status">Ativo</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Seção de Denúncias -->
<section class="denunciar-section" id="denunciar">
<div class="container">
<header class="section-header">
<h2 class="section-title">Canais de Denúncia</h2>
<p class="section-subtitle">
Denuncie golpes e fraudes através dos canais oficiais para proteger outros brasileiros
</p>
</header>
<div class="denunciar-grid">
<!-- Órgãos Governamentais -->
<div class="denunciar-category">
<h3 class="category-title">Órgãos Governamentais</h3>
<div class="denunciar-cards">
<div class="denunciar-card">
<div class="card-header">
<svg class="card-icon" width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z"/>
</svg>
<h4>Polícia Federal</h4>
</div>
<p>Crimes cibernéticos e fraudes online</p>
<a href="https://www.pf.gov.br/servicos-pf/denuncia" target="_blank" class="denunciar-link">
Denunciar na PF
<svg width="16" height="16" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"/>
</svg>
</a>
</div>
<div class="denunciar-card">
<div class="card-header">
<svg class="card-icon" width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/>
</svg>
<h4>ANATEL</h4>
</div>
<p>Chamadas e SMS indesejadas</p>
<a href="https://www.naomeperturbe.com.br" target="_blank" class="denunciar-link">
Não Me Perturbe
<svg width="16" height="16" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"/>
</svg>
</a>
</div>
<div class="denunciar-card">
<div class="card-header">
<svg class="card-icon" width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8h2a2 2 0 012 2v6a2 2 0 01-2 2h-2v4l-4-4H9a1.994 1.994 0 01-1.414-.586m0 0L11 14h4a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2v4l.586-.586z"/>
</svg>
<h4>Fala.BR</h4>
</div>
<p>Ouvidoria integrada do governo</p>
<a href="https://falabr.cgu.gov.br" target="_blank" class="denunciar-link">
Acessar Fala.BR
<svg width="16" height="16" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"/>
</svg>
</a>
</div>
<div class="denunciar-card">
<div class="card-header">
<svg class="card-icon" width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1"/>
</svg>
<h4>Banco Central</h4>
</div>
<p>Fraudes financeiras e PIX</p>
<a href="https://www.bcb.gov.br/estabilidadefinanceira/pix" target="_blank" class="denunciar-link">
Denunciar PIX
<svg width="16" height="16" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"/>
</svg>
</a>
</div>
</div>
</div>
<!-- Iniciativas Populares -->
<div class="denunciar-category">
<h3 class="category-title">Iniciativas Populares</h3>
<div class="denunciar-cards">
<div class="denunciar-card">
<div class="card-header">
<svg class="card-icon" width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z"/>
</svg>
<h4>SaferNet Brasil</h4>
</div>
<p>Crimes contra direitos humanos na internet</p>
<a href="https://new.safernet.org.br/denuncie" target="_blank" class="denunciar-link">
Denunciar SaferNet
<svg width="16" height="16" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"/>
</svg>
</a>
</div>
<div class="denunciar-card">
<div class="card-header">
<svg class="card-icon" width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v10a2 2 0 002 2h8a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4"/>
</svg>
<h4>Aos Fatos</h4>
</div>
<p>Checagem de informações falsas</p>
<a href="https://www.aosfatos.org" target="_blank" class="denunciar-link">
Verificar Aos Fatos
<svg width="16" height="16" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"/>
</svg>
</a>
</div>
<div class="denunciar-card">
<div class="card-header">
<svg class="card-icon" width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"/>
</svg>
<h4>Lupa</h4>
</div>
<p>Combate à desinformação</p>
<a href="https://lupa.uol.com.br" target="_blank" class="denunciar-link">
Acessar Lupa
<svg width="16" height="16" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"/>
</svg>
</a>
</div>
</div>
</div>
</div>
<!-- Botão de Emergência -->
<div class="emergency-section">
<div class="emergency-card">
<div class="emergency-icon">
<svg width="48" height="48" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"/>
</svg>
</div>
<h3>Caí em um Golpe - Preciso de Ajuda!</h3>
<p>Se você já foi vítima de um golpe, aja rapidamente para minimizar os danos.</p>
<button class="emergency-action-button" id="emergency-action">
Socorro! Fui Vítima de Golpe
</button>
</div>
</div>
</div>
</section>
<!-- Seção de Notícias -->
<section class="noticias-section" id="noticias">
<div class="container">
<header class="section-header">
<h2 class="section-title">Últimas Ameaças e Alertas</h2>
<p class="section-subtitle">
Mantenha-se informado sobre os golpes mais recentes e tendências de segurança digital
</p>
</header>
<div class="noticias-container">
<!-- Filtros de Notícias -->
<div class="noticias-filters">
<button class="filter-button active" data-filter="all">Todas</button>
<button class="filter-button" data-filter="urgente">Urgente</button>
<button class="filter-button" data-filter="golpes">Novos Golpes</button>
<button class="filter-button" data-filter="dicas">Dicas</button>
<button class="filter-button" data-filter="atualizacoes">Atualizações</button>
</div>
<!-- Lista de Notícias -->
<div class="noticias-grid" id="noticias-grid">
<!-- Notícia Urgente -->
<article class="noticia-card urgente" data-category="urgente">
<div class="noticia-badge">Urgente</div>
<div class="noticia-content">
<h3 class="noticia-title">Novo golpe do falso cupom de desconto no WhatsApp</h3>
<p class="noticia-excerpt">
Criminosos estão enviando mensagens falsas oferecendo cupons de grandes varejistas.
Não clique nos links e não compartilhe seus dados.
</p>
<div class="noticia-meta">
<span class="noticia-date">Hoje, 14:30</span>
<span class="noticia-category">Golpes</span>
</div>
</div>
</article>
<!-- Notícia Normal -->
<article class="noticia-card" data-category="golpes">
<div class="noticia-content">
<h3 class="noticia-title">Golpe do PIX: como se proteger das novas modalidades</h3>
<p class="noticia-excerpt">
Especialistas identificaram 5 novas variações do golpe do PIX.
Saiba como reconhecer e se proteger dessas ameaças.
</p>
<div class="noticia-meta">
<span class="noticia-date">Ontem, 16:45</span>
<span class="noticia-category">Golpes</span>
</div>
</div>
</article>
<!-- Dica de Segurança -->
<article class="noticia-card" data-category="dicas">
<div class="noticia-content">
<h3 class="noticia-title">5 sinais para identificar e-mails de phishing</h3>
<p class="noticia-excerpt">
Aprenda a reconhecer os principais indicadores de e-mails maliciosos
e proteja suas informações pessoais.
</p>
<div class="noticia-meta">
<span class="noticia-date">2 dias atrás</span>
<span class="noticia-category">Dicas</span>
</div>
</div>
</article>
<!-- Atualização -->
<article class="noticia-card" data-category="atualizacoes">
<div class="noticia-content">
<h3 class="noticia-title">Nova funcionalidade: verificação em tempo real</h3>
<p class="noticia-excerpt">
Lançamos uma nova ferramenta que verifica links suspeitos
instantaneamente usando múltiplas fontes de dados.
</p>
<div class="noticia-meta">
<span class="noticia-date">3 dias atrás</span>
<span class="noticia-category">Atualizações</span>
</div>
</div>
</article>
</div>
<!-- Linha do Tempo -->
<div class="timeline-section">
<h3 class="timeline-title">Linha do Tempo de Ameaças</h3>
<div class="timeline" id="timeline">
<div class="timeline-item">
<div class="timeline-marker"></div>
<div class="timeline-content">
<div class="timeline-date">Janeiro 2025</div>
<h4>Golpe do falso cupom WhatsApp</h4>
<p>Identificado novo golpe usando cupons falsos de grandes varejistas</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-marker"></div>
<div class="timeline-content">
<div class="timeline-date">Dezembro 2024</div>
<h4>Aumento de golpes PIX</h4>
<p>Crescimento de 300% em tentativas de fraude via PIX durante as festas</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-marker"></div>
<div class="timeline-content">
<div class="timeline-date">Novembro 2024</div>
<h4>Black Friday fraudulenta</h4>
<p>Mais de 1000 sites falsos criados para aproveitar a Black Friday</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="site-footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<div class="footer-brand">
<div class="brand-logo">
<svg width="32" height="32" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M24 6L42 12L42 30C42 36 24 42 24 42C24 42 6 36 6 30L6 12L24 6Z" fill="currentColor" />
<path d="M18 24L22 28L30 20" stroke="white" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
<div>
<h3>Proteção Digital Brasil</h3>
<p>Vanguarda contra golpes digitais</p>
</div>
</div>
<p class="footer-description">
Plataforma gratuita e de interesse público dedicada à proteção de todos os brasileiros
contra fraudes e golpes digitais.
</p>
</div>
<div class="footer-section">
<h4>Links Úteis</h4>
<ul class="footer-links">
<li><a href="#verificar">Verificador de Golpes</a></li>
<li><a href="#identificar">Como Identificar</a></li>
<li><a href="#denunciar">Canais de Denúncia</a></li>
<li><a href="#noticias">Últimas Ameaças</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Recursos</h4>
<ul class="footer-links">
<li><a href="/guias">Guias Educativos</a></li>
<li><a href="/api">API Pública</a></li>
<li><a href="/sobre">Sobre o Projeto</a></li>
<li><a href="/contato">Contato</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Emergência</h4>
<div class="emergency-contacts">
<a href="tel:190" class="emergency-contact">
<svg width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/>
</svg>
190 - Polícia
</a>
<a href="tel:181" class="emergency-contact">
<svg width="20" height="20" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8h2a2 2 0 012 2v6a2 2 0 01-2 2h-2v4l-4-4H9a1.994 1.994 0 01-1.414-.586m0 0L11 14h4a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2v4l.586-.586z"/>
</svg>
181 - Disque Denúncia
</a>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="footer-legal">
<p>© 2025 Proteção Digital Brasil. Projeto de interesse público.</p>
<div class="footer-legal-links">
<a href="/privacidade">Política de Privacidade</a>
<a href="/termos">Termos de Uso</a>
<a href="/acessibilidade">Acessibilidade</a>
</div>
</div>
<div class="footer-social">
<p>Compartilhe e proteja outros brasileiros</p>
</div>
</div>
</div>
</footer>
<!-- Modal de Emergência -->
<div class="modal" id="emergency-modal" style="display: none;">
<div class="modal-overlay"></div>
<div class="modal-content">
<div class="modal-header">
<h2>Protocolo de Emergência</h2>
<button class="modal-close" aria-label="Fechar modal">
<svg width="24" height="24" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"/>
</svg>
</button>
</div>
<div class="modal-body">
<div class="emergency-steps">
<h3>Ações Imediatas:</h3>
<ol>
<li><strong>Não entre em pânico</strong> - Mantenha a calma para tomar decisões corretas</li>
<li><strong>Pare imediatamente</strong> - Não forneça mais informações ou faça transferências</li>
<li><strong>Documente tudo</strong> - Faça prints das conversas e anote detalhes</li>
<li><strong>Contate seu banco</strong> - Ligue imediatamente para bloquear cartões/contas</li>
<li><strong>Registre um B.O.</strong> - Vá à delegacia mais próxima ou registre online</li>
<li><strong>Denuncie</strong> - Use os canais oficiais para reportar o golpe</li>
</ol>
</div>
<div class="emergency-contacts-modal">
<h3>Contatos de Emergência:</h3>
<div class="contact-grid">
<a href="tel:190" class="contact-button">
<span>190</span>
<span>Polícia Militar</span>
</a>
<a href="tel:181" class="contact-button">
<span>181</span>
<span>Disque Denúncia</span>
</a>
<a href="tel:197" class="contact-button">
<span>197</span>
<span>Polícia Civil</span>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Scripts -->
<script src="js/main.js"></script>
<script src="js/verificador.js"></script>
<script src="js/search.js"></script>
<script src="js/theme.js"></script>
<script src="js/noticias.js"></script>
<!-- Service Worker Registration -->
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/sw.js')
.then(registration => console.log('SW registered'))
.catch(error => console.log('SW registration failed'));
});
}
</script>
</body>
</html>