This repository has been archived by the owner on Apr 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1196 lines (1113 loc) · 76.9 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Movimento Tech 2030: Um Brasil próspero e protagonista em tecnologia.</title>
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<!-- Primary Meta Tags -->
<title>Movimento Tech 2030: Um Brasil próspero e protagonista em tecnologia.</title>
<meta name="title" content="Movimento Tech 2030: Um Brasil próspero e protagonista em tecnologia.">
<meta name="description"
content="Fomentamos projetos disruptivos que aceleram a inclusão produtiva no Brasil através da tecnologia.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.movtech.org/">
<meta property="og:title" content="Movimento Tech 2030: Um Brasil próspero e protagonista em tecnologia.">
<meta property="og:description"
content="Fomentamos projetos disruptivos que aceleram a inclusão produtiva no Brasil através da tecnologia.">
<meta property="og:image" content="https://movtech.org/estudante-orig.jpeg">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://www.movtech.org/">
<meta property="twitter:title" content="Movimento Tech 2030: Um Brasil próspero e protagonista em tecnologia.">
<meta property="twitter:description"
content="Fomentamos projetos disruptivos que aceleram a inclusão produtiva no Brasil através da tecnologia.">
<meta property="twitter:image" content="https://movtech.org/estudante-orig.jpeg">
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://movtech.org" />
<meta property="twitter:title" content="Movimento Tech 2030: Um Brasil próspero e protagonista em tecnologia." />
<meta property="twitter:description"
content="Fomentamos projetos disruptivos que aceleram a inclusão produtiva no Brasil através da tecnologia." />
<meta property="twitter:image" content="https://movtech.org/estudante-orig.jpeg" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/1.9.2/tailwind.min.css">
<link rel="stylesheet" href="style.css">
<!-- Small CSS to Hide elements at 1520px size -->
<style>
@media(max-width:1520px) {
.left-svg {
display: none;
}
}
/* small css for the mobile nav close */
#nav-mobile-btn.close span:first-child {
transform: rotate(45deg);
top: 4px;
position: relative;
background: #a0aec0;
}
#nav-mobile-btn.close span:nth-child(2) {
transform: rotate(-45deg);
margin-top: 0px;
background: #a0aec0;
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EKMQX88H5P"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-EKMQX88H5P');
</script>
</head>
<body class="overflow-x-hidden antialiased">
<!-- Header Section -->
<header class="relative z-50 w-full h-40 lg:h-24">
<div
class="container flex items-center justify-center h-full max-w-6xl px-8 mx-auto sm:justify-between xl:px-0 lg:pt-10">
<a href="/" class="relative flex items-center h-full font-black leading-none">
<img src="images/movtech2030_logo.png" class="w-full">
</a>
<nav id="nav"
class="absolute top-0 left-0 z-50 flex flex-col items-center justify-between hidden w-full h-64 pt-5 mt-24 text-sm text-gray-800 bg-white border-t border-gray-200 md:w-auto md:flex-row md:h-24 lg:text-base md:bg-transparent md:mt-0 md:border-none md:py-0 md:flex md:relative">
<a href="/#proposito"
class="ml-0 mr-0 font-bold duration-100 md:ml-12 md:mr-3 lg:mr-8 transition-color hover:text-blue-600">Propósito</a>
<a href="/#pilares"
class="mr-0 font-bold duration-100 md:mr-3 lg:mr-8 transition-color hover:text-blue-600">Pilares</a>
<a href="/projetos/"
class="mr-0 font-bold duration-100 md:mr-3 lg:mr-8 transition-color hover:text-blue-600">Projetos</a>
<a href="/parceiros/"
class="mr-0 font-bold duration-100 md:mr-3 lg:mr-8 transition-color hover:text-blue-600">Parceiros</a>
<a href="/na-midia/"
class="mr-0 font-bold duration-100 md:mr-3 lg:mr-8 transition-color hover:text-blue-600">Na
mídia</a>
<a href="/#participar"
class="participar-nav mr-0 font-bold duration-100 md:mr-3 lg:mr-8 transition-color hover:text-blue-600">Participar</a>
<!-- <a href="#testimonials"
class="font-bold duration-100 transition-color hover:text-indigo-600">Testimonials</a> -->
<div class="flex flex-col block w-full font-medium border-t border-gray-200 md:hidden">
<!-- <a href="#_" class="w-full py-2 font-bold text-center text-pink-500">Login</a> -->
<a href="mailto:[email protected]" target="_blank"
class="relative inline-block w-full px-5 py-3 text-sm leading-none text-center text-white fold-bold"
style="background-color: #42AABB;">Quero participar</a>
</div>
</nav>
<div
class="absolute left-0 flex-col items-center justify-center hidden w-full pb-8 mt-48 border-b border-gray-200 lg:relative lg:w-auto lg:bg-transparent lg:border-none lg:mt-0 lg:flex-row lg:p-0 lg:items-end lg:flex lg:justify-between">
<!-- <a href="#_"
class="relative z-40 px-3 py-2 mr-0 text-sm font-bold text-pink-500 md:px-5 lg:text-white sm:mr-3 md:mt-0">Login</a> -->
<svg class="absolute top-0 left-0 hidden w-screen max-w-3xl -mt-64 -ml-12 lg:block"
viewBox="0 0 818 815" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient x1="0%" y1="0%" x2="100%" y2="100%" id="c">
<stop stop-color="#42AABB" offset="50%" />
<stop stop-color="#5AD0E4" offset="100%" />
</linearGradient>
<filter x="-4.7%" y="-3.3%" width="109.3%" height="109.3%" filterUnits="objectBoundingBox"
id="a">
<feOffset dy="8" in="SourceAlpha" result="shadowOffsetOuter1" />
<feGaussianBlur stdDeviation="8" in="shadowOffsetOuter1" result="shadowBlurOuter1" />
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0" in="shadowBlurOuter1" />
</filter>
<path
d="M160.52 108.243h497.445c17.83 0 24.296 1.856 30.814 5.342 6.519 3.486 11.635 8.602 15.12 15.12 3.487 6.52 5.344 12.985 5.344 30.815v497.445c0 17.83-1.857 24.296-5.343 30.814-3.486 6.519-8.602 11.635-15.12 15.12-6.52 3.487-12.985 5.344-30.815 5.344H160.52c-17.83 0-24.296-1.857-30.814-5.343-6.519-3.486-11.635-8.602-15.12-15.12-3.487-6.52-5.343-12.985-5.343-30.815V159.52c0-17.83 1.856-24.296 5.342-30.814 3.486-6.519 8.602-11.635 15.12-15.12 6.52-3.487 12.985-5.343 30.815-5.343z"
id="b" />
</defs>
<g fill="none" fill-rule="evenodd" opacity=".9">
<g transform="rotate(65 416.452 409.167)">
<use fill="#000" filter="url(#a)" xlink:href="#b" />
<use fill="url(#c)" xlink:href="#b" />
</g>
</g>
</svg>
</div>
<!--
<div id="nav-mobile-btn"
class="absolute top-0 right-0 z-50 block w-6 mt-8 mr-10 cursor-pointer select-none md:hidden sm:mt-10">
<span class="block w-full h-1 mt-2 duration-200 transform bg-gray-800 rounded-full sm:mt-1"></span>
<span class="block w-full h-1 mt-1 duration-200 transform bg-gray-800 rounded-full"></span>
</div> -->
</div>
</header>
<!-- End Header Section-->
<!-- BEGIN HERO SECTION -->
<div
class="relative items-center justify-center w-full overflow-x-hidden lg:pt-24 lg:pb-24 xl:pt-40 xl:pb-32 pb-10">
<div
class="container flex flex-col items-center justify-between h-full max-w-6xl px-8 mx-auto -mt-32 lg:flex-row xl:px-0">
<div
class="z-30 flex flex-col items-center w-full max-w-xl pt-32 text-center lg:items-start lg:w-1/2 lg:pt-20 xl:pt-10 lg:text-left">
<div class="z-50 flex flex-col items-center h-full mb-6 rounded-lg lg:hidden justify-center w-4/5">
<img src="estudante-small.jpeg" loading="lazy" class="w-full mt-0 mr-0 rounded-3xl"
style="max-width: 600px">
</div>
<h1 class="relative mb-6 text-4xl lg:text-6xl font-black leading-tight text-gray-900 xl:mb-8">Por um
Brasil <span style="color: #42AABB;">próspero</span> e <span
style="color: #42AABB;">protagonista</span> <br class="xs:hidden" />em tecnologia</h1>
<p class="pr-0 mb-6 text-base text-gray-600 sm:text-lg xl:text-xl lg:pr-20">Movimento Tech é um <span
style="color: #42AABB;">fundo de investimento social</span> para despertar o interesse pela
carreira em tecnologia, formar e empregar.</p>
<p class="pr-0 mb-6 text-base text-gray-600 sm:text-lg xl:text-xl lg:pr-20">Conectamos empresas e
coordenamos esforços e recursos para gerar <span style="color: #42AABB;">impacto por meio de
investimento social.</span></p>
<p class="pr-0 mb-6 text-base text-gray-600 sm:text-lg xl:text-xl lg:pr-20">Selecionamos e financiamos
projetos <span style="color: #42AABB;">que aceleram nossos pilares de atuação: <b>despertar,
capacitar e empregar.</b></span></p>
<a href="mailto:[email protected]" target="_blank"
class="relative self-start inline-block w-auto px-8 py-4 mx-auto mt-0 text-base font-bold text-white border-t border-gray-200 rounded-md shadow-xl sm:mt-1 fold-bold lg:mx-0"
style="background-color: #42AABB;">Quero participar</a>
<span class="text-gray-600 text-sm pt-4">Email: <a href="mailto:[email protected]"
target="_blank">[email protected]</a></span>
<!-- Integrates with section -->
<!-- <div class="flex-col hidden mt-12 sm:flex lg:mt-12">
<p class="mb-4 text-sm font-medium tracking-widest text-gray-600 uppercase">Apoio</p>
<div class="flex">
<img src="apoiadores-v1.png" style="filter: grayscale(1) opacity(0.5); width: 400px" />
</div>
</div> -->
<svg class="absolute left-0 max-w-md mt-24 -ml-64 left-svg" viewBox="0 0 423 423"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient x1="100%" y1="0%" x2="4.48%" y2="0%" id="linearGradient-1">
<stop stop-color="#42AABB" offset="50%" />
<stop stop-color="#5AD0E4" offset="100%" />
</linearGradient>
<filter x="-9.3%" y="-6.7%" width="118.7%" height="118.7%" filterUnits="objectBoundingBox"
id="filter-3">
<feOffset dy="8" in="SourceAlpha" result="shadowOffsetOuter1" />
<feGaussianBlur stdDeviation="8" in="shadowOffsetOuter1" result="shadowBlurOuter1" />
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0" in="shadowBlurOuter1" />
</filter>
<rect id="path-2" x="63" y="504" width="300" height="300" rx="40" />
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity=".9">
<g id="Desktop-HD" transform="translate(-39 -531)">
<g id="Hero" transform="translate(43 83)">
<g id="Rectangle-6" transform="rotate(45 213 654)">
<use fill="#000" filter="url(#filter-3)" xlink:href="#path-2" />
<use fill="url(#linearGradient-1)" xlink:href="#path-2" />
</g>
</g>
</g>
</g>
</svg>
</div>
<div class="hidden lg:flex relative z-50 flex-col items-end justify-center w-full h-full lg:w-1/2 ms:pl-10">
<div class="container relative left-0 lg:absolute lg:max-w-6xl lg:w-screen">
<img src="estudante.jpeg" loading="lazy" class="w-full mt-0 mr-0 rounded-3xl"
style="max-width: 800px">
</div>
</div>
</div>
</div>
<!-- HERO SECTION END -->
<!-- BEGIN WHAT IF SECTION -->
<div id="proposito" class="relative w-full px-8 py-10 border-t border-gray-200 md:py-16 lg:py-24 xl:py-20 xl:px-0">
<div class="container flex flex-col items-center justify-between h-full max-w-6xl mx-auto">
<div class="flex flex-col items-center justify-center w-full h-full max-w-2xl mx-auto text-center">
<p class="my-5 text-base font-medium tracking-tight uppercase" style="color: #42AABB;">Um futuro que
vale a
pena construir
</p>
<h2
class="text-4xl font-extrabold leading-10 tracking-tight text-gray-900 sm:text-5xl sm:leading-none md:text-6xl lg:text-5xl xl:text-6xl">
E se, em 2030...</h2>
<p class="my-6 text-xl font-medium text-gray-600">Como seria se, em 2030, chegarmos num futuro em
que...</p>
</div>
<div class="flex flex-col w-full mt-0 lg:flex-row ">
<div class="w-full max-w-md mx-auto mb-0 lg:mb-0 lg:w-1/3">
<div
class="relative flex flex-col items-center justify-center w-full h-full p-6 lg:p-10 mr-5 rounded-lg">
<img src="despertar.jpeg" class="rounded-3xl" />
<p class="relative mt-6 text-lg text-center text-gray-600">Crianças sonham ser
<strong>desenvolvedoras e designers?</strong>
</p>
</div>
</div>
<div class="w-full max-w-md mx-auto lg:mb-0 lg:w-1/3">
<div
class="relative flex flex-col items-center justify-center w-full h-full p-6 lg:p-10 mr-5 rounded-lg">
<img src="capacitar.jpeg" class="rounded-3xl" />
<p class="relative mt-6 text-lg text-center text-gray-600">Todos têm acesso à <strong>educação
tech</strong> de alta qualidade?</p>
</div>
</div>
<div class="w-full max-w-md mx-auto lg:mb-0 lg:w-1/3">
<div
class="relative flex flex-col items-center justify-center w-full h-full p-6 lg:p-10 mr-5 rounded-lg">
<img src="empregar.jpeg" class="rounded-3xl" />
<p class="relative mt-6 px-2 text-lg text-center text-gray-600">A participação de
<strong>tecnologia
no PIB do Brasil</strong>
dobrou?
</p>
</div>
</div>
</div>
<div class="flex flex-col items-center justify-center w-full h-full max-w-lg py-6 px-2 mt-4 mx-auto text-center border-dotted border rounded-xl"
style="border-color: #42AABB">
<p class="text-xl font-medium text-gray-600">Esse futuro não é
previsível — mas ele é
<strong>possível,</strong> e nós estamos
<strong>comprometidos</strong> com ele.
</p>
</div>
<video class="video-home pt-40 w-full" width="400" controls>
<source src="images/MOV_TECH_v1.mp4" type="video/mp4">
Your browser does not support HTML video.
</video>
</div>
</div>
<!-- END WHAT IF SECTION -->
<!-- BEGIN PILARES SECTION -->
<div id="pilares" class="relative w-full px-8 py-10 border-t border-gray-200 md:py-16 lg:py-24 xl:py-20 xl:px-0">
<div class="container flex flex-col items-center justify-between h-full max-w-6xl mx-auto">
<div class="flex flex-col items-center justify-center w-full h-full max-w-2xl mx-auto text-center">
<h3 class="my-5 text-base font-medium tracking-tight uppercase" style="color: #42AABB;">Os caminhos que
escolhemos</h3>
<h2
class="max-w-2xl px-5 mt-2 text-3xl font-black leading-tight text-center text-gray-900 sm:mt-0 sm:px-0 sm:text-6xl">
Pilares de atuação
</h2>
<p class="my-6 text-xl font-medium text-gray-600">O Movimento Tech organiza e financia projetos que
atuam em um ou mais dos seguintes pilares de atuação:</p>
</div>
<div class="flex flex-col w-full mt-0 lg:flex-row sm:mt-10 lg:mt-10">
<div class="w-full max-w-md p-4 mx-auto mb-0 sm:mb-16 lg:mb-0 lg:w-1/3">
<div
class="relative flex flex-col items-center justify-center w-full h-full p-10 lg:p-20 mr-5 rounded-lg">
<svg class="absolute w-full h-ful fill-current" style="color: #F7F7F7;" viewBox="0 0 377 440"
xmlns="http://www.w3.org/2000/svg">
<g>
<g>
<path
d="M342.8 3.7c24.7 14 18.1 75 22.1 224s18.6 85.8 -28.7 114.2c-9.9 28.4-44.4 48.3-76.4 62.4-32 14.1-61.6 22.4-95.9 28.9-34.3 6.5-73.3 11.1-95.5-6.2-22.2-17.2-27.6-56.5-47.2-96C38.9 191.4 5 151.5.9 108.2-3.1 64.8 22.7 18 61.8 8.7c39.2-9.2 91.7 19 146 16.6 54.2-2.4 110.3-35.6 135-21.6z" />
</g>
</g>
</svg>
<!-- FEATURE Icon 1 -->
<img src="icons/icon8.jpeg" style="z-index:99; width: 100px;" />
<h4 class="relative mt-6 text-3xl font-bold">Despertar</h4>
<p class="relative mt-2 text-base text-center text-gray-800">Despertar os jovens para as
possibilidades da carreira em tecnologia.</p>
</div>
</div>
<div class="w-full max-w-md p-4 mx-auto mb-0 sm:mb-16 lg:mb-0 lg:w-1/3">
<div
class="relative flex flex-col items-center justify-center w-full h-full p-10 lg:p-20 mr-5 rounded-lg">
<svg class="absolute w-full h-full fill-current" style="color: #F7F7F7;" viewBox="0 0 358 372"
xmlns="http://www.w3.org/2000/svg">
<g>
<g>
<path
d="M315.7 6.5c30.2 15.1 42.6 61.8 41.5 122.5-1.1 40.6-15.7 75.2-24.3 104.8-8.7 39.7-11.3 84.3-34.3 107.2-23 22.9-66.3 23.9-114.5 30.7-48.2 6.7-101.3 19.1-123.2-4.1-21.8-23.2-12.5-82.1-21.6-130.2C30.2 179.3 2.6 141.9.7 102c-2-39.9 21.7-82.2 57.4-95.6 35.7-13.5 83.3 2.1 131.2 1.7 47.9-.4 96.1-16.8 126.4-1.6z" />
</g>
</g>
</svg>
<img src="icons/icon2.jpeg" style="z-index:99; width: 100px;" />
<h4 class="relative mt-6 text-3xl font-bold">Capacitar</h4>
<p class="relative mt-2 text-base text-center text-gray-800">Capacitar os futuros talentos
para as profissões de amanhã.</p>
</div>
</div>
<div class="w-full max-w-md p-4 mx-auto mb-6 lg:mb-0 lg:w-1/3">
<div
class="relative flex flex-col items-center justify-center w-full h-full p-10 lg:p-20 mr-5 rounded-lg">
<svg class="absolute w-full h-full fill-current" style="color: #F7F7F7;" viewBox="0 0 378 440"
xmlns="http://www.w3.org/2000/svg">
<g>
<g>
<path
d="M305.9 14.4c23.8 24.6 16.3 84.9 26.6 175.1 10.4 50.2 38.6 90.3 43.7 137.8 5.1 47.5-12.8 102.4-50.7 117.4-37.9 15.1-95.7-9.8-151.7-12.2-56.1-2.5-110.3 17.6-130-3.4-19.7-20.9-4.7-82.9-11.5-131.2C25.5 209.5-3 174.7 1.2 147c4.2-27.7 41-48.3 75-69.6C110.1 56.1 141 34.1 184 17.5c43.1-16.6 98.1-27.7 121.9-3.1z" />
</g>
</g>
</svg>
<img src="icons/icon6.jpeg" style="z-index:99; width: 100px;" />
<h4 class="relative mt-6 text-3xl font-bold">Empregar</h4>
<p class="relative mt-2 text-base text-center text-gray-800">Empregar profissionais de perfis
sub-representados promovendo inclusão produtiva em escala.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- END PILARES SECTION -->
<!-- Start Impacto -->
<!-- <div id="Impacto"
class="flex items-center justify-center w-full px-8 py-10 border-t border-gray-200 md:py-16 lg:py-24 xl:py-20 xl:px-0">
<div class="max-w-6xl mx-auto">
<div class="flex-col items-center ">
<div class="flex flex-col items-center justify-center w-full h-full max-w-2xl pr-8 mx-auto text-center">
<p class="my-5 text-base font-medium tracking-tight uppercase" style="color: #42AABB;">Nossos
projetos já estão na rua
</p>
<h2
class="text-4xl font-extrabold leading-10 tracking-tight text-gray-900 sm:text-5xl sm:leading-none md:text-6xl lg:text-5xl xl:text-6xl">
Impacto</h2>
<p class="my-6 text-xl font-medium text-gray-500">O tempo de agir é agora. Conheça alguns
dos projetos que já apoiamos e o impacto gerado por eles:</p>
</div>
<div class="flex flex-col items-center justify-center max-w-2xl py-8 mx-auto xl:flex-row xl:max-w-full">
<div class="w-full xl:w-1/2 xl:pr-8">
<blockquote
class="flex flex-col-reverse items-center justify-between w-full col-span-1 p-6 text-center transition-all duration-200 bg-gray-100 rounded-lg md:flex-row md:text-left hover:bg-white hover:shadow ease">
<div class="flex flex-col pr-8">
<div class="relative pl-12">
<svg class="absolute left-0 w-10 h-10 text-indigo-500 fill-current"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 125">
<path
d="M30.7 42c0 6.1 12.6 7 12.6 22 0 11-7.9 19.2-18.9 19.2C12.7 83.1 5 72.6 5 61.5c0-19.2 18-44.6 29.2-44.6 2.8 0 7.9 2 7.9 5.4S30.7 31.6 30.7 42zM82.4 42c0 6.1 12.6 7 12.6 22 0 11-7.9 19.2-18.9 19.2-11.8 0-19.5-10.5-19.5-21.6 0-19.2 18-44.6 29.2-44.6 2.8 0 7.9 2 7.9 5.4S82.4 31.6 82.4 42z" />
</svg>
<p class="mt-2 text-base text-gray-600">I'm loving these templates! Very nice
features and layouts.
</p>
</div>
<h3 class="pl-12 mt-3 text-base font-medium leading-5 text-gray-800 truncate">Sandra
Walton <span class="mt-1 text-sm leading-5 text-gray-500 truncate">- CEO
SomeCompany</span></h3>
<p class="mt-1 text-sm leading-5 text-gray-500 truncate"></p>
</div>
<img class="flex-shrink-0 object-cover w-24 h-24 mb-5 bg-gray-300 rounded-full md:mb-0"
src="https://images.unsplash.com/photo-1544725176-7c40e5a71c5e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2694&q=80"
alt="">
</blockquote>
<blockquote
class="flex flex-col-reverse items-center justify-between w-full col-span-1 p-6 mt-16 mb-16 text-center transition-all duration-200 bg-gray-100 rounded-lg md:flex-row md:text-left hover:bg-white hover:shadow ease xl:mb-0">
<div class="flex flex-col pr-10">
<div class="relative pl-12">
<svg class="absolute left-0 w-10 h-10 text-indigo-500 fill-current"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 125">
<path
d="M30.7 42c0 6.1 12.6 7 12.6 22 0 11-7.9 19.2-18.9 19.2C12.7 83.1 5 72.6 5 61.5c0-19.2 18-44.6 29.2-44.6 2.8 0 7.9 2 7.9 5.4S30.7 31.6 30.7 42zM82.4 42c0 6.1 12.6 7 12.6 22 0 11-7.9 19.2-18.9 19.2-11.8 0-19.5-10.5-19.5-21.6 0-19.2 18-44.6 29.2-44.6 2.8 0 7.9 2 7.9 5.4S82.4 31.6 82.4 42z" />
</svg>
<p class="mt-2 text-base text-gray-600">Really digging this service. Now I can
quickly bootstrap any
project.</p>
</div>
<h3 class="pl-12 mt-3 text-base font-medium leading-5 text-gray-800 truncate">Kenny
Jones <span class="mt-1 text-sm leading-5 text-gray-500 truncate">- CEO
SomeCompany</span></h3>
<p class="mt-1 text-sm leading-5 text-gray-500 truncate"></p>
</div>
<img class="flex-shrink-0 object-cover w-24 h-24 mb-5 bg-gray-300 rounded-full md:mb-0"
src="https://images.unsplash.com/photo-1546820389-44d77e1f3b31?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1400&q=80"
alt="">
</blockquote>
</div>
<div class="w-full xl:w-1/2 xl:pl-8">
<blockquote
class="flex flex-col-reverse items-center justify-between w-full col-span-1 p-6 text-center transition-all duration-200 bg-gray-100 rounded-lg md:flex-row md:text-left hover:bg-white hover:shadow ease">
<div class="flex flex-col pr-10">
<div class="relative pl-12">
<svg class="absolute left-0 w-10 h-10 text-indigo-500 fill-current"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 125">
<path
d="M30.7 42c0 6.1 12.6 7 12.6 22 0 11-7.9 19.2-18.9 19.2C12.7 83.1 5 72.6 5 61.5c0-19.2 18-44.6 29.2-44.6 2.8 0 7.9 2 7.9 5.4S30.7 31.6 30.7 42zM82.4 42c0 6.1 12.6 7 12.6 22 0 11-7.9 19.2-18.9 19.2-11.8 0-19.5-10.5-19.5-21.6 0-19.2 18-44.6 29.2-44.6 2.8 0 7.9 2 7.9 5.4S82.4 31.6 82.4 42z" />
</svg>
<p class="mt-2 text-base text-gray-600">Extremely helpful in every single project we
have released.
</p>
</div>
<h3 class="pl-12 mt-3 text-base font-medium leading-5 text-gray-800 truncate">Mike Smith
<span class="mt-1 text-sm leading-5 text-gray-500 truncate">- CEO SomeCompany</span>
</h3>
<p class="mt-1 text-sm leading-5 text-gray-500 truncate"></p>
</div>
<img class="flex-shrink-0 object-cover w-24 h-24 mb-5 bg-gray-300 rounded-full md:mb-0"
src="https://images.unsplash.com/photo-1535713875002-d1d0cf377fde?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1700&q=80"
alt="">
</blockquote>
<blockquote
class="flex flex-col-reverse items-center justify-between w-full col-span-1 p-6 mt-16 text-center transition-all duration-200 bg-gray-100 rounded-lg md:flex-row md:text-left hover:bg-white hover:shadow ease">
<div class="flex flex-col pr-10">
<div class="relative pl-12">
<svg class="absolute left-0 w-10 h-10 text-indigo-500 fill-current"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 125">
<path
d="M30.7 42c0 6.1 12.6 7 12.6 22 0 11-7.9 19.2-18.9 19.2C12.7 83.1 5 72.6 5 61.5c0-19.2 18-44.6 29.2-44.6 2.8 0 7.9 2 7.9 5.4S30.7 31.6 30.7 42zM82.4 42c0 6.1 12.6 7 12.6 22 0 11-7.9 19.2-18.9 19.2-11.8 0-19.5-10.5-19.5-21.6 0-19.2 18-44.6 29.2-44.6 2.8 0 7.9 2 7.9 5.4S82.4 31.6 82.4 42z" />
</svg>
<p class="mt-2 text-base text-gray-600">Finally a quick and easy system I can use
for any type of
project.</p>
</div>
<h3 class="pl-12 mt-3 text-base font-medium leading-5 text-gray-800 truncate">Molly
Sanchez <span class="mt-1 text-sm leading-5 text-gray-500 truncate">- CEO
SomeCompany</span></h3>
<p class="mt-1 text-sm leading-5 text-gray-500 truncate"></p>
</div>
<img class="flex-shrink-0 object-cover w-24 h-24 mb-5 bg-gray-300 rounded-full md:mb-0"
src="https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2700&q=80"
alt="">
</blockquote>
</div>
</div>
</div>
</div>
</div> -->
<!-- End Impacto-->
<!-- BEGIN PARTICIPAR SECTION -->
<div id="participar"
class="relative px-8 py-10 bg-white border-t border-gray-200 md:py-16 lg:py-24 xl:py-20 xl:px-0">
<div class="container flex flex-col items-center h-full max-w-6xl mx-auto">
<div class="flex flex-col items-center justify-center w-full h-full max-w-2xl mx-auto text-center">
<h3 class="my-5 text-base font-medium tracking-tight uppercase" style="color: #42AABB;">Descubra como
ajudar
o
Movimento</h3>
<h2
class="max-w-2xl px-5 mt-2 text-3xl font-black leading-tight text-center text-gray-900 sm:mt-0 sm:px-0 sm:text-6xl">
Como participar
</h2>
<p class="my-6 text-xl font-medium text-gray-600">Todos e todas são bem vindos. Oferecemos dois
diferentes níveis de envolvimento:</p>
</div>
<div class="max-w-full mx-auto md:max-w-6xl sm:px-8">
<div class="relative flex flex-col items-center block sm:flex-row">
<div
class="relative z-0 w-11/12 max-w-sm my-8 border shadow-lg border-gray-200 rounded-lg sm:w-3/5 lg:w-2/3 sm:my-5 md:-mr-4">
<div class="overflow-hidden text-black bg-white border-t border-gray-100 rounded-lg shadow-sm">
<div
class="block max-w-sm px-6 lg:px-12 mx-auto mt-5 text-sm text-center text-black sm:text-md ">
<h3 class="p-3 text-lg font-bold tracking-wide text-center uppercase">PATROCINADOR<span
class="ml-2 font-light"></span></h3>
<!-- <h4
class="flex items-center justify-center pb-6 text-4xl font-bold text-center text-gray-900">
<span class="mr-1 -ml-2 text-lg text-gray-700">logos patrocinadores</span>
</h4> -->
<p class="text-sm text-gray-600">Patrocinadores apoiam projetos e podem participar da
execução.
</p>
</div>
<div class="flex flex-wrap pl-6 lg:pl-12 mt-8">
<ul>
<li class="flex items-center">
<div class="p-2 text-green-500 rounded-full fill-current ">
<svg class="w-6 h-6 align-middle" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path>
<polyline points="22 4 12 14.01 9 11.01"></polyline>
</svg>
</div>
<span class="ml-3 text-lg text-gray-700">Marca por projeto</span>
</li>
<li class="flex items-center">
<div class="p-2 text-green-500 rounded-full fill-current ">
<svg class="w-6 h-6 align-middle" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path>
<polyline points="22 4 12 14.01 9 11.01"></polyline>
</svg>
</div>
<span class="ml-3 text-lg text-gray-700">Conselho
Consultivo</span>
</li>
<li class="flex items-center">
<div class="p-2 text-green-500 rounded-full fill-current ">
<svg class="w-6 h-6 align-middle" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path>
<polyline points="22 4 12 14.01 9 11.01"></polyline>
</svg>
</div>
<span class="ml-3 text-lg text-gray-700">A partir de R$ 50mil </br>ou R$ 200mil
em serviços</span>
</li>
</ul>
</div>
<div class="flex items-center block p-8 uppercase">
<a href="mailto:[email protected]" target="_blank"
class="block w-full px-6 py-4 mt-3 text-lg font-semibold text-center text-white rounded shadow-sm"
style="background-color: #42AABB;">Participar</a>
</div>
</div>
</div>
<div
class="relative z-10 w-full max-w-md my-8 bg-white rounded-lg shadow-lg sm:w-2/3 lg:w-2/3 sm:my-5">
<div class="py-4 text-sm font-semibold leading-none tracking-wide text-center text-white uppercase rounded-t-lg"
style="background-color: #444444;">
Estratégico</div>
<div
class="block max-w-sm px-6 lg:px-12 mx-auto mt-4 text-sm text-center text-black sm:text-md">
<h3 class="p-3 text-3xl font-bold tracking-wide text-center uppercase">Mantenedor</h3>
<!-- <h4
class="flex items-center justify-center pb-2 text-5xl font-bold text-center text-gray-900">
<span class="mr-1 -ml-2 text-lg text-gray-700">logos mantenedores</span>
</h4> -->
<p class="text-sm text-gray-600">Mantenedores colaboram na pauta estratégica que guia nossos
projetos.</p>
</div>
<div class="flex justify-start pl-6 lg:pl-12 mt-8 sm:justify-start">
<ul>
<li class="flex items-center">
<div class="p-2 text-green-500 rounded-full fill-current">
<svg class="w-6 h-6 align-middle" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path>
<polyline points="22 4 12 14.01 9 11.01"></polyline>
</svg>
</div>
<span class="ml-3 text-lg text-gray-700">Marca em todos projetos</span>
</li>
<li class="flex items-center">
<div class="p-2 text-green-500 rounded-full fill-current ">
<svg class="w-6 h-6 align-middle" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path>
<polyline points="22 4 12 14.01 9 11.01"></polyline>
</svg>
</div>
<span class="ml-3 text-lg text-gray-700">Conselho Estratégico</span>
</li>
<li class="flex items-center">
<div class="p-2 text-green-500 rounded-full fill-current ">
<svg class="w-6 h-6 align-middle" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path>
<polyline points="22 4 12 14.01 9 11.01"></polyline>
</svg>
</div>
<span class="ml-3 text-lg text-gray-700">A partir de R$ 300mil/ano </br> por 3
anos</span>
</li>
</ul>
</div>
<div class="flex items-center block p-8 uppercase">
<a href="mailto:[email protected]" target="_blank"
class="block w-full px-6 py-4 mt-3 text-lg font-semibold text-center text-white rounded shadow-sm"
style="background-color: #42AABB;">Participar</a>
</div>
</div>
<!--<div
class="relative z-0 w-11/12 max-w-sm my-8 rounded-lg shadow-lg sm:w-3/5 lg:w-1/3 sm:my-5 md:-ml-4">
<div class="overflow-hidden text-black bg-white rounded-lg shadow-lg shadow-inner">
<div
class="block max-w-sm px-6 lg:px-12 mx-auto mt-5 text-sm text-center text-black sm:text-md">
<h3 class="p-3 text-lg font-bold tracking-wide text-center uppercase">Apoiador<span
class="ml-2 font-light"></span></h3>
<h4
class="flex items-center justify-center pb-6 text-5xl font-bold text-center text-gray-900">
<span class="mr-1 -ml-2 text-lg text-gray-700">logos apoiadores</span>
</h4>
<p class="pl-2 text-sm text-gray-600">Apoiadores contribuem fortalecendo nossa
comunidade.</p>
</div>
<div class="flex flex-wrap pl-6 lg:pl-12 mt-8">
<ul>
<li class="flex items-center">
<div class="p-2 text-green-500 rounded-full fill-current ">
<svg class="w-6 h-6 align-middle" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path>
<polyline points="22 4 12 14.01 9 11.01"></polyline>
</svg>
</div>
<span class="ml-3 text-lg text-gray-700">Marca no site</span>
</li>
<li class="flex items-center">
<div class="p-2 text-green-500 rounded-full fill-current ">
<svg class="w-6 h-6 align-middle" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path>
<polyline points="22 4 12 14.01 9 11.01"></polyline>
</svg>
</div>
<span class="ml-3 text-lg text-gray-700">Convite agendas mensais</span>
</li>
<li class="flex items-center">
<div class="p-2 text-green-500 rounded-full fill-current ">
<svg class="w-6 h-6 align-middle" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path>
<polyline points="22 4 12 14.01 9 11.01"></polyline>
</svg>
</div>
<span class="ml-3 text-lg text-gray-700">Sem custo!</span>
</li>
</ul>
</div>
<div class="flex items-center block p-8 uppercase">
<a href="https://forms.gle/WtqoidWnBUforws19" target="_blank"
class="block w-full px-6 py-4 mt-3 text-lg font-semibold text-center text-white rounded shadow-sm"
style="background-color: #42AABB;">Participar</a>
</div>
</div>
</div>-->
</div>
</div>
</div>
</div>
<!-- Start Maintainers Section-->
<section class="maintainers pt-4 pb-32 max-w-6xl mx-auto">
<div class="container mx-auto">
<h3 class="text-center mb-12 text-3xl font-bold mx-auto">Mantenedores</h3>
<div class="flex items-center align-center">
<div class="mx-auto w-1/2 flex ">
<div class="w-full md:w-1/2 lg:w-1/2">
<div class="py-6 lg:px-4 lg:pb-4 lg:pr-0 bg-white rounded">
<img src="images/maintainers/ifood.png" class="rounded-3xl mx-auto lg:mr-0">
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/2">
<div class="py-6 lg:px-4 lg:pb-4 lg:pl-0 bg-white rounded">
<img src="images/maintainers/xp.png" class="rounded-3xl mx-auto lg:ml-0">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Maintainers Section-->
<!-- Start Sponsors Section-->
<section class="sponsors pt-4 pb-32 max-w-6xl mx-auto">
<div class="container mx-auto">
<h3 class="text-center mb-12 text-3xl font-bold mx-auto">Patrocinadores</h3>
<div class="flex flex-wrap container-sponsors">
<div class="w-full md:w-1/2 lg:w-1/5">
<div class="py-6 lg:px-4 lg:pb-4 bg-white rounded">
<img src="images/sponsors/arco-instituto.png" class="rounded-3xl mx-auto">
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/5">
<div class="py-6 lg:px-4 lg:pb-4 bg-white rounded">
<img src="images/sponsors/boticario.png" class="rounded-3xl mx-auto">
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/5">
<div class="py-6 lg:px-4 lg:pb-4 bg-white rounded">
<img src="images/sponsors/buser.png" class="rounded-3xl mx-auto">
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/5">
<div class="py-6 lg:px-4 lg:pb-4 bg-white rounded">
<img src="images/sponsors/ciandt.png" class="rounded-3xl mx-auto">
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/5">
<div class="py-6 lg:px-4 lg:pb-4 bg-white rounded">
<img src="images/sponsors/cubos.png" class="rounded-3xl mx-auto">
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/5">
<div class="py-6 lg:px-4 lg:pb-4 bg-white rounded">
<img src="images/sponsors/digital-house.png" class="rounded-3xl mx-auto">
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/5">
<div class="py-6 lg:px-4 lg:pb-4 bg-white rounded">
<img src="images/sponsors/fundacao.png" class="rounded-3xl mx-auto">
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/5">
<div class="py-6 lg:px-4 lg:pb-4 bg-white rounded">
<img src="images/sponsors/gama.png" class="rounded-3xl mx-auto">
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/5">
<div class="py-6 lg:px-4 lg:pb-4 bg-white rounded">
<img src="images/sponsors/localiza.png" class="rounded-3xl mx-auto">
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/5">
<div class="py-6 lg:px-4 lg:pb-4 bg-white rounded">
<img src="images/sponsors/kenzie.png" class="rounded-3xl mx-auto">
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/5">
<div class="py-6 lg:px-4 lg:pb-4 bg-white rounded">
<img src="images/sponsors/letscode.png" class="rounded-3xl mx-auto">
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/5">
<div class="py-6 lg:px-4 lg:pb-4 bg-white rounded">
<img src="images/sponsors/one.png" class="rounded-3xl mx-auto">
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/5">
<div class="py-6 lg:px-4 lg:pb-4 bg-white rounded">
<img src="images/sponsors/rd.png" class="rounded-3xl mx-auto">
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/5">
<div class="py-6 lg:px-4 lg:pb-4 bg-white rounded">
<img src="images/sponsors/rocketseat.png" class="rounded-3xl mx-auto">
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/5">
<div class="py-6 lg:px-4 lg:pb-4 bg-white rounded">
<img src="images/sponsors/semantix.png" class="rounded-3xl mx-auto">
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/5">
<div class="py-6 lg:px-4 lg:pb-4 bg-white rounded">
<img src="images/sponsors/telles.png" class="rounded-3xl mx-auto">
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/5">
<div class="py-6 lg:px-4 lg:pb-4 bg-white rounded">
<img src="images/sponsors/vtex.png" class="rounded-3xl mx-auto">
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/5">
<div class="py-6 lg:px-4 lg:pb-4 bg-white rounded">
<img src="images/sponsors/descomplica.png" class="rounded-3xl mx-auto">
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/5">
<div class="py-6 lg:px-4 lg:pb-4 bg-white rounded">
<img src="images/sponsors/womakers.png" class="rounded-3xl mx-auto">
</div>
</div>
</div>
</div>
</section>
<!-- End Sponsors Section-->
<!-- Begin Sendinblue Form -->
<!-- START - We recommend to place the below code in head tag of your website html -->
<style>
@font-face {
font-display: block;
font-family: Roboto;
src: url(https://assets.sendinblue.com/font/Roboto/Latin/normal/normal/7529907e9eaf8ebb5220c5f9850e3811.woff2) format("woff2"), url(https://assets.sendinblue.com/font/Roboto/Latin/normal/normal/25c678feafdc175a70922a116c9be3e7.woff) format("woff")
}
@font-face {
font-display: fallback;
font-family: Roboto;
font-weight: 600;
src: url(https://assets.sendinblue.com/font/Roboto/Latin/medium/normal/6e9caeeafb1f3491be3e32744bc30440.woff2) format("woff2"), url(https://assets.sendinblue.com/font/Roboto/Latin/medium/normal/71501f0d8d5aa95960f6475d5487d4c2.woff) format("woff")
}
@font-face {
font-display: fallback;
font-family: Roboto;
font-weight: 700;
src: url(https://assets.sendinblue.com/font/Roboto/Latin/bold/normal/3ef7cf158f310cf752d5ad08cd0e7e60.woff2) format("woff2"), url(https://assets.sendinblue.com/font/Roboto/Latin/bold/normal/ece3a1d82f18b60bcce0211725c476aa.woff) format("woff")
}
#sib-container input:-ms-input-placeholder {
text-align: left;
font-family: "Helvetica", sans-serif;
color: #c0ccda;
}
#sib-container input::placeholder {
text-align: left;
font-family: "Helvetica", sans-serif;
color: #c0ccda;
}
#sib-container textarea::placeholder {
text-align: left;
font-family: "Helvetica", sans-serif;
color: #c0ccda;
}
</style>
<link rel="stylesheet" href="https://sibforms.com/forms/end-form/build/sib-styles.css">
<!-- END - We recommend to place the above code in head tag of your website html -->
<!-- START - We recommend to place the below code where you want the form in your website html -->
<div class="sib-form" style="text-align: center;
background-color: #EFF2F7; ">
<div id="sib-form-container" class="sib-form-container">
<div id="error-message" class="sib-form-message-panel"
style="font-size:16px; text-align:left; font-family:"Helvetica", sans-serif; color:#661d1d; background-color:#ffeded; border-radius:3px; border-color:#ff4949;max-width:540px;">
<div class="sib-form-message-panel__text sib-form-message-panel__text--center">
<svg viewBox="0 0 512 512" class="sib-icon sib-notification__icon">
<path
d="M256 40c118.621 0 216 96.075 216 216 0 119.291-96.61 216-216 216-119.244 0-216-96.562-216-216 0-119.203 96.602-216 216-216m0-32C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm-11.49 120h22.979c6.823 0 12.274 5.682 11.99 12.5l-7 168c-.268 6.428-5.556 11.5-11.99 11.5h-8.979c-6.433 0-11.722-5.073-11.99-11.5l-7-168c-.283-6.818 5.167-12.5 11.99-12.5zM256 340c-15.464 0-28 12.536-28 28s12.536 28 28 28 28-12.536 28-28-12.536-28-28-28z" />
</svg>
<span class="sib-form-message-panel__inner-text">
Não conseguimos salvar sua inscrição. Por favor, tente novamente.
</span>
</div>
</div>
<div></div>
<div id="success-message" class="sib-form-message-panel"
style="font-size:16px; text-align:left; font-family:"Helvetica", sans-serif; color:#085229; background-color:#e7faf0; border-radius:3px; border-color:#13ce66;max-width:540px;">
<div class="sib-form-message-panel__text sib-form-message-panel__text--center">
<svg viewBox="0 0 512 512" class="sib-icon sib-notification__icon">
<path
d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 464c-118.664 0-216-96.055-216-216 0-118.663 96.055-216 216-216 118.664 0 216 96.055 216 216 0 118.663-96.055 216-216 216zm141.63-274.961L217.15 376.071c-4.705 4.667-12.303 4.637-16.97-.068l-85.878-86.572c-4.667-4.705-4.637-12.303.068-16.97l8.52-8.451c4.705-4.667 12.303-4.637 16.97.068l68.976 69.533 163.441-162.13c4.705-4.667 12.303-4.637 16.97.068l8.451 8.52c4.668 4.705 4.637 12.303-.068 16.97z" />
</svg>
<span class="sib-form-message-panel__inner-text">
Obrigado por se inscrever!
</span>
</div>
</div>
<div></div>
<div id="sib-container" class="sib-container--large sib-container--vertical"
style="text-align:center; background-color:rgba(255,255,255,1); max-width:540px; border-radius:3px; border-width:1px; border-color:#C0CCD9; border-style:solid;">
<form id="sib-form" method="POST"
action="https://1dca9b3c.sibforms.com/serve/MUIEACneNmCzJtzzduhxU6JpkH3FIfSyce2NptqjIvD6cbF2QuUPJAxpZ69fQ-Fql3Xm-uGsCQ40ZbAIhRR9zelpd88_NpPTW-XU1z7RGGc904QH_4Nb3cPCIWLPUcblVsUxyLcn2Vy8cdRMhrGaBoLF5kKutAoF1ToL2GY4NBQ8MsYHeoC1Ho3estEcjclW6cS0gs4rlo2VIQ2q"
data-type="subscription">
<div style="padding: 8px 0;">
<div class="sib-form-block"
style="font-size:32px; text-align:left; font-weight:700; font-family:"Helvetica", sans-serif; color:#3C4858; background-color:transparent;">
<p>Newsletter</p>
</div>
</div>
<div style="padding: 8px 0;">
<div class="sib-form-block"
style="font-size:16px; text-align:left; font-family:"Helvetica", sans-serif; color:#3C4858; background-color:transparent;">
<div class="sib-text-form-block">
<p>Se você gostaria de saber de novos projetos e oportunidades para colaborar com o
Movimento Tech, assine nossa newsletter.</p>
</div>
</div>
</div>
<div style="padding: 8px 0;">
<div class="sib-input sib-form-block">
<div class="form__entry entry_block">
<div class="form__label-row ">
<label class="entry__label"
style="font-size:16px; text-align:left; font-weight:700; font-family:"Helvetica", sans-serif; color:#3c4858;"
for="EMAIL" data-required="*">
Informe seu e-mail para não perder nenhuma novidade:
</label>
<div class="entry__field">
<input class="input" type="text" id="EMAIL" name="EMAIL" autocomplete="off"
placeholder="E-MAIL" data-required="true" required />
</div>
</div>
<label class="entry__error entry__error--primary"
style="font-size:16px; text-align:left; font-family:"Helvetica", sans-serif; color:#661d1d; background-color:#ffeded; border-radius:3px; border-color:#ff4949;">
</label>
<label class="entry__specification"
style="font-size:12px; text-align:left; font-family:"Helvetica", sans-serif; color:#8390A4;">
Enviamos apenas e-mails essenciais.
</label>
</div>
</div>
</div>
<div style="padding: 8px 0;">
<div class="sib-form-block" style="text-align: left">
<button class="sib-form-block__button sib-form-block__button-with-loader"
style="font-size:16px; padding: 20px 40px; text-align:left; font-weight:700; font-family:"Helvetica", sans-serif; color:#FFFFFF; background-color:#42AABB; border-radius:3px; border-width:0px;"
form="sib-form" type="submit">
<svg class="icon clickable__icon progress-indicator__icon sib-hide-loader-icon"
viewBox="0 0 512 512">
<path
d="M460.116 373.846l-20.823-12.022c-5.541-3.199-7.54-10.159-4.663-15.874 30.137-59.886 28.343-131.652-5.386-189.946-33.641-58.394-94.896-95.833-161.827-99.676C261.028 55.961 256 50.751 256 44.352V20.309c0-6.904 5.808-12.337 12.703-11.982 83.556 4.306 160.163 50.864 202.11 123.677 42.063 72.696 44.079 162.316 6.031 236.832-3.14 6.148-10.75 8.461-16.728 5.01z" />
</svg>
INSCREVER
</button>
</div>
</div>
<input type="text" name="email_address_check" value="" class="input--hidden">
<input type="hidden" name="locale" value="en">
</form>
</div>
</div>
</div>
<!-- END - We recommend to place the below code where you want the form in your website html -->
<!-- START - We recommend to place the below code in footer or bottom of your website html -->
<script>
window.REQUIRED_CODE_ERROR_MESSAGE = 'Please choose a country code';
window.LOCALE = 'en';
window.EMAIL_INVALID_MESSAGE = window.SMS_INVALID_MESSAGE = "Informação inválida.";
window.REQUIRED_ERROR_MESSAGE = "Esse campo não pode ficar em branco. ";
window.GENERIC_INVALID_MESSAGE = "Informação inválida.";
window.translation = {
common: {
selectedList: '{quantity} list selected',
selectedLists: '{quantity} lists selected'
}
};
var AUTOHIDE = Boolean(0);
</script>
<script src="https://sibforms.com/forms/end-form/build/main.js"></script>
<!-- END - We recommend to place the above code in footer or bottom of your website html -->
<!-- End Sendinblue Form -->