-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSCAMCURRICULUM
1052 lines (1008 loc) · 57.5 KB
/
SCAMCURRICULUM
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
OBS: 17 YEARS THIS COMPANY JUST LIE TO PEOPLE. LEGIT SCAM PAY TO WIN.
Delivered-To: [email protected]
Received: by 2002:ad4:5843:0:b0:630:110f:d31c with SMTP id de3csp6286647qvb;
Tue, 27 Jun 2023 16:03:37 -0700 (PDT)
X-Google-Smtp-Source: ACHHUZ6+yA+VYHdZ9E1I75ehCO/KnzqkgiFc/cp5TuX6gdkQDFyT7Cn3qJT0vyxnkXdQDtehTXhu
X-Received: by 2002:a05:6870:d341:b0:1a9:8ec0:c5c3 with SMTP id h1-20020a056870d34100b001a98ec0c5c3mr18588821oag.25.1687907017505;
Tue, 27 Jun 2023 16:03:37 -0700 (PDT)
ARC-Seal: i=1; a=rsa-sha256; t=1687907017; cv=none;
d=google.com; s=arc-20160816;
b=l0zB4+OuCbc3h8G3ByZgXPDVUbijZW9+Q7/KQFx5SSKhFN27WfyLAYqPYJIscazQhC
kFT67etvN8wE/82q+pZj5YfexSCtf4/uz90JtsSWInjVgRJ3N6Z2rJhyO1qqUY2vYBKj
egGSPT0BFSiLr8AYEu995ES4N2EtaIRSrAe1GsTUiRx8Os141O8S5yq9KezyTVXW50S3
U4oX77z5r7JEa7H9ayZVCWxcbUzMq2NQhimDYQKilHjBTmsI9A8VExSHNcLvMC6vdBPp
mVxvs5ZMGd+qtP9CjwQIUIv0Z90VnXaR55kCmehiT7HTlPQdQGipnnnPJTwlMl1IpgpJ
CATQ==
ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816;
h=em-task:em-campaign:precedence:mime-version:importance:date:subject
:reply-to:to:from:message-id:domainkey-signature:dkim-signature;
bh=jLNQ6qTOWKiCJ0h+cku3LsQc8W9rU9hyf7KfPAY1fl0=;
fh=x9Sd09vfe0ltHY5goUmqfW3CInPWawWSEuMYhREYdvI=;
b=BIWB/ywV2kCPYlpap4PeJ85DiaedWr/1tZKSuSyy8BdyJAZyzL1X6sRGbFsGUoMPev
XziCuT71fB8aD3KuOBVMM1zwNrklyTjgJZXMdgDs2vya7v5DpS5chF4gwIljluPvx/ni
yATxVHzmDl4Jx2pLGleBO1d2iFTylUDS1Yt8e2uSjna1R0EUYXzxhv8JFcB68us9pHkD
GRZhL3VchEhy4oSNq1VxXBgmoCnLNRl/Kvq4f5nqNIRIiPplGwY7Sn/SI4ZguQX4Rsgl
f8w0nbIlrVHE6gDqIiIblzim31TIlbBkbPBmfH8Xu6vqx+TT00enkO6HcdgN3n+H5nuf
Xngw==
ARC-Authentication-Results: i=1; mx.google.com;
dkim=pass [email protected] header.s=curriculum header.b=pJUAGrpG;
spf=pass (google.com: domain of [email protected] designates 66.232.27.155 as permitted sender) [email protected];
dmarc=pass (p=REJECT sp=REJECT dis=NONE) header.from=email.candidatos.curriculum.com.br
Return-Path: <[email protected]>
Received: from smtp-mia-155.curriculum.com.br (smtp-mia-155.curriculum.com.br. [66.232.27.155])
by mx.google.com with ESMTP id q9-20020a056870328900b001b040ec8aa8si2341237oac.315.2023.06.27.16.03.37
for <[email protected]>;
Tue, 27 Jun 2023 16:03:37 -0700 (PDT)
Received-SPF: pass (google.com: domain of [email protected] designates 66.232.27.155 as permitted sender) client-ip=66.232.27.155;
Authentication-Results: mx.google.com;
dkim=pass [email protected] header.s=curriculum header.b=pJUAGrpG;
spf=pass (google.com: domain of [email protected] designates 66.232.27.155 as permitted sender) [email protected];
dmarc=pass (p=REJECT sp=REJECT dis=NONE) header.from=email.candidatos.curriculum.com.br
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=curriculum; d=curriculum.com.br; h=Message-ID:From:To:Reply-To:Subject:Date:MIME-Version:Content-Type; [email protected]; bh=tLJMXQpSfaiaOwtAwC+vG6yKCL8=; b=pJUAGrpGq+/3VrdZly6eO8kQD7xlVajS6EqpaU9Jy0H5OsXdXKBx8Dg0+f0USQ9bWHxJ2pgrnkuy
W62fx/Frh3617gV5pGFCboyKBriVHvg5kO74Oh+3V8EdMhE3eIjJ6RbdA/DSdsIhvEJf6mkuPvhu
lMQ1ZV4F2WR6xamDSMI=
DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=curriculum; d=curriculum.com.br; b=J5PdAy2tnJCbOlLUJE3MtycM7KKsFwStJrZvCagy7QdMCX0gZmvRB3jaSPlFndI3YAHMw5TJbdd/
8obcuIcRpI4vw6zjHwuMOvt+Uas1/lBQJFE8gd2PbQIOrO0V5WyPwj2GA7PFijMldE/6scLYRZBF
aikZCCJ0GXScrc8yc/k=;
Received: from SND02 (66.232.27.242) by smtp-mia-155.curriculum.com.br id hjdo1q1mtro5 for <[email protected]>; Tue, 27 Jun 2023 13:24:29 -0300 (envelope-from <[email protected]>)
Message-ID: <[email protected]>
From: Curriculum <[email protected]>
To: <[email protected]>
Reply-To: Curriculum <[email protected]>
Return-Path: <[email protected]>
Subject: Grandes empresas estão contratando
Date: Tue, 27 Jun 2023 13:02:32 -0300
Importance: Normal
MIME-Version: 1.0
Content-Type: multipart/alternative; boundary="----=_NextPart_526_6160_43173050.78979035"
Precedence: Bulk
X-campaignid: 20220629-CAN-ATV
X-mailer: CurricMailerV1.0
X-report-abuse: [email protected]
EM-Campaign: {5336A896-6D30-4196-90D5-D7B782B3D714}
EM-Task: 10
------=_NextPart_526_6160_43173050.78979035
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: quoted-printable
+400 vagas
A Michael Page =C3=A9 um dos maiores players mundiais em recrutamento espec=
ializado
Vagas para mais de 5 cargos
A Oggi Sorvetes se tornou a primeira rede de franquias no formato lojas de =
f=C3=A1brica
=E2=80=8A
Vagas para mais de 12 cargos
Uma das maiores fabricantes de artigos de cama, mesa e banho da Am=C3=A9ric=
a Latina
+60 vagas
H=C3=A1 mais de 20 anos contribuem com o desenvolvimento tecnol=C3=B3gico d=
o Brasil
=E2=80=8A
Est=C3=A1 participando de entrevistas de emprego mas n=C3=A3o est=C3=A1 se =
saindo bem nelas?
J=C3=A1 se perguntou porque alguns demoram tanto para arrumar um novo empre=
go enquanto outros encontram rapidamente?
=C3=89 poss=C3=ADvel mudar essa realidade e encontrar uma solu=C3=A7=C3=A3o=
para isso!
Participe do Programa Curriculum Emprega, conquiste seu novo emprego e s=C3=
=B3 pague quando for contratado!
QUERO PARTICIPAR
=E2=80=8A
Email enviado pela Curriculum.com.br. Para n=C3=A3o receber mais, desinscre=
va-se
------=_NextPart_526_6160_43173050.78979035
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE html>
<html lang=3D"en" xmlns:o=3D"urn:schemas-microsoft-com:office:office" xmlns=
:v=3D"urn:schemas-microsoft-com:vml">
<head>
<title>Grandes empresas est=C3=A3o contratando</title>
<meta content=3D"text/html; charset=3Dutf-8" http-equiv=3D"Content-Type"/>
<meta content=3D"width=3Ddevice-width, initial-scale=3D1.0" name=3D"viewpor=
t"/>
<style>
=09=09* {
=09=09=09box-sizing: border-box;
=09=09}
=09=09body {
=09=09=09margin: 0;
=09=09=09padding: 0;
=09=09}
=09=09a[x-apple-data-detectors] {
=09=09=09color: inherit !important;
=09=09=09text-decoration: inherit !important;
=09=09}
=09=09#MessageViewBody a {
=09=09=09color: inherit;
=09=09=09text-decoration: none;
=09=09}
=09=09p {
=09=09=09line-height: inherit
=09=09}
=09=09.desktop_hide,
=09=09.desktop_hide table {
=09=09=09mso-hide: all;
=09=09=09display: none;
=09=09=09max-height: 0px;
=09=09=09overflow: hidden;
=09=09}
=09=09.image_block img+div {
=09=09=09display: none;
=09=09}
=09=09@media (max-width:660px) {
=09=09=09.image_block img.big,
=09=09=09.row-content {
=09=09=09=09width: 100% !important;
=09=09=09}
=09=09=09.mobile_hide {
=09=09=09=09display: none;
=09=09=09}
=09=09=09.stack .column {
=09=09=09=09width: 100%;
=09=09=09=09display: block;
=09=09=09}
=09=09=09.mobile_hide {
=09=09=09=09min-height: 0;
=09=09=09=09max-height: 0;
=09=09=09=09max-width: 0;
=09=09=09=09overflow: hidden;
=09=09=09=09font-size: 0px;
=09=09=09}
=09=09=09.desktop_hide,
=09=09=09.desktop_hide table {
=09=09=09=09display: table !important;
=09=09=09=09max-height: none !important;
=09=09=09}
=09=09}
=09</style>
</head>
<body style=3D"background-color: #FFFFFF; margin: 0; padding: 0; -webkit-te=
xt-size-adjust: none; text-size-adjust: none;">
<table border=3D"0" cellpadding=3D"0" cellspacing=3D"0" class=3D"nl-con=
tainer" role=3D"presentation" style=3D"mso-table-lspace: 0pt; mso-table-rsp=
ace: 0pt; background-color: #FFFFFF;" width=3D"100%">
=20
<tr>
<td>
<table align=3D"center" border=3D"0" cellpadding=3D"0" =
cellspacing=3D"0" class=3D"row row-1" role=3D"presentation" style=3D"mso-ta=
ble-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"100%">
=20
<tr>
<td>
<table align=3D"center" border=3D"0" ce=
llpadding=3D"0" cellspacing=3D"0" class=3D"row-content stack" role=3D"prese=
ntation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #000=
000; width: 640px;" width=3D"640">
=20
<tr>
<td class=3D"column column-=
1" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400;=
text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: t=
op; border-top: 0px; border-right: 0px; border-bottom: 0px; border-left: 0p=
x;" width=3D"100%">
<table border=3D"0" cel=
lpadding=3D"0" cellspacing=3D"0" class=3D"image_block block-1" role=3D"pres=
entation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"=
100%">
<tr>
<td class=3D"pa=
d" style=3D"padding-top:5px;width:100%;padding-right:0px;padding-left:0px;"=
>
<div align=
=3D"center" class=3D"alignment" style=3D"line-height:10px"><a href=3D"https=
://www.curriculum.com.br/il/click.asp?esp=3D4575&curric_cod=3D6456466&conca=
tena=3D/premium/&tipo_pedido_origem_cod=3D2595&utm_source=3Dcurriculum&utm_=
medium=3Demail&utm_term=3Datv-can-ema-ema-0002&utm_campaign=3Dvagas-top" st=
yle=3D"outline:none" tabindex=3D"-1" target=3D"_blank"><img src=3D"https://=
www.curriculum.com.br/images/emails/ATV-CAN-EMA-EMA-0002/images/logo.png" s=
tyle=3D"display: block; height: auto; border: 0; width: 128px; max-width: 1=
00%;" width=3D"128" /></a></div>
</td>
</tr>
</table>
</td>
</tr>
=20
</table>
</td>
</tr>
=20
</table>
<table align=3D"center" border=3D"0" cellpadding=3D"0" =
cellspacing=3D"0" class=3D"row row-2" role=3D"presentation" style=3D"mso-ta=
ble-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"100%">
=20
<tr>
<td>
<table align=3D"center" border=3D"0" ce=
llpadding=3D"0" cellspacing=3D"0" class=3D"row-content stack" role=3D"prese=
ntation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #000=
000; width: 640px;" width=3D"640">
=20
<tr>
<td class=3D"column column-=
1" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400;=
text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: t=
op; border-top: 0px; border-right: 0px; border-bottom: 0px; border-left: 0p=
x;" width=3D"100%">
<table border=3D"0" cel=
lpadding=3D"0" cellspacing=3D"0" class=3D"image_block block-1" role=3D"pres=
entation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"=
100%">
<tr>
<td class=3D"pa=
d" style=3D"width:100%;padding-right:0px;padding-left:0px;">
<div align=
=3D"center" class=3D"alignment" style=3D"line-height:10px"><a href=3D"https=
://www.curriculum.com.br/il/click.asp?esp=3D4575&curric_cod=3D6456466&conca=
tena=3D/vagas-emprego-empresas.asp&tipo_pedido_origem_cod=3D2595&utm_source=
=3Dcurriculum&utm_medium=3Demail&utm_term=3Datv-can-ema-ema-0002&utm_campai=
gn=3Dvagas-top" style=3D"outline:none" tabindex=3D"-1" target=3D"_blank"><i=
mg class=3D"big" src=3D"https://www.curriculum.com.br/images/emails/ATV-CAN=
-EMA-EMA-0002/images/ce_6_1.jpg" style=3D"display: block; height: auto; bor=
der: 0; width: 640px; max-width: 100%;" width=3D"640" /></a></div>
</td>
</tr>
</table>
</td>
</tr>
=20
</table>
</td>
</tr>
=20
</table>
<table align=3D"center" border=3D"0" cellpadding=3D"0" =
cellspacing=3D"0" class=3D"row row-3" role=3D"presentation" style=3D"mso-ta=
ble-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"100%">
=20
<tr>
<td>
<table align=3D"center" border=3D"0" ce=
llpadding=3D"0" cellspacing=3D"0" class=3D"row-content stack" role=3D"prese=
ntation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #000=
000; width: 640px;" width=3D"640">
=20
<tr>
<td class=3D"column column-=
1" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400;=
text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: m=
iddle; border-top: 0px; border-right: 0px; border-bottom: 0px; border-left:=
0px;" width=3D"50%">
<table border=3D"0" cel=
lpadding=3D"0" cellspacing=3D"0" class=3D"image_block block-1" role=3D"pres=
entation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"=
100%">
<tr>
<td class=3D"pa=
d" style=3D"padding-bottom:10px;padding-left:15px;padding-right:15px;width:=
100%;">
<div align=
=3D"center" class=3D"alignment" style=3D"line-height:10px"><a href=3D"https=
://www.curriculum.com.br/il/click.asp?esp=3D4575&curric_cod=3D6456466&conca=
tena=3D/candidatos/vagas-emprego/michael-page/&tipo_pedido_origem_cod=3D259=
5&utm_source=3Dcurriculum&utm_medium=3Demail&utm_term=3Datv-can-ema-ema-000=
2&utm_campaign=3Dvagas-top" style=3D"outline:none" tabindex=3D"-1" target=
=3D"_blank"><img alt=3D"Michael Page" src=3D"https://www.curriculum.com.br/=
images/emails/ATV-CAN-EMA-EMA-0002/images/michael_page.png" style=3D"displa=
y: block; height: auto; border: 0; width: 144px; max-width: 100%;" title=3D=
"Michael Page" width=3D"144" /></a></div>
</td>
</tr>
</table>
<table border=3D"0" cel=
lpadding=3D"0" cellspacing=3D"0" class=3D"text_block block-2" role=3D"prese=
ntation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break:=
break-word;" width=3D"100%">
<tr>
<td class=3D"pa=
d" style=3D"padding-bottom:5px;padding-left:10px;padding-right:10px;padding=
-top:5px;">
<div style=
=3D"font-family: Arial, sans-serif">
<div cl=
ass=3D"" style=3D"font-size: 12px; font-family: 'Open Sans', 'Helvetica Neu=
e', Helvetica, Arial, sans-serif; mso-line-height-alt: 14.399999999999999px=
; color: #555555; line-height: 1.2;">
<p =
style=3D"margin: 0; font-size: 16px; text-align: center; mso-line-height-al=
t: 19.2px;"><span style=3D"font-size:18px;"><strong>+400 vagas</strong></sp=
an></p>
</div>
</div>
</td>
</tr>
</table>
<table border=3D"0" cel=
lpadding=3D"10" cellspacing=3D"0" class=3D"text_block block-3" role=3D"pres=
entation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break=
: break-word;" width=3D"100%">
<tr>
<td class=3D"pa=
d">
<div style=
=3D"font-family: sans-serif">
<div cl=
ass=3D"" style=3D"font-size: 12px; font-family: Lato, Tahoma, Verdana, Sego=
e, sans-serif; mso-line-height-alt: 14.399999999999999px; color: #555555; l=
ine-height: 1.2;">
<p =
style=3D"margin: 0; font-size: 14px; text-align: center; mso-line-height-al=
t: 16.8px;">A Michael Page =C3=A9 um dos maiores players mundiais em recrut=
amento especializado</p>
</div>
</div>
</td>
</tr>
</table>
</td>
<td class=3D"column column-=
2" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400;=
text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: m=
iddle; border-top: 0px; border-right: 0px; border-bottom: 0px; border-left:=
0px;" width=3D"50%">
<table border=3D"0" cel=
lpadding=3D"0" cellspacing=3D"0" class=3D"image_block block-1" role=3D"pres=
entation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"=
100%">
<tr>
<td class=3D"pa=
d" style=3D"padding-bottom:10px;padding-left:20px;padding-right:20px;paddin=
g-top:10px;width:100%;">
<div align=
=3D"center" class=3D"alignment" style=3D"line-height:10px"><a href=3D"https=
://www.curriculum.com.br/il/click.asp?esp=3D4575&curric_cod=3D6456466&conca=
tena=3D/candidatos/vagas-emprego/Oggi/&tipo_pedido_origem_cod=3D2595&utm_so=
urce=3Dcurriculum&utm_medium=3Demail&utm_term=3Datv-can-ema-ema-0002&utm_ca=
mpaign=3Dvagas-top" style=3D"outline:none" tabindex=3D"-1" target=3D"_blank=
"><img alt=3D"Oggi" src=3D"https://www.curriculum.com.br/images/emails/ATV-=
CAN-EMA-EMA-0002/images/df82d0ea71135843c3a33bd5e1d7c881_1.png" style=3D"di=
splay: block; height: auto; border: 0; width: 176px; max-width: 100%;" titl=
e=3D"Oggi" width=3D"176" /></a></div>
</td>
</tr>
</table>
<table border=3D"0" cel=
lpadding=3D"0" cellspacing=3D"0" class=3D"text_block block-2" role=3D"prese=
ntation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break:=
break-word;" width=3D"100%">
<tr>
<td class=3D"pa=
d" style=3D"padding-bottom:5px;padding-left:10px;padding-right:10px;padding=
-top:10px;">
<div style=
=3D"font-family: Arial, sans-serif">
<div cl=
ass=3D"" style=3D"font-size: 12px; font-family: 'Open Sans', 'Helvetica Neu=
e', Helvetica, Arial, sans-serif; mso-line-height-alt: 14.399999999999999px=
; color: #555555; line-height: 1.2;">
<p =
style=3D"margin: 0; font-size: 16px; text-align: center; mso-line-height-al=
t: 19.2px;"><span style=3D"font-size:18px;"><strong>Vagas para mais de 5 ca=
rgos</strong></span></p>
</div>
</div>
</td>
</tr>
</table>
<table border=3D"0" cel=
lpadding=3D"0" cellspacing=3D"0" class=3D"text_block block-3" role=3D"prese=
ntation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break:=
break-word;" width=3D"100%">
<tr>
<td class=3D"pa=
d" style=3D"padding-bottom:10px;padding-left:10px;padding-right:10px;paddin=
g-top:15px;">
<div style=
=3D"font-family: sans-serif">
<div cl=
ass=3D"" style=3D"font-size: 12px; font-family: Lato, Tahoma, Verdana, Sego=
e, sans-serif; mso-line-height-alt: 14.399999999999999px; color: #555555; l=
ine-height: 1.2;">
<p =
style=3D"margin: 0; font-size: 14px; text-align: center; mso-line-height-al=
t: 16.8px;">A Oggi Sorvetes se tornou a primeira rede de franquia=
s no formato lojas de f=C3=A1brica</p>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
=20
</table>
</td>
</tr>
=20
</table>
<table align=3D"center" border=3D"0" cellpadding=3D"0" =
cellspacing=3D"0" class=3D"row row-4" role=3D"presentation" style=3D"mso-ta=
ble-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"100%">
=20
<tr>
<td>
<table align=3D"center" border=3D"0" ce=
llpadding=3D"0" cellspacing=3D"0" class=3D"row-content stack" role=3D"prese=
ntation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #000=
000; width: 640px;" width=3D"640">
=20
<tr>
<td class=3D"column column-=
1" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400;=
text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: t=
op; border-top: 0px; border-right: 0px; border-bottom: 0px; border-left: 0p=
x;" width=3D"100%">
<table border=3D"0" cel=
lpadding=3D"5" cellspacing=3D"0" class=3D"divider_block block-1" role=3D"pr=
esentation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width=
=3D"100%">
<tr>
<td class=3D"pa=
d">
<div align=
=3D"center" class=3D"alignment">
<table =
border=3D"0" cellpadding=3D"0" cellspacing=3D"0" role=3D"presentation" styl=
e=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"100%">
<tr=
>
=
<td class=3D"divider_inner" style=3D"font-size: 1px; line-height: 1px; bor=
der-top: 1px solid #D2D2D2;"><span>=E2=80=8A</span></td>
</t=
r>
</table=
>
</div>
</td>
</tr>
</table>
</td>
</tr>
=20
</table>
</td>
</tr>
=20
</table>
<table align=3D"center" border=3D"0" cellpadding=3D"0" =
cellspacing=3D"0" class=3D"row row-5" role=3D"presentation" style=3D"mso-ta=
ble-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"100%">
=20
<tr>
<td>
<table align=3D"center" border=3D"0" ce=
llpadding=3D"0" cellspacing=3D"0" class=3D"row-content stack" role=3D"prese=
ntation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #000=
000; width: 640px;" width=3D"640">
=20
<tr>
<td class=3D"column column-=
1" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400;=
text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: m=
iddle; border-top: 0px; border-right: 0px; border-bottom: 0px; border-left:=
0px;" width=3D"50%">
<table border=3D"0" cel=
lpadding=3D"0" cellspacing=3D"0" class=3D"image_block block-1" role=3D"pres=
entation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"=
100%">
<tr>
<td class=3D"pa=
d" style=3D"padding-bottom:20px;padding-left:25px;padding-right:25px;paddin=
g-top:10px;width:100%;">
<div align=
=3D"center" class=3D"alignment" style=3D"line-height:10px"><a href=3D"https=
://www.curriculum.com.br/il/click.asp?esp=3D4575&curric_cod=3D6456466&conca=
tena=3D/candidatos/vagas-emprego/teka/&tipo_pedido_origem_cod=3D2595&utm_so=
urce=3Dcurriculum&utm_medium=3Demail&utm_term=3Datv-can-ema-ema-0002&utm_ca=
mpaign=3Dvagas-top" style=3D"outline:none" tabindex=3D"-1" target=3D"_blank=
"><img alt=3D"Teka" src=3D"https://www.curriculum.com.br/images/emails/ATV-=
CAN-EMA-EMA-0002/images/logo-teka.png" style=3D"display: block; height: aut=
o; border: 0; width: 176px; max-width: 100%;" title=3D"Teka" width=3D"176" =
/></a></div>
</td>
</tr>
</table>
<table border=3D"0" cel=
lpadding=3D"10" cellspacing=3D"0" class=3D"text_block block-2" role=3D"pres=
entation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break=
: break-word;" width=3D"100%">
<tr>
<td class=3D"pa=
d">
<div style=
=3D"font-family: Arial, sans-serif">
<div cl=
ass=3D"" style=3D"font-size: 12px; font-family: 'Open Sans', 'Helvetica Neu=
e', Helvetica, Arial, sans-serif; mso-line-height-alt: 14.399999999999999px=
; color: #555555; line-height: 1.2;">
<p =
style=3D"margin: 0; font-size: 16px; text-align: center; mso-line-height-al=
t: 19.2px;"><span style=3D"font-size:18px;"><strong>Vagas para mais de 12 c=
argos</strong></span></p>
</div>
</div>
</td>
</tr>
</table>
<table border=3D"0" cel=
lpadding=3D"0" cellspacing=3D"0" class=3D"text_block block-3" role=3D"prese=
ntation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break:=
break-word;" width=3D"100%">
<tr>
<td class=3D"pa=
d" style=3D"padding-bottom:5px;padding-left:10px;padding-right:10px;padding=
-top:10px;">
<div style=
=3D"font-family: sans-serif">
<div cl=
ass=3D"" style=3D"font-size: 12px; font-family: Lato, Tahoma, Verdana, Sego=
e, sans-serif; mso-line-height-alt: 14.399999999999999px; color: #555555; l=
ine-height: 1.2;">
<p =
style=3D"margin: 0; font-size: 14px; text-align: center; mso-line-height-al=
t: 16.8px;">Uma das maiores fabricantes de artigos de cama, mesa e banho da=
Am=C3=A9rica Latina</p>
</div>
</div>
</td>
</tr>
</table>
</td>
<td class=3D"column column-=
2" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400;=
text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: m=
iddle; border-top: 0px; border-right: 0px; border-bottom: 0px; border-left:=
0px;" width=3D"50%">
<table border=3D"0" cel=
lpadding=3D"0" cellspacing=3D"0" class=3D"image_block block-1" role=3D"pres=
entation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"=
100%">
<tr>
<td class=3D"pa=
d" style=3D"padding-bottom:20px;padding-left:20px;padding-right:20px;paddin=
g-top:15px;width:100%;">
<div align=
=3D"center" class=3D"alignment" style=3D"line-height:10px"><a href=3D"https=
://www.curriculum.com.br/il/click.asp?esp=3D4575&curric_cod=3D6456466&conca=
tena=3D/candidatos/vagas-emprego/empresa-INSTITUTO-DE-PESQUISAS-ELDORADO/&t=
ipo_pedido_origem_cod=3D2595&utm_source=3Dcurriculum&utm_medium=3Demail&utm=
_term=3Datv-can-ema-ema-0002&utm_campaign=3Dvagas-top" style=3D"outline:non=
e" tabindex=3D"-1" target=3D"_blank"><img alt=3D"Eldorado" src=3D"https://w=
ww.curriculum.com.br/images/emails/ATV-CAN-EMA-EMA-0002/images/logo-eldorad=
o.png" style=3D"display: block; height: auto; border: 0; width: 192px; max-=
width: 100%;" title=3D"Eldorado" width=3D"192" /></a></div>
</td>
</tr>
</table>
<table border=3D"0" cel=
lpadding=3D"0" cellspacing=3D"0" class=3D"text_block block-2" role=3D"prese=
ntation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break:=
break-word;" width=3D"100%">
<tr>
<td class=3D"pa=
d" style=3D"padding-bottom:10px;padding-left:10px;padding-right:10px;paddin=
g-top:5px;">
<div style=
=3D"font-family: Arial, sans-serif">
<div cl=
ass=3D"" style=3D"font-size: 12px; font-family: 'Open Sans', 'Helvetica Neu=
e', Helvetica, Arial, sans-serif; mso-line-height-alt: 14.399999999999999px=
; color: #555555; line-height: 1.2;">
<p =
style=3D"margin: 0; font-size: 16px; text-align: center; mso-line-height-al=
t: 19.2px;"><span style=3D"font-size:18px;"><strong>+60 vagas</strong></spa=
n></p>
</div>
</div>
</td>
</tr>
</table>
<table border=3D"0" cel=
lpadding=3D"0" cellspacing=3D"0" class=3D"text_block block-3" role=3D"prese=
ntation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break:=
break-word;" width=3D"100%">
<tr>
<td class=3D"pa=
d" style=3D"padding-bottom:5px;padding-left:10px;padding-right:10px;padding=
-top:10px;">
<div style=
=3D"font-family: sans-serif">
<div cl=
ass=3D"" style=3D"font-size: 12px; font-family: Lato, Tahoma, Verdana, Sego=
e, sans-serif; mso-line-height-alt: 14.399999999999999px; color: #555555; l=
ine-height: 1.2;">
<p =
style=3D"margin: 0; font-size: 14px; text-align: center; mso-line-height-al=
t: 16.8px;">H=C3=A1 mais de 20 anos contribuem com o desenvolvimento tecnol=
=C3=B3gico do Brasil</p>
</div>
</div>
</td>
</tr>
</table>
</td>
</tr>
=20
</table>
</td>
</tr>
=20
</table>
<table align=3D"center" border=3D"0" cellpadding=3D"0" =
cellspacing=3D"0" class=3D"row row-6" role=3D"presentation" style=3D"mso-ta=
ble-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"100%">
=20
<tr>
<td>
<table align=3D"center" border=3D"0" ce=
llpadding=3D"0" cellspacing=3D"0" class=3D"row-content stack" role=3D"prese=
ntation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #000=
000; width: 640px;" width=3D"640">
=20
<tr>
<td class=3D"column column-=
1" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400;=
text-align: left; padding-top: 5px; vertical-align: top; border-top: 0px; =
border-right: 0px; border-bottom: 0px; border-left: 0px;" width=3D"100%">
<table border=3D"0" cel=
lpadding=3D"0" cellspacing=3D"0" class=3D"divider_block block-1" role=3D"pr=
esentation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width=
=3D"100%">
<tr>
<td class=3D"pa=
d" style=3D"padding-bottom:15px;padding-left:10px;padding-right:10px;paddin=
g-top:10px;">
<div align=
=3D"center" class=3D"alignment">
<table =
border=3D"0" cellpadding=3D"0" cellspacing=3D"0" role=3D"presentation" styl=
e=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"100%">
<tr=
>
=
<td class=3D"divider_inner" style=3D"font-size: 1px; line-height: 1px; bor=
der-top: 1px solid #D2D2D2;"><span>=E2=80=8A</span></td>
</t=
r>
</table=
>
</div>
</td>
</tr>
</table>
</td>
</tr>
=20
</table>
</td>
</tr>
=20
</table>
<table align=3D"center" border=3D"0" cellpadding=3D"0" =
cellspacing=3D"0" class=3D"row row-7" role=3D"presentation" style=3D"mso-ta=
ble-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"100%">
=20
<tr>
<td>
<table align=3D"center" border=3D"0" ce=
llpadding=3D"0" cellspacing=3D"0" class=3D"row-content stack" role=3D"prese=
ntation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #000=
000; width: 640px;" width=3D"640">
=20
<tr>
<td class=3D"column column-=
1" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400;=
text-align: left; vertical-align: middle; border-top: 0px; border-right: 0=
px; border-bottom: 0px; border-left: 0px;" width=3D"25%">
<table border=3D"0" cel=
lpadding=3D"0" cellspacing=3D"0" class=3D"image_block block-1" role=3D"pres=
entation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"=
100%">
<tr>
<td class=3D"pa=
d" style=3D"padding-bottom:10px;width:100%;padding-right:0px;padding-left:0=
px;">
<div align=
=3D"center" class=3D"alignment" style=3D"line-height:10px"><a href=3D"https=
://www.curriculum.com.br/il/click.asp?esp=3D4575&curric_cod=3D6456466&conca=
tena=3D/candidatos/vagas-emprego/locaweb/&tipo_pedido_origem_cod=3D2595&utm=
_source=3Dcurriculum&utm_medium=3Demail&utm_term=3Datv-can-ema-ema-0002&utm=
_campaign=3Dvagas-top" style=3D"outline:none" tabindex=3D"-1" target=3D"_bl=
ank"><img alt=3D"Locaweb" src=3D"https://www.curriculum.com.br/images/email=
s/ATV-CAN-EMA-EMA-0002/images/logo-locaweb_1.png" style=3D"display: block; =
height: auto; border: 0; width: 128px; max-width: 100%;" title=3D"Locaweb" =
width=3D"128" /></a></div>
</td>
</tr>
</table>
</td>
<td class=3D"column column-=
2" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400;=
text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: m=
iddle; border-top: 0px; border-right: 0px; border-bottom: 0px; border-left:=
0px;" width=3D"25%">
<table border=3D"0" cel=
lpadding=3D"0" cellspacing=3D"0" class=3D"image_block block-1" role=3D"pres=
entation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"=
100%">
<tr>
<td class=3D"pa=
d" style=3D"padding-bottom:10px;padding-top:10px;width:100%;padding-right:0=
px;padding-left:0px;">
<div align=
=3D"center" class=3D"alignment" style=3D"line-height:10px"><a href=3D"https=
://www.curriculum.com.br/il/click.asp?esp=3D4575&curric_cod=3D6456466&conca=
tena=3D/candidatos/vagas-emprego/fundacao-pro-rim/&tipo_pedido_origem_cod=
=3D2595&utm_source=3Dcurriculum&utm_medium=3Demail&utm_term=3Datv-can-ema-e=
ma-0002&utm_campaign=3Dvagas-top" style=3D"outline:none" tabindex=3D"-1" ta=
rget=3D"_blank"><img alt=3D"Pro Rim" src=3D"https://www.curriculum.com.br/i=
mages/emails/ATV-CAN-EMA-EMA-0002/images/logo-pro-rim.png" style=3D"display=
: block; height: auto; border: 0; width: 96px; max-width: 100%;" title=3D"P=
ro Rim" width=3D"96" /></a></div>
</td>
</tr>
</table>
</td>
<td class=3D"column column-=
3" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400;=
text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: m=
iddle; border-top: 0px; border-right: 0px; border-bottom: 0px; border-left:=
0px;" width=3D"25%">
<table border=3D"0" cel=
lpadding=3D"0" cellspacing=3D"0" class=3D"image_block block-1" role=3D"pres=
entation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"=
100%">
<tr>
<td class=3D"pa=
d" style=3D"padding-bottom:10px;padding-top:10px;width:100%;padding-right:0=
px;padding-left:0px;">
<div align=
=3D"center" class=3D"alignment" style=3D"line-height:10px"><a href=3D"https=
://www.curriculum.com.br/il/click.asp?esp=3D4575&curric_cod=3D6456466&conca=
tena=3D/candidatos/vagas-emprego/sicoob/&tipo_pedido_origem_cod=3D2595&utm_=
source=3Dcurriculum&utm_medium=3Demail&utm_term=3Datv-can-ema-ema-0002&utm_=
campaign=3Dvagas-top" style=3D"outline:none" tabindex=3D"-1" target=3D"_bla=
nk"><img alt=3D"Sicoob" src=3D"https://www.curriculum.com.br/images/emails/=
ATV-CAN-EMA-EMA-0002/images/logo-sicoob.png" style=3D"display: block; heigh=
t: auto; border: 0; width: 136px; max-width: 100%;" title=3D"Sicoob" width=
=3D"136" /></a></div>
</td>
</tr>
</table>
</td>
<td class=3D"column column-=
4" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400;=
text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: m=
iddle; border-top: 0px; border-right: 0px; border-bottom: 0px; border-left:=
0px;" width=3D"25%">
<table border=3D"0" cel=
lpadding=3D"0" cellspacing=3D"0" class=3D"image_block block-1" role=3D"pres=
entation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"=
100%">
<tr>
<td class=3D"pa=
d" style=3D"padding-bottom:20px;padding-top:10px;width:100%;padding-right:0=
px;padding-left:0px;">
<div align=
=3D"center" class=3D"alignment" style=3D"line-height:10px"><a href=3D"https=
://www.curriculum.com.br/il/click.asp?esp=3D4575&curric_cod=3D6456466&conca=
tena=3D/candidatos/vagas-emprego/empresa-polishop/&tipo_pedido_origem_cod=
=3D2595&utm_source=3Dcurriculum&utm_medium=3Demail&utm_term=3Datv-can-ema-e=
ma-0002&utm_campaign=3Dvagas-top" style=3D"outline:none" tabindex=3D"-1" ta=
rget=3D"_blank"><img alt=3D"Polishop" src=3D"https://www.curriculum.com.br/=
images/emails/ATV-CAN-EMA-EMA-0002/images/logo-polishop.png" style=3D"displ=
ay: block; height: auto; border: 0; width: 120px; max-width: 100%;" title=
=3D"Polishop" width=3D"120" /></a></div>
</td>
</tr>
</table>
</td>
</tr>
=20
</table>
</td>
</tr>
=20
</table>
<table align=3D"center" border=3D"0" cellpadding=3D"0" =
cellspacing=3D"0" class=3D"row row-8" role=3D"presentation" style=3D"mso-ta=
ble-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"100%">
=20
<tr>
<td>
<table align=3D"center" border=3D"0" ce=
llpadding=3D"0" cellspacing=3D"0" class=3D"row-content stack" role=3D"prese=
ntation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; color: #000=
000; width: 640px;" width=3D"640">
=20
<tr>
<td class=3D"column column-=
1" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400;=
text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: t=
op; border-top: 0px; border-right: 0px; border-bottom: 0px; border-left: 0p=
x;" width=3D"100%">
<table border=3D"0" cel=
lpadding=3D"0" cellspacing=3D"0" class=3D"image_block block-1" role=3D"pres=
entation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width=3D"=
100%">
<tr>
<td class=3D"pa=
d" style=3D"width:100%;padding-right:0px;padding-left:0px;">
<div align=
=3D"center" class=3D"alignment" style=3D"line-height:10px"><a href=3D"https=
://www.curriculum.com.br/il/click.asp?esp=3D4575&curric_cod=3D6456466&conca=
tena=3D/premium/curriculum-emprega/&tipo_pedido_origem_cod=3D2595&utm_sourc=
e=3Dcurriculum&utm_medium=3Demail&utm_term=3Datv-can-ema-ema-0002&utm_campa=
ign=3Dvagas-top" style=3D"outline:none" tabindex=3D"-1" target=3D"_blank"><=
img class=3D"big" src=3D"https://www.curriculum.com.br/images/emails/ATV-CA=
N-EMA-EMA-0002/images/ce_3_1.jpg" style=3D"display: block; height: auto; bo=
rder: 0; width: 640px; max-width: 100%;" width=3D"640" /></a></div>
</td>
</tr>
</table>
</td>
</tr>
=20
</table>
</td>
</tr>
=20
</table>
<table align=3D"center" border=3D"0" cellpadding=3D"0" =
cellspacing=3D"0" class=3D"row row-9" role=3D"presentation" style=3D"mso-ta=
ble-lspace: 0pt; mso-table-rspace: 0pt; background-size: auto;" width=3D"10=
0%">
=20
<tr>
<td>
<table align=3D"center" border=3D"0" ce=
llpadding=3D"0" cellspacing=3D"0" class=3D"row-content stack" role=3D"prese=
ntation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-=
size: auto; color: #000000; width: 640px;" width=3D"640">
=20
<tr>
<td class=3D"column column-=
1" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-weight: 400;=
text-align: left; padding-bottom: 5px; padding-top: 5px; vertical-align: t=
op; border-top: 0px; border-right: 0px; border-bottom: 0px; border-left: 0p=
x;" width=3D"100%">
<table border=3D"0" cel=
lpadding=3D"0" cellspacing=3D"0" class=3D"paragraph_block block-1" role=3D"=
presentation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-b=
reak: break-word;" width=3D"100%">
<tr>
<td class=3D"pa=
d" style=3D"padding-bottom:15px;padding-left:10px;padding-right:10px;paddin=
g-top:10px;">
<div style=
=3D"color:#101112;direction:ltr;font-family:'Open Sans', 'Helvetica Neue', =
Helvetica, Arial, sans-serif;font-size:15px;font-weight:400;letter-spacing:=
0px;line-height:120%;text-align:left;mso-line-height-alt:18px;">
<p styl=
e=3D"margin: 0; margin-bottom: 16px;">Est=C3=A1 participando de entrevistas=
de emprego mas n=C3=A3o est=C3=A1 se saindo bem nelas?</p>
<p styl=
e=3D"margin: 0; margin-bottom: 16px;">J=C3=A1 se perguntou porque alguns de=
moram tanto para arrumar um novo emprego enquanto outros encontram rapidame=
nte?</p>
<p styl=
e=3D"margin: 0; margin-bottom: 16px;"><strong>=C3=89 poss=C3=ADvel mudar es=
sa realidade e encontrar uma solu=C3=A7=C3=A3o para isso!</strong></p>
<p styl=
e=3D"margin: 0;">Participe do Programa Curriculum Emprega, conquiste seu no=
vo emprego <b>e s=C3=B3 pague quando for contratado!</b></p>
</div>
</td>
</tr>
</table>
<table border=3D"0" cel=
lpadding=3D"10" cellspacing=3D"0" class=3D"button_block block-2" role=3D"pr=
esentation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width=
=3D"100%">
<tr>
<td class=3D"pa=
d">
<div align=
=3D"center" class=3D"alignment"><!--[if mso]><v:roundrect xmlns:v=3D"urn:sc=
hemas-microsoft-com:vml" xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
href=3D"https://www.curriculum.com.br/il/click.asp?esp=3D4575&curric_cod=3D=
6456466&concatena=3D/premium/curriculum-emprega/&tipo_pedido_origem_cod=3D2=
595&utm_source=3Dcurriculum&utm_medium=3Demail&utm_term=3Datv-can-ema-ema-0=
002&utm_campaign=3Dvagas-top" style=3D"height:42px;width:189px;v-text-ancho=
r:middle;" arcsize=3D"10%" stroke=3D"false" fillcolor=3D"#143964"><w:anchor=
lock/><v:textbox inset=3D"0px,0px,0px,0px"><center style=3D"color:#ffffff; =
font-family:Tahoma, Verdana, sans-serif; font-size:16px"><![endif]--><a hre=
f=3D"https://www.curriculum.com.br/il/click.asp?esp=3D4575&curric_cod=3D645=
6466&concatena=3D/premium/curriculum-emprega/&tipo_pedido_origem_cod=3D2595=
&utm_source=3Dcurriculum&utm_medium=3Demail&utm_term=3Datv-can-ema-ema-0002=
&utm_campaign=3Dvagas-top" style=3D"text-decoration:none;display:inline-blo=
ck;color:#ffffff;background-color:#143964;border-radius:4px;width:auto;bord=
er-top:0px solid transparent;font-weight:undefined;border-right:0px solid t=
ransparent;border-bottom:0px solid transparent;border-left:0px solid transp=
arent;padding-top:5px;padding-bottom:5px;font-family:Lato, Tahoma, Verdana,=
Segoe, sans-serif;font-size:16px;text-align:center;mso-border-alt:none;wor=
d-break:keep-all;" target=3D"_blank"><span style=3D"padding-left:20px;paddi=
ng-right:20px;font-size:16px;display:inline-block;letter-spacing:normal;"><=
span style=3D"margin: 0; word-break: break-word; line-height: 32px;"><stron=
g>QUERO PARTICIPAR</strong></span></span></a><!--[if mso]></center></v:text=
box></v:roundrect><![endif]--></div>
</td>
</tr>
</table>
<div class=3D"spacer_bl=
ock block-3" style=3D"height:20px;line-height:20px;font-size:1px;">=E2=80=
=8A</div>
</td>
</tr>
=20
</table>
</td>
</tr>
=20
</table>
<table align=3D"center" border=3D"0" cellpadding=3D"0" =
cellspacing=3D"0" class=3D"row row-5" role=3D"presentation" style=3D"mso-ta=
ble-lspace: 0pt; mso-table-rspace: 0pt; background-color: #eeeeee;" width=
=3D"100%">
=20
<tr>
<td>
<table align=3D"center" border=3D"0" ce=
llpadding=3D"0" cellspacing=3D"0" class=3D"row-content stack" role=3D"prese=
ntation" style=3D"mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-=
color: eeeeee; color: #000000; width: 600px;" width=3D"600">
=20
<tr>