-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
2239 lines (2190 loc) · 173 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>
<!--
Python Nordeste 2022
Pessoas > Tecnologia
✊🏿✊🏾✊🏽✊✊🏼✊🏻 🏳️🌈🏳️⚧️♿
-->
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Primary Meta Tags -->
<title>PyNE22 | Python Nordeste - 2022 | Aracaju - SE, Brasil | 26, 27 e 28 de Agosto</title>
<meta name="title" content="PyNE22 | Python Nordeste - 2022 | Aracaju - SE, Brasil | 26, 27 e 28 de Agosto">
<meta name="description" content="A edição da Python Nordeste da diversidade e inclusão. Da comunidade, para a comunidade.">
<!-- Open Graph / Facebook Meta Tags -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://2022.pythonbrasil.org.br/">
<meta property="og:title" content="PyNE22 | Python Nordeste - 2022 | Aracaju - SE, Brasil | 26, 27 e 28 de Agosto">
<meta property="og:description" content="A edição da Python Nordeste da diversidade e inclusão. Da comunidade, para a comunidade.">
<meta property="og:image" content="img/miniatura_website.jpg">
<!-- Twitter Meta Tags -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://2022.pythonbrasil.org.br/">
<meta property="twitter:title" content="PyNE22 | Python Nordeste - 2022 | Aracaju - SE, Brasil | 26, 27 e 28 de Agosto">
<meta property="twitter:description" content="A edição da Python Nordeste da diversidade e inclusão. Da comunidade, para a comunidade.">
<meta property="twitter:image" content="img/miniatura_website.jpg">
<!-- Icons -->
<link rel="apple-touch-icon" sizes="57x57" href="img/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="img/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="img/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="img/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="img/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="img/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="img/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="img/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="img/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="img/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="img/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png">
<meta name="msapplication-TileColor" content="#D70800">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#D70800">
<!-- Fonts / Styles -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Rowdies:wght@300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/main.min.css?v=1.3">
<script>console.log("\nPython Nordeste 2022\n\nPessoas > Tecnologia\n✊🏿✊🏾✊🏽✊✊🏼✊🏻 🏳️🌈🏳️⚧️♿\n ")</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-L0X42JQJ9N"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-L0X42JQJ9N');
</script>
</head>
<body class="">
<div id="decoration-left" class="decorations" role="img" aria-label="Bandeirolas flutuando">
<img src="img/l_fita1.png" alt="Fita Vermelha" id="left-ribbon1">
<img src="img/l_fita2.png" alt="Fitas Azul e Amarela" id="left-ribbon2">
</div>
<div id="decoration-right" class="decorations" role="img" aria-label="Bandeirolas flutuando">
<img src="img/r_fita1.png" alt="Fita Amarela" id="right-ribbon1">
<img src="img/r_fita2.png" alt="Fita Azul e Vermelha" id="right-ribbon2">
<img src="img/r_fita3.png" alt="Fita Verde" id="right-ribbon3">
</div>
<navbar>
<ul>
<li>
<a href="#intro">
<span>início</span>
<svg role="img" aria-label="Bandeirola" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="147" height="134" viewBox="0 0 147 164">
<defs>
<clipPath id="clip-vermelha">
<rect width="147" height="134"/>
</clipPath>
</defs>
<g class="vermelha" clip-path="url(#clip-vermelha)">
<path d="M147,134h0L73.5,82,0,134V0H147V134Z" fill="#d70800"/>
</g>
</svg>
</a>
</li>
<li class="display-md">
<a href="#agenda" class="agenda">
<span>agenda</span>
<svg role="img" aria-label="Bandeirola" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="147" height="134" viewBox="0 0 147 164">
<defs>
<clipPath id="clip-roxo">
<rect width="147" height="134"/>
</clipPath>
</defs>
<g class="roxo" clip-path="url(#clip-roxo)">
<path d="M147,134h0L73.5,82,0,134V0H147V134Z" fill="#5E17EB"/>
</g>
</svg>
</a>
</li>
<li>
<a href="#patrocinio" class="patrocinio">
<span>patrocínio</span>
<svg role="img" aria-label="Bandeirola" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="147" height="134" viewBox="0 0 147 164">
<defs>
<clipPath id="clip-verde">
<rect width="147" height="134"/>
</clipPath>
</defs>
<g class="verde" clip-path="url(#clip-verde)">
<path d="M147,134h0L73.5,82,0,134V0H147V134Z" fill="#00923f"/>
</g>
</svg>
</a>
</li>
<li>
<a href="#coc" class="coc">
<span class="preto">código de<br/>conduta</span>
<svg role="img" aria-label="Bandeirola" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="147" height="134" viewBox="0 0 147 164">
<defs>
<clipPath id="clip-amarela">
<rect width="147" height="134"/>
</clipPath>
</defs>
<g class="amarela" clip-path="url(#clip-amarela)">
<path d="M147,134h0L73.5,82,0,134V0H147V134Z" fill="#ffc900"/>
</g>
</svg>
</a>
</li>
<li>
<a href="#sobre" class="sobre">
<span>sobre</span>
<svg role="img" aria-label="Bandeirola" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="147" height="134" viewBox="0 0 147 164">
<defs>
<clipPath id="clip-azul2">
<rect width="147" height="134"/>
</clipPath>
</defs>
<g class="azul" clip-path="url(#clip-azul2)">
<path d="M147,134h0L73.5,82,0,134V0H147V134Z" fill="#150069"/>
</g>
</svg>
</a>
</li>
<li>
<button id="btnDarkmode" type="button">
<img src="img/lampada_preta.png" alt="Lâmpada Preta" id="lampada-preta">
<img src="img/lampada_branca.png" alt="Lâmpada Branca" id="lampada-branca">
</button>
</li>
</ul>
</navbar>
<navbar id="extra" class="display-sm">
<ul>
<li>
<a href="#agenda" class="agenda">
<span>agenda</span>
<svg role="img" aria-label="Bandeirola" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="147" height="134" viewBox="0 0 147 164">
<defs>
<clipPath id="clip-roxo2">
<rect width="147" height="134"/>
</clipPath>
</defs>
<g class="azul" clip-path="url(#clip-roxo2)">
<path d="M147,134h0L73.5,82,0,134V0H147V134Z" fill="#5E17EB"/>
</g>
</svg>
</a>
</li>
</ul>
</navbar>
<main class="mw-main">
<header class="w-100">
<div id="cobracaju" role="img" aria-label="Cobra python azul enrolada em um caju amarelo e verde e animações com os textos Aracaju, Sergipe e 26, 27 e 28 Agosto"></div>
</header>
<section id="intro">
<div class="descricao pd-section">
<h1>
<span class="verde">Da comunidade,</span><br/>
<span class="vermelho">para a comunidade.</span>
</h1>
<p>
A Python Nordeste 2022 nasceu com a tarefa de promover o máximo de diversidade e inclusão durante os três dias do evento.
</p>
<p>
Nossa organização, durante todo o processo de criação do evento (desde a escolha da equipe organizadora, definição do local, esquema de palestras, convites de keynotes) se preocupou ao máximo com a entrega de uma PyNE onde realmente fosse possível promover a conexão entre pessoas muito além da entrega de conhecimentos em tecnologia.
</p>
<p>
Temos muito orgulho em dizer a todas as pessoas que a PyNE22 é uma edição <b class="rainbow-text">da comunidade, para a comunidade</b>, pois, somos uma edição 100% pautada em pluralidade, diversidade, respeito e inclusão.
</p>
<p>
Será um imenso prazer fazermos parte deste evento e dividir um pouco da nossa pluralidade. Esperamos todes vocês por aqui!
</p>
</div>
</section>
<div class="cauda">
<svg role="img" aria-label="Corpo de uma cobra azul" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1480" height="155" viewBox="0 0 1480 155">
<defs>
<clipPath id="clip-corpo_da_cobra1">
<rect width="1480" height="155"/>
</clipPath>
</defs>
<g id="corpo_da_cobra1" clip-path="url(#clip-corpo_da_cobra1)">
<g id="Grupo_38" data-name="Grupo 38" transform="translate(200 -35)">
<g id="Grupo_37" data-name="Grupo 37" transform="translate(1363.556 -1089.117)">
<path id="Caminho_1" data-name="Caminho 1" d="M1112.629-381.245s-82.343-63.75-181.374,0-178.255,0-178.255,0" transform="translate(-1577.066 1582.453)" fill="none" stroke="#150069" stroke-width="48"/>
<path id="Caminho_14" data-name="Caminho 14" d="M1112.629-381.245s-82.343-63.75-181.374,0-178.255,0-178.255,0" transform="translate(-1219.002 1580.695)" fill="none" stroke="#150069" stroke-width="48"/>
<path id="Caminho_3" data-name="Caminho 3" d="M1112.629-381.245s-82.343-63.75-181.374,0-178.255,0-178.255,0" transform="translate(-2294.556 1584.221)" fill="none" stroke="#150069" stroke-width="48"/>
<path id="Caminho_2" data-name="Caminho 2" d="M1112.629-381.245s-82.343-63.75-181.374,0-178.255,0-178.255,0" transform="translate(-1936.106 1583.043)" fill="none" stroke="#150069" stroke-width="48"/>
</g>
</g>
</g>
</svg>
</div>
<section id="geral" class="pd-section">
<div class="linha">
<div class="coluna text-center">
<img class="lazy-loading" data-src="img/nordeste.svg" class="nordeste mw-100 lazy-loading" alt="Nordeste">
<img class="lazy-loading" data-src="img/nordeste_dark.svg" style="display: none" class="nordeste_noturno mw-100 lazy-loading" alt="Nordeste">
</div>
<div class="coluna">
<h1 class="amarelo-escuro">Sobre a<br/>Python Nordeste</h1>
<p>
A Python Nordeste é o <b>maior encontro da comunidade Python</b> na região. É um evento itinerante que ocorre anualmente nas cidades do Nordeste.
</p>
<p>
Com foco na promoção da <span class="rainbow-text">diversidade</span> e troca de experiências e conhecimento, o evento é voltado para indivíduos de diversas áreas e origens, <b>sem distinção</b> de conhecimento técnico ou atuação na área.
</p>
</div>
</div>
<p>
O encontro visa difundir a linguagem entre universidades, empresas, instituições da sociedade civil e indivíduos em busca de novos conhecimentos, promovendo assim a difusão da cultura do Software Livre e o estímulo ao desenvolvimento na Região Nordeste.
</p>
</section>
<div class="cauda">
<svg role="img" aria-label="Corpo de uma cobra azul" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1480" height="155" viewBox="0 0 1480 155">
<defs>
<clipPath id="clip-corpo_da_cobra1">
<rect width="1480" height="155"/>
</clipPath>
</defs>
<g id="corpo_da_cobra1" clip-path="url(#clip-corpo_da_cobra1)">
<g id="Grupo_38" data-name="Grupo 38" transform="translate(200 -35)">
<g id="Grupo_37" data-name="Grupo 37" transform="translate(1363.556 -1089.117)">
<path id="Caminho_1" data-name="Caminho 1" d="M1112.629-381.245s-82.343-63.75-181.374,0-178.255,0-178.255,0" transform="translate(-1577.066 1582.453)" fill="none" stroke="#150069" stroke-width="48"/>
<path id="Caminho_14" data-name="Caminho 14" d="M1112.629-381.245s-82.343-63.75-181.374,0-178.255,0-178.255,0" transform="translate(-1219.002 1580.695)" fill="none" stroke="#150069" stroke-width="48"/>
<path id="Caminho_3" data-name="Caminho 3" d="M1112.629-381.245s-82.343-63.75-181.374,0-178.255,0-178.255,0" transform="translate(-2294.556 1584.221)" fill="none" stroke="#150069" stroke-width="48"/>
<path id="Caminho_2" data-name="Caminho 2" d="M1112.629-381.245s-82.343-63.75-181.374,0-178.255,0-178.255,0" transform="translate(-1936.106 1583.043)" fill="none" stroke="#150069" stroke-width="48"/>
</g>
</g>
</g>
</svg>
</div>
<section id="patrocinio">
<h1 class="verde text-center">
Patrocínio
</h1>
<p class="text-center">
Baixe aqui o nosso Plano de Patrocínio com<br/>as modalidades, benefícios e todas as<br/>informações que você precisa.
</p>
<div class="text-center planos">
<a href="[PT-BR] Plano de Patrocínio - PyNE 2022.pdf" target="_blank" download class="padrao text-uppercase">
download em pdf
</a>
<a href="[EN] Sponsorship Plan - PyNE 2022.pdf" target="_blank" download class="padrao light text-uppercase">
English version
</a>
</div>
<div id="patrocinadores">
<h4 class="verde text-center">
Diamante
</h4>
<div id="diamante" class="linha text-center">
<a class="margin-auto" href="https://lend.tech/" target="_blank">
<img class="lazy-loading" data-src="img/lend.png" alt="LEND">
</a>
<a class="margin-auto" href="https://www.unit.br/" target="_blank">
<img class="lazy-loading" data-src="img/unit.png?v=1.0" alt="Unit">
</a>
<a class="margin-auto" href="https://www.tiradentesinnovation.com/" target="_blank">
<img class="lazy-loading" data-src="img/tic.png?v=1.0" alt="Tiradentes Innovation Center">
</a>
</div>
<h4 class="verde text-center">
Ouro
</h4>
<div id="ouro" class="linha text-center">
<a class="margin-auto" href="https://labcodes.com.br/careers" target="_blank">
<img class="lazy-loading" data-src="img/labcodes.png" alt="LABCODES">
</a>
</div>
<h4 class="verde text-center">
Prata
</h4>
<div id="prata" class="linha text-center menor">
<a class="margin-auto" href="https://www.globo.com/" target="_blank">
<img class="lazy-loading" data-src="img/globo.png" alt="Globo">
</a>
</div>
<h4 class="verde text-center">
Bronze
</h4>
<div id="bronze" class="linha text-center menor mw">
<a class="margin-auto" href="https://www.vinta.com.br/careers/" target="_blank">
<img class="lazy-loading" data-src="img/vinta.png" alt="VINTA">
</a>
<a class="margin-auto" href="https://carreiras.magazineluiza.com.br/times/Luizalabs" target="_blank">
<img class="lazy-loading" data-src="img/luizalabs.png" alt="Luizalabs">
</a>
<a class="margin-auto" href="https://www.thoughtworks.com/pt-br" target="_blank">
<img class="lazy-loading" data-src="img/tw.png" alt="Thoughtworks">
</a>
</div>
<h4 class="verde text-center">
Apoio
</h4>
<div id="apoio" class="linha text-center menor">
<a class="margin-auto" href="https://www.python.org/psf-landing/" target="_blank">
<img class="lazy-loading" data-src="img/psf.png" alt="PSF">
</a>
<a href="https://afropython.org/" target="_blank">
<img class="lazy-loading" data-src="img/afropython.png" alt="Afro Python">
</a>
<a href="https://todasasletras.org/" target="_blank">
<img class="lazy-loading" data-src="img/todas_as_letras.png" alt="Todas as Letras">
</a>
<a href="https://www.instagram.com/projeto.remonta/" target="_blank">
<img class="lazy-loading" data-src="img/remonta.png" alt="Projeto Remonta">
</a>
<a href="https://www.aracajucoraishotel.com/" target="_blank">
<img class="lazy-loading" data-src="img/aracaju_corais.PNG" alt="Aracaju Corais Hotel">
</a>
<a href="http://se.python.org.br/" target="_blank">
<img class="lazy-loading" data-src="img/pugse.png" alt="Python User Group Sergipe">
</a>
<a href="https://www.instagram.com/pyladiessergipe/" target="_blank">
<img class="lazy-loading" data-src="img/pyladies.png" alt="Pyladies Sergipe">
</a>
<a href="https://asn.rocks/" target="_blank">
<img class="lazy-loading" data-src="img/asn.png" alt="ASN Rocks">
</a>
<a href="https://www.diversidata.com.br/" target="_blank">
<img class="lazy-loading" data-src="img/diversidata.png" alt="diversiData">
</a>
<a href="https://www.linuxtips.io/" target="_blank">
<img class="lazy-loading" data-src="img/linuxtips.png" alt="LINUXtips">
</a>
</div>
</div>
</section>
<div class="cauda">
<svg role="img" aria-label="Corpo e cauda de uma cobra azul" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1480" height="155" viewBox="0 0 1480 155">
<defs>
<clipPath id="clip-corpo_da_cobra1">
<rect width="1480" height="155"/>
</clipPath>
</defs>
<g id="corpo_da_cobra1" clip-path="url(#clip-corpo_da_cobra1)">
<g id="Grupo_38" data-name="Grupo 38" transform="translate(200 -35)">
<g id="Grupo_37" data-name="Grupo 37" transform="translate(1363.556 -1089.117)">
<path id="Caminho_1" data-name="Caminho 1" d="M1112.629-381.245s-82.343-63.75-181.374,0-178.255,0-178.255,0" transform="translate(-1577.066 1582.453)" fill="none" stroke="#150069" stroke-width="48"/>
<path id="Caminho_14" data-name="Caminho 14" d="M1112.629-381.245s-82.343-63.75-181.374,0-178.255,0-178.255,0" transform="translate(-1219.002 1580.695)" fill="none" stroke="#150069" stroke-width="48"/>
<path id="Caminho_3" data-name="Caminho 3" d="M1112.629-381.245s-82.343-63.75-181.374,0-178.255,0-178.255,0" transform="translate(-2294.556 1584.221)" fill="none" stroke="#150069" stroke-width="48"/>
<path id="Caminho_2" data-name="Caminho 2" d="M1112.629-381.245s-82.343-63.75-181.374,0-178.255,0-178.255,0" transform="translate(-1936.106 1583.043)" fill="none" stroke="#150069" stroke-width="48"/>
</g>
</g>
</g>
</svg>
</div>
<section id="agenda">
<h1 class="roxo text-center">
Agenda
</h1>
<ul id="nav-agenda" class="nav nav-pills lgx-nav lgx-nav-nogap lgx-nav-colorful"> <!--lgx-nav-nogap lgx-nav-colorful-->
<li><a class="cursor-pointer" data-toggle="pill" data-href="#dia1"><h3>Dia 1</h3> <p class="text-center"><span>26 de Agosto</p></a></li>
<li><a class="cursor-pointer" data-toggle="pill" data-href="#dia2"><h3>Dia 2</h3> <p class="text-center"><span>27 de Agosto</p></a></li>
<li><a class="cursor-pointer" data-toggle="pill" data-href="#dia3"><h3>Dia 3</h3> <p class="text-center"><span>28 de Agosto</p></a></li>
</ul>
<div id="tab-panel-agenda" class="tab-content lgx-tab-content">
<div id="dia1" class="tab-pane fade">
<div class="panel-group" role="tablist" aria-multiselectable="true">
<div class="panel panel-default lgx-panel full">
<div class="location bg-verde">
<a href="https://g.page/tiradentesinnovation?share" target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30px" height="20px" viewBox="0 0 395.71 395.71" role="img" aria-label="Localização" xml:space="preserve">
<g>
<path d="M197.849,0C122.131,0,60.531,61.609,60.531,137.329c0,72.887,124.591,243.177,129.896,250.388l4.951,6.738
c0.579,0.792,1.501,1.255,2.471,1.255c0.985,0,1.901-0.463,2.486-1.255l4.948-6.738c5.308-7.211,129.896-177.501,129.896-250.388
C335.179,61.609,273.569,0,197.849,0z M197.849,88.138c27.13,0,49.191,22.062,49.191,49.191c0,27.115-22.062,49.191-49.191,49.191
c-27.114,0-49.191-22.076-49.191-49.191C148.658,110.2,170.734,88.138,197.849,88.138z" fill="#fff"/>
</g>
</svg>
<span>Tiradentes Innovation Center (TIC)</span>
</a>
</div>
<div class="panel-heading" role="tab">
<div class="single">
<h5 class="time w-100 text-center"><span><strong>14:00</strong></span></h5>
<h4 class="text-uppercase w-100 text-center">início do credenciamento</h4>
</div>
</div>
</div>
</div>
<div class="panel-group" role="tablist" aria-multiselectable="true">
<div class="panel panel-default lgx-panel full">
<div class="location bg-laranja">
<a href="https://goo.gl/maps/QvWoqMj7svJpaACT6" target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30px" height="20px" viewBox="0 0 395.71 395.71" role="img" aria-label="Localização" xml:space="preserve">
<g>
<path d="M197.849,0C122.131,0,60.531,61.609,60.531,137.329c0,72.887,124.591,243.177,129.896,250.388l4.951,6.738
c0.579,0.792,1.501,1.255,2.471,1.255c0.985,0,1.901-0.463,2.486-1.255l4.948-6.738c5.308-7.211,129.896-177.501,129.896-250.388
C335.179,61.609,273.569,0,197.849,0z M197.849,88.138c27.13,0,49.191,22.062,49.191,49.191c0,27.115-22.062,49.191-49.191,49.191
c-27.114,0-49.191-22.076-49.191-49.191C148.658,110.2,170.734,88.138,197.849,88.138z" fill="#fff"/>
</g>
</svg>
<strong>Trilha: </strong> <span> Tototó (Auditório - Bloco D)</span>
</a>
</div>
<div class="panel-heading" role="tab">
<div class="panel-title">
<div class="lgx-single-schedule">
<div class="author author-multi">
<img class="lazy-loading" data-src="img/palestrantes/anicely.jpg" alt="Palestrante">
<img class="lazy-loading" data-src="img/palestrantes/lorena.jpg" alt="Palestrante">
<img class="lazy-loading" data-src="img/palestrantes/dandara.jpg" alt="Palestrante">
<img class="lazy-loading" data-src="img/palestrantes/lis.jpg" alt="Palestrante">
</div>
<div class="schedule-info text-center">
<h4 class="time">15:00 - 15:50</h4>
<h2 class="title">Comunidade, Diversidade & Inclusão: Desafios e Estratégias</h2>
<h4 class="author-info">Palestrante (s):
<span>Anicely Santos</span>,
<span>Lorena Pereira</span> &
<span>Dandara Sousa</span>
</h4>
<h4 class="author-info">Mediadora:
<span>Lis Barreto</span>
</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="panel-group" role="tablist" aria-multiselectable="true">
<div class="panel panel-default lgx-panel full">
<div class="location bg-laranja">
<a href="https://goo.gl/maps/QvWoqMj7svJpaACT6" target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30px" height="20px" viewBox="0 0 395.71 395.71" role="img" aria-label="Localização" xml:space="preserve">
<g>
<path d="M197.849,0C122.131,0,60.531,61.609,60.531,137.329c0,72.887,124.591,243.177,129.896,250.388l4.951,6.738
c0.579,0.792,1.501,1.255,2.471,1.255c0.985,0,1.901-0.463,2.486-1.255l4.948-6.738c5.308-7.211,129.896-177.501,129.896-250.388
C335.179,61.609,273.569,0,197.849,0z M197.849,88.138c27.13,0,49.191,22.062,49.191,49.191c0,27.115-22.062,49.191-49.191,49.191
c-27.114,0-49.191-22.076-49.191-49.191C148.658,110.2,170.734,88.138,197.849,88.138z" fill="#fff"/>
</g>
</svg>
<strong>Trilha: </strong> <span> Tototó (Auditório - Bloco D)</span>
</a>
</div>
<div class="panel-heading" role="tab">
<div class="panel-title">
<div class="lgx-single-schedule">
<div class="author">
<img class="lazy-loading w-100" data-src="img/palestrantes/nina.png" alt="Palestrante">
</div>
<div class="schedule-info text-center">
<h4 class="time">16:00 - 17:00</h4>
<h3 class="title keynote"><span class="bg-amarelo">KEYNOTE</span></h3>
<h3 class="author-info keynote"><span>Nina da Hora</span></h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="dia2" class="tab-pane fade">
<!-- credenciamento -->
<div class="panel-group" role="tablist" aria-multiselectable="true">
<div class="panel panel-default lgx-panel full">
<div class="location bg-verde">
<a href="https://g.page/tiradentesinnovation?share" target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30px" height="20px" viewBox="0 0 395.71 395.71" role="img" aria-label="Localização" xml:space="preserve">
<g>
<path d="M197.849,0C122.131,0,60.531,61.609,60.531,137.329c0,72.887,124.591,243.177,129.896,250.388l4.951,6.738
c0.579,0.792,1.501,1.255,2.471,1.255c0.985,0,1.901-0.463,2.486-1.255l4.948-6.738c5.308-7.211,129.896-177.501,129.896-250.388
C335.179,61.609,273.569,0,197.849,0z M197.849,88.138c27.13,0,49.191,22.062,49.191,49.191c0,27.115-22.062,49.191-49.191,49.191
c-27.114,0-49.191-22.076-49.191-49.191C148.658,110.2,170.734,88.138,197.849,88.138z" fill="#fff"/>
</g>
</svg>
<span>Tiradentes Innovation Center (TIC)</span>
</a>
</div>
<div class="panel-heading" role="tab">
<div class="single">
<h5 class="time w-100 text-center"><span><strong>09:00</strong></span></h5>
<h4 class="text-uppercase w-100 text-center">início do credenciamento</h4>
</div>
</div>
</div>
</div>
<!-- /credenciamento -->
<div class="panel-group" role="tablist" aria-multiselectable="true">
<div class="panel panel-default lgx-panel">
<div class="location bg-verde">
<a href="https://g.page/tiradentesinnovation?share" target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30px" height="20px" viewBox="0 0 395.71 395.71" role="img" aria-label="Localização" xml:space="preserve">
<g>
<path d="M197.849,0C122.131,0,60.531,61.609,60.531,137.329c0,72.887,124.591,243.177,129.896,250.388l4.951,6.738
c0.579,0.792,1.501,1.255,2.471,1.255c0.985,0,1.901-0.463,2.486-1.255l4.948-6.738c5.308-7.211,129.896-177.501,129.896-250.388
C335.179,61.609,273.569,0,197.849,0z M197.849,88.138c27.13,0,49.191,22.062,49.191,49.191c0,27.115-22.062,49.191-49.191,49.191
c-27.114,0-49.191-22.076-49.191-49.191C148.658,110.2,170.734,88.138,197.849,88.138z" fill="#fff"/>
</g>
</svg>
<strong>Trilha: </strong> <span> Barco de Fogo (Auditório - TIC)</span>
</a>
</div>
<div class="panel-heading" role="tab">
<div class="panel-title">
<div class="lgx-single-schedule">
<div class="author">
<img class="lazy-loading w-100" data-src="img/palestrantes/marcel.jpg" alt="Palestrante">
</div>
<div class="schedule-info text-center">
<h4 class="time">09:20 - 09:55</h4>
<h3 class="title">Como Análise de Dados com Python me ajudou a correr melhor!</h3>
<h4 class="author-info">Palestrante (s): <span>Marcel Caraciolo</span></h4>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default lgx-panel">
<div class="location bg-laranja">
<a href="https://goo.gl/maps/QvWoqMj7svJpaACT6" target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30px" height="20px" viewBox="0 0 395.71 395.71" role="img" aria-label="Localização" xml:space="preserve">
<g>
<path d="M197.849,0C122.131,0,60.531,61.609,60.531,137.329c0,72.887,124.591,243.177,129.896,250.388l4.951,6.738
c0.579,0.792,1.501,1.255,2.471,1.255c0.985,0,1.901-0.463,2.486-1.255l4.948-6.738c5.308-7.211,129.896-177.501,129.896-250.388
C335.179,61.609,273.569,0,197.849,0z M197.849,88.138c27.13,0,49.191,22.062,49.191,49.191c0,27.115-22.062,49.191-49.191,49.191
c-27.114,0-49.191-22.076-49.191-49.191C148.658,110.2,170.734,88.138,197.849,88.138z" fill="#fff"/>
</g>
</svg>
<strong>Trilha: </strong> <span> Tototó (Auditório - Bloco D)</span>
</a>
</div>
<div class="panel-heading" role="tab">
<div class="panel-title">
<div class="lgx-single-schedule">
<div class="author">
<img class="lazy-loading w-100" data-src="img/palestrantes/alynne.jpg" alt="Palestrante">
</div>
<div class="schedule-info text-center">
<h4 class="time">09:20 - 09:55</h4>
<h3 class="title">Pythinder: usando Kivy para não ficar no vácuo</h3>
<h4 class="author-info">Palestrante (s): <span>Alynne Ferreira</span></h4>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default lgx-panel">
<div class="location bg-rosa">
<a href="https://g.page/tiradentesinnovation?share" target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30px" height="20px" viewBox="0 0 395.71 395.71" role="img" aria-label="Localização" xml:space="preserve">
<g>
<path d="M197.849,0C122.131,0,60.531,61.609,60.531,137.329c0,72.887,124.591,243.177,129.896,250.388l4.951,6.738
c0.579,0.792,1.501,1.255,2.471,1.255c0.985,0,1.901-0.463,2.486-1.255l4.948-6.738c5.308-7.211,129.896-177.501,129.896-250.388
C335.179,61.609,273.569,0,197.849,0z M197.849,88.138c27.13,0,49.191,22.062,49.191,49.191c0,27.115-22.062,49.191-49.191,49.191
c-27.114,0-49.191-22.076-49.191-49.191C148.658,110.2,170.734,88.138,197.849,88.138z" fill="#fff"/>
</g>
</svg>
<strong>Trilha: </strong> <span> Reisado (Class Lab 2 - TIC)</span>
</a>
</div>
<div class="panel-heading" role="tab">
<div class="panel-title">
<div class="lgx-single-schedule">
<div class="author">
<img class="lazy-loading w-100" data-src="img/palestrantes/adolfo.jpg" alt="Palestrante">
</div>
<div class="schedule-info text-center">
<h4 class="time">09:20 - 09:55</h4>
<h3 class="title">Coletando dados do Twitter com Python</h3>
<h4 class="author-info">Palestrante (s): <span>Adolfo Guimarães</span></h4>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="panel-group" role="tablist" aria-multiselectable="true">
<div class="panel panel-default lgx-panel">
<div class="location bg-verde">
<a href="https://g.page/tiradentesinnovation?share" target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30px" height="20px" viewBox="0 0 395.71 395.71" role="img" aria-label="Localização" xml:space="preserve">
<g>
<path d="M197.849,0C122.131,0,60.531,61.609,60.531,137.329c0,72.887,124.591,243.177,129.896,250.388l4.951,6.738
c0.579,0.792,1.501,1.255,2.471,1.255c0.985,0,1.901-0.463,2.486-1.255l4.948-6.738c5.308-7.211,129.896-177.501,129.896-250.388
C335.179,61.609,273.569,0,197.849,0z M197.849,88.138c27.13,0,49.191,22.062,49.191,49.191c0,27.115-22.062,49.191-49.191,49.191
c-27.114,0-49.191-22.076-49.191-49.191C148.658,110.2,170.734,88.138,197.849,88.138z" fill="#fff"/>
</g>
</svg>
<strong>Trilha: </strong> <span> Barco de Fogo (Auditório - TIC)</span>
</a>
</div>
<div class="panel-heading" role="tab">
<div class="panel-title">
<div class="lgx-single-schedule">
<div class="author">
<img class="lazy-loading w-100" data-src="img/palestrantes/anne.jpg" alt="Palestrante">
</div>
<div class="schedule-info text-center">
<h4 class="time">10:00 - 10:35</h4>
<h3 class="title">Analisando dados do ENCEEJA com Python + PowerBI</h3>
<h4 class="author-info">Palestrante (s): <span>Anne Kelly</span></h4>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default lgx-panel">
<div class="location bg-azul">
<a href="https://g.page/tiradentesinnovation?share" target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30px" height="20px" viewBox="0 0 395.71 395.71" role="img" aria-label="Localização" xml:space="preserve">
<g>
<path d="M197.849,0C122.131,0,60.531,61.609,60.531,137.329c0,72.887,124.591,243.177,129.896,250.388l4.951,6.738
c0.579,0.792,1.501,1.255,2.471,1.255c0.985,0,1.901-0.463,2.486-1.255l4.948-6.738c5.308-7.211,129.896-177.501,129.896-250.388
C335.179,61.609,273.569,0,197.849,0z M197.849,88.138c27.13,0,49.191,22.062,49.191,49.191c0,27.115-22.062,49.191-49.191,49.191
c-27.114,0-49.191-22.076-49.191-49.191C148.658,110.2,170.734,88.138,197.849,88.138z" fill="#fff"/>
</g>
</svg>
<strong>Trilha: </strong> <span> Xingó (Class Lab 1 - TIC)</span>
</a>
</div>
<div class="panel-heading" role="tab">
<div class="panel-title">
<div class="lgx-single-schedule">
<div class="author author-multi">
<img class="lazy-loading" data-src="img/palestrantes/alexandre.jpg" alt="Palestrante">
<img class="lazy-loading" data-src="img/palestrantes/gabriela.jpg" alt="Palestrante">
</div>
<div class="schedule-info text-center">
<h4 class="time">10:00 - 11:55</h4>
<h3 class="title">Jornalismo de Dados em Python</h3>
<h4 class="author-info">Palestrante (s): <span>Alexandre Cajazeira</span> & <span>Gabriela Custódio</span></h4>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default lgx-panel">
<div class="location bg-rosa">
<a href="https://g.page/tiradentesinnovation?share" target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30px" height="20px" viewBox="0 0 395.71 395.71" role="img" aria-label="Localização" xml:space="preserve">
<g>
<path d="M197.849,0C122.131,0,60.531,61.609,60.531,137.329c0,72.887,124.591,243.177,129.896,250.388l4.951,6.738
c0.579,0.792,1.501,1.255,2.471,1.255c0.985,0,1.901-0.463,2.486-1.255l4.948-6.738c5.308-7.211,129.896-177.501,129.896-250.388
C335.179,61.609,273.569,0,197.849,0z M197.849,88.138c27.13,0,49.191,22.062,49.191,49.191c0,27.115-22.062,49.191-49.191,49.191
c-27.114,0-49.191-22.076-49.191-49.191C148.658,110.2,170.734,88.138,197.849,88.138z" fill="#fff"/>
</g>
</svg>
<strong>Trilha: </strong> <span> Reisado (Class Lab 2 - TIC)</span>
</a>
</div>
<div class="panel-heading" role="tab">
<div class="panel-title">
<div class="lgx-single-schedule">
<div class="author author-multi">
<img class="lazy-loading" data-src="img/palestrantes/kadidja.jpg" alt="Palestrante">
<img class="lazy-loading" data-src="img/palestrantes/kerlla.jpg" alt="Palestrante">
</div>
<div class="schedule-info text-center">
<h4 class="time">10:00 - 11:55</h4>
<h3 class="title">Programação com Flowgorithm (Hands on Python)</h3>
<h4 class="author-info">Palestrante (s): <span>Kadidja Valéria</span> & <span>Kerlla Luz</span></h4>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="panel-group" role="tablist" aria-multiselectable="true">
<div class="panel panel-default lgx-panel">
<div class="location bg-verde">
<a href="https://g.page/tiradentesinnovation?share" target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30px" height="20px" viewBox="0 0 395.71 395.71" role="img" aria-label="Localização" xml:space="preserve">
<g>
<path d="M197.849,0C122.131,0,60.531,61.609,60.531,137.329c0,72.887,124.591,243.177,129.896,250.388l4.951,6.738
c0.579,0.792,1.501,1.255,2.471,1.255c0.985,0,1.901-0.463,2.486-1.255l4.948-6.738c5.308-7.211,129.896-177.501,129.896-250.388
C335.179,61.609,273.569,0,197.849,0z M197.849,88.138c27.13,0,49.191,22.062,49.191,49.191c0,27.115-22.062,49.191-49.191,49.191
c-27.114,0-49.191-22.076-49.191-49.191C148.658,110.2,170.734,88.138,197.849,88.138z" fill="#fff"/>
</g>
</svg>
<strong>Trilha: </strong> <span> Barco de Fogo (Auditório - TIC)</span>
</a>
</div>
<div class="panel-heading" role="tab">
<div class="panel-title">
<div class="lgx-single-schedule">
<div class="author">
<img class="lazy-loading w-100" data-src="img/palestrantes/vinicius.jpg" alt="Palestrante">
</div>
<div class="schedule-info text-center">
<h4 class="time">10:40 - 11:15</h4>
<h3 class="title">Os três primeiros meses de 2020 - Análise com Python do primeiro impacto do covid-19 </h3>
<h4 class="author-info">Palestrante (s): <span>Luis Vinicius Lauriano de França</span></h4>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default lgx-panel">
<div class="location bg-laranja">
<a href="https://goo.gl/maps/QvWoqMj7svJpaACT6" target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30px" height="20px" viewBox="0 0 395.71 395.71" role="img" aria-label="Localização" xml:space="preserve">
<g>
<path d="M197.849,0C122.131,0,60.531,61.609,60.531,137.329c0,72.887,124.591,243.177,129.896,250.388l4.951,6.738
c0.579,0.792,1.501,1.255,2.471,1.255c0.985,0,1.901-0.463,2.486-1.255l4.948-6.738c5.308-7.211,129.896-177.501,129.896-250.388
C335.179,61.609,273.569,0,197.849,0z M197.849,88.138c27.13,0,49.191,22.062,49.191,49.191c0,27.115-22.062,49.191-49.191,49.191
c-27.114,0-49.191-22.076-49.191-49.191C148.658,110.2,170.734,88.138,197.849,88.138z" fill="#fff"/>
</g>
</svg>
<strong>Trilha: </strong> <span> Tototó (Auditório - Bloco D)</span>
</a>
</div>
<div class="panel-heading" role="tab">
<div class="panel-title">
<div class="lgx-single-schedule">
<div class="author">
<img class="lazy-loading w-100" data-src="img/palestrantes/betim.jpg" alt="Palestrante">
</div>
<div class="schedule-info text-center">
<h4 class="time">10:40 - 11:15</h4>
<h3 class="title">Testando seu codigo Python com Pytest</h3>
<h4 class="author-info">Palestrante (s): <span>Betim Gomes</span></h4>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="panel-group" role="tablist" aria-multiselectable="true">
<div class="panel panel-default lgx-panel">
<div class="location bg-verde">
<a href="https://g.page/tiradentesinnovation?share" target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30px" height="20px" viewBox="0 0 395.71 395.71" role="img" aria-label="Localização" xml:space="preserve">
<g>
<path d="M197.849,0C122.131,0,60.531,61.609,60.531,137.329c0,72.887,124.591,243.177,129.896,250.388l4.951,6.738
c0.579,0.792,1.501,1.255,2.471,1.255c0.985,0,1.901-0.463,2.486-1.255l4.948-6.738c5.308-7.211,129.896-177.501,129.896-250.388
C335.179,61.609,273.569,0,197.849,0z M197.849,88.138c27.13,0,49.191,22.062,49.191,49.191c0,27.115-22.062,49.191-49.191,49.191
c-27.114,0-49.191-22.076-49.191-49.191C148.658,110.2,170.734,88.138,197.849,88.138z" fill="#fff"/>
</g>
</svg>
<strong>Trilha: </strong> <span> Barco de Fogo (Auditório - TIC)</span>
</a>
</div>
<div class="panel-heading" role="tab">
<div class="panel-title">
<div class="lgx-single-schedule">
<div class="author">
<img class="lazy-loading w-100" data-src="img/palestrantes/jules.jpg" alt="Palestrante">
</div>
<div class="schedule-info text-center">
<h4 class="time">11:20 - 11:55</h4>
<h3 class="title">De montando UTI de Covid para ir montar layout: o que aprendi na transição de carreira?</h3>
<h4 class="author-info">Palestrante (s): <span>Jules</span></h4>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default lgx-panel">
<div class="location bg-laranja">
<a href="https://goo.gl/maps/QvWoqMj7svJpaACT6" target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30px" height="20px" viewBox="0 0 395.71 395.71" role="img" aria-label="Localização" xml:space="preserve">
<g>
<path d="M197.849,0C122.131,0,60.531,61.609,60.531,137.329c0,72.887,124.591,243.177,129.896,250.388l4.951,6.738
c0.579,0.792,1.501,1.255,2.471,1.255c0.985,0,1.901-0.463,2.486-1.255l4.948-6.738c5.308-7.211,129.896-177.501,129.896-250.388
C335.179,61.609,273.569,0,197.849,0z M197.849,88.138c27.13,0,49.191,22.062,49.191,49.191c0,27.115-22.062,49.191-49.191,49.191
c-27.114,0-49.191-22.076-49.191-49.191C148.658,110.2,170.734,88.138,197.849,88.138z" fill="#fff"/>
</g>
</svg>
<strong>Trilha: </strong> <span> Tototó (Auditório - Bloco D)</span>
</a>
</div>
<div class="panel-heading" role="tab">
<div class="panel-title">
<div class="lgx-single-schedule">
<div class="author">
<img class="lazy-loading w-100" data-src="img/palestrantes/vitoria.jpg" alt="Palestrante">
</div>
<div class="schedule-info text-center">
<h4 class="time">11:20 - 11:55</h4>
<h3 class="title">Astrofísica & Python: Um Elo Essencial.</h3>
<h4 class="author-info">Palestrante (s): <span>Vitória Belo</span></h4>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- / -->
<div class="panel-group" role="tablist" aria-multiselectable="true">
<div class="panel panel-default lgx-panel full almoco">
<div class="single">
<h5 class="time w-100 text-center"><span><strong>12h - 13:20</strong></span></h5>
<h4 class="text-uppercase w-100 text-center">almoço</h4>
</div>
</div>
</div>
<!-- / -->
<div class="panel-group" role="tablist" aria-multiselectable="true">
<div class="panel panel-default lgx-panel">
<div class="location bg-verde">
<a href="https://g.page/tiradentesinnovation?share" target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30px" height="20px" viewBox="0 0 395.71 395.71" role="img" aria-label="Localização" xml:space="preserve">
<g>
<path d="M197.849,0C122.131,0,60.531,61.609,60.531,137.329c0,72.887,124.591,243.177,129.896,250.388l4.951,6.738
c0.579,0.792,1.501,1.255,2.471,1.255c0.985,0,1.901-0.463,2.486-1.255l4.948-6.738c5.308-7.211,129.896-177.501,129.896-250.388
C335.179,61.609,273.569,0,197.849,0z M197.849,88.138c27.13,0,49.191,22.062,49.191,49.191c0,27.115-22.062,49.191-49.191,49.191
c-27.114,0-49.191-22.076-49.191-49.191C148.658,110.2,170.734,88.138,197.849,88.138z" fill="#fff"/>
</g>
</svg>
<strong>Trilha: </strong> <span> Barco de Fogo (Auditório - TIC)</span>
</a>
</div>
<div class="panel-heading" role="tab">
<div class="panel-title">
<div class="lgx-single-schedule">
<div class="author">
<img class="lazy-loading w-100" data-src="img/palestrantes/rafa.jpg" alt="Palestrante">
</div>
<div class="schedule-info text-center">
<h4 class="time">09:20 - 09:55</h4>
<h3 class="title">Qual a história que você vai contar?</h3>
<h4 class="author-info">Palestrante (s): <span>Rafa Mengui</span></h4>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default lgx-panel">
<div class="location bg-laranja">
<a href="https://goo.gl/maps/QvWoqMj7svJpaACT6" target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30px" height="20px" viewBox="0 0 395.71 395.71" role="img" aria-label="Localização" xml:space="preserve">
<g>
<path d="M197.849,0C122.131,0,60.531,61.609,60.531,137.329c0,72.887,124.591,243.177,129.896,250.388l4.951,6.738
c0.579,0.792,1.501,1.255,2.471,1.255c0.985,0,1.901-0.463,2.486-1.255l4.948-6.738c5.308-7.211,129.896-177.501,129.896-250.388
C335.179,61.609,273.569,0,197.849,0z M197.849,88.138c27.13,0,49.191,22.062,49.191,49.191c0,27.115-22.062,49.191-49.191,49.191
c-27.114,0-49.191-22.076-49.191-49.191C148.658,110.2,170.734,88.138,197.849,88.138z" fill="#fff"/>
</g>
</svg>
<strong>Trilha: </strong> <span> Tototó (Auditório - Bloco D)</span>
</a>
</div>
<div class="panel-heading" role="tab">
<div class="panel-title">
<div class="lgx-single-schedule">
<div class="author">
<img class="lazy-loading w-100" data-src="img/palestrantes/higor.jpg" alt="Palestrante">
</div>
<div class="schedule-info text-center">
<h4 class="time">13:30 - 14:05</h4>
<h3 class="title">Escrevendo testes melhores com Model-bakery</h3>
<h4 class="author-info">Palestrante (s): <span>Higor Monteiro</span></h4>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default lgx-panel">
<div class="location bg-azul">
<a href="https://g.page/tiradentesinnovation?share" target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30px" height="20px" viewBox="0 0 395.71 395.71" role="img" aria-label="Localização" xml:space="preserve">
<g>
<path d="M197.849,0C122.131,0,60.531,61.609,60.531,137.329c0,72.887,124.591,243.177,129.896,250.388l4.951,6.738
c0.579,0.792,1.501,1.255,2.471,1.255c0.985,0,1.901-0.463,2.486-1.255l4.948-6.738c5.308-7.211,129.896-177.501,129.896-250.388
C335.179,61.609,273.569,0,197.849,0z M197.849,88.138c27.13,0,49.191,22.062,49.191,49.191c0,27.115-22.062,49.191-49.191,49.191
c-27.114,0-49.191-22.076-49.191-49.191C148.658,110.2,170.734,88.138,197.849,88.138z" fill="#fff"/>
</g>
</svg>
<strong>Trilha: </strong> <span> Xingó (Class Lab 1 - TIC)</span>
</a>
</div>
<div class="panel-heading" role="tab">
<div class="panel-title">
<div class="lgx-single-schedule">
<div class="author">
<img class="lazy-loading w-100" data-src="img/palestrantes/pedro.jpg" alt="Palestrante">
</div>
<div class="schedule-info text-center">
<h4 class="time">13:30 - 15:25</h4>
<h3 class="title">Processamento de Linguagem Natural em Python: "De Cabo a Rabo"</h3>
<h4 class="author-info">Palestrante (s): <span>Pedro Assis</span></h4>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default lgx-panel">
<div class="location bg-rosa">
<a href="https://g.page/tiradentesinnovation?share" target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30px" height="20px" viewBox="0 0 395.71 395.71" role="img" aria-label="Localização" xml:space="preserve">
<g>
<path d="M197.849,0C122.131,0,60.531,61.609,60.531,137.329c0,72.887,124.591,243.177,129.896,250.388l4.951,6.738
c0.579,0.792,1.501,1.255,2.471,1.255c0.985,0,1.901-0.463,2.486-1.255l4.948-6.738c5.308-7.211,129.896-177.501,129.896-250.388
C335.179,61.609,273.569,0,197.849,0z M197.849,88.138c27.13,0,49.191,22.062,49.191,49.191c0,27.115-22.062,49.191-49.191,49.191
c-27.114,0-49.191-22.076-49.191-49.191C148.658,110.2,170.734,88.138,197.849,88.138z" fill="#fff"/>
</g>
</svg>
<strong>Trilha: </strong> <span> Reisado (Class Lab 2 - TIC)</span>
</a>
</div>
<div class="panel-heading" role="tab">
<div class="panel-title">
<div class="lgx-single-schedule">
<div class="author">
<img class="lazy-loading w-100" data-src="img/palestrantes/lucas.jpg" alt="Palestrante">
</div>
<div class="schedule-info text-center">
<h4 class="time">13:30 - 15:25</h4>
<h3 class="title">Passo-a-passo da criação do seu portal de dados abertos com o CKAN.</h3>
<h4 class="author-info">Palestrante (s): <span>Lucas Emanuel</span></h4>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="panel-group" role="tablist" aria-multiselectable="true">
<div class="panel panel-default lgx-panel">
<div class="location bg-verde">
<a href="https://g.page/tiradentesinnovation?share" target="_blank">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30px" height="20px" viewBox="0 0 395.71 395.71" role="img" aria-label="Localização" xml:space="preserve">
<g>
<path d="M197.849,0C122.131,0,60.531,61.609,60.531,137.329c0,72.887,124.591,243.177,129.896,250.388l4.951,6.738
c0.579,0.792,1.501,1.255,2.471,1.255c0.985,0,1.901-0.463,2.486-1.255l4.948-6.738c5.308-7.211,129.896-177.501,129.896-250.388
C335.179,61.609,273.569,0,197.849,0z M197.849,88.138c27.13,0,49.191,22.062,49.191,49.191c0,27.115-22.062,49.191-49.191,49.191
c-27.114,0-49.191-22.076-49.191-49.191C148.658,110.2,170.734,88.138,197.849,88.138z" fill="#fff"/>
</g>
</svg>
<strong>Trilha: </strong> <span> Barco de Fogo (Auditório - TIC)</span>
</a>
</div>
<div class="panel-heading" role="tab">
<div class="panel-title">
<div class="lgx-single-schedule">
<div class="author">