-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
1093 lines (1063 loc) · 83.6 KB
/
home.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>
<!-- saved from url=(0063)https://2021.programacomciencia.org.br/exposicao-jardimmineral/ -->
<html class="html" lang="pt-BR">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="profile" href="https://gmpg.org/xfn/11">
<title>Exposicao – Programa CoMciência2021</title>
<meta name="robots" content="max-image-preview:large">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="dns-prefetch" href="https://vlibras.gov.br/">
<link rel="dns-prefetch" href="https://fonts.googleapis.com/">
<link rel="dns-prefetch" href="https://s.w.org/">
<link rel="alternate" type="application/rss+xml" title="Feed para Programa CoMciência2021 »"
href="https://2021.programacomciencia.org.br/feed/">
<script>
window._wpemojiSettings = { "baseUrl": "https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/72x72\/", "ext": ".png", "svgUrl": "https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/svg\/", "svgExt": ".svg", "source": { "concatemoji": "https:\/\/2021.programacomciencia.org.br\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.7.2" } };
!function (e, a, t) { var n, r, o, i = a.createElement("canvas"), p = i.getContext && i.getContext("2d"); function s(e, t) { var a = String.fromCharCode; p.clearRect(0, 0, i.width, i.height), p.fillText(a.apply(this, e), 0, 0); e = i.toDataURL(); return p.clearRect(0, 0, i.width, i.height), p.fillText(a.apply(this, t), 0, 0), e === i.toDataURL() } function c(e) { var t = a.createElement("script"); t.src = e, t.defer = t.type = "text/javascript", a.getElementsByTagName("head")[0].appendChild(t) } for (o = Array("flag", "emoji"), t.supports = { everything: !0, everythingExceptFlag: !0 }, r = 0; r < o.length; r++)t.supports[o[r]] = function (e) { if (!p || !p.fillText) return !1; switch (p.textBaseline = "top", p.font = "600 32px Arial", e) { case "flag": return s([127987, 65039, 8205, 9895, 65039], [127987, 65039, 8203, 9895, 65039]) ? !1 : !s([55356, 56826, 55356, 56819], [55356, 56826, 8203, 55356, 56819]) && !s([55356, 57332, 56128, 56423, 56128, 56418, 56128, 56421, 56128, 56430, 56128, 56423, 56128, 56447], [55356, 57332, 8203, 56128, 56423, 8203, 56128, 56418, 8203, 56128, 56421, 8203, 56128, 56430, 8203, 56128, 56423, 8203, 56128, 56447]); case "emoji": return !s([55357, 56424, 8205, 55356, 57212], [55357, 56424, 8203, 55356, 57212]) }return !1 }(o[r]), t.supports.everything = t.supports.everything && t.supports[o[r]], "flag" !== o[r] && (t.supports.everythingExceptFlag = t.supports.everythingExceptFlag && t.supports[o[r]]); t.supports.everythingExceptFlag = t.supports.everythingExceptFlag && !t.supports.flag, t.DOMReady = !1, t.readyCallback = function () { t.DOMReady = !0 }, t.supports.everything || (n = function () { t.readyCallback() }, a.addEventListener ? (a.addEventListener("DOMContentLoaded", n, !1), e.addEventListener("load", n, !1)) : (e.attachEvent("onload", n), a.attachEvent("onreadystatechange", function () { "complete" === a.readyState && t.readyCallback() })), (n = t.source || {}).concatemoji ? c(n.concatemoji) : n.wpemoji && n.twemoji && (c(n.twemoji), c(n.wpemoji))) }(window, document, window._wpemojiSettings);
</script>
<script src="./assets/wp-emoji-release.min.js.transferir" type="text/javascript" defer=""></script>
<style>
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel="stylesheet" id="scap.flashblock-css" href="./assets/flashblock.css" media="all">
<link rel="stylesheet" id="scap.player-css" href="./assets/player.css" media="all">
<link rel="stylesheet" id="wp-block-library-css" href="./assets/style.min.css" media="all">
<link rel="stylesheet" id="wp-block-library-theme-css" href="./assets/theme.min.css" media="all">
<link rel="stylesheet" id="elementor-frontend-legacy-css" href="./assets/frontend-legacy.min.css" media="all">
<link rel="stylesheet" id="elementor-frontend-css" href="./assets/frontend.min.css" media="all">
<style id="elementor-frontend-inline-css">
@font-face {
font-family: eicons;
src: url(https://2021.programacomciencia.org.br/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.10.0);
src: url(https://2021.programacomciencia.org.br/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.10.0#iefix) format("embedded-opentype"), url(https://2021.programacomciencia.org.br/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2?5.10.0) format("woff2"), url(https://2021.programacomciencia.org.br/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff?5.10.0) format("woff"), url(https://2021.programacomciencia.org.br/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf?5.10.0) format("truetype"), url(https://2021.programacomciencia.org.br/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg?5.10.0#eicon) format("svg");
font-weight: 400;
font-style: normal
}
</style>
<link rel="stylesheet" id="elementor-post-37-css" href="./assets/post-37.css" media="all">
<link rel="stylesheet" id="elementor-post-127-css" href="./assets/post-127.css" media="all">
<link rel="stylesheet" id="font-awesome-css" href="./assets/all.min.css" media="all">
<link rel="stylesheet" id="simple-line-icons-css" href="./assets/simple-line-icons.min.css" media="all">
<link rel="stylesheet" id="oceanwp-style-css" href="./assets/style.min(1).css" media="all">
<link rel="stylesheet" id="oceanwp-google-font-roboto-css" href="./assets/css" media="all">
<link rel="stylesheet" id="oceanwp-google-font-heebo-css" href="./assets/css(1)" media="all">
<link rel="stylesheet" id="pojo-a11y-css" href="./assets/style.min(2).css" media="all">
<link rel="stylesheet" id="elementor-icons-css" href="./assets/elementor-icons.min.css" media="all">
<link rel="stylesheet" id="elementor-animations-css" href="./assets/animations.min.css" media="all">
<link rel="stylesheet" id="elementor-post-10-css" href="./assets/post-10.css" media="all">
<link rel="stylesheet" id="elementor-global-css" href="./assets/global.css" media="all">
<link rel="stylesheet" id="elementor-post-944-css" href="./assets/post-944.css" media="all">
<link rel="stylesheet" id="oe-widgets-style-css" href="./assets/widgets.css" media="all">
<link rel="stylesheet" id="google-fonts-1-css" href="./assets/css(2)" media="all">
<link rel="stylesheet" id="elementor-icons-shared-0-css" href="./assets/fontawesome.min.css" media="all">
<link rel="stylesheet" id="elementor-icons-fa-brands-css" href="./assets/brands.min.css" media="all">
<link rel="stylesheet" id="elementor-icons-fa-solid-css" href="./assets/solid.min.css" media="all">
<script src="./assets/soundmanager2-nodebug-jsmin.js.transferir" id="scap.soundmanager2-js"></script>
<script src="./assets/jquery.min.js.transferir" id="jquery-core-js"></script>
<script src="./assets/jquery-migrate.min.js.transferir" id="jquery-migrate-js"></script>
<script src="./assets/jq-sticky-anything.min.js.transferir" id="stickyAnythingLib-js"></script>
<script src="./assets/vlibras-plugin.js.transferir" id="vlibrasjs-js"></script>
<link rel="stylesheet" href="./assets/style.css" media="all">
<script id="vlibrasjs-js-after">
try { vlibrasjs.load({ async: true }); } catch (e) { }
</script>
<link rel="https://api.w.org/" href="https://2021.programacomciencia.org.br/wp-json/">
<link rel="alternate" type="application/json" href="https://2021.programacomciencia.org.br/wp-json/wp/v2/pages/944">
<link rel="EditURI" type="application/rsd+xml" title="RSD"
href="https://2021.programacomciencia.org.br/xmlrpc.php?rsd">
<link rel="wlwmanifest" type="application/wlwmanifest+xml"
href="https://2021.programacomciencia.org.br/wp-includes/wlwmanifest.xml">
<meta name="generator" content="WordPress 5.7.2">
<link rel="canonical" href="https://2021.programacomciencia.org.br/exposicao-jardimmineral/">
<link rel="shortlink" href="https://2021.programacomciencia.org.br/?p=944">
<link rel="alternate" type="application/json+oembed"
href="https://2021.programacomciencia.org.br/wp-json/oembed/1.0/embed?url=https%3A%2F%2F2021.programacomciencia.org.br%2Fexposicao-jardimmineral%2F">
<link rel="alternate" type="text/xml+oembed"
href="https://2021.programacomciencia.org.br/wp-json/oembed/1.0/embed?url=https%3A%2F%2F2021.programacomciencia.org.br%2Fexposicao-jardimmineral%2F&format=xml">
<link rel="icon" href="https://2021.programacomciencia.org.br/wp-content/uploads/2020/12/favicon.png" sizes="32x32">
<link rel="icon" href="https://2021.programacomciencia.org.br/wp-content/uploads/2020/12/favicon.png" sizes="192x192">
<link rel="apple-touch-icon" href="https://2021.programacomciencia.org.br/wp-content/uploads/2020/12/favicon.png">
<meta name="msapplication-TileImage"
content="https://2021.programacomciencia.org.br/wp-content/uploads/2020/12/favicon.png">
<link rel="stylesheet" href="./assets/style2.css" media="all">
<meta id="acfifjfajpekbmhmjppnmmjgmhjkildl">
</head>
<body
class="page-template-default page page-id-944 page-parent wp-custom-logo wp-embed-responsive oceanwp-theme dropdown-mobile no-header-border default-breakpoint content-full-screen page-header-disabled has-breadcrumbs has-fixed-footer elementor-default elementor-kit-10 elementor-page elementor-page-944 e--ua-blink e--ua-chrome e--ua-webkit"
itemscope="itemscope" itemtype="https://schema.org/WebPage" data-elementor-device-mode="desktop"
data-new-gr-c-s-check-loaded="14.1041.0" data-gr-ext-installed=""><a id="pojo-a11y-skip-content"
class="pojo-skip-link pojo-skip-content" tabindex="1" accesskey="s"
href="https://2021.programacomciencia.org.br/exposicao-jardimmineral/#content">Skip to content</a>
<nav id="pojo-a11y-toolbar" class="pojo-a11y-toolbar-left" role="navigation">
<div class="pojo-a11y-toolbar-toggle">
<a class="pojo-a11y-toolbar-link pojo-a11y-toolbar-toggle-link" href="javascript:void(0);"
title="Ferramentas de Acessibilidade">
<span class="pojo-sr-only sr-only">Open toolbar</span>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="currentColor" width="1em">
<path
d="M50 .8c5.7 0 10.4 4.7 10.4 10.4S55.7 21.6 50 21.6s-10.4-4.7-10.4-10.4S44.3.8 50 .8zM92.2 32l-21.9 2.3c-2.6.3-4.6 2.5-4.6 5.2V94c0 2.9-2.3 5.2-5.2 5.2H60c-2.7 0-4.9-2.1-5.2-4.7l-2.2-24.7c-.1-1.5-1.4-2.5-2.8-2.4-1.3.1-2.2 1.1-2.4 2.4l-2.2 24.7c-.2 2.7-2.5 4.7-5.2 4.7h-.5c-2.9 0-5.2-2.3-5.2-5.2V39.4c0-2.7-2-4.9-4.6-5.2L7.8 32c-2.6-.3-4.6-2.5-4.6-5.2v-.5c0-2.6 2.1-4.7 4.7-4.7h.5c19.3 1.8 33.2 2.8 41.7 2.8s22.4-.9 41.7-2.8c2.6-.2 4.9 1.6 5.2 4.3v1c-.1 2.6-2.1 4.8-4.8 5.1z">
</path>
</svg>
</a>
</div>
<div class="pojo-a11y-toolbar-overlay">
<div class="pojo-a11y-toolbar-inner">
<p class="pojo-a11y-toolbar-title">Ferramentas de Acessibilidade</p>
<ul class="pojo-a11y-toolbar-items pojo-a11y-tools">
<li class="pojo-a11y-toolbar-item">
<a href="https://2021.programacomciencia.org.br/exposicao-jardimmineral/#"
class="pojo-a11y-toolbar-link pojo-a11y-btn-resize-font pojo-a11y-btn-resize-plus"
data-action="resize-plus" data-action-group="resize" tabindex="-1">
<span class="pojo-a11y-toolbar-icon"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1em"
viewBox="0 0 448 448">
<path fill="currentColor"
d="M256 200v16c0 4.25-3.75 8-8 8h-56v56c0 4.25-3.75 8-8 8h-16c-4.25 0-8-3.75-8-8v-56h-56c-4.25 0-8-3.75-8-8v-16c0-4.25 3.75-8 8-8h56v-56c0-4.25 3.75-8 8-8h16c4.25 0 8 3.75 8 8v56h56c4.25 0 8 3.75 8 8zM288 208c0-61.75-50.25-112-112-112s-112 50.25-112 112 50.25 112 112 112 112-50.25 112-112zM416 416c0 17.75-14.25 32-32 32-8.5 0-16.75-3.5-22.5-9.5l-85.75-85.5c-29.25 20.25-64.25 31-99.75 31-97.25 0-176-78.75-176-176s78.75-176 176-176 176 78.75 176 176c0 35.5-10.75 70.5-31 99.75l85.75 85.75c5.75 5.75 9.25 14 9.25 22.5z" "=""></path></svg></span><span class="
pojo-a11y-toolbar-text">Aumentar Fonte</span> </a>
</li>
<li class="pojo-a11y-toolbar-item">
<a href="https://2021.programacomciencia.org.br/exposicao-jardimmineral/#"
class="pojo-a11y-toolbar-link pojo-a11y-btn-resize-font pojo-a11y-btn-resize-minus"
data-action="resize-minus" data-action-group="resize" tabindex="-1">
<span class="pojo-a11y-toolbar-icon"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1em"
viewBox="0 0 448 448">
<path fill="currentColor"
d="M256 200v16c0 4.25-3.75 8-8 8h-144c-4.25 0-8-3.75-8-8v-16c0-4.25 3.75-8 8-8h144c4.25 0 8 3.75 8 8zM288 208c0-61.75-50.25-112-112-112s-112 50.25-112 112 50.25 112 112 112 112-50.25 112-112zM416 416c0 17.75-14.25 32-32 32-8.5 0-16.75-3.5-22.5-9.5l-85.75-85.5c-29.25 20.25-64.25 31-99.75 31-97.25 0-176-78.75-176-176s78.75-176 176-176 176 78.75 176 176c0 35.5-10.75 70.5-31 99.75l85.75 85.75c5.75 5.75 9.25 14 9.25 22.5z">
</path>
</svg></span><span class="pojo-a11y-toolbar-text">Diminuir Fonte</span> </a>
</li>
<li class="pojo-a11y-toolbar-item">
<a href="https://2021.programacomciencia.org.br/exposicao-jardimmineral/#"
class="pojo-a11y-toolbar-link pojo-a11y-btn-background-group pojo-a11y-btn-grayscale"
data-action="grayscale" data-action-group="schema" tabindex="-1">
<span class="pojo-a11y-toolbar-icon"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1em"
viewBox="0 0 448 448">
<path fill="currentColor"
d="M15.75 384h-15.75v-352h15.75v352zM31.5 383.75h-8v-351.75h8v351.75zM55 383.75h-7.75v-351.75h7.75v351.75zM94.25 383.75h-7.75v-351.75h7.75v351.75zM133.5 383.75h-15.5v-351.75h15.5v351.75zM165 383.75h-7.75v-351.75h7.75v351.75zM180.75 383.75h-7.75v-351.75h7.75v351.75zM196.5 383.75h-7.75v-351.75h7.75v351.75zM235.75 383.75h-15.75v-351.75h15.75v351.75zM275 383.75h-15.75v-351.75h15.75v351.75zM306.5 383.75h-15.75v-351.75h15.75v351.75zM338 383.75h-15.75v-351.75h15.75v351.75zM361.5 383.75h-15.75v-351.75h15.75v351.75zM408.75 383.75h-23.5v-351.75h23.5v351.75zM424.5 383.75h-8v-351.75h8v351.75zM448 384h-15.75v-352h15.75v352z">
</path>
</svg></span><span class="pojo-a11y-toolbar-text">Escala de Cinza</span> </a>
</li>
<li class="pojo-a11y-toolbar-item">
<a href="https://2021.programacomciencia.org.br/exposicao-jardimmineral/#"
class="pojo-a11y-toolbar-link pojo-a11y-btn-background-group pojo-a11y-btn-high-contrast"
data-action="high-contrast" data-action-group="schema" tabindex="-1">
<span class="pojo-a11y-toolbar-icon"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1em"
viewBox="0 0 448 448">
<path fill="currentColor"
d="M192 360v-272c-75 0-136 61-136 136s61 136 136 136zM384 224c0 106-86 192-192 192s-192-86-192-192 86-192 192-192 192 86 192 192z" "=""></path></svg></span><span class="
pojo-a11y-toolbar-text">Alto Contraste</span> </a>
</li>
<li class="pojo-a11y-toolbar-item">
<a href="https://2021.programacomciencia.org.br/exposicao-jardimmineral/#"
class="pojo-a11y-toolbar-link pojo-a11y-btn-background-group pojo-a11y-btn-negative-contrast"
data-action="negative-contrast" data-action-group="schema" tabindex="-1">
<span class="pojo-a11y-toolbar-icon"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1em"
viewBox="0 0 448 448">
<path fill="currentColor"
d="M416 240c-23.75-36.75-56.25-68.25-95.25-88.25 10 17 15.25 36.5 15.25 56.25 0 61.75-50.25 112-112 112s-112-50.25-112-112c0-19.75 5.25-39.25 15.25-56.25-39 20-71.5 51.5-95.25 88.25 42.75 66 111.75 112 192 112s149.25-46 192-112zM236 144c0-6.5-5.5-12-12-12-41.75 0-76 34.25-76 76 0 6.5 5.5 12 12 12s12-5.5 12-12c0-28.5 23.5-52 52-52 6.5 0 12-5.5 12-12zM448 240c0 6.25-2 12-5 17.25-46 75.75-130.25 126.75-219 126.75s-173-51.25-219-126.75c-3-5.25-5-11-5-17.25s2-12 5-17.25c46-75.5 130.25-126.75 219-126.75s173 51.25 219 126.75c3 5.25 5 11 5 17.25z">
</path>
</svg></span><span class="pojo-a11y-toolbar-text">Contraste Negativo</span> </a>
</li>
<li class="pojo-a11y-toolbar-item">
<a href="https://2021.programacomciencia.org.br/exposicao-jardimmineral/#"
class="pojo-a11y-toolbar-link pojo-a11y-btn-background-group pojo-a11y-btn-light-background"
data-action="light-background" data-action-group="schema" tabindex="-1">
<span class="pojo-a11y-toolbar-icon"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1em"
viewBox="0 0 448 448">
<path fill="currentColor"
d="M184 144c0 4.25-3.75 8-8 8s-8-3.75-8-8c0-17.25-26.75-24-40-24-4.25 0-8-3.75-8-8s3.75-8 8-8c23.25 0 56 12.25 56 40zM224 144c0-50-50.75-80-96-80s-96 30-96 80c0 16 6.5 32.75 17 45 4.75 5.5 10.25 10.75 15.25 16.5 17.75 21.25 32.75 46.25 35.25 74.5h57c2.5-28.25 17.5-53.25 35.25-74.5 5-5.75 10.5-11 15.25-16.5 10.5-12.25 17-29 17-45zM256 144c0 25.75-8.5 48-25.75 67s-40 45.75-42 72.5c7.25 4.25 11.75 12.25 11.75 20.5 0 6-2.25 11.75-6.25 16 4 4.25 6.25 10 6.25 16 0 8.25-4.25 15.75-11.25 20.25 2 3.5 3.25 7.75 3.25 11.75 0 16.25-12.75 24-27.25 24-6.5 14.5-21 24-36.75 24s-30.25-9.5-36.75-24c-14.5 0-27.25-7.75-27.25-24 0-4 1.25-8.25 3.25-11.75-7-4.5-11.25-12-11.25-20.25 0-6 2.25-11.75 6.25-16-4-4.25-6.25-10-6.25-16 0-8.25 4.5-16.25 11.75-20.5-2-26.75-24.75-53.5-42-72.5s-25.75-41.25-25.75-67c0-68 64.75-112 128-112s128 44 128 112z">
</path>
</svg></span><span class="pojo-a11y-toolbar-text">Fundo Claro</span> </a>
</li>
<li class="pojo-a11y-toolbar-item">
<a href="https://2021.programacomciencia.org.br/exposicao-jardimmineral/#"
class="pojo-a11y-toolbar-link pojo-a11y-btn-links-underline" data-action="links-underline"
data-action-group="toggle" tabindex="-1">
<span class="pojo-a11y-toolbar-icon"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1em"
viewBox="0 0 448 448">
<path fill="currentColor"
d="M364 304c0-6.5-2.5-12.5-7-17l-52-52c-4.5-4.5-10.75-7-17-7-7.25 0-13 2.75-18 8 8.25 8.25 18 15.25 18 28 0 13.25-10.75 24-24 24-12.75 0-19.75-9.75-28-18-5.25 5-8.25 10.75-8.25 18.25 0 6.25 2.5 12.5 7 17l51.5 51.75c4.5 4.5 10.75 6.75 17 6.75s12.5-2.25 17-6.5l36.75-36.5c4.5-4.5 7-10.5 7-16.75zM188.25 127.75c0-6.25-2.5-12.5-7-17l-51.5-51.75c-4.5-4.5-10.75-7-17-7s-12.5 2.5-17 6.75l-36.75 36.5c-4.5 4.5-7 10.5-7 16.75 0 6.5 2.5 12.5 7 17l52 52c4.5 4.5 10.75 6.75 17 6.75 7.25 0 13-2.5 18-7.75-8.25-8.25-18-15.25-18-28 0-13.25 10.75-24 24-24 12.75 0 19.75 9.75 28 18 5.25-5 8.25-10.75 8.25-18.25zM412 304c0 19-7.75 37.5-21.25 50.75l-36.75 36.5c-13.5 13.5-31.75 20.75-50.75 20.75-19.25 0-37.5-7.5-51-21.25l-51.5-51.75c-13.5-13.5-20.75-31.75-20.75-50.75 0-19.75 8-38.5 22-52.25l-22-22c-13.75 14-32.25 22-52 22-19 0-37.5-7.5-51-21l-52-52c-13.75-13.75-21-31.75-21-51 0-19 7.75-37.5 21.25-50.75l36.75-36.5c13.5-13.5 31.75-20.75 50.75-20.75 19.25 0 37.5 7.5 51 21.25l51.5 51.75c13.5 13.5 20.75 31.75 20.75 50.75 0 19.75-8 38.5-22 52.25l22 22c13.75-14 32.25-22 52-22 19 0 37.5 7.5 51 21l52 52c13.75 13.75 21 31.75 21 51z">
</path>
</svg></span><span class="pojo-a11y-toolbar-text">Sublinhar Links</span> </a>
</li>
<li class="pojo-a11y-toolbar-item">
<a href="https://2021.programacomciencia.org.br/exposicao-jardimmineral/#"
class="pojo-a11y-toolbar-link pojo-a11y-btn-readable-font" data-action="readable-font"
data-action-group="toggle" tabindex="-1">
<span class="pojo-a11y-toolbar-icon"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1em"
viewBox="0 0 448 448">
<path fill="currentColor"
d="M181.25 139.75l-42.5 112.5c24.75 0.25 49.5 1 74.25 1 4.75 0 9.5-0.25 14.25-0.5-13-38-28.25-76.75-46-113zM0 416l0.5-19.75c23.5-7.25 49-2.25 59.5-29.25l59.25-154 70-181h32c1 1.75 2 3.5 2.75 5.25l51.25 120c18.75 44.25 36 89 55 133 11.25 26 20 52.75 32.5 78.25 1.75 4 5.25 11.5 8.75 14.25 8.25 6.5 31.25 8 43 12.5 0.75 4.75 1.5 9.5 1.5 14.25 0 2.25-0.25 4.25-0.25 6.5-31.75 0-63.5-4-95.25-4-32.75 0-65.5 2.75-98.25 3.75 0-6.5 0.25-13 1-19.5l32.75-7c6.75-1.5 20-3.25 20-12.5 0-9-32.25-83.25-36.25-93.5l-112.5-0.5c-6.5 14.5-31.75 80-31.75 89.5 0 19.25 36.75 20 51 22 0.25 4.75 0.25 9.5 0.25 14.5 0 2.25-0.25 4.5-0.5 6.75-29 0-58.25-5-87.25-5-3.5 0-8.5 1.5-12 2-15.75 2.75-31.25 3.5-47 3.5z">
</path>
</svg></span><span class="pojo-a11y-toolbar-text">Fonte Legível</span> </a>
</li>
<li class="pojo-a11y-toolbar-item">
<a href="https://2021.programacomciencia.org.br/exposicao-jardimmineral/#"
class="pojo-a11y-toolbar-link pojo-a11y-btn-reset" data-action="reset" tabindex="-1">
<span class="pojo-a11y-toolbar-icon"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1em"
viewBox="0 0 448 448">
<path fill="currentColor"
d="M384 224c0 105.75-86.25 192-192 192-57.25 0-111.25-25.25-147.75-69.25-2.5-3.25-2.25-8 0.5-10.75l34.25-34.5c1.75-1.5 4-2.25 6.25-2.25 2.25 0.25 4.5 1.25 5.75 3 24.5 31.75 61.25 49.75 101 49.75 70.5 0 128-57.5 128-128s-57.5-128-128-128c-32.75 0-63.75 12.5-87 34.25l34.25 34.5c4.75 4.5 6 11.5 3.5 17.25-2.5 6-8.25 10-14.75 10h-112c-8.75 0-16-7.25-16-16v-112c0-6.5 4-12.25 10-14.75 5.75-2.5 12.75-1.25 17.25 3.5l32.5 32.25c35.25-33.25 83-53 132.25-53 105.75 0 192 86.25 192 192z">
</path>
</svg></span>
<span class="pojo-a11y-toolbar-text">Reset</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
<div id="outer-wrap" class="site clr">
<a class="skip-link screen-reader-text"
href="https://2021.programacomciencia.org.br/exposicao-jardimmineral/#main">Skip to content</a>
<div id="wrap" class="clr">
<main id="main" class="site-main clr" role="main" style="min-height: 596px;">
<div id="content-wrap" class="container clr">
<div id="primary" class="content-area clr">
<div id="content" class="site-content clr">
<article class="single-page-article clr">
<div class="entry clr" itemprop="text">
<div data-elementor-type="wp-page" data-elementor-id="944" class="elementor elementor-944"
data-elementor-settings="[]">
<div class="elementor-inner">
<div class="elementor-section-wrap">
<section
class="elementor-section elementor-top-section elementor-element elementor-element-6f6d5f6 elementor-section-full_width elementor-hidden-desktop elementor-section-height-default elementor-section-height-default"
data-id="6f6d5f6" data-element_type="section"
data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div
class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-e2a50f3"
data-id="e2a50f3" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div
class="elementor-element elementor-element-439ee2b elementor-widget elementor-widget-image"
data-id="439ee2b" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<div class="elementor-image">
<img width="800" height="800" src="./assets/capa-expo-m.jpg"
class="attachment-large size-large" alt="" loading="lazy">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section
class="elementor-section elementor-top-section elementor-element elementor-element-d746ddc elementor-section-content-middle elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default"
data-id="d746ddc" data-element_type="section"
data-settings="{"stretch_section":"section-stretched"}"
style="width: 1901px; left: 0px;">
<div class="elementor-container elementor-column-gap-no">
<div style="width: 100%">
<div
class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-0c49e1c"
data-id="0c49e1c" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div
class="elementor-element elementor-element-b59902d elementor-widget-divider--view-line_text elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider"
data-id="b59902d" data-element_type="widget" data-widget_type="divider.default">
<div class="elementor-widget-container">
<div class="elementor-divider">
<span class="elementor-divider-separator">
<span class="elementor-divider__text elementor-divider__element">EXPOSIÇÃO
DIGITAL</span>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-58bbabf"
data-id="58bbabf" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
</div>
</div>
</div>
</div>
</div>
</section>
<section
class="elementor-section elementor-top-section elementor-element elementor-element-991c563 elementor-section-full_width elementor-section-content-middle elementor-section-stretched elementor-section-height-default elementor-section-height-default"
data-id="991c563" data-element_type="section"
data-settings="{"stretch_section":"section-stretched"}"
style="width: 1901px; left: 0px;">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div
class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-43ebef2"
data-id="43ebef2" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div
class="elementor-element elementor-element-b051649 elementor-widget elementor-widget-premium-addon-banner"
data-id="b051649" data-element_type="widget"
data-widget_type="premium-addon-banner.default">
<div class="elementor-widget-container">
<div id="premium-banner-b051649" class="premium-banner" data-box-tilt="true"
data-box-tilt-reverse="true"
style="transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1); box-shadow: rgba(255, 255, 255, 0) 0px 45px 100px;">
<div
class="premium-banner-ib premium-banner-animation11 zoomin premium-banner-min-height">
<div class="premium-banner-img-wrap">
<img width="1000" height="1000" src="./assets/infinitum_1x1.jpg"
class="attachment-full size-full" alt="" loading="lazy">
</div>
<div class="premium-banner-gradient"></div>
<div class="premium-banner-ib-desc">
<div class="premium-banner-desc-centered">
<div class="premium-banner-title-wrap">
<h2 class="premium-banner-ib-title premium_banner_title">Infinitum
</h2>
</div>
<div class="premium-banner-ib-content premium_banner_content">
<div>
Mari Nagem e Thiago Hersan </div>
</div>
</div>
</div>
<a class="premium-banner-ib-link"
href="https://infinitum.marinagem.com/"
title=""></a>
</div>
<style>
@media(min-width: 1px) and (max-width:767px) {
#premium-banner-b051649 .premium-banner-ib-content {
display: none;
}
}
</style>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-7372570"
data-id="7372570" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div
class="elementor-element elementor-element-359febe elementor-widget elementor-widget-premium-addon-banner"
data-id="359febe" data-element_type="widget"
data-widget_type="premium-addon-banner.default">
<div class="elementor-widget-container">
<div id="premium-banner-359febe" class="premium-banner" data-box-tilt="true"
data-box-tilt-reverse="true"
style="transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1); box-shadow: rgba(255, 255, 255, 0) 0px 45px 100px;">
<div
class="premium-banner-ib premium-banner-animation11 zoomin premium-banner-min-height">
<div class="premium-banner-img-wrap">
<img
src="./assets/kulunda-1000x1000-1-pgyuhgnz8dbiuwnuaeyde0hwaa5ta22mi3eablq2og.jpg"
title="Kulunda" alt="Kulunda" class="">
</div>
<div class="premium-banner-gradient"></div>
<div class="premium-banner-ib-desc">
<div class="premium-banner-desc-centered">
<div class="premium-banner-title-wrap">
<h2 class="premium-banner-ib-title premium_banner_title">Kulúnda</h2>
</div>
<div class="premium-banner-ib-content premium_banner_content">
<div>
<p>Anastácio & Vamoss</p>
</div>
</div>
</div>
</div>
<a class="premium-banner-ib-link"
href="https://kulunda.com.br/"
title=""></a>
</div>
<style>
@media(min-width: 1px) and (max-width:767px) {
#premium-banner-359febe .premium-banner-ib-content {
display: none;
}
}
</style>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-60eae9a"
data-id="60eae9a" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div
class="elementor-element elementor-element-899714d elementor-widget elementor-widget-premium-addon-banner"
data-id="899714d" data-element_type="widget"
data-widget_type="premium-addon-banner.default">
<div class="elementor-widget-container">
<div id="premium-banner-899714d" class="premium-banner" data-box-tilt="true"
data-box-tilt-reverse="true"
style="transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1); box-shadow: rgba(255, 255, 255, 0) 0px 45px 100px;">
<div
class="premium-banner-ib premium-banner-animation11 zoomin premium-banner-min-height">
<div class="premium-banner-img-wrap">
<img width="480" height="480" src="./assets/CdM-foto1.png"
class="attachment-full size-full" alt="O Coro dos Minerais"
loading="lazy">
</div>
<div class="premium-banner-gradient"></div>
<div class="premium-banner-ib-desc">
<div class="premium-banner-desc-centered">
<div class="premium-banner-title-wrap">
<h2 class="premium-banner-ib-title premium_banner_title">O Coro dos
Minerais</h2>
</div>
<div class="premium-banner-ib-content premium_banner_content">
<div>
<p>Samuel Van Ransbeeck</p>
</div>
</div>
</div>
</div>
<a class="premium-banner-ib-link"
href="http://ocorodosminerais.com/"
title=""></a>
</div>
<style>
@media(min-width: 1px) and (max-width:767px) {
#premium-banner-899714d .premium-banner-ib-content {
display: none;
}
}
</style>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section
class="elementor-section elementor-top-section elementor-element elementor-element-a213db8 elementor-section-full_width elementor-section-content-middle elementor-section-stretched elementor-section-height-default elementor-section-height-default"
data-id="a213db8" data-element_type="section"
data-settings="{"stretch_section":"section-stretched"}"
style="width: 1901px; left: 0px;">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div
class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-9581772"
data-id="9581772" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div
class="elementor-element elementor-element-78d8d49 elementor-widget elementor-widget-premium-addon-banner"
data-id="78d8d49" data-element_type="widget"
data-widget_type="premium-addon-banner.default">
<div class="elementor-widget-container">
<div id="premium-banner-78d8d49" class="premium-banner" data-box-tilt="true"
data-box-tilt-reverse="true"
style="transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1); box-shadow: rgba(255, 255, 255, 0) 0px 45px 100px;">
<div
class="premium-banner-ib premium-banner-animation11 zoomin premium-banner-min-height">
<div class="premium-banner-img-wrap">
<img width="1000" height="999" src="./assets/pedro-hurpia-.jpg"
class="attachment-full size-full" alt="Aquelas que não estão"
loading="lazy">
</div>
<div class="premium-banner-gradient"></div>
<div class="premium-banner-ib-desc">
<div class="premium-banner-desc-centered">
<div class="premium-banner-title-wrap">
<h2 class="premium-banner-ib-title premium_banner_title">Aquelas que
não estão</h2>
</div>
<div class="premium-banner-ib-content premium_banner_content">
<div>
<p>Pedro Hurpia</p>
</div>
</div>
</div>
</div>
<a class="premium-banner-ib-link"
href="https://player.vimeo.com/video/650496783?color&autopause=0&loop=0&muted=0&title=0&portrait=0&byline=0#t="
title=""></a>
</div>
<style>
@media(min-width: 1px) and (max-width:767px) {
#premium-banner-78d8d49 .premium-banner-ib-content {
display: none;
}
}
</style>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-97158ef"
data-id="97158ef" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div
class="elementor-element elementor-element-eff6ce0 elementor-widget elementor-widget-premium-addon-banner"
data-id="eff6ce0" data-element_type="widget"
data-widget_type="premium-addon-banner.default">
<div class="elementor-widget-container">
<div id="premium-banner-eff6ce0" class="premium-banner" data-box-tilt="true"
data-box-tilt-reverse="true"
style="transform: perspective(1000px) rotateX(0.3deg) rotateY(-10.55deg) scale3d(1, 1, 1); box-shadow: rgba(255, 255, 255, 0) 0px 45px 100px;">
<div
class="premium-banner-ib premium-banner-animation11 zoomin premium-banner-min-height">
<div class="premium-banner-img-wrap">
<img width="1001" height="1001" src="./assets/keila.png"
class="attachment-full size-full"
alt="Notas sobre o comportamento do alumínio" loading="lazy">
</div>
<div class="premium-banner-gradient"></div>
<div class="premium-banner-ib-desc">
<div class="premium-banner-desc-centered">
<div class="premium-banner-title-wrap">
<h2 class="premium-banner-ib-title premium_banner_title">Notas sobre o
comportamento do alumínio</h2>
</div>
<div class="premium-banner-ib-content premium_banner_content">
<div>
<p>Keila Z</p>
</div>
</div>
</div>
</div>
<a class="premium-banner-ib-link"
href="https://www.youtube.com/embed/X4600qi_R9k?controls=1&rel=0&playsinline=0&modestbranding=0&autoplay=0&enablejsapi=1&origin=https%3A%2F%2F2021.programacomciencia.org.br&widgetid=1"
title=""></a>
</div>
<style>
@media(min-width: 1px) and (max-width:767px) {
#premium-banner-eff6ce0 .premium-banner-ib-content {
display: none;
}
}
</style>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-3fd9728"
data-id="3fd9728" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div
class="elementor-element elementor-element-bcc6b2d elementor-widget elementor-widget-premium-addon-banner"
data-id="bcc6b2d" data-element_type="widget"
data-widget_type="premium-addon-banner.default">
<div class="elementor-widget-container">
<div id="premium-banner-bcc6b2d" class="premium-banner" data-box-tilt="true"
data-box-tilt-reverse="true"
style="transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1); box-shadow: rgba(255, 255, 255, 0) 0px 45px 100px;">
<div
class="premium-banner-ib premium-banner-animation11 zoomin premium-banner-min-height">
<div class="premium-banner-img-wrap">
<img width="1000" height="1000" src="./assets/Imagem1site-ivonne.jpg"
class="attachment-full size-full" alt="Saudades da Terra"
loading="lazy">
</div>
<div class="premium-banner-gradient"></div>
<div class="premium-banner-ib-desc">
<div class="premium-banner-desc-centered">
<div class="premium-banner-title-wrap">
<h2 class="premium-banner-ib-title premium_banner_title">Saudades da
Terra</h2>
</div>
<div class="premium-banner-ib-content premium_banner_content">
<div>
<p>Ivonne Villamil</p>
</div>
</div>
</div>
</div>
<a class="premium-banner-ib-link"
href="https://www.youtube.com/embed/n7r7kRlC9oo?controls=1&rel=0&playsinline=0&modestbranding=0&autoplay=0&enablejsapi=1&origin=https%3A%2F%2F2021.programacomciencia.org.br&widgetid=1"
title=""></a>
</div>
<style>
@media(min-width: 1px) and (max-width:767px) {
#premium-banner-bcc6b2d .premium-banner-ib-content {
display: none;
}
}
</style>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section
class="elementor-section elementor-top-section elementor-element elementor-element-e5e7ffc elementor-section-boxed elementor-section-height-default elementor-section-height-default"
data-id="e5e7ffc" data-element_type="section" id="edital"
data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div
class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-8cfa7ce"
data-id="8cfa7ce" data-element_type="column">
<div class="elementor-column-wrap">
<div class="elementor-widget-wrap">
</div>
</div>
</div>
</div>
</div>
</section>
<section
class="elementor-section elementor-top-section elementor-element elementor-element-e10c741 elementor-section-full_width elementor-section-height-default elementor-section-height-default"
data-id="e10c741" data-element_type="section"
data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div
class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-43fb152"
data-id="43fb152" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div
class="elementor-element elementor-element-b072737 elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-image"
data-id="b072737" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<div class="elementor-image">
<img width="708" height="95" src="./assets/logo-jardim-mobile.png"
class="attachment-full size-full" alt="" loading="lazy">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section
class="elementor-section elementor-top-section elementor-element elementor-element-91bd91c elementor-section-boxed elementor-section-height-default elementor-section-height-default"
data-id="91bd91c" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div
class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-fd57a91"
data-id="fd57a91" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div
class="elementor-element elementor-element-b628bbb elementor-widget-divider--view-line_text elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider"
data-id="b628bbb" data-element_type="widget" data-widget_type="divider.default">
<div class="elementor-widget-container">
<div class="elementor-divider">
<span class="elementor-divider-separator">
<span class="elementor-divider__text elementor-divider__element">FICHA
TÉCNICA</span>
</span>
</div>
</div>
</div>
<section
class="elementor-section elementor-inner-section elementor-element elementor-element-3d0760e elementor-section-boxed elementor-section-height-default elementor-section-height-default"
data-id="3d0760e" data-element_type="section">
<div class="elementor-container elementor-column-gap-extended">
<div class="elementor-row">
<div
class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-a3f6e05"
data-id="a3f6e05" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div
class="elementor-element elementor-element-607181f elementor-widget elementor-widget-text-editor"
data-id="607181f" data-element_type="widget"
data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<div class="elementor-text-editor elementor-clearfix">
<p><strong>Patrocínio:</strong> Gerdau</p>
<p><strong>Apoio:</strong> CBMM</p>
<p><strong>Direção:</strong> Márcia Guimarães</p>
<p><strong>Diretor Financeiro:</strong> Pedro Andrade</p>
<p><strong>Assessora de Projetos:</strong> Luiza Macedo</p>
<p><strong>Assistente da Direção:</strong> Renata Matos</p>
<p><strong>Curadoria de Geociências:</strong> Andrea Ferreira</p>
<p><strong>Assistente de Geologia:</strong> Simone Silva</p>
<p><strong>Analista de Pesquisa:</strong> David Silva</p>
<p><strong>Coordenação de Museologia:</strong> Carlos Jotta</p>
<p><strong>Técnicos de Museografia:</strong> Adson Junior e
Leonardo Lopes</p>
<p><strong>Assistente de Museologia:</strong> Samara Azevedo</p>
<p><strong>Coordenação de Comunicação:</strong> Paola Oliveira</p>
<p><strong>Assistente de Comunicação:</strong> Lucas D’Ambrosio
</p>
<p><strong>Coordenação do Educativo:</strong> Suely Monteiro</p>
<p><strong>Coordenação do TIC:</strong> Alexandre Livino</p>
<p><strong>Analista de TIC:</strong> Eric Defane Borges</p>
<p><strong>Coordenação da Programação Cultural:</strong> Luciano
Emerich</p>
<p><strong>Coordenação do Programa CoMciência:</strong> Marina
Andrade</p>
<p><strong>Desenvolvimento do Edital:</strong> Karla Danitza</p>
<p><strong>Coordenação de Inclusão e Acessibilidade:</strong>
Luciana Miglio</p>
<p
style="font-variant-ligatures: normal; font-variant-caps: normal; font-family: Heebo, sans-serif; font-size: 16px; font-style: normal; font-weight: 400;">
<span style="font-size: 16px; font-weight: 600;">Assistente de
Acessibilidade e Inclusão:</span> Luana Trindade
</p>
<p
style="font-variant-ligatures: normal; font-variant-caps: normal; font-family: Heebo, sans-serif; font-size: 16px; font-style: normal;">
<b>Libras: </b>Lucas Ramon
</p>
<p
style="font-variant-ligatures: normal; font-variant-caps: normal; font-family: Heebo, sans-serif; font-size: 16px; font-style: normal; font-weight: 400;">
<span style="font-size: 16px; font-weight: 600;">Coordenação de
Manutenção:</span> Luciana Santos
</p>
<p
style="font-variant-ligatures: normal; font-variant-caps: normal; font-family: Heebo, sans-serif; font-size: 16px; font-style: normal; font-weight: 400;">
<span style="font-size: 16px; font-weight: 600;">Gestão de
Criação e Design:</span> Sal Estúdio Criativo
</p>
<p
style="font-variant-ligatures: normal; font-variant-caps: normal; font-family: Heebo, sans-serif; font-size: 16px; font-style: normal; font-weight: 400;">
<span style="font-size: 16px; font-weight: 600;">Assessoria
Digital:</span> Sal Estúdio Criativo
</p>
<p
style="font-variant-ligatures: normal; font-variant-caps: normal; font-family: Heebo, sans-serif; font-size: 16px; font-style: normal; font-weight: 400;">
<span style="font-size: 16px; font-weight: 600;">Assessoria de
Imprensa:</span> A Dupla Informação
</p>
<p
style="font-variant-ligatures: normal; font-variant-caps: normal; font-family: Heebo, sans-serif; font-size: 16px; font-style: normal; font-weight: 400;">
<span style="font-size: 16px; font-weight: 600;">Desenvolvimento
do website:</span> Adapta Online
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-420fdd0"
data-id="420fdd0" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div
class="elementor-element elementor-element-9e21d17 elementor-widget elementor-widget-text-editor"
data-id="9e21d17" data-element_type="widget"
data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<div class="elementor-text-editor elementor-clearfix">
<p><b>Curadoria</b>: Barbara Castro e Gabriel Menotti</p>
<p><strong>Tutores::</strong> Isabela Prado e Lúcia Fantinel</p>
<p><strong>Escrita: </strong>Tatiele de Souza Silva</p>
<p><strong>Artistas Nativo Digital</strong></p>
<p>– Mari Nagem e Thiago Hersan</p>
<p>– Pedro Hurpia</p>
<p>– Keila Z</p>
<p>– Samuel Van Ransbeeck</p>
<p>– Ivonne Villamil</p>
<p>– André Anastácio e Carlos Oliveira – Anastácio e Vamos</p>
<p><strong>Artistas Site Specific</strong></p>
<p>– Elías Maroso</p>
<p>– Mari Fraga</p>
<p>– Lucas Bambozzi e Fernando Velázquez</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</article>
</div><!-- #content -->
</div><!-- #primary -->
</div><!-- #content-wrap -->
</main><!-- #main -->
<footer id="footer" class="site-footer" itemscope="itemscope" itemtype="https://schema.org/WPFooter"
role="contentinfo">
<div id="footer-inner" class="clr">
<div id="footer-widgets" class="oceanwp-row clr">
<div class="footer-widgets-inner container">
<div data-elementor-type="wp-post" data-elementor-id="127" class="elementor elementor-127"
data-elementor-settings="[]">
<div class="elementor-inner">
<div class="elementor-section-wrap">
<section
class="elementor-section elementor-top-section elementor-element elementor-element-56a8891 elementor-section-full_width elementor-hidden-phone elementor-section-height-default elementor-section-height-default"
data-id="56a8891" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div
class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-444c149"
data-id="444c149" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div
class="elementor-element elementor-element-abca557 elementor-widget elementor-widget-image"
data-id="abca557" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<div class="elementor-image">
<img width="1443" height="154" src="./assets/Lei-Incentivo_2021-01.png"
class="attachment-full size-full" alt="" loading="lazy">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section
class="elementor-section elementor-top-section elementor-element elementor-element-3d75143 elementor-section-full_width elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default"
data-id="3d75143" data-element_type="section">
<div class="elementor-container elementor-column-gap-narrow">
<div class="elementor-row">
<div
class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3f7b494"
data-id="3f7b494" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div
class="elementor-element elementor-element-e3ffd9c elementor-widget elementor-widget-image"
data-id="e3ffd9c" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<div class="elementor-image">
<img width="782" height="279" src="./assets/regua-rodape-mobile.png"
class="attachment-full size-full" alt="" loading="lazy">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div><!-- .container -->
</div><!-- #footer-widgets -->
</div><!-- #footer-inner -->
</footer><!-- #footer -->
</div><!-- #wrap -->
</div><!-- #outer-wrap -->
<a aria-label="Scroll to the top of the page" href="https://2021.programacomciencia.org.br/exposicao-jardimmineral/#"
id="scroll-top" class="scroll-top-right" style="opacity: 1; display: block;"><i class=" " aria-hidden="true"
role="img"></i></a>
<!-- WP Audio player plugin v1.9.6 - https://www.tipsandtricks-hq.com/wordpress-audio-music-player-plugin-4556/ -->
<div vw="" class="enabled">
<div vw-access-button="" class="active"><img class="access-button" data-src="assets/component-ac.png"
alt="Conteúdo acessível em libras usando o VLibras Widget com opções dos Avatares Ícaro ou Hozana."
src="./assets/component-ac.png">
<img class="pop-up" data-src="assets/popup.png"
alt="Conteúdo acessível em libras usando o VLibras Widget com opções dos Avatares Ícaro ou Hozana."
src="./assets/popup.png">
</div>
<div vw-plugin-wrapper="">
<div vp="">
<div vp-box=""></div>
<div vp-message-box=""></div>
<div vp-settings=""></div>
<div vp-settings-btn=""></div>
<div vp-info-screen=""></div>
<div vp-dictionary=""></div>
<div vp-suggestion-screen=""></div>
<div vp-suggestion-button=""></div>
<div vp-rate-box=""></div>
<div vp-rate-button=""></div>
<div vp-controls=""></div>
<div vp-change-avatar=""></div>
</div>
</div>
</div>
<script>
new window.VLibras.Widget('https://vlibras.gov.br/app');
</script>
<link rel="stylesheet" id="premium-addons-css" href="./assets/premium-addons.min.css" media="all">
<script id="stickThis-js-extra">
var sticky_anything_engage = { "element": "#site-header", "topspace": "0", "minscreenwidth": "0", "maxscreenwidth": "999999", "zindex": "1", "legacymode": "", "dynamicmode": "", "debugmode": "", "pushup": "", "adminbar": "1" };
</script>
<script src="./assets/stickThis.js.transferir" id="stickThis-js"></script>
<script src="./assets/imagesloaded.min.js.transferir" id="imagesloaded-js"></script>
<script src="./assets/isotope.pkgd.min.js.transferir" id="isotop-js"></script>
<script src="./assets/flickity.pkgd.min.js.transferir" id="flickity-js"></script>
<script src="./assets/photoswipe.min.js.transferir" id="photoswipe-js"></script>
<script src="./assets/photoswipe-ui-default.min.js.transferir" id="photoswipe-ui-default-js"></script>
<script src="./assets/sidr.js.transferir" id="sidr-js"></script>
<script id="oceanwp-main-js-extra">
var oceanwpLocalize = { "nonce": "c02365e219", "isRTL": "", "menuSearchStyle": "drop_down", "mobileMenuSearchStyle": "disabled", "sidrSource": null, "sidrDisplace": "1", "sidrSide": "left", "sidrDropdownTarget": "link", "verticalHeaderTarget": "link", "customSelects": ".woocommerce-ordering .orderby, #dropdown_product_cat, .widget_categories select, .widget_archive select, .single-product .variations_form .variations select", "ajax_url": "https:\/\/2021.programacomciencia.org.br\/wp-admin\/admin-ajax.php" };
</script>
<script src="./assets/theme.vanilla.min.js.transferir" id="oceanwp-main-js"></script>
<!-- Root element of PhotoSwipe. Must have class pswp. -->
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
<!-- Background of PhotoSwipe.
It's a separate element as animating opacity is faster than rgba(). -->
<div class="pswp__bg"></div>
<!-- Slides wrapper with overflow:hidden. -->
<div class="pswp__scroll-wrap">
<!-- Container that holds slides.
PhotoSwipe keeps only 3 of them in the DOM to save memory.
Don't modify these 3 pswp__item elements, data is added later on. -->
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. -->
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<!-- Controls are self-explanatory. Order can be changed. -->
<div class="pswp__counter"></div>
<button class="pswp__button pswp__button--close" title="Close (Esc)"></button>
<button class="pswp__button pswp__button--share" title="Share"></button>
<button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
<button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
<!-- Preloader demo https://codepen.io/dimsemenov/pen/yyBWoR -->
<!-- element will get class pswp__preloader--active when preloader is running -->
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div>
<button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
</button>
<button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">