-
Notifications
You must be signed in to change notification settings - Fork 0
/
DriverAlert Policy.html
1120 lines (817 loc) · 51.4 KB
/
DriverAlert Policy.html
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
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<meta name=Generator content="Microsoft Word 15 (filtered)">
<style>
<!--
/* Font Definitions */
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
{font-family:Aptos;
panose-1:2 11 0 4 2 2 2 2 2 4;}
@font-face
{font-family:"System Font";
panose-1:2 11 6 4 2 2 2 2 2 4;}
@font-face
{font-family:"TimesNewRoman\,Bold";
panose-1:2 11 6 4 2 2 2 2 2 4;}
@font-face
{font-family:"Arial Narrow";
panose-1:2 11 6 6 2 2 2 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin:0cm;
font-size:12.0pt;
font-family:"Aptos",sans-serif;}
p
{margin-right:0cm;
margin-left:0cm;
font-size:12.0pt;
font-family:"Times New Roman",serif;}
@page WordSection1
{size:595.3pt 841.9pt;
margin:70.85pt 3.0cm 70.85pt 3.0cm;}
div.WordSection1
{page:WordSection1;}
-->
</style>
</head>
<body lang=PT-BR style='word-wrap:break-word'>
<div class=WordSection1>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><b><u><span
style='font-family:"System Font"'>Versão em português está depois da versão em
Inglês </span></u></b></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>PRIVACY POLICY</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>Last updated March 8, 2024</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
style='font-family:"System Font"'>Versão em português está ao fim da versão em
Inglês </span></p>
<p><span style='font-family:"System Font"'>This privacy notice for </span><span
style='font-family:"TimesNewRoman,Bold",serif'>DELFOS TELEMÁTICS SISTEMA DE
SEGURANÇA LTDA. </span><span lang=EN-US style='font-family:"TimesNewRoman,Bold",serif'>ME
</span><span lang=EN-US style='font-family:"System Font"'>("we,"
"us," or "our"), describes how and why we might collect,
store, use, and/or share ("process") your information when you use
our services ("Services"), such as when you:</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>Download and use our mobile
application (Driver Alert), or any other application of ours that links to this
privacy notice</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>Engage with us in other related
ways, including any sales, marketing, or events</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>Questions or concerns? Reading
this privacy notice will help you understand your privacy rights and choices.
If you do not agree with our policies and practices, please do not use our
Services.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>SUMMARY OF KEY POINTS</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><b><span
lang=EN-US style='font-size:13.0pt;line-height:120%;font-family:"System Font"'>Geolocation
Information. We request access or permission to track location-based
information from your mobile device, continuously (background), to provide
certain location-based services. Driver Alert collects and transmits location
data to enable alert and performance tracking even when the app is closed or
not in use.</span></b></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>This summary provides key points
from our privacy notice, but you can find out more details about any of these
topics by using our table of contents below to find the section you are looking
for.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>What personal information do we
process? When you visit, use, or navigate our Services, we may process personal
information depending on how you interact with us and the Services, the choices
you make, and the products and features you use. Learn more about personal
information you disclose to us.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>Do we process any sensitive
personal information? We may process sensitive personal information when
necessary with your consent or as otherwise permitted by applicable law. Learn
more about sensitive information we process.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>Do we receive any information from
third parties? We do not receive any information from third parties.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>How do we process your
information? We process your information to provide, improve, and administer
our Services, communicate with you, for security and fraud prevention, and to
comply with law. We may also process your information for other purposes with
your consent. We process your information only when we have a valid legal
reason to do so. Learn more about how we process your information.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>In what situations and with which
parties do we share personal information? We may share information in specific
situations and with specific third parties. Learn more about when and with whom
we share your personal information.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>How do we keep your information
safe? We have organizational and technical processes and procedures in place to
protect your personal information. However, no electronic transmission over the
internet or information storage technology can be guaranteed to be 100% secure,
so we cannot promise or guarantee that hackers, cybercriminals, or other
unauthorized third parties will not be able to defeat our security and
improperly collect, access, steal, or modify your information. Learn more about
how we keep your information safe.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>What are your rights? Depending on
where you are located geographically, the applicable privacy law may mean you
have certain rights regarding your personal information. Learn more about your
privacy rights.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>How do you exercise your rights?
The easiest way to exercise your rights is by submitting a data subject access
request, or by contacting us. We will consider and act upon any request in
accordance with applicable data protection laws.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>Want to learn more about what we
do with any information we collect? Review the privacy notice in full.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>TABLE OF CONTENTS</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>1. WHAT INFORMATION DO WE COLLECT?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>2. HOW DO WE PROCESS YOUR
INFORMATION?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>3. WHEN AND WITH WHOM DO WE SHARE
YOUR PERSONAL INFORMATION?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>4. DO WE USE COOKIES AND OTHER
TRACKING TECHNOLOGIES?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>5. HOW LONG DO WE KEEP YOUR
INFORMATION?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>6. HOW DO WE KEEP YOUR INFORMATION
SAFE?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>7. DO WE COLLECT INFORMATION FROM
MINORS?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>8. WHAT ARE YOUR PRIVACY RIGHTS?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>9. CONTROLS FOR DO-NOT-TRACK
FEATURES</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>10. DO WE MAKE UPDATES TO THIS
NOTICE?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>11. HOW CAN YOU CONTACT US ABOUT
THIS NOTICE?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>12. HOW CAN YOU REVIEW, UPDATE, OR
DELETE THE DATA WE COLLECT FROM YOU?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>1. WHAT INFORMATION DO WE COLLECT?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>Personal information you disclose
to us</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>In Short: We collect personal
information that you provide to us.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>We collect personal information
that you voluntarily provide to us when you express an interest in obtaining
information about us or our products and Services, when you participate in
activities on the Services, or otherwise when you contact us.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>Sensitive Information. When
necessary, with your consent or as otherwise permitted by applicable law, we
process the following categories of sensitive information:</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>Application Data. If you use our
application(s), we also may collect the following information if you choose to
provide us with access or permission:</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><b><span
lang=EN-US style='font-size:13.0pt;line-height:120%;font-family:"System Font"'>Geolocation
Information. We request access or permission to track location-based
information from your mobile device, continuously (background), to provide
certain location-based services. Driver Alert collects and transmits location
data to enable alert and performance tracking even when the app is closed or
not in use.</span></b></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>Mobile Device Access. We may
request access or permission to certain features from your mobile device,
including your mobile device's Bluetooth, camera, sensors, and other features</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>Push Notifications. We may request
to send you push notifications regarding your account or certain features of
the application(s). </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>This information is primarily
needed to maintain the security and operation of our application(s), for
troubleshooting, and for our internal analytics and reporting purposes.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>All personal information that you
provide to us must be true, complete, and accurate, and you must notify us of
any changes to such personal information.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>2. HOW DO WE PROCESS YOUR
INFORMATION?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>In Short: We process your
information to provide, improve, and administer our Services, communicate with
you, for security and fraud prevention, and to comply with law. We may also
process your information for other purposes with your consent.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>We process your personal
information for a variety of reasons, depending on how you interact with our
Services, including:</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>To deliver and facilitate delivery
of services to the user. We may process your information to provide you with
the requested service.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>3. WHEN AND WITH WHOM DO WE SHARE
YOUR PERSONAL INFORMATION?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>In Short: We may share information
in specific situations described in this section and/or with the following
third parties.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>We may need to share your personal
information in the following situations:</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>Business Transfers. We may share
or transfer your information in connection with, or during negotiations of, any
merger, sale of company assets, financing, or acquisition of all or a portion
of our business to another company.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>4. DO WE USE COOKIES AND OTHER
TRACKING TECHNOLOGIES?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>In Short: We may use cookies and
other tracking technologies to collect and store your information.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>We may use cookies and similar
tracking technologies (like web beacons and pixels) to access or store
information. Specific information about how we use such technologies and how
you can refuse certain cookies is set out in our Cookie Notice.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>5. HOW LONG DO WE KEEP YOUR
INFORMATION?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>In Short: We keep your information
for as long as necessary to fulfill the purposes outlined in this privacy
notice unless otherwise required by law.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>We will only keep your personal
information for as long as it is necessary for the purposes set out in this
privacy notice, unless a longer retention period is required or permitted by
law (such as tax, accounting, or other legal requirements).</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>When we have no ongoing legitimate
business need to process your personal information, we will either delete or
anonymize such information, or, if this is not possible (for example, because
your personal information has been stored in backup archives), then we will
securely store your personal information and isolate it from any further
processing until deletion is possible.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>6. HOW DO WE KEEP YOUR INFORMATION
SAFE?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>In Short: We aim to protect your
personal information through a system of organizational and technical security
measures.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>We have implemented appropriate
and reasonable technical and organizational security measures designed to
protect the security of any personal information we process. However, despite
our safeguards and efforts to secure your information, no electronic
transmission over the Internet or information storage technology can be
guaranteed to be 100% secure, so we cannot promise or guarantee that hackers,
cybercriminals, or other unauthorized third parties will not be able to defeat
our security and improperly collect, access, steal, or modify your information.
Although we will do our best to protect your personal information, transmission
of personal information to and from our Services is at your own risk. You
should only access the Services within a secure environment.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>7. DO WE COLLECT INFORMATION FROM
MINORS?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>In Short: We do not knowingly
collect data from or market to children under 18 years of age.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>We do not knowingly solicit data
from or market to children under 18 years of age. By using the Services, you
represent that you are at least 18 or that you are the parent or guardian of
such a minor and consent to such minor dependent’s use of the Services. If we
learn that personal information from users less than 18 years of age has been
collected, we will deactivate the account and take reasonable measures to
promptly delete such data from our records. If you become aware of any data we
may have collected from children under age 18, please contact us at
andre.vas@delfostelematics.com.br.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>8. WHAT ARE YOUR PRIVACY RIGHTS?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>In Short: You may review, change,
or terminate your account at any time.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>Withdrawing your consent: If we
are relying on your consent to process your personal information, which may be
express and/or implied consent depending on the applicable law, you have the
right to withdraw your consent at any time. You can withdraw your consent at
any time by contacting us by using the contact details provided in the section
"HOW CAN YOU CONTACT US ABOUT THIS NOTICE?" below.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>However, please note that this
will not affect the lawfulness of the processing before its withdrawal nor,
when applicable law allows, will it affect the processing of your personal
information conducted in reliance on lawful processing grounds other than
consent.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>9. CONTROLS FOR DO-NOT-TRACK
FEATURES</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>Most web browsers and some mobile
operating systems and mobile applications include a Do-Not-Track
("DNT") feature or setting you can activate to signal your privacy
preference not to have data about your online browsing activities monitored and
collected. At this stage no uniform technology standard for recognizing and
implementing DNT signals has been finalized. As such, we do not currently
respond to DNT browser signals or any other mechanism that automatically
communicates your choice not to be tracked online. If a standard for online
tracking is adopted that we must follow in the future, we will inform you about
that practice in a revised version of this privacy notice.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>10. DO WE MAKE UPDATES TO THIS
NOTICE?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>In Short: Yes, we will update this
notice as necessary to stay compliant with relevant laws.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>We may update this privacy notice
from time to time. The updated version will be indicated by an updated
"Revised" date and the updated version will be effective as soon as
it is accessible. If we make material changes to this privacy notice, we may
notify you either by prominently posting a notice of such changes or by
directly sending you a notification. We encourage you to review this privacy
notice frequently to be informed of how we are protecting your information.</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>11. HOW CAN YOU CONTACT US ABOUT
THIS NOTICE?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>If you have questions or comments
about this notice, you may email us at andre.vas@delfostelematics.com.br or
contact us by post at:</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='text-autospace:none'><span style='font-family:"Arial Narrow",sans-serif;
color:black'>Avenida da Paz, 209,</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
style='font-family:"Arial Narrow",sans-serif;color:black'>Guarulhos, Estado São
Paulo </span><span style='font-family:"System Font"'>Brazil</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
style='font-family:"System Font"'> </span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'>12. HOW CAN YOU REVIEW, UPDATE, OR
DELETE THE DATA WE COLLECT FROM YOU?</span></p>
<p class=MsoNormal style='line-height:120%;text-autospace:none'><span
lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal><span lang=EN-US style='font-family:"System Font"'>Based on
the applicable laws of your country, you may have the right to request access
to the personal information we collect from you, change that information, or
delete it. To request to review, update, or delete your personal information,
please fill out and submit a data subject access request.</span></p>
<p class=MsoNormal><span lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal><span lang=EN-US style='font-family:"System Font"'> </span></p>
<span lang=EN-US style='font-size:12.0pt;font-family:"System Font"'><br
clear=all style='page-break-before:always'>
</span>
<p class=MsoNormal><span lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal><span lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal><span lang=EN-US style='font-family:"System Font"'> </span></p>
<p class=MsoNormal>POLÍTICA DE PRIVACIDADE</p>
<p class=MsoNormal>Última atualização em 8 de março de 2024</p>
<p class=MsoNormal> </p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Este aviso de privacidade para DELFOS TELEMÁTICS SISTEMA DE
SEGURANÇA LTDA. ME ("nós", "nos" ou "nosso"),
descreve como e por que podemos coletar, armazenar, usar e/ou compartilhar
("processar") suas informações quando você usa nossos serviços
("Serviços"), como quando você:</p>
<p class=MsoNormal>Baixe e use nosso aplicativo móvel (Driver Alert), ou
qualquer outro aplicativo nosso que tenha link para este aviso de privacidade</p>
<p class=MsoNormal>Envolva-se conosco de outras maneiras relacionadas,
incluindo vendas, marketing ou eventos</p>
<p class=MsoNormal>Perguntas ou preocupações? A leitura deste aviso de
privacidade irá ajudá-lo a compreender os seus direitos e escolhas de
privacidade. Se você não concorda com nossas políticas e práticas, não utilize
nossos Serviços.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal> </p>
<p class=MsoNormal>RESUMO DOS PONTOS-CHAVE</p>
<p class=MsoNormal> </p>
<p class=MsoNormal><b><span style='font-size:14.0pt'>Informações de
geolocalização. Solicitamos acesso ou permissão para rastrear informações
baseadas em localização do seu dispositivo móvel, continuamente (em segundo
plano), para fornecer determinados serviços baseados em localização. O Driver
Alert coleta e transmite dados de localização para permitir alertas e
rastreamento de desempenho mesmo quando o aplicativo está fechado ou não está
em uso.</span></b></p>
<p class=MsoNormal> </p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Este resumo fornece pontos chave do nosso aviso de
privacidade, mas você pode encontrar mais detalhes sobre qualquer um desses
tópicos usando nosso índice abaixo para encontrar a seção que procura.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Que informações pessoais processamos? Quando você visita,
usa ou navega em nossos Serviços, podemos processar informações pessoais
dependendo de como você interage conosco e com os Serviços, as escolhas que
você faz e os produtos e recursos que você usa. Saiba mais sobre as informações
pessoais que você nos divulga.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Processamos alguma informação pessoal sensível? Podemos
processar informações pessoais confidenciais quando necessário com o seu
consentimento ou conforme permitido pela lei aplicável. Saiba mais sobre as
informações confidenciais que processamos.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Recebemos alguma informação de terceiros? Não recebemos
nenhuma informação de terceiros.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Como processamos suas informações? Processamos suas
informações para fornecer, melhorar e administrar nossos Serviços, nos
comunicarmos com você, para segurança e prevenção de fraudes e para cumprir a
lei. Também poderemos processar suas informações para outros fins com o seu
consentimento. Processamos suas informações somente quando temos uma razão
legal válida para fazê-lo. Saiba mais sobre como processamos suas informações.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Em que situações e com que partes partilhamos informações
pessoais? Podemos compartilhar informações em situações específicas e com
terceiros específicos. Saiba mais sobre quando e com quem compartilhamos suas
informações pessoais.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Como mantemos suas informações seguras? Temos processos e
procedimentos organizacionais e técnicos em vigor para proteger suas
informações pessoais. No entanto, nenhuma transmissão electrónica através da
Internet ou tecnologia de armazenamento de informação pode ser garantida como
100% segura, pelo que não podemos prometer ou garantir que hackers,
cibercriminosos ou outros terceiros não autorizados não serão capazes de violar
a nossa segurança e recolher, aceder indevidamente , roubar ou modificar suas informações.
Saiba mais sobre como mantemos suas informações seguras.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Quais são os seus direitos? Dependendo de onde você está
localizado geograficamente, a lei de privacidade aplicável pode significar que
você tem certos direitos em relação às suas informações pessoais. Saiba mais
sobre seus direitos de privacidade.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Como você exerce seus direitos? A forma mais fácil de
exercer os seus direitos é submetendo um pedido de acesso do titular dos dados,
ou contactando-nos. Consideraremos e agiremos de acordo com qualquer
solicitação de acordo com as leis de proteção de dados aplicáveis.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Quer saber mais sobre o que fazemos com as informações que
coletamos? Revise o aviso de privacidade na íntegra.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal> </p>
<p class=MsoNormal>ÍNDICE</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>1. QUE INFORMAÇÕES COLETAMOS?</p>
<p class=MsoNormal>2. COMO PROCESSAMOS SUAS INFORMAÇÕES?</p>
<p class=MsoNormal>3. QUANDO E COM QUEM COMPARTILHAMOS SUAS INFORMAÇÕES
PESSOAIS?</p>
<p class=MsoNormal>4. USAMOS COOKIES E OUTRAS TECNOLOGIAS DE RASTREAMENTO?</p>
<p class=MsoNormal>5. POR QUANTO TEMPO MANTEMOS SUAS INFORMAÇÕES?</p>
<p class=MsoNormal>6. COMO MANTEMOS SUAS INFORMAÇÕES SEGURAS?</p>
<p class=MsoNormal>7. COLETAMOS INFORMAÇÕES DE MENORES?</p>
<p class=MsoNormal>8. QUAIS SÃO OS SEUS DIREITOS DE PRIVACIDADE?</p>
<p class=MsoNormal>9. CONTROLES PARA RECURSOS DO-NOT-TRACK</p>
<p class=MsoNormal>10. FAZEMOS ATUALIZAÇÕES NESTE AVISO?</p>
<p class=MsoNormal>11. COMO VOCÊ PODE ENTRAR EM CONTATO CONOSCO SOBRE ESTE
AVISO?</p>
<p class=MsoNormal>12. COMO VOCÊ PODE REVISAR, ATUALIZAR OU EXCLUIR OS DADOS
QUE COLETAMOS DE VOCÊ?</p>
<p class=MsoNormal> </p>
<p class=MsoNormal> </p>
<p class=MsoNormal>1. QUE INFORMAÇÕES COLETAMOS?</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Informações pessoais que você nos divulga</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Resumindo: Coletamos informações pessoais que você nos
fornece.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Coletamos informações pessoais que você nos fornece
voluntariamente quando expressa interesse em obter informações sobre nós ou
sobre nossos produtos e Serviços, quando participa de atividades nos Serviços
ou, de outra forma, quando nos contata.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Informação sensível. Quando necessário, com o seu
consentimento ou conforme permitido pela lei aplicável, processamos as
seguintes categorias de informações confidenciais:</p>
<p class=MsoNormal>Dados de aplicativos. Se você usar nossos aplicativos,
também poderemos coletar as seguintes informações se você decidir nos fornecer
acesso ou permissão:</p>
<p class=MsoNormal> </p>
<p class=MsoNormal><b><span style='font-size:14.0pt'>Informações de
geolocalização. Solicitamos acesso ou permissão para rastrear informações
baseadas em localização do seu dispositivo móvel, continuamente (em segundo
plano), para fornecer determinados serviços baseados em localização. O Driver
Alert coleta e transmite dados de localização para permitir alertas e
rastreamento de desempenho mesmo quando o aplicativo está fechado ou não está
em uso.</span></b></p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Acesso a dispositivos móveis. Podemos solicitar acesso ou
permissão para determinados recursos do seu dispositivo móvel, incluindo
Bluetooth, câmera do seu dispositivo móvel</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Notificações via push. Poderemos solicitar o envio de
notificações push relacionadas à sua conta ou a determinados recursos do(s)
aplicativo(s).</p>
<p class=MsoNormal>Essas informações são necessárias principalmente para manter
a segurança e a operação de nossos aplicativos, para solução de problemas e
para fins de análise interna e relatórios.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Todas as informações pessoais que você nos fornece devem ser
verdadeiras, completas e precisas, e você deve nos notificar sobre quaisquer
alterações nessas informações pessoais.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>2. COMO PROCESSAMOS SUAS INFORMAÇÕES?</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Resumindo: Processamos suas informações para fornecer,
melhorar e administrar nossos Serviços, nos comunicarmos com você, para
segurança e prevenção de fraudes e para cumprir a lei. Também poderemos
processar suas informações para outros fins com o seu consentimento.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Processamos suas informações pessoais por diversos motivos,
dependendo de como você interage com nossos Serviços, incluindo:</p>
<p class=MsoNormal>Para entregar e facilitar a entrega de serviços ao usuário.
Podemos processar suas informações para lhe fornecer o serviço solicitado.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal> </p>
<p class=MsoNormal> </p>
<p class=MsoNormal> </p>
<p class=MsoNormal> </p>
<p class=MsoNormal>3. QUANDO E COM QUEM COMPARTILHAMOS SUAS INFORMAÇÕES
PESSOAIS?</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Resumindo: Podemos compartilhar informações em situações
específicas descritas nesta seção e/ou com os seguintes terceiros.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Poderemos precisar compartilhar suas informações pessoais
nas seguintes situações:</p>
<p class=MsoNormal>Transferências Empresariais. Poderemos compartilhar ou
transferir suas informações em conexão com ou durante negociações de qualquer
fusão, venda de ativos da empresa, financiamento ou aquisição de todo ou parte
de nossos negócios para outra empresa.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>4. USAMOS COOKIES E OUTRAS TECNOLOGIAS DE RASTREAMENTO?</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Resumindo: podemos usar cookies e outras tecnologias de
rastreamento para coletar e armazenar suas informações.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Poderemos utilizar cookies e tecnologias de rastreamento
semelhantes (como web beacons e pixels) para acessar ou armazenar informações.
Informações específicas sobre como usamos essas tecnologias e como você pode
recusar determinados cookies estão definidas em nosso Aviso de Cookies.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>5. POR QUANTO TEMPO MANTEMOS SUAS INFORMAÇÕES?</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Resumindo: Mantemos suas informações pelo tempo necessário
para cumprir as finalidades descritas neste aviso de privacidade, a menos que
exigido de outra forma por lei.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Manteremos as suas informações pessoais apenas durante o
tempo necessário para os fins estabelecidos neste aviso de privacidade, a menos
que um período de retenção mais longo seja exigido ou permitido por lei (como
impostos, contabilidade ou outros requisitos legais).</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Quando não tivermos nenhuma necessidade comercial legítima
em andamento de processar suas informações pessoais, excluiremos ou
anonimizaremos essas informações ou, se isso não for possível (por exemplo,
porque suas informações pessoais foram armazenadas em arquivos de backup),
iremos com segurança armazenar suas informações pessoais e isolá-las de
qualquer processamento posterior até que seja possível excluí-las.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>6. COMO MANTEMOS SUAS INFORMAÇÕES SEGURAS?</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Resumindo: Nosso objetivo é proteger suas informações
pessoais por meio de um sistema de medidas de segurança organizacionais e
técnicas.</p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Implementamos medidas de segurança técnicas e
organizacionais adequadas e razoáveis, destinadas a proteger a segurança de
quaisquer informações pessoais que processamos. No entanto, apesar das nossas
salvaguardas e esforços para proteger as suas informações, nenhuma transmissão
eletrónica através da Internet ou tecnologia de armazenamento de informações
pode ser garantida como 100% segura, pelo que não podemos prometer ou garantir
que hackers, cibercriminosos ou outros terceiros não autorizados não serão capaz
de derrotar nossa segurança e coletar, acessar, roubar ou modificar
indevidamente suas informações. Embora façamos o nosso melhor para proteger as
suas informações pessoais, a transmissão de informações pessoais de e para os
nossos Serviços é por sua conta e risco. Você só deve acessar os Serviços em um
ambiente seguro.</p>