-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
999 lines (823 loc) · 86.6 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
<!DOCTYPE html>
<html class="no-js" lang="pt-BR" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://ogp.me/ns/fb#" prefix="og: http://ogp.me/ns#"><head><meta charset="UTF-8"><title>Águas Mídia Livre - Bem comum em mídia livre</title><script type="text/javascript">function theChampLoadEvent(e){var t=window.onload;if(typeof window.onload!="function"){window.onload=e}else{window.onload=function(){t();e()}}}</script><script type="text/javascript">var theChampDefaultLang = 'pt_BR', theChampCloseIconPath = 'http://OFFLINEZIP.wpsho/wp-content/plugins/super-socializer/images/close.png';</script><script> var theChampSiteUrl = 'http://OFFLINEZIP.wpsho', theChampVerified = 0, theChampEmailPopup = 0; </script><script> var theChampLoadingImgPath = 'http://OFFLINEZIP.wpsho/wp-content/plugins/super-socializer/images/ajax_loader.gif'; var theChampAjaxUrl = 'http://OFFLINEZIP.wpsho/wp-admin/admin-ajax.php'; var theChampRedirectionUrl = 'http://OFFLINEZIP.wpsho/'; var theChampRegRedirectionUrl = 'http://OFFLINEZIP.wpsho/atividades/'; </script><script> var theChampFBKey = '1661109707522511', theChampVerified = 0; var theChampAjaxUrl = 'http://OFFLINEZIP.wpsho/wp-admin/admin-ajax.php'; var theChampPopupTitle = ''; var theChampEmailPopup = 0; var theChampEmailAjaxUrl = 'http://OFFLINEZIP.wpsho/wp-admin/admin-ajax.php'; var theChampEmailPopupTitle = ''; var theChampEmailPopupErrorMsg = ''; var theChampEmailPopupUniqueId = ''; var theChampEmailPopupVerifyMessage = ''; var theChampLJLoginUsernameString = 'Enter your LiveJournal username'; var theChampLJAuthUrl = 'http://OFFLINEZIP.wpsho/?SuperSocializerAuth=LiveJournal'; var theChampSteamAuthUrl = ""; var theChampTwitterRedirect = 'https%3A%2F%2Faguas.ml%2F'; var heateorMSEnabled = 0; var theChampTwitterAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Twitter&super_socializer_redirect_to=" + theChampTwitterRedirect; var theChampFacebookAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Facebook&super_socializer_redirect_to=" + theChampTwitterRedirect; var theChampTwitchAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Twitch&super_socializer_redirect_to=" + theChampTwitterRedirect; var theChampGoogleAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Google&super_socializer_redirect_to=" + theChampTwitterRedirect; var theChampVkontakteAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Vkontakte&super_socializer_redirect_to=" + theChampTwitterRedirect; var theChampLinkedinAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Linkedin&super_socializer_redirect_to=" + theChampTwitterRedirect; var theChampXingAuthUrl = theChampSiteUrl + "?SuperSocializerAuth=Xing&super_socializer_redirect_to=" + theChampTwitterRedirect;</script><script> var theChampSharingAjaxUrl = 'http://OFFLINEZIP.wpsho/wp-admin/admin-ajax.php', heateorSsWhatsappShareAPI = 'web', heateorSsUrlCountFetched = [], heateorSsSharesText = 'Shares', heateorSsShareText = 'Share', theChampPluginIconPath = 'http://OFFLINEZIP.wpsho/wp-content/plugins/super-socializer/images/logo.png', theChampHorizontalSharingCountEnable = 1, theChampVerticalSharingCountEnable = 0, theChampSharingOffset = -10, theChampCounterOffset = -10, theChampMobileStickySharingEnabled = 1, heateorSsCopyLinkMessage = "Link copied.";
</script><style type="text/css">.the_champ_horizontal_sharing .theChampSharing{
color: #fff;
border-width: 0px;
border-style: solid;
border-color: transparent;
}
.the_champ_horizontal_sharing .theChampTCBackground{
color:#666;
}
.the_champ_horizontal_sharing .theChampSharing:hover{
border-color: transparent;
}
.the_champ_vertical_sharing .theChampSharing{
color: #fff;
border-width: 0px;
border-style: solid;
border-color: transparent;
}
.the_champ_vertical_sharing .theChampTCBackground{
color:#666;
}
.the_champ_vertical_sharing .theChampSharing:hover{
border-color: transparent;
}
@media screen and (max-width:783px){.the_champ_vertical_sharing{display:none!important}}div.heateor_ss_mobile_footer{display:none;}@media screen and (max-width:783px){i.theChampTCBackground{background-color:white!important}div.the_champ_bottom_sharing{width:100%!important;left:0!important;}div.the_champ_bottom_sharing li{width:33.333333333333% !important;}div.the_champ_bottom_sharing .theChampSharing{width: 100% !important;}div.the_champ_bottom_sharing div.theChampTotalShareCount{font-size:1em!important;line-height:28px!important}div.the_champ_bottom_sharing div.theChampTotalShareText{font-size:.7em!important;line-height:0px!important}div.heateor_ss_mobile_footer{display:block;height:40px;}.the_champ_bottom_sharing{padding:0!important;display:block!important;width: auto!important;bottom:-2px!important;top: auto!important;}.the_champ_bottom_sharing .the_champ_square_count{line-height: inherit;}.the_champ_bottom_sharing .theChampSharingArrow{display:none;}.the_champ_bottom_sharing .theChampTCBackground{margin-right: 1.1em !important}}div.the_champ_sharing_title{text-align:center}ul.the_champ_sharing_ul{width:100%;text-align:center;}div.the_champ_horizontal_sharing ul.the_champ_sharing_ul li{float:none!important;display:inline-block;}</style><meta name="viewport" content="initial-scale=1.0, width=device-width"><meta name="description" content="Bem comum em mídia livre"><meta property="og:locale" content="pt_BR"><meta property="og:type" content="website"><meta property="og:title" content="Águas Mídia Livre - Bem comum em mídia livre"><meta property="og:description" content="Bem comum em mídia livre"><meta property="og:url" content=""><meta property="og:site_name" content="Águas Mídia Livre"><meta property="fb:app_id" content="1661109707522511"><meta property="og:image" content="wp-content/uploads/2016/09/aguasml-46_o-1024x576.jpg"><meta property="og:image:secure_url" content="wp-content/uploads/2016/09/aguasml-46_o-1024x576.jpg"><meta property="og:image:width" content="1024"><meta property="og:image:height" content="576"><meta name="twitter:card" content="summary_large_image"><meta name="twitter:description" content="Bem comum em mídia livre"><meta name="twitter:title" content="Águas Mídia Livre - Bem comum em mídia livre"><meta name="twitter:site" content="@omtuttare"><meta name="twitter:image" content="wp-content/uploads/2016/09/aguasml-46_o.jpg"><meta name="google-site-verification" content="jrxYJEzI4OFEHgcNPu8lFqEZhOwkoQwxiZ_MnNrkM0U"><script type="application/ld+json" class="yoast-schema-graph yoast-schema-graph--main">{"@context":"https://schema.org","@graph":[{"@type":"WebSite","@id":"http://OFFLINEZIP.wpsho/#website","url":"http://OFFLINEZIP.wpsho/","name":"\u00c1guas M\u00eddia Livre","publisher":{"@id":"http://OFFLINEZIP.wpsho/#person"},"potentialAction":{"@type":"SearchAction","target":"http://OFFLINEZIP.wpsho/?s={search_term_string}","query-input":"required name=search_term_string"}},{"@type":"WebPage","@id":"http://OFFLINEZIP.wpsho/#webpage","url":"http://OFFLINEZIP.wpsho/","inLanguage":"pt-BR","name":"\u00c1guas M\u00eddia Livre - Bem comum em m\u00eddia livre","isPartOf":{"@id":"http://OFFLINEZIP.wpsho/#website"},"about":{"@id":"http://OFFLINEZIP.wpsho/#person"},"description":"Bem comum em m\u00eddia livre"}]}</script><link rel="dns-prefetch" href="//s.w.org"><link rel="stylesheet" id="wp-block-library-css" href="wp-includes/css/dist/block-library/style.min.css" type="text/css" media="all"><link rel="stylesheet" id="ap-front-styles-css" href="wp-content/plugins/accesspress-anonymous-post/css/frontend-style.css" type="text/css" media="all"><link rel="stylesheet" id="dashicons-css" href="wp-includes/css/dashicons.min.css" type="text/css" media="all"><link rel="stylesheet" id="bp-nouveau-css" href="wp-content/plugins/buddypress/bp-templates/bp-nouveau/css/buddypress.min.css" type="text/css" media="screen"><link rel="stylesheet" id="contact-form-7-css" href="wp-content/plugins/contact-form-7/includes/css/styles.css" type="text/css" media="all"><link rel="stylesheet" id="responsive-lightbox-swipebox-css" href="wp-content/plugins/responsive-lightbox/assets/swipebox/css/swipebox.min.css" type="text/css" media="all"><link rel="stylesheet" id="rfw-style-css" href="wp-content/plugins/rss-feed-widget/css/style.css" type="text/css" media="all"><link rel="stylesheet" id="jquery-magnific-popup-css" href="wp-content/plugins/snax/assets/js/jquery.magnific-popup/magnific-popup.css" type="text/css" media="all"><link rel="stylesheet" id="snax-css" href="wp-content/plugins/snax/css/snax.min.css" type="text/css" media="all"><link rel="stylesheet" id="wordpress-popular-posts-css-css" href="wp-content/plugins/wordpress-popular-posts/public/css/wpp.css" type="text/css" media="all"><link rel="stylesheet" id="wpdm-button-templates-css" href="wp-content/plugins/wpdm-button-templates/buttons.css" type="text/css" media="all"><link rel="stylesheet" id="g1-main-css" href="wp-content/themes/bimber/css/6.3.1/styles/original-2018/all-light.min.css" type="text/css" media="all"><link rel="stylesheet" id="bimber-snax-extra-css" href="wp-content/themes/bimber/css/6.3.1/styles/original-2018/snax-extra-light.min.css" type="text/css" media="all"><link rel="stylesheet" id="bimber-buddypress-css" href="wp-content/themes/bimber/css/6.3.1/styles/original-2018/buddypress-light.min.css" type="text/css" media="all"><link rel="stylesheet" id="bimber-dynamic-style-css" href="wp-content/uploads/dynamic-style-1553928434.css" type="text/css" media="all"><link rel="stylesheet" id="bimber-style-css" href="wp-content/themes/bimber-child-theme/style.css" type="text/css" media="screen"><link rel="stylesheet" id="elementor-icons-css" href="wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css" type="text/css" media="all"><link rel="stylesheet" id="font-awesome-css" href="wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.min.css" type="text/css" media="all"><link rel="stylesheet" id="elementor-animations-css" href="wp-content/plugins/elementor/assets/lib/animations/animations.min.css" type="text/css" media="all"><link rel="stylesheet" id="elementor-frontend-css" href="wp-content/plugins/elementor/assets/css/frontend.min.css" type="text/css" media="all"><link rel="stylesheet" id="elementor-pro-css" href="wp-content/plugins/elementor%20pro/assets/css/frontend.min.css" type="text/css" media="all"><link rel="stylesheet" id="elementor-global-css" href="wp-content/uploads/elementor/css/global.css" type="text/css" media="all"><link rel="stylesheet" id="thickbox-css" href="wp-includes/js/thickbox/thickbox.css" type="text/css" media="all"><link rel="stylesheet" id="the_champ_frontend_css-css" href="wp-content/plugins/super-socializer/css/front.css" type="text/css" media="all"><link rel="stylesheet" id="the_champ_sharing_default_svg-css" href="wp-content/plugins/super-socializer/css/share-svg.css" type="text/css" media="all"><link rel="stylesheet" id="__EPYT__style-css" href="wp-content/plugins/youtube-embed-plus/styles/ytprefs.min.css" type="text/css" media="all"><style id="__EPYT__style-inline-css" type="text/css">
.epyt-gallery-thumb {
width: 25%;
}
@media (min-width:0px) and (max-width: 767px) {
.epyt-gallery-rowbreak {
display: none;
}
.epyt-gallery-allthumbs[class*="epyt-cols"] .epyt-gallery-thumb {
width: 100% !important;
}
}
</style><link rel="stylesheet" id="wpgdprc.css-css" href="wp-content/plugins/wp-gdpr-compliance/assets/css/front.css" type="text/css" media="all"><style id="wpgdprc.css-inline-css" type="text/css">
div.wpgdprc .wpgdprc-switch .wpgdprc-switch-inner:before { content: 'Yes'; }
div.wpgdprc .wpgdprc-switch .wpgdprc-switch-inner:after { content: 'No'; }
</style><link rel="stylesheet" id="google-fonts-1-css" href="https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&ver=5.1.1" type="text/css" media="all"><script type="text/javascript">
/* <![CDATA[ */
var wpdm_url = {"home":"http:\/\/OFFLINEZIP.wpsho","site":"http:\/\/OFFLINEZIP.wpsho","ajax":"http:\/\/OFFLINEZIP.wpshowp-admin\/admin-ajax.php"};
/* ]]> */
</script><script type="text/javascript" src="wp-includes/js/jquery/jquery.js"></script><script type="text/javascript" src="wp-includes/js/jquery/jquery-migrate.min.js"></script><script type="text/javascript" src="wp-content/plugins/buddypress/bp-core/js/widget-members.min.js"></script><script type="text/javascript" src="wp-content/plugins/buddypress/bp-core/js/jquery-query.min.js"></script><script type="text/javascript" src="wp-content/plugins/buddypress/bp-core/js/vendor/jquery-cookie.min.js"></script><script type="text/javascript" src="wp-content/plugins/buddypress/bp-core/js/vendor/jquery-scroll-to.min.js"></script><script type="text/javascript" src="wp-content/plugins/buddypress/bp-groups/js/widget-groups.min.js"></script><script type="text/javascript" src="wp-content/plugins/download-manager/assets/js/front.js"></script><script type="text/javascript" src="wp-content/plugins/download-manager/assets/js/chosen.jquery.min.js"></script><script type="text/javascript" src="wp-content/plugins/responsive-lightbox/assets/swipebox/js/jquery.swipebox.min.js"></script><script type="text/javascript" src="wp-content/plugins/responsive-lightbox/assets/infinitescroll/infinite-scroll.pkgd.min.js"></script><script type="text/javascript">
/* <![CDATA[ */
var rlArgs = {"script":"swipebox","selector":"lightbox","customEvents":"","activeGalleries":"1","animation":"1","hideCloseButtonOnMobile":"0","removeBarsOnMobile":"0","hideBars":"1","hideBarsDelay":"5000","videoMaxWidth":"1080","useSVG":"1","loopAtEnd":"0","woocommerce_gallery":"0","ajaxurl":"http:\/\/OFFLINEZIP.wpshowp-admin\/admin-ajax.php","nonce":"9b63f09ea9"};
/* ]]> */
</script><script type="text/javascript" src="wp-content/plugins/responsive-lightbox/js/front.js"></script><script type="text/javascript">
/* <![CDATA[ */
var wpp_params = {"sampling_active":"0","sampling_rate":"100","ajax_url":"http:\/\/OFFLINEZIP.wpshowp-json\/wordpress-popular-posts\/v1\/popular-posts\/","ID":"","token":"d171a236ed","debug":""};
/* ]]> */
</script><script type="text/javascript" src="wp-content/plugins/wordpress-popular-posts/public/js/wpp-4.2.0.min.js"></script><script type="text/javascript" src="wp-content/themes/bimber/js/modernizr/modernizr-custom.min.js"></script><script type="text/javascript">
/* <![CDATA[ */
var _EPYT_ = {"ajaxurl":"http:\/\/OFFLINEZIP.wpshowp-admin\/admin-ajax.php","security":"760ab1cc92","gallery_scrolloffset":"20","eppathtoscripts":"http:\/\/OFFLINEZIP.wpshowp-content\/plugins\/youtube-embed-plus\/scripts\/","eppath":"http:\/\/OFFLINEZIP.wpshowp-content\/plugins\/youtube-embed-plus\/","epresponsiveselector":"[\"iframe.__youtube_prefs_widget__\"]","epdovol":"1","version":"13.1","evselector":"iframe.__youtube_prefs__[src], iframe[src*=\"youtube.com\/embed\/\"], iframe[src*=\"youtube-nocookie.com\/embed\/\"]","ajax_compat":"","ytapi_load":"light","stopMobileBuffer":"1","vi_active":"","vi_js_posttypes":[]};
/* ]]> */
</script><script type="text/javascript" src="wp-content/plugins/youtube-embed-plus/scripts/ytprefs.min.js"></script><script type="text/javascript">var ajaxurl = 'http://OFFLINEZIP.wpsho/wp-admin/admin-ajax.php';</script><script>
var wpdm_site_url = 'http://OFFLINEZIP.wpsho/';
var wpdm_home_url = 'http://OFFLINEZIP.wpsho/';
var ajax_url = 'http://OFFLINEZIP.wpsho/wp-admin/admin-ajax.php';
var wpdm_ajax_url = 'http://OFFLINEZIP.wpsho/wp-admin/admin-ajax.php';
var wpdm_ajax_popup = '0';
</script><style>
.wpdm-download-link.btn.btn-primary.{
border-radius: 4px;
}
</style><meta property="fb:app_id" content="1661109707522511"><script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-84644407-1', 'auto');
ga('require', 'linkid', 'linkid.js');
ga('set', 'forceSSL', true);
ga('send', 'pageview');
</script><style>
@font-face {
font-family: "bimber";
src:url("http://OFFLINEZIP.wpsho/wp-content/themes/bimber/css/6.3.1/bimber/fonts/bimber.eot");
src:url("http://OFFLINEZIP.wpsho/wp-content/themes/bimber/css/6.3.1/bimber/fonts/bimber.eot?#iefix") format("embedded-opentype"),
url("http://OFFLINEZIP.wpsho/wp-content/themes/bimber/css/6.3.1/bimber/fonts/bimber.woff") format("woff"),
url("http://OFFLINEZIP.wpsho/wp-content/themes/bimber/css/6.3.1/bimber/fonts/bimber.ttf") format("truetype"),
url("http://OFFLINEZIP.wpsho/wp-content/themes/bimber/css/6.3.1/bimber/fonts/bimber.svg#bimber") format("svg");
font-weight: normal;
font-style: normal;
}
</style><link rel="icon" href="wp-content/uploads/2016/09/cropped-logo_oficial-32x32.png" sizes="32x32"><link rel="icon" href="wp-content/uploads/2016/09/cropped-logo_oficial-192x192.png" sizes="192x192"><link rel="apple-touch-icon-precomposed" href="wp-content/uploads/2016/09/cropped-logo_oficial-180x180.png"><meta name="msapplication-TileImage" content="wp-content/uploads/2016/09/cropped-logo_oficial-270x270.png"><meta name="g1:switch-skin-css" content="wp-content/themes/bimber/css/6.3.1/styles/mode-dark.min.css"><script>
if("undefined"!=typeof localStorage){window.g1SwitchSkin=function(e,t){if(e){var i=document.getElementById("g1-switch-skin-css");if(i){i.parentNode.removeChild(i);try{localStorage.removeItem("g1_skin")}catch(e){}}else{t?document.write('<link id="g1-switch-skin-css" rel="stylesheet" type="text/css" media="all" href="'+document.getElementsByName("g1:switch-skin-css")[0].getAttribute("content")+'" />'):((i=document.createElement("link")).id="g1-switch-skin-css",i.href=document.getElementsByName("g1:switch-skin-css")[0].getAttribute("content"),i.rel="stylesheet",i.media="all",document.head.appendChild(i));try{localStorage.setItem("g1_skin",e)}catch(e){}}}};try{var mode=localStorage.getItem("g1_skin");window.g1SwitchSkin(mode,!0)}catch(e){}}
</script><style type="text/css" id="wp-custom-css">
.g1-beta-2nd {
margin-top: 20px;
} </style><style>
@import url('https://fonts.googleapis.com/css?family=Cantarell:400,700');
.w3eden .fetfont,
.w3eden .btn,
.w3eden .btn.wpdm-front h3.title,
.w3eden .wpdm-social-lock-box .IN-widget a span:last-child,
.w3eden #xfilelist .panel-heading,
.w3eden .wpdm-frontend-tabs a,
.w3eden .alert:before,
.w3eden .panel .panel-heading,
.w3eden .discount-msg,
.w3eden .panel.dashboard-panel h3,
.w3eden #wpdm-dashboard-sidebar .list-group-item,
.w3eden #package-description .wp-switch-editor,
.w3eden .w3eden.author-dashbboard .nav.nav-tabs li a,
.w3eden .wpdm_cart thead th,
.w3eden #csp .list-group-item,
.w3eden .modal-title {
font-family: Cantarell, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
text-transform: uppercase;
font-weight: 700;
}
.w3eden #csp .list-group-item{
text-transform: unset;
}
</style><style>
:root{
--color-primary: #4a8eff;
--color-primary-hover: #4a8eff;
--color-primary-active: #4a8eff;
--color-success: #4a8eff;
--color-success-hover: #4a8eff;
--color-success-active: #4a8eff;
--color-info: #2CA8FF;
--color-info-hover: #2CA8FF;
--color-info-active: #2CA8FF;
--color-warning: orange;
--color-warning-hover: orange;
--color-warning-active: orange;
--color-danger: #ff5062;
--color-danger-hover: #ff5062;
--color-danger-active: #ff5062;
--color-green: #30b570;
--color-blue: #0073ff;
--color-purple: #8557D3;
--color-red: #ff5062;
--color-muted: rgba(69, 89, 122, 0.6);
--wpdm-font: Cantarell, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
</style></head><body class="home-page bp-nouveau home blog wp-embed-responsive snax-hoverable g1-layout-stretched g1-hoverable g1-has-mobile-logo g1-sidebar-normal elementor-default no-js" itemscope itemtype="http://schema.org/WebPage">
<div class="g1-body-inner">
<div id="page">
<div class="g1-row g1-row-layout-page g1-hb-row g1-hb-row-normal g1-hb-row-a g1-hb-row-1 g1-hb-boxed g1-hb-sticky-off g1-hb-shadow-off">
<div class="g1-row-inner">
<div class="g1-column g1-dropable">
<div class="g1-bin-1 g1-bin-grow-off">
<div class="g1-bin g1-bin-align-left">
</div>
</div>
<div class="g1-bin-2 g1-bin-grow-off">
<div class="g1-bin g1-bin-align-center">
</div>
</div>
<div class="g1-bin-3 g1-bin-grow-off">
<div class="g1-bin g1-bin-align-right">
<nav id="g1-secondary-nav" class="g1-secondary-nav"><ul id="g1-secondary-nav-menu" class="g1-secondary-nav-menu"><li id="menu-item-1614" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1614"><a href="leimotiv/index.html">Ideias</a></li>
<li id="menu-item-2131" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2131"><a href="contribuicoes-e-apoios/index.html">Contribuições</a></li>
<li id="menu-item-2290" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2290"><a href="registro/index.html">Crie sua conta</a></li>
<li id="menu-item-1612" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1612"><a href="fale-com-a-gente/index.html">Contato</a></li>
</ul></nav></div>
</div>
</div>
</div>
<div class="g1-row-background"></div>
</div>
<div class="g1-row g1-row-layout-page g1-hb-row g1-hb-row-normal g1-hb-row-b g1-hb-row-2 g1-hb-boxed g1-hb-sticky-off g1-hb-shadow-off">
<div class="g1-row-inner">
<div class="g1-column g1-dropable">
<div class="g1-bin-1 g1-bin-grow-off">
<div class="g1-bin g1-bin-align-left">
<div class="g1-id">
<h1 class="g1-mega g1-mega-1st site-title">
<a class="g1-logo-wrapper" href="" rel="home">
<img class="g1-logo g1-logo-default" width="150" height="0" src="wp-content/uploads/2019/02/aguasml-logo-aguasml-150.png" alt="Águas Mídia Livre"></a>
</h1>
</div> </div>
</div>
<div class="g1-bin-2 g1-bin-grow-off">
<div class="g1-bin g1-bin-align-center">
</div>
</div>
<div class="g1-bin-3 g1-bin-grow-off">
<div class="g1-bin g1-bin-align-right">
<nav class="g1-quick-nav g1-quick-nav-short"><ul class="g1-quick-nav-menu"><li class="menu-item menu-item-type-g1-latest current-menu-item">
<a href="http://OFFLINEZIP.wpsho">
<span class="entry-flag entry-flag-latest"></span>
Gotas </a>
</li>
</ul></nav></div>
</div>
</div>
</div>
<div class="g1-row-background"></div>
</div>
<div class="g1-row g1-row-layout-page g1-hb-row g1-hb-row-normal g1-hb-row-c g1-hb-row-3 g1-hb-boxed g1-hb-sticky-off g1-hb-shadow-off">
<div class="g1-row-inner">
<div class="g1-column g1-dropable">
<div class="g1-bin-1 g1-bin-grow-off">
<div class="g1-bin g1-bin-align-center">
</div>
</div>
<div class="g1-bin-2 g1-bin-grow-off">
<div class="g1-bin g1-bin-align-center">
<nav id="g1-primary-nav" class="g1-primary-nav"><ul id="g1-primary-nav-menu" class="g1-primary-nav-menu"><li id="menu-item-173" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-g1-standard menu-item-173"><a href="textos/hidricos/index.html">Natureza</a>
<ul class="sub-menu"><li id="menu-item-174" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-174"><a href="textos/hidricos/modelagem/index.html">Modelagem</a></li>
<li id="menu-item-175" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-175"><a href="textos/hidricos/qualidade/index.html">Qualidade</a></li>
</ul></li>
<li id="menu-item-178" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-g1-standard menu-item-178"><a href="textos/ferramentas/index.html">Tecnologias</a>
<ul class="sub-menu"><li id="menu-item-172" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-172"><a href="textos/atores/instrumentos/index.html">Instrumentos</a></li>
<li id="menu-item-170" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-170"><a href="textos/atores/planos/index.html">Planos</a></li>
</ul></li>
<li id="menu-item-177" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-g1-standard menu-item-177"><a href="textos/atores/index.html">Pessoas</a>
<ul class="sub-menu"><li id="menu-item-2129" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2129"><a href="textos/atores/cyorgs/index.html">CyOrgs</a></li>
<li id="menu-item-169" class="menu-item menu-item-type-taxonomy menu-item-object-wpdmcategory menu-item-169"><a href="download-category/governanca/index.html">Governança</a></li>
</ul></li>
</ul></nav></div>
</div>
<div class="g1-bin-3 g1-bin-grow-off">
<div class="g1-bin g1-bin-align-right">
<div class="g1-drop g1-drop-before g1-drop-the-search g1-drop-l g1-drop-icon ">
<a class="g1-drop-toggle" href="">
<span class="g1-drop-toggle-icon"></span><span class="g1-drop-toggle-text">Pesquisa</span>
<span class="g1-drop-toggle-arrow"></span>
</a>
<div class="g1-drop-content">
<div role="search" class="search-form-wrapper">
<form method="get" class="g1-searchform-tpl-default g1-searchform-ajax search-form" action="http://OFFLINEZIP.wpsho/">
<label>
<span class="screen-reader-text">Pesquisar por:</span>
<input type="search" class="search-field" placeholder="Pesquisar …" value="" name="s" title="Pesquisar por:"></label>
<button class="search-submit">Pesquisa</button>
</form>
<div class="g1-searches g1-searches-ajax"></div>
</div>
</div>
</div>
<nav class="g1-drop g1-drop-before g1-drop-the-user g1-drop-l g1-drop-icon "><a class="g1-drop-toggle snax-login-required" href="#">
<span class="g1-drop-toggle-icon"></span><span class="g1-drop-toggle-text">Entrar</span>
<span class="g1-drop-toggle-arrow"></span>
</a>
</nav><div class="g1-drop g1-drop-before g1-drop-create">
<a class="g1-button g1-button-solid snax-button snax-button-create snax-button-create-dropdown g1-drop-toggle g1-button-m" href="publique-ideias-no-aguas-ml/index.html">Escreva <span class="g1-drop-toggle-arrow"></span>
</a>
<div class="g1-drop-content snax">
<a href="publique-ideias-no-aguas-ml/index.html" class="snax-format-text">
<span class="snax-format-icon"></span>
<span class="g1-epsilon g1-epsilon-1st">Textos</span>
</a>
<a href="publique-ideias-no-aguas-ml/index.html" class="snax-format-embed">
<span class="snax-format-icon"></span>
<span class="g1-epsilon g1-epsilon-1st">Redes Sociais</span>
</a>
<a href="publique-ideias-no-aguas-ml/index.html" class="snax-format-video">
<span class="snax-format-icon"></span>
<span class="g1-epsilon g1-epsilon-1st">Vídeo Águas</span>
</a>
<a href="publique-ideias-no-aguas-ml/index.html" class="bimber-snax-dropdown-view-all g1-link g1-link-s g1-link-right">
View all formats </a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="g1-row-background"></div>
</div>
<div class="g1-row g1-row-layout-page g1-hb-row g1-hb-row-mobile g1-hb-row-a g1-hb-row-1 g1-hb-boxed g1-hb-sticky-off g1-hb-shadow-off">
<div class="g1-row-inner">
<div class="g1-column g1-dropable">
<div class="g1-bin-1 g1-bin-grow-off">
<div class="g1-bin g1-bin-align-left">
</div>
</div>
<div class="g1-bin-2 g1-bin-grow-on">
<div class="g1-bin g1-bin-align-center">
</div>
</div>
<div class="g1-bin-3 g1-bin-grow-off">
<div class="g1-bin g1-bin-align-right">
</div>
</div>
</div>
</div>
<div class="g1-row-background"></div>
</div>
<div class="g1-row g1-row-layout-page g1-hb-row g1-hb-row-mobile g1-hb-row-b g1-hb-row-2 g1-hb-boxed g1-hb-sticky-off g1-hb-shadow-off">
<div class="g1-row-inner">
<div class="g1-column g1-dropable">
<div class="g1-bin-1 g1-bin-grow-off">
<div class="g1-bin g1-bin-align-left">
</div>
</div>
<div class="g1-bin-2 g1-bin-grow-on">
<div class="g1-bin g1-bin-align-center">
<nav class="g1-quick-nav g1-quick-nav-short"><ul class="g1-quick-nav-menu"><li class="menu-item menu-item-type-g1-latest current-menu-item">
<a href="http://OFFLINEZIP.wpsho">
<span class="entry-flag entry-flag-latest"></span>
Gotas </a>
</li>
</ul></nav></div>
</div>
<div class="g1-bin-3 g1-bin-grow-off">
<div class="g1-bin g1-bin-align-right">
</div>
</div>
</div>
</div>
<div class="g1-row-background"></div>
</div>
<div class="g1-row g1-row-layout-page g1-hb-row g1-hb-row-mobile g1-hb-row-c g1-hb-row-3 g1-hb-boxed g1-hb-sticky-off g1-hb-shadow-off">
<div class="g1-row-inner">
<div class="g1-column g1-dropable">
<div class="g1-bin-1 g1-bin-grow-off">
<div class="g1-bin g1-bin-align-left">
<a class="g1-hamburger g1-hamburger-show " href="#">
<span class="g1-hamburger-icon"></span>
<span class="g1-hamburger-label
">Menu</span>
</a>
</div>
</div>
<div class="g1-bin-2 g1-bin-grow-off">
<div class="g1-bin g1-bin-align-center">
</div>
</div>
<div class="g1-bin-3 g1-bin-grow-off">
<div class="g1-bin g1-bin-align-right">
<div class="g1-drop g1-drop-before g1-drop-the-search g1-drop-l g1-drop-icon ">
<a class="g1-drop-toggle" href="">
<span class="g1-drop-toggle-icon"></span><span class="g1-drop-toggle-text">Pesquisa</span>
<span class="g1-drop-toggle-arrow"></span>
</a>
<div class="g1-drop-content">
<div role="search" class="search-form-wrapper">
<form method="get" class="g1-searchform-tpl-default g1-searchform-ajax g1-searchform-ajax search-form" action="http://OFFLINEZIP.wpsho/">
<label>
<span class="screen-reader-text">Pesquisar por:</span>
<input type="search" class="search-field" placeholder="Pesquisar …" value="" name="s" title="Pesquisar por:"></label>
<button class="search-submit">Pesquisa</button>
</form>
<div class="g1-searches g1-searches-ajax"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="g1-row-background"></div>
</div>
<aside class="g1-featured-row g1-featured-row-before-header"><h2 class="g1-zeta g1-zeta-2nd g1-featured-title">Últimas gotas</h2>
<div class="g1-featured g1-featured-items-bunchy g1-featured-items-bunchy-1">
<ul class="g1-featured-items"><li class="g1-featured-item">
<article class="entry-tpl-tile g1-dark post-2313 post type-post status-publish format-video has-post-thumbnail category-video-aguas tag-jamari tag-rio tag-rondonia post_format-post-format-video snax_format-video"><figure class="entry-featured-media " style="background-image: url(http://OFFLINEZIP.wpsho/wp-content/uploads/2019/02/aguasml-refluxos-do-rio-jamari-figura-1-vista-geral-do-rio-jamari-logo-a-jusante-da-uhe-samuel.png);"><a title="Refluxos do Rio Jamari" class="g1-frame" href="refluxos-do-rio-jamari/index.html"><div class="g1-frame-inner" style="padding-bottom: 67.00000000%;"><img width="600" height="402" src="wp-content/uploads/2019/02/aguasml-refluxos-do-rio-jamari-figura-1-vista-geral-do-rio-jamari-logo-a-jusante-da-uhe-samuel.png" class="attachment-bimber-tile size-bimber-tile wp-post-image" alt="" srcset="wp-content/uploads/2019/02/aguasml-refluxos-do-rio-jamari-figura-1-vista-geral-do-rio-jamari-logo-a-jusante-da-uhe-samuel.png 600w,wp-content/uploads/2019/02/aguasml-refluxos-do-rio-jamari-figura-1-vista-geral-do-rio-jamari-logo-a-jusante-da-uhe-samuel-150x101.png 150w,wp-content/uploads/2019/02/aguasml-refluxos-do-rio-jamari-figura-1-vista-geral-do-rio-jamari-logo-a-jusante-da-uhe-samuel-300x201.png 300w,wp-content/uploads/2019/02/aguasml-refluxos-do-rio-jamari-figura-1-vista-geral-do-rio-jamari-logo-a-jusante-da-uhe-samuel-561x376.png 561w,wp-content/uploads/2019/02/aguasml-refluxos-do-rio-jamari-figura-1-vista-geral-do-rio-jamari-logo-a-jusante-da-uhe-samuel-364x244.png 364w,wp-content/uploads/2019/02/aguasml-refluxos-do-rio-jamari-figura-1-vista-geral-do-rio-jamari-logo-a-jusante-da-uhe-samuel-313x210.png 313w" sizes="(max-width: 600px) 100vw, 600px"><span class="g1-frame-icon g1-frame-icon-video"></span></div></a></figure><div class="entry-body">
<header class="entry-header"><div class="entry-before-title">
</div>
<h3 class="g1-gamma g1-gamma-1st entry-title"><a href="refluxos-do-rio-jamari/index.html" rel="bookmark">Refluxos do Rio Jamari</a></h3>
</header></div>
</article></li>
</ul></div>
</aside><div class="g1-row g1-row-layout-page g1-row-padding-m archive-body">
<div class="g1-row-inner">
<div id="primary" class="g1-column g1-column-2of3">
<div class="g1-collection g1-collection-columns-2">
<h2 class="g1-delta g1-delta-2nd g1-collection-title"><span>Gotas em mídia livre</span></h2>
<div class="g1-collection-viewport">
<ul class="g1-collection-items"><li class="g1-collection-item g1-collection-item-1of3">
<article class="entry-tpl-grid post-2346 post type-post status-publish format-standard has-post-thumbnail category-instrumentos category-nacionais category-planos tag-435 tag-agua-potavel tag-aguas tag-drenagem tag-esgotamento-sanitario tag-manejo-de-residuos-solidos tag-plano-nacional-de-saneamento-basico tag-plansab tag-pluviais tag-saneamento snax_format-text"><figure class="entry-featured-media "><a title="Plano Nacional de Saneamento Básico receberá contribuições até 8 de abril" class="g1-frame" href="plano-nacional-de-saneamento-basico-recebera-contribuicoes-ate-8-de-abril/index.html"><div class="g1-frame-inner" style="padding-bottom: 56.31868132%;"><img width="364" height="205" src="wp-content/uploads/2019/03/aguasml-plansab-364x205.jpg" class="attachment-bimber-grid-standard size-bimber-grid-standard wp-post-image" alt="" srcset="wp-content/uploads/2019/03/aguasml-plansab-364x205.jpg 364w,wp-content/uploads/2019/03/aguasml-plansab-192x108.jpg 192w,wp-content/uploads/2019/03/aguasml-plansab-384x216.jpg 384w,wp-content/uploads/2019/03/aguasml-plansab-561x316.jpg 561w" sizes="(max-width: 364px) 100vw, 364px"><span class="g1-frame-icon g1-frame-icon-"></span></div></a></figure><p class="entry-flags">
<a class="entry-flag entry-flag-trending" href="" title="Trending">
Trending </a>
<a class="entry-flag entry-flag-hot" href="" title="Boa!">
Boa! </a>
<a class="entry-flag entry-flag-popular" href="" title="Popular">
Popular </a>
</p>
<div class="entry-body">
<header class="entry-header"><div class="entry-before-title">
<p class="entry-meta entry-stats g1-meta g1-meta g1-current-background"><span class="entry-views entry-views-trending "><strong>210</strong><span> leituras</span></span><span class="entry-comments-link entry-comments-link-1"><a href="plano-nacional-de-saneamento-basico-recebera-contribuicoes-ate-8-de-abril/#comments-section"><strong>1</strong> <span>Comentário</span></a></span></p>
<span class="entry-categories "><span class="entry-categories-inner"><span class="entry-categories-label">in</span> <a href="textos/atores/instrumentos/index.html" class="entry-category entry-category-item-11">Instrumentos</a>, <a href="textos/atores/planos/nacionais/index.html" class="entry-category entry-category-item-134">Nacionais</a>, <a href="textos/atores/planos/index.html" class="entry-category entry-category-item-2">Planos</a></span></span> </div>
<h3 class="g1-gamma g1-gamma-1st entry-title"><a href="plano-nacional-de-saneamento-basico-recebera-contribuicoes-ate-8-de-abril/index.html" rel="bookmark">Plano Nacional de Saneamento Básico receberá contribuições até 8 de abril</a></h3>
</header><div class="entry-summary">
<p>Com desejos e incentivos à participação qualificada, o Plano Nacional de Saneamento Básico (Plansab) está aberto para revisão de suas prioridades para 2033 Durante 30 dias ininterruptos a partir do dia 7 de março, a proposta de revisão está aberta e aceitando sugestões e críticas na consulta através de mecanismos digitais e duas audiências públicas […] <a class="g1-link g1-link-more" href="plano-nacional-de-saneamento-basico-recebera-contribuicoes-ate-8-de-abril/index.html">MAIS</a></p>
<div class="the_champ_sharing_container the_champ_vertical_sharing the_champ_hide_sharing the_champ_bottom_sharing" style="width:44px;right: -10px;top: 300px;-webkit-box-shadow:none;box-shadow:none;" super-socializer-data-href="http://OFFLINEZIP.wpsho/"><ul class="the_champ_sharing_ul"><li class=""><i style="width:40px;height:40px;margin:0;" alt="Facebook" title="Facebook" class="theChampSharing theChampFacebookBackground" onclick='theChampPopup("https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faguas.ml")'><ss style="display:block;" class="theChampSharingSvg theChampFacebookSvg"></ss></i></li><li class=""><i style="width:40px;height:40px;margin:0;" alt="Twitter" title="Twitter" class="theChampSharing theChampTwitterBackground" onclick='theChampPopup("http://twitter.com/intent/tweet?via=aguasml&text=%C3%81guas%20M%C3%ADdia%20Livre%20-%20Bem%20comum%20em%20m%C3%ADdia%20livre&url=https%3A%2F%2Faguas.ml")'><ss style="display:block;" class="theChampSharingSvg theChampTwitterSvg"></ss></i></li><li class=""><i style="width:40px;height:40px;margin:0;" alt="Whatsapp" title="Whatsapp" class="theChampSharing theChampWhatsappBackground"><a href="https://web.whatsapp.com/send?text=%C3%81guas%20M%C3%ADdia%20Livre%20-%20Bem%20comum%20em%20m%C3%ADdia%20livre%20https%3A%2F%2Faguas.ml" rel="nofollow noopener" target="_blank"><ss style="display:block" class="theChampSharingSvg theChampWhatsappSvg"></ss></a></i></li></ul><div style="clear:both"></div></div> </div>
<footer><p class="g1-meta entry-meta entry-byline entry-byline-with-avatar">
<span class="entry-author">
<span class="entry-meta-label">por</span>
<a href="membros/cdiego/profile/home/index.html" title="Um post de Carlos Diego" rel="author">
<img alt="" src="//pbs.twimg.com/profile_images/921456867850768384/HAcpAAPj.jpg" class="avatar avatar-30 " height="30" width="30" style="height:30px;width:30px"><strong>Carlos Diego</strong>
</a>
</span>
<time class="entry-date" datetime="2019-03-29T14:42:34">29/03/2019, 2:42 pm</time></p>
</footer></div>
</article></li>
<li class="g1-collection-item g1-collection-item-1of3">
<aside id="bimber-mc4wp-form-counter-1" class="g1-box g1-box-tpl-frame g1-newsletter g1-newsletter-vertical "><div class="g1-box-icon">
</div>
<div class="g1-box-inner">
<header><h2 class="g1-delta g1-delta-2nd"><span>Newsletter</span></h2> </header><p class="g1-alpha g1-alpha-1st">Receba as melhores notícias do mundo das águas em seu email</p>
<script>(function() {
if (!window.mc4wp) {
window.mc4wp = {
listeners: [],
forms : {
on: function (event, callback) {
window.mc4wp.listeners.push({
event : event,
callback: callback
});
}
}
}
}
})();
</script><form id="mc4wp-form-1" class="mc4wp-form mc4wp-form-947" method="post" data-id="947" data-name="Receba novidades"><div class="mc4wp-form-fields"><p>
<label>Seu nome</label>
<input type="text" name="FNAME" required="" placeholder="Digite seu nome"></p>
<p>
<label>Seu email: </label>
<input type="email" name="EMAIL" placeholder="Digite seu email" required></p>
<p>
<input type="submit" value="Assinar"></p></div><label style="display: none !important;">Leave this field empty if you're human: <input type="text" name="_mc4wp_honeypot" value="" tabindex="-1" autocomplete="off"></label><input type="hidden" name="_mc4wp_timestamp" value="1555708627"><input type="hidden" name="_mc4wp_form_id" value="947"><input type="hidden" name="_mc4wp_form_element_id" value="mc4wp-form-1"><div class="mc4wp-response"></div><p class="g1-meta g1-newsletter-privacy">Super tranquilo, não enviamos spam</p></form> </div>
<div class="g1-box-background g1-current-background">
</div>
</aside></li>
<li class="g1-collection-item g1-collection-item-1of3">
<article class="entry-tpl-grid post-2323 post type-post status-publish format-standard has-post-thumbnail category-cyorgs tag-externa tag-indice tag-internacional tag-politica snax_format-text"><figure class="entry-featured-media "><a title="A política externa brasileira de 1998 à 2014" class="g1-frame" href="a-politica-externa-brasileira-de-1998-a-2014/index.html"><div class="g1-frame-inner" style="padding-bottom: 56.31868132%;"><img width="364" height="205" src="wp-content/uploads/2019/03/aguasml-indice-politica-externa-364x205.png" class="attachment-bimber-grid-standard size-bimber-grid-standard wp-post-image" alt="" srcset="wp-content/uploads/2019/03/aguasml-indice-politica-externa-364x205.png 364w,wp-content/uploads/2019/03/aguasml-indice-politica-externa-192x108.png 192w,wp-content/uploads/2019/03/aguasml-indice-politica-externa-384x216.png 384w,wp-content/uploads/2019/03/aguasml-indice-politica-externa-728x410.png 728w,wp-content/uploads/2019/03/aguasml-indice-politica-externa-561x316.png 561w,wp-content/uploads/2019/03/aguasml-indice-politica-externa-1122x631.png 1122w,wp-content/uploads/2019/03/aguasml-indice-politica-externa-758x426.png 758w,wp-content/uploads/2019/03/aguasml-indice-politica-externa-1152x648.png 1152w" sizes="(max-width: 364px) 100vw, 364px"><span class="g1-frame-icon g1-frame-icon-"></span></div></a></figure><p class="entry-flags">
<a class="entry-flag entry-flag-hot" href="" title="Boa!">
Boa! </a>
</p>
<div class="entry-body">
<header class="entry-header"><div class="entry-before-title">
<p class="entry-meta entry-stats g1-meta g1-meta g1-current-background"><span class="entry-views entry-views-hot "><strong>44</strong><span> leituras</span></span></p>
<span class="entry-categories "><span class="entry-categories-inner"><span class="entry-categories-label">in</span> <a href="textos/atores/cyorgs/index.html" class="entry-category entry-category-item-235">CyOrgs</a></span></span> </div>
<h3 class="g1-gamma g1-gamma-1st entry-title"><a href="a-politica-externa-brasileira-de-1998-a-2014/index.html" rel="bookmark">A política externa brasileira de 1998 à 2014</a></h3>
</header><div class="entry-summary">
<p>Como podemos avaliar a política externa brasileira nos últimos anos? Há alguma primazia ideológica nas ações do governo federal no séc XXI? <a class="g1-link g1-link-more" href="a-politica-externa-brasileira-de-1998-a-2014/index.html">MAIS</a></p>
</div>
<footer><p class="g1-meta entry-meta entry-byline entry-byline-with-avatar">
<span class="entry-author">
<span class="entry-meta-label">por</span>
<a href="membros/cdiego/profile/home/index.html" title="Um post de Carlos Diego" rel="author">
<img alt="" src="//pbs.twimg.com/profile_images/921456867850768384/HAcpAAPj.jpg" class="avatar avatar-30 " height="30" width="30" style="height:30px;width:30px"><strong>Carlos Diego</strong>
</a>
</span>
<time class="entry-date" datetime="2019-03-27T12:22:31">27/03/2019, 12:22 pm</time></p>
</footer></div>
</article></li>
<li class="g1-collection-item g1-collection-item-1of3">
<article class="entry-tpl-grid post-2308 post type-post status-publish format-standard has-post-thumbnail category-governanca snax_format-text"><figure class="entry-featured-media "><a title="ONG ProAzul e o Comitê da Bacia Hidrográfica do Médio Paranapanema" class="g1-frame" href="ong-proazul-e-o-comite-da-bacia-hidrografica-do-medio-paranapanema/index.html"><div class="g1-frame-inner" style="padding-bottom: 56.31868132%;"><img width="364" height="205" src="wp-content/uploads/2019/02/aguasml-cbhmp-364x205.png" class="attachment-bimber-grid-standard size-bimber-grid-standard wp-post-image" alt="" srcset="wp-content/uploads/2019/02/aguasml-cbhmp-364x205.png 364w,wp-content/uploads/2019/02/aguasml-cbhmp-192x108.png 192w,wp-content/uploads/2019/02/aguasml-cbhmp-384x216.png 384w" sizes="(max-width: 364px) 100vw, 364px"><span class="g1-frame-icon g1-frame-icon-"></span></div></a></figure><div class="entry-body">
<header class="entry-header"><div class="entry-before-title">
<p class="entry-meta entry-stats g1-meta g1-meta g1-current-background"><span class="entry-views "><strong>39</strong><span> leituras</span></span><span class="entry-comments-link entry-comments-link-1"><a href="ong-proazul-e-o-comite-da-bacia-hidrografica-do-medio-paranapanema/#comments-section"><strong>1</strong> <span>Comentário</span></a></span></p>
<span class="entry-categories "><span class="entry-categories-inner"><span class="entry-categories-label">in</span> <a href="textos/atores/governanca/index.html" class="entry-category entry-category-item-44">Governança</a></span></span> </div>
<h3 class="g1-gamma g1-gamma-1st entry-title"><a href="ong-proazul-e-o-comite-da-bacia-hidrografica-do-medio-paranapanema/index.html" rel="bookmark">ONG ProAzul e o Comitê da Bacia Hidrográfica do Médio Paranapanema</a></h3>
</header><div class="entry-summary">
<p>Ocorreu no dia 21 de Fevereiro de 2019 a reunião preparatória da sociedade civil junto aos representantes das entidades habilitadas para a composição da Plenária do Comitê da Bacia Hidrográfica do Médio Paranapanema – SP, contando com 13 cadeiras para cada seguimento (13 para a sociedade civil, 13 para os municípios e 13 para o […] <a class="g1-link g1-link-more" href="ong-proazul-e-o-comite-da-bacia-hidrografica-do-medio-paranapanema/index.html">MAIS</a></p>
</div>
<footer><p class="g1-meta entry-meta entry-byline entry-byline-with-avatar">
<span class="entry-author">
<span class="entry-meta-label">por</span>
<a href="membros/cledirmendessoares/profile/home/index.html" title="Um post de Cledir Soares" rel="author">
<img alt="" src="wp-content/uploads/avatars/4/aguasml-aguasml-5c1ccc48cc01d-bpthumb.png" srcset="wp-content/uploads/avatars/4/aguasml-aguasml-5c1ccc48b2871-bpfull.png 2x" class="avatar avatar-30 photo" height="30" width="30"><strong>Cledir Soares</strong>
</a>
</span>
<time class="entry-date" datetime="2019-02-24T23:38:58">24/02/2019, 11:38 pm</time></p>
</footer></div>
</article></li>
<li class="g1-collection-item g1-collection-item-1of3">
<article class="entry-tpl-grid post-2284 post type-post status-publish format-standard has-post-thumbnail category-governanca snax_format-text"><figure class="entry-featured-media "><a title="Agenda 2030: falta de integração no planejamento e integração" class="g1-frame" href="agenda-2030-falta-de-integracao-no-planejamento-e-integracao/index.html"><div class="g1-frame-inner" style="padding-bottom: 56.00000000%;"><img width="300" height="168" src="wp-content/uploads/2019/01/aguasml-download.jpg" class="attachment-bimber-grid-standard size-bimber-grid-standard wp-post-image" alt="" srcset="wp-content/uploads/2019/01/aguasml-download.jpg 300w,wp-content/uploads/2019/01/aguasml-download-150x84.jpg 150w,wp-content/uploads/2019/01/aguasml-download-192x108.jpg 192w" sizes="(max-width: 300px) 100vw, 300px"><span class="g1-frame-icon g1-frame-icon-"></span></div></a></figure><div class="entry-body">
<header class="entry-header"><div class="entry-before-title">
<p class="entry-meta entry-stats g1-meta g1-meta g1-current-background"><span class="entry-views "><strong>15</strong><span> leituras</span></span></p>
<span class="entry-categories "><span class="entry-categories-inner"><span class="entry-categories-label">in</span> <a href="textos/atores/governanca/index.html" class="entry-category entry-category-item-44">Governança</a></span></span> </div>
<h3 class="g1-gamma g1-gamma-1st entry-title"><a href="agenda-2030-falta-de-integracao-no-planejamento-e-integracao/index.html" rel="bookmark">Agenda 2030: falta de integração no planejamento e integração</a></h3>
</header><div class="entry-summary">
<p>A Agenda 2030 enfrenta diversas dificuldades em sua implementação. Primeiramente em um esvaziamento da capacidade de articulação política da ONU em diversas instâncias aos seus países membros, principalmente com relação a redução da emissão de GEE´s e problemas de imigração em massa (vide o posicionamento dos EUA e recentemente do Brasil na questão imigratória). Segundo, […] <a class="g1-link g1-link-more" href="agenda-2030-falta-de-integracao-no-planejamento-e-integracao/index.html">MAIS</a></p>
</div>
<footer><p class="g1-meta entry-meta entry-byline entry-byline-with-avatar">
<span class="entry-author">
<span class="entry-meta-label">por</span>
<a href="membros/cledirmendessoares/profile/home/index.html" title="Um post de Cledir Soares" rel="author">
<img alt="" src="wp-content/uploads/avatars/4/aguasml-aguasml-5c1ccc48cc01d-bpthumb.png" srcset="wp-content/uploads/avatars/4/aguasml-aguasml-5c1ccc48b2871-bpfull.png 2x" class="avatar avatar-30 photo" height="30" width="30"><strong>Cledir Soares</strong>
</a>
</span>
<time class="entry-date" datetime="2019-01-31T15:45:45">31/01/2019, 3:45 pm</time></p>
</footer></div>
</article></li>
<li class="g1-collection-item g1-collection-item-1of3">
<article class="entry-tpl-grid post-2264 post type-post status-publish format-standard has-post-thumbnail category-cyorgs category-geral tag-extinctionrebellion tag-crime tag-desastres tag-mar-de-lama tag-vale-nunca-mais"><figure class="entry-featured-media "><a title="Crime e Mar de Lama em Brumadinho respinga na Grande BH" class="g1-frame" href="crime-e-mar-de-lama-respinga-na-grande-bh/index.html"><div class="g1-frame-inner" style="padding-bottom: 56.31868132%;"><img width="364" height="205" src="wp-content/uploads/2019/01/aguasml-crime-e-mar-de-lama-respinga-na-grande-bh-brumadinho-04-364x205.jpeg" class="attachment-bimber-grid-standard size-bimber-grid-standard wp-post-image" alt="" srcset="wp-content/uploads/2019/01/aguasml-crime-e-mar-de-lama-respinga-na-grande-bh-brumadinho-04-364x205.jpeg 364w,wp-content/uploads/2019/01/aguasml-crime-e-mar-de-lama-respinga-na-grande-bh-brumadinho-04-192x108.jpeg 192w,wp-content/uploads/2019/01/aguasml-crime-e-mar-de-lama-respinga-na-grande-bh-brumadinho-04-384x216.jpeg 384w,wp-content/uploads/2019/01/aguasml-crime-e-mar-de-lama-respinga-na-grande-bh-brumadinho-04-728x410.jpeg 728w,wp-content/uploads/2019/01/aguasml-crime-e-mar-de-lama-respinga-na-grande-bh-brumadinho-04-561x316.jpeg 561w,wp-content/uploads/2019/01/aguasml-crime-e-mar-de-lama-respinga-na-grande-bh-brumadinho-04-758x426.jpeg 758w" sizes="(max-width: 364px) 100vw, 364px"><span class="g1-frame-icon g1-frame-icon-"></span></div></a></figure><p class="entry-flags">
<a class="entry-flag entry-flag-popular" href="" title="Popular">
Popular </a>
</p>
<div class="entry-body">
<header class="entry-header"><div class="entry-before-title">
<p class="entry-meta entry-stats g1-meta g1-meta g1-current-background"><span class="entry-views entry-views-popular "><strong>206</strong><span> leituras</span></span></p>
<span class="entry-categories "><span class="entry-categories-inner"><span class="entry-categories-label">in</span> <a href="textos/atores/cyorgs/index.html" class="entry-category entry-category-item-235">CyOrgs</a>, <a href="textos/geral/index.html" class="entry-category entry-category-item-1">Geral</a></span></span> </div>
<h3 class="g1-gamma g1-gamma-1st entry-title"><a href="crime-e-mar-de-lama-respinga-na-grande-bh/index.html" rel="bookmark">Crime e Mar de Lama em Brumadinho respinga na Grande BH</a></h3>
</header><div class="entry-summary">
<p>Texto de posicionamento coletivo produzido pelo Projeto Manuelzão sobre o rompimento das barragens de rejeito de minério em Brumadinho, nesta sexta-feira, 25 de janeiro <a class="g1-link g1-link-more" href="crime-e-mar-de-lama-respinga-na-grande-bh/index.html">MAIS</a></p>
</div>
<footer><p class="g1-meta entry-meta entry-byline entry-byline-with-avatar">
<span class="entry-author">
<span class="entry-meta-label">por</span>
<a href="membros/cdiego/profile/home/index.html" title="Um post de Carlos Diego" rel="author">
<img alt="" src="//pbs.twimg.com/profile_images/921456867850768384/HAcpAAPj.jpg" class="avatar avatar-30 " height="30" width="30" style="height:30px;width:30px"><strong>Carlos Diego</strong>
</a>
</span>
<time class="entry-date" datetime="2019-01-25T18:36:05">25/01/2019, 6:36 pm</time></p>
</footer></div>
</article></li>
<li class="g1-collection-item g1-collection-item-1of3">
<article class="entry-tpl-grid post-2238 post type-post status-publish format-standard has-post-thumbnail category-modelagem tag-ice-disk tag-lua-de-gelo tag-maine tag-rio-presumpscot"><figure class="entry-featured-media "><a title="A lua de gelo do Rio Presumpscot" class="g1-frame" href="a-lua-de-gelo-do-rio-presumpscot/index.html"><div class="g1-frame-inner" style="padding-bottom: 56.31868132%;"><img width="364" height="205" src="wp-content/uploads/2019/01/aguasml-a-lua-de-gelo-do-rio-presumpscot-maine-icedisk-364x205.jpg" class="attachment-bimber-grid-standard size-bimber-grid-standard wp-post-image" alt="" srcset="wp-content/uploads/2019/01/aguasml-a-lua-de-gelo-do-rio-presumpscot-maine-icedisk-364x205.jpg 364w,wp-content/uploads/2019/01/aguasml-a-lua-de-gelo-do-rio-presumpscot-maine-icedisk-192x108.jpg 192w,wp-content/uploads/2019/01/aguasml-a-lua-de-gelo-do-rio-presumpscot-maine-icedisk-384x216.jpg 384w,wp-content/uploads/2019/01/aguasml-a-lua-de-gelo-do-rio-presumpscot-maine-icedisk-728x410.jpg 728w,wp-content/uploads/2019/01/aguasml-a-lua-de-gelo-do-rio-presumpscot-maine-icedisk-561x316.jpg 561w,wp-content/uploads/2019/01/aguasml-a-lua-de-gelo-do-rio-presumpscot-maine-icedisk-758x426.jpg 758w" sizes="(max-width: 364px) 100vw, 364px"><span class="g1-frame-icon g1-frame-icon-"></span></div></a></figure><p class="entry-flags">
<a class="entry-flag entry-flag-popular" href="" title="Popular">
Popular </a>
</p>
<div class="entry-body">
<header class="entry-header"><div class="entry-before-title">
<p class="entry-meta entry-stats g1-meta g1-meta g1-current-background"><span class="entry-views entry-views-popular "><strong>108</strong><span> leituras</span></span></p>
<span class="entry-categories "><span class="entry-categories-inner"><span class="entry-categories-label">in</span> <a href="textos/hidricos/modelagem/index.html" class="entry-category entry-category-item-10">Modelagem</a></span></span> </div>
<h3 class="g1-gamma g1-gamma-1st entry-title"><a href="a-lua-de-gelo-do-rio-presumpscot/index.html" rel="bookmark">A lua de gelo do Rio Presumpscot</a></h3>
</header><div class="entry-summary">
<p>A cidade de Westbrook (Maine, EUA) entrou para o mapa do mundo das notícias com um interessante fenômeno no Rio Presumpscot, que atravessa uma cidade de aproximadamente 17 mil moradores. O disco de gelo, girando em sentido horário por algumas horas do dia, é super bonito, tanto quanto inexplicável. Conhecida na internet como Lua de Gelo […] <a class="g1-link g1-link-more" href="a-lua-de-gelo-do-rio-presumpscot/index.html">MAIS</a></p>
</div>
<footer><p class="g1-meta entry-meta entry-byline entry-byline-with-avatar">
<span class="entry-author">
<span class="entry-meta-label">por</span>
<a href="membros/cdiego/profile/home/index.html" title="Um post de Carlos Diego" rel="author">
<img alt="" src="//pbs.twimg.com/profile_images/921456867850768384/HAcpAAPj.jpg" class="avatar avatar-30 " height="30" width="30" style="height:30px;width:30px"><strong>Carlos Diego</strong>
</a>
</span>
<time class="entry-date" datetime="2019-01-16T13:21:32">16/01/2019, 1:21 pm</time></p>
</footer></div>
</article></li>
<li class="g1-collection-item g1-collection-item-1of3">
<article class="entry-tpl-grid post-2227 post type-post status-publish format-standard has-post-thumbnail category-atores category-governanca category-planos-estaduais tag-municipio-verde-azul tag-politicas-ambientais tag-sao-paulo snax_format-text"><figure class="entry-featured-media "><a title="Programa Município Verde Azul – 11 anos, resultados e opinião" class="g1-frame" href="programa-municipio-verde-azul-11-anos-resultados-e-opiniao/index.html"><div class="g1-frame-inner" style="padding-bottom: 65.70397112%;"><img width="277" height="182" src="wp-content/uploads/2018/12/aguasml-download.png" class="attachment-bimber-grid-standard size-bimber-grid-standard wp-post-image" alt="" srcset="wp-content/uploads/2018/12/aguasml-download.png 277w,wp-content/uploads/2018/12/aguasml-download-150x99.png 150w" sizes="(max-width: 277px) 100vw, 277px"><span class="g1-frame-icon g1-frame-icon-"></span></div></a></figure><div class="entry-body">
<header class="entry-header"><div class="entry-before-title">
<p class="entry-meta entry-stats g1-meta g1-meta g1-current-background"><span class="entry-views "><strong>47</strong><span> leituras</span></span><span class="entry-comments-link entry-comments-link-1"><a href="programa-municipio-verde-azul-11-anos-resultados-e-opiniao/#comments-section"><strong>1</strong> <span>Comentário</span></a></span></p>
<span class="entry-categories "><span class="entry-categories-inner"><span class="entry-categories-label">in</span> <a href="textos/atores/index.html" class="entry-category entry-category-item-19">Atores</a>, <a href="textos/atores/governanca/index.html" class="entry-category entry-category-item-44">Governança</a>, <a href="textos/atores/planos/planos-estaduais/index.html" class="entry-category entry-category-item-45">Planos Estaduais</a></span></span> </div>
<h3 class="g1-gamma g1-gamma-1st entry-title"><a href="programa-municipio-verde-azul-11-anos-resultados-e-opiniao/index.html" rel="bookmark">Programa Município Verde Azul – 11 anos, resultados e opinião</a></h3>
</header><div class="entry-summary">
<p>O Programa Município Verde Azul, da Secretaria de Meio Ambiente do Estado de São Paulo, pode ser resumido em uma agenda ambiental fomentada através de uma política de Estado e não de governo Tem como objetivo o incentivo a implementação de ações pautadas nos princípios de sustentabilidade e cumprimento das legislações ambientais existentes em prol […] <a class="g1-link g1-link-more" href="programa-municipio-verde-azul-11-anos-resultados-e-opiniao/index.html">MAIS</a></p>
</div>
<footer><p class="g1-meta entry-meta entry-byline entry-byline-with-avatar">
<span class="entry-author">
<span class="entry-meta-label">por</span>
<a href="membros/cledirmendessoares/profile/home/index.html" title="Um post de Cledir Soares" rel="author">
<img alt="" src="wp-content/uploads/avatars/4/aguasml-aguasml-5c1ccc48cc01d-bpthumb.png" srcset="wp-content/uploads/avatars/4/aguasml-aguasml-5c1ccc48b2871-bpfull.png 2x" class="avatar avatar-30 photo" height="30" width="30"><strong>Cledir Soares</strong>
</a>
</span>
<time class="entry-date" datetime="2018-12-21T10:29:51">21/12/2018, 10:29 am</time></p>
</footer></div>
</article></li>
</ul></div>
<div class="g1-collection-more infinite-scroll on-demand">
<div class="g1-collection-more-inner">
<a href="#" class="g1-button g1-button-m g1-button-solid g1-load-more" data-g1-next-page-url="http://OFFLINEZIP.wpsho/page/2/">
Carregar mais + </a>
<i class="g1-collection-more-spinner"></i>
<div class="g1-pagination-end">
Congratulations. You've reached the end of the internet. </div>
</div>
</div>
</div>
</div>
<div id="secondary" class="g1-column g1-column-1of3">
<aside id="text-3" class="widget widget_text"><header><h2 class="g1-delta g1-delta-2nd widgettitle"><span>Fontes externas</span></h2></header><div class="textwidget"><p>Rastreamos as melhores notícias hídricas para você! Fontes governamentais, empresariais e civis. Veja todas <a href="https://novas.portorural.com.br" target="_blank" rel="noopener">clicando aqui</a></p>
</div>
</aside><style type="text/css">
.rfw_dock-4.rfw_more{
display:none;
}
</style><aside id="rfw_dock-40" data-class="rfw_dock-4" class="rfw-class rfw_dock-4"><h3 class="widget-title">Ponto COM</h3><nav class="add-nav widget_dock" id="rfw-widget-0"><ul class="rfw_dock rfw_list" style=""><li> <a title="Saint-Gobain PAM: innovadoramente sostenible" href="https://www.iagua.es/noticias/saint-gobain-pam/saint-gobain-pam-innovadoramente-sostenible" target="_blank" rel="nofollow"><h3 class="entry-title rfw2">Saint-Gobain PAM: innovadoramente sostenible</h3></a> <div class="feed_img"></div><div class="text_div">¿Es posible ser una de las empresas líderes del sector de una manera sostenible? Saint-Gobain PAM lleva años implicada con...</div> </li><li> <a title="El IGME confirma que el color del agua del Lagunillo de las Tortugas se debe a microorganismos" href="https://www.iagua.es/noticias/diputacion-cuenca/igme-confirma-que-color-agua-lagunillo-tortugas-se-debe-microorganismos" target="_blank" rel="nofollow"><h3 class="entry-title rfw2">El IGME confirma que el color del agua del Lagunillo de las Tortugas se debe a microorganismos</h3></a> <div class="feed_img"></div><div class="text_div">El director del Departamento de Investigación en Recursos Geológicos del Instituto Geológico y Minero de España (IGME), Juan José Durán,...</div> </li></ul></nav></aside><style type="text/css">
.rfw_dock-3.rfw_more{
display:none;
}
</style><aside id="rfw_dock-30" data-class="rfw_dock-3" class="rfw-class rfw_dock-3"><h3 class="widget-title">CyORGs</h3><nav class="add-nav widget_dock" id="rfw-widget-0"><ul class="rfw_dock rfw_list" style=""><li> <a title="Butterflies in the Negev" href="https://aabgu.org/butterflies-in-the-negev/" target="_blank" rel="nofollow"><h3 class="entry-title rfw2">Butterflies in the Negev</h3></a> <div class="feed_img"></div><div class="text_div">ISRAEL21c – Everyone knows that Israel is the land of milk and honey. But did you know that it is...</div> </li><li> <a title="Mesmo com lucro recorde e presidente da holding afirmando que crise está superada Eletrobras insiste em penalizar trabalhadores" href="http://www.fnucut.org.br/mesmo-com-lucro-recorde-e-presidente-da-holding-afirmando-que-crise-esta-superada-eletrobras-insiste-em-penalizar-trabalhadores/" target="_blank" rel="nofollow"><h3 class="entry-title rfw2">Mesmo com lucro recorde e presidente da holding afirmando que crise está superada Eletrobras insiste em penalizar trabalhadores</h3></a> <div class="feed_img"></div><div class="text_div">Aconteceu em Brasília na quarta-feira, dia 10 de abril, a primeira rodada de negociação do ACT dos trabalhadores e das...</div> </li></ul></nav></aside><style type="text/css">
.rfw_dock-5.rfw_more{
display:none;
}
</style><aside id="rfw_dock-50" data-class="rfw_dock-5" class="rfw-class rfw_dock-5"><h3 class="widget-title">Ponto GOV</h3><nav class="add-nav widget_dock" id="rfw-widget-0"><ul class="rfw_dock rfw_list" style=""><li> <a title="Parceiros se articulam para fortalecer fruticultura em Alagoas" href="https://www.embrapa.br/noticias-rss/-/asset_publisher/HA73uEmvroGS/content/id/42596140" target="_blank" rel="nofollow"><h3 class="entry-title rfw2">Parceiros se articulam para fortalecer fruticultura em Alagoas</h3></a> <div class="feed_img"></div><div class="text_div">A Embrapa integra o rol de parceiros institucionais do Governo de Alagoas na iniciativa de estruturação de uma ‘Rota da...</div> </li> <li> <a title="Possibilidade de uso de armas nucleares é ‘maior do que já foi há gerações’, alerta ONU" href="http://feedproxy.google.com/~r/ONUBr/~3/1IPHS4QDz0g/" target="_blank" rel="nofollow"><h3 class="entry-title rfw2">Possibilidade de uso de armas nucleares é ‘maior do que já foi há gerações’, alerta ONU</h3></a> <a title="Possibilidade de uso de armas nucleares é ‘maior do que já foi há gerações’, alerta ONU" href="http://feedproxy.google.com/~r/ONUBr/~3/1IPHS4QDz0g/" target="_blank" rel="nofollow"><div class="image_only imgn"><img src="https://feeds.feedburner.com/~ff/ONUBr?d=yIl2AUoC8zA"></div></a> <div class="feed_img">Escultura “O Bem derrota o Mal”, na sede da ONU em Nova Iorque, foi entregue pela então União Soviética para...</div> </li></ul></nav></aside><style type="text/css">
.rfw_dock-6.rfw_more{
display:none;
}
</style><aside id="rfw_dock-60" data-class="rfw_dock-6" class="rfw-class rfw_dock-6"><h3 class="widget-title">Agenda da ANA</h3><nav class="add-nav widget_dock" id="rfw-widget-0"><ul class="rfw_dock rfw_slider" style=""><li> <a title="Abril_2019 1ª Quinzena" href="http://www3.ana.gov.br/portal/ANA/sala-de-situacao/acudes-do-semiarido/boletins/mensal/abril_2019-1a-quinzena/view" target="_blank" rel="nofollow"><h3 class="entry-title rfw2">Abril_2019 1ª Quinzena</h3></a> <div class="feed_img"></div> </li><li> <a title="Fevereiro_2019 1ª Quinzena" href="http://www3.ana.gov.br/portal/ANA/sala-de-situacao/acudes-do-semiarido/boletins/mensal/fevereiro_2019-1a-quinzena/view" target="_blank" rel="nofollow"><h3 class="entry-title rfw2">Fevereiro_2019 1ª Quinzena</h3></a> <div class="feed_img"></div> </li></ul></nav></aside><script type="text/javascript" language="javascript">jQuery(document).ready(function($){
$('#rfw_dock-60 .rfw_dock.rfw_slider').bxSlider({
auto: true,
adaptiveHeight: true,
pager: true,
controls: false,
infiniteLoop: true,
speed: 0,
mode: 'horizontal',
pause: 10000,
ticker: false,
pagerType: 'full',
randomStart: true,
hideControlOnEnd: true,
easing: 'linear',
captions: false,
video: true,
responsive: true,
useCSS: true,
preloadImages: 'visible',
touchEnabled: true
});
});
</script><aside id="media_image-4" class="widget widget_media_image"><a href="http://www.feis.unesp.br/#!/pos-graduacao/profagua/"><img width="250" height="106" src="wp-content/uploads/2016/09/logo_oficial.png" class="image wp-image-6 attachment-full size-full" alt="" style="max-width: 100%; height: auto;" srcset="wp-content/uploads/2016/09/logo_oficial.png 250w,wp-content/uploads/2016/09/logo_oficial-150x64.png 150w" sizes="(max-width: 250px) 100vw, 250px"></a></aside><aside id="custom_html-3" class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"><a href="https://t.me/aguasml"><img class="aligncenter size-full wp-image-1218" src="wp-content/uploads/2018/01/telegram-aguasml.gif" alt="" width="200" height="133"></a></div></aside><aside id="custom_html-6" class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"><a href="https://nacoesunidas.org/pos2015/agenda2030/" target="_blank" rel="noopener"><img class="aligncenter size-full wp-image-1218" src="wp-content/uploads/2017/11/Portuguese-SDG_Icons-12.png" alt="" width="92%"></a></div></aside></div>
</div>
<div class="g1-row-background"></div>
</div>
<div class="g1-row g1-row-layout-page g1-newsletter-as-row g1-newsletter-as-row-before_footer g1-before_footer g1-dark">
<div class="g1-row-background"></div>
<div class="g1-row-inner">
<div class="g1-column">
<aside id="bimber-mc4wp-form-counter-2" class="g1-newsletter g1-newsletter-horizontal g1-newsletter-block "><header><h2 class="g1-delta g1-delta-2nd"><span>Newsletter</span></h2> </header><div class="g1-newsletter-avatar">
</div>
<p class="g1-mega g1-mega-1st">Receba as novidades!</p>
<p class="g1-delta g1-delta-3rd">Receba as melhores notícias do mundo das águas em seu email</p>
<script>(function() {
if (!window.mc4wp) {
window.mc4wp = {
listeners: [],
forms : {
on: function (event, callback) {
window.mc4wp.listeners.push({
event : event,
callback: callback
});
}
}
}
}
})();
</script><form id="mc4wp-form-2" class="mc4wp-form mc4wp-form-947" method="post" data-id="947" data-name="Receba novidades"><div class="mc4wp-form-fields"><p>
<label>Seu nome</label>
<input type="text" name="FNAME" required="" placeholder="Digite seu nome"></p>
<p>
<label>Seu email: </label>
<input type="email" name="EMAIL" placeholder="Digite seu email" required></p>
<p>
<input type="submit" value="Assinar"></p></div><label style="display: none !important;">Leave this field empty if you're human: <input type="text" name="_mc4wp_honeypot" value="" tabindex="-1" autocomplete="off"></label><input type="hidden" name="_mc4wp_timestamp" value="1555708628"><input type="hidden" name="_mc4wp_form_id" value="947"><input type="hidden" name="_mc4wp_form_element_id" value="mc4wp-form-2"><div class="mc4wp-response"></div><p class="g1-meta g1-newsletter-privacy">Super tranquilo, não enviamos spam</p></form></aside></div>
</div>
</div>
<div class="g1-row g1-row-layout-page g1-footer">
<div class="g1-row-inner">
<div class="g1-column">
<p class="g1-footer-text"></p>
<nav id="g1-footer-nav" class="g1-footer-nav"><ul id="g1-footer-nav-menu" class=""><li id="menu-item-1700" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1700"><a href="navegar-pelos-arquivos/index.html">Arquivos</a></li>
<li id="menu-item-1695" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1695"><a href="downloads/index.html">Downloads</a></li>
<li id="menu-item-1696" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1696"><a href="escreva/index.html">Escreva</a></li>
<li id="menu-item-1697" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1697"><a href="atividades/index.html">Fluzz</a></li>
<li id="menu-item-1698" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1698"><a href="grupos/index.html">Grupos nas Águas</a></li>
<li id="menu-item-2099" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2099"><a href="membros/index.html">Membros</a></li>
</ul></nav></div>
</div>
<div class="g1-row-background">
</div>
</div>
<a href="#page" class="g1-back-to-top">Voltar ao topo</a>
</div>
<div class="g1-canvas-overlay"></div>
</div>
<div id="g1-breakpoint-desktop"></div>
<div class="g1-canvas g1-canvas-global">
<div class="g1-canvas-content">
<a class="g1-canvas-toggle" href="#">Close</a>
<nav id="g1-canvas-primary-nav" class="g1-primary-nav"><ul id="g1-canvas-primary-nav-menu" class="g1-primary-nav-menu g1-menu-v"><li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-173"><a href="textos/hidricos/index.html">Natureza</a>
<ul class="sub-menu"><li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-174"><a href="textos/hidricos/modelagem/index.html">Modelagem</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-175"><a href="textos/hidricos/qualidade/index.html">Qualidade</a></li>
</ul></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-178"><a href="textos/ferramentas/index.html">Tecnologias</a>
<ul class="sub-menu"><li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-172"><a href="textos/atores/instrumentos/index.html">Instrumentos</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-170"><a href="textos/atores/planos/index.html">Planos</a></li>
</ul></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-177"><a href="textos/atores/index.html">Pessoas</a>
<ul class="sub-menu"><li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2129"><a href="textos/atores/cyorgs/index.html">CyOrgs</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-wpdmcategory menu-item-169"><a href="download-category/governanca/index.html">Governança</a></li>
</ul></li>
</ul></nav><nav id="g1-canvas-secondary-nav" class="g1-secondary-nav"><ul id="g1-canvas-secondary-nav-menu" class="g1-secondary-nav-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1614"><a href="leimotiv/index.html">Ideias</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2131"><a href="contribuicoes-e-apoios/index.html">Contribuições</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2290"><a href="registro/index.html">Crie sua conta</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1612"><a href="fale-com-a-gente/index.html">Contato</a></li>
</ul></nav><nav class="g1-quick-nav g1-quick-nav-short"><ul class="g1-quick-nav-menu"><li class="menu-item menu-item-type-g1-latest current-menu-item">
<a href="http://OFFLINEZIP.wpsho">
<span class="entry-flag entry-flag-latest"></span>
Gotas </a>
</li>
</ul></nav><div role="search" class="search-form-wrapper">
<form method="get" class="g1-searchform-tpl-default g1-searchform-ajax g1-searchform-ajax search-form" action="http://OFFLINEZIP.wpsho/">
<label>
<span class="screen-reader-text">Pesquisar por:</span>
<input type="search" class="search-field" placeholder="Pesquisar …" value="" name="s" title="Pesquisar por:"></label>
<button class="search-submit">Pesquisa</button>
</form>
</div>
<a class="g1-button g1-button-m g1-button-solid snax-button snax-button-create" href="publique-ideias-no-aguas-ml/index.html">Escreva</a>
</div>
<div class="g1-canvas-background"></div>
</div>
<div id="snax-popup-content" class="snax white-popup mfp-hide">
<div class="snax-login-tab snax-tab-active">
<h2 class="g1-alpha">Entrar</h2>
<h4 class="snax-form-legend snax-form-legend-sign-in">Sign In</h4>
<div class="snax-login-form">
<form name="loginform-in-popup" id="loginform-in-popup" action="http://OFFLINEZIP.wpsho/wp-login.php" method="post">
<div class="snax-validation-error snax-login-error-message"></div>
<p class="login-username">
<label for="user_login">Nome de usuário ou endereço de e-mail</label>
<input type="text" name="log" id="user_login" class="input" value="" size="20"></p>
<p class="login-password">
<label for="user_pass">Senha</label>
<input type="password" name="pwd" id="user_pass" class="input" value="" size="20"></p>
<div id="snax-login-recaptcha"></div>
<p class="login-submit">
<input type="submit" name="wp-submit" id="wp-submit" class="button button-primary" value="Acessar"><input type="hidden" name="redirect_to" value="http://OFFLINEZIP.wpsho/"></p>
</form> </div>
<a class="snax-link-forgot-pass" href="">Recuperar senha</a>
<p class="snax-form-tip snax-form-tip-register">Ainda sem conta? <a href="registro/index.html">Criar conta</a>
</p>
</div>
<div class="snax-forgot-pass-tab snax-tab-inactive">
<h2 class="g1-alpha g1-alpha-2nd">Recuperar senha</h2>
<p>
Enter your account data and we will send you a link to reset your password. </p>
<div class="snax-forgot-pass-form">
<form name="lostpasswordform" id="lostpasswordform" action="http://OFFLINEZIP.wpsho/wp-login.php?action=lostpassword" method="post">
<div class="snax-validation-error snax-forgot-pass-error-message"></div>
<div class="snax-validation-error snax-forgot-pass-success-message"></div>
<p class="forgot-username">
<label for="user_login">Nome de usuário ou endereço de e-mail</label>
<input type="text" name="user_login" id="forgot-user_login" class="input" value="" size="20" placeholder="Nome de usuário ou endereço de e-mail"></p>
<input type="hidden" name="redirect_to" value="http://OFFLINEZIP.wpsho/"><p class="forgot-submit">
<input type="submit" name="wp-submit" id="forgot-wp-submit" class="button button-primary button-large" value="Reset Password"></p>
<a href="#" class="snax-back-to-login-tab">Voltar o login</a>
</form>
</div>
</div>
<div class="snax-reset-tab snax-tab-inactive">
<div class="snax-reset-pass-form">
<h2>Your password reset link appears to be invalid or expired.</h2>
</div>
</div>
<div class="snax-gdpr-tab snax-tab-inactive">
<h2 class="g1-alpha">Entrar</h2>
<h3 class="g1-delta">Privacy Policy</h3>
<p> To use social login you have to agree with the storage and handling of your data by this website.</p>
<a class="g1-button g1-button-l g1-button-wide g1-button-solid snax-login-gdpr-accept" href="#">Accept</a>
</div>
</div>
<script>(function() {function addEventListener(element,event,handler) {
if(element.addEventListener) {
element.addEventListener(event,handler, false);
} else if(element.attachEvent){
element.attachEvent('on'+event,handler);
}
}function maybePrefixUrlField() {
if(this.value.trim() !== '' && this.value.indexOf('http') !== 0) {
this.value = "http://" + this.value;
}
}
var urlFields = document.querySelectorAll('.mc4wp-form input[type="url"]');
if( urlFields && urlFields.length > 0 ) {
for( var j=0; j < urlFields.length; j++ ) {
addEventListener(urlFields[j],'blur',maybePrefixUrlField);
}
}/* test if browser supports date fields */
var testInput = document.createElement('input');
testInput.setAttribute('type', 'date');
if( testInput.type !== 'date') {
/* add placeholder & pattern to all date fields */
var dateFields = document.querySelectorAll('.mc4wp-form input[type="date"]');
for(var i=0; i<dateFields.length; i++) {
if(!dateFields[i].placeholder) {
dateFields[i].placeholder = 'YYYY-MM-DD';
}
if(!dateFields[i].pattern) {
dateFields[i].pattern = '[0-9]{4}-(0[1-9]|1[012])-(0[1-9]|1[0-9]|2[0-9]|3[01])';
}
}
}
})();</script><link rel="stylesheet" id="rfw-slider-style-css" href="wp-content/plugins/rss-feed-widget/css/jquery.bxslider.css" type="text/css" media="all"><script type="text/javascript">
/* <![CDATA[ */
var ap_form_required_message = "This field is required";
var ap_captcha_error_message = "Sum is not correct.";
/* ]]> */
</script><script type="text/javascript" src="wp-content/plugins/accesspress-anonymous-post/js/frontend.js"></script><script type="text/javascript">
/* <![CDATA[ */
var BP_Nouveau = {"ajaxurl":"http:\/\/OFFLINEZIP.wpshowp-admin\/admin-ajax.php","confirm":"Tem certeza?","show_x_comments":"Mostrar todos os %d coment\u00e1rios","unsaved_changes":"Seu perfil tem altera\u00e7\u00f5es n\u00e3o salvas. Se voc\u00ea deixar a p\u00e1gina, as mudan\u00e7as ser\u00e3o perdidas.","object_nav_parent":"#buddypress","objects":["activity","members","groups","blogs","xprofile","friends","messages","settings","notifications","group_members","group_requests"],"nonces":{"activity":"4fdcb8cc99","members":"c50ec61c70","groups":"bcd27e5d23","blogs":"48d1167f7e","xprofile":"fa018fce8d","friends":"b6a3d2f93c","messages":"ac1050840d","settings":"270240521b","notifications":"8995cfd597"}};
/* ]]> */
</script><script type="text/javascript" src="wp-content/plugins/buddypress/bp-templates/bp-nouveau/js/buddypress-nouveau.min.js"></script><script type="text/javascript">
/* <![CDATA[ */
var wpcf7 = {"apiSettings":{"root":"http:\/\/OFFLINEZIP.wpshowp-json\/contact-form-7\/v1","namespace":"contact-form-7\/v1"}};
/* ]]> */
</script><script type="text/javascript" src="wp-content/plugins/contact-form-7/includes/js/scripts.js"></script><script type="text/javascript" src="wp-includes/js/jquery/jquery.form.min.js"></script><script type="text/javascript">
/* <![CDATA[ */
var rfw = {"speed":""};
/* ]]> */
</script><script type="text/javascript" src="wp-content/plugins/rss-feed-widget/js/functions.js"></script><script type="text/javascript" src="wp-content/plugins/rss-feed-widget/js/jquery.fitvids.js"></script><script type="text/javascript" src="wp-content/plugins/snax/assets/js/jquery.magnific-popup/jquery.magnific-popup.min.js"></script><script type="text/javascript" src="wp-content/plugins/snax/assets/js/jquery.timeago/jquery.timeago.js"></script><script type="text/javascript" src="wp-content/plugins/snax/assets/js/jquery.timeago/locales/jquery.timeago.pt-br.js"></script><script type="text/javascript">
/* <![CDATA[ */
var snax_front_config = "{\"ajax_url\":\"https:\\\/\\\/aguas.ml\\\/wp-admin\\\/admin-ajax.php\",\"site_url\":\"https:\\\/\\\/aguas.ml\",\"autosave_interval\":60,\"use_login_recaptcha\":false,\"recaptcha_api_url\":\"https:\\\/\\\/www.google.com\\\/recaptcha\\\/api.js\",\"recaptcha_site_key\":\"\",\"enable_login_popup\":true,\"login_url\":\"https:\\\/\\\/aguas.ml\\\/?rapida_login_popup\",\"login_popup_url_var\":\"rapida_login_popup\",\"logged_in\":false,\"login_success_var\":\"rapida_login_success\",\"i18n\":{\"recaptcha_invalid\":\"<strong>ERROR<\\\/strong>: The reCAPTCHA you entered is incorrect.\",\"passwords_dont_match\":\"Passwords don't match.\",\"link_invalid\":\"Your password reset link appears to be invalid or expired.\",\"password_set\":\"New password has been set\",\"duplicate_comment\":\"Duplicate comment detected; it looks as though you’ve already said that!\",\"comment_fail\":\"Comment Submission Failure\",\"see_all_replies\":\"Todas as respostas\",\"user_is_logging\":\"Espere, voc\\u00ea est\\u00e1 entrando...\",\"points_singular_tpl\":\"<strong>%d<\\\/strong> gota\",\"points_plural_tpl\":\"<strong>%d<\\\/strong> gotas\"}}";
/* ]]> */
</script><script type="text/javascript" src="wp-content/plugins/snax/assets/js/front.js"></script><script type="text/javascript" src="wp-content/themes/bimber/js/flickity/flickity.pkgd.min.js"></script><script type="text/javascript" src="wp-content/themes/bimber/js/stickyfill/stickyfill.min.js"></script><script type="text/javascript" src="wp-content/themes/bimber/js/jquery.placeholder/placeholders.jquery.min.js"></script><script type="text/javascript" src="wp-content/themes/bimber/js/matchmedia/matchmedia.js"></script><script type="text/javascript" src="wp-content/themes/bimber/js/matchmedia/matchmedia.addlistener.js"></script><script type="text/javascript" src="wp-content/themes/bimber/js/picturefill/picturefill.min.js"></script><script type="text/javascript" src="wp-content/themes/bimber/js/jquery.waypoints/jquery.waypoints.min.js"></script><script type="text/javascript" src="wp-content/themes/bimber/js/libgif/libgif.js"></script><script type="text/javascript" src="wp-content/themes/bimber/js/enquire/enquire.min.js"></script><script type="text/javascript" src="wp-includes/js/jquery/ui/core.min.js"></script><script type="text/javascript" src="wp-includes/js/jquery/ui/widget.min.js"></script><script type="text/javascript" src="wp-includes/js/jquery/ui/position.min.js"></script><script type="text/javascript" src="wp-includes/js/jquery/ui/menu.min.js"></script><script type="text/javascript" src="wp-includes/js/wp-a11y.min.js"></script><script type="text/javascript">
/* <![CDATA[ */
var uiAutocompleteL10n = {"noResults":"Nenhum resultado encontrado.","oneResult":"Foi encontrado um resultado. Use as setas para cima e para baixo do teclado para navegar.","manyResults":"Foram encontrados %d resultados. Use as setas para cima e para baixo do teclado para navegar.","itemSelected":"Item selecionado."};
/* ]]> */
</script><script type="text/javascript" src="wp-includes/js/jquery/ui/autocomplete.min.js"></script><script type="text/javascript">
/* <![CDATA[ */
var bimber_front_config = "{\"ajax_url\":\"https:\\\/\\\/aguas.ml\\\/wp-admin\\\/admin-ajax.php\",\"timeago\":\"on\",\"sharebar\":\"on\",\"microshare\":\"on\",\"i18n\":{\"menu\":{\"go_to\":\"Ir para\"},\"newsletter\":{\"subscribe_mail_subject_tpl\":\"Check out this great article: %subject%\"},\"bp_profile_nav\":{\"more_link\":\"More\"}},\"comment_types\":[\"fb\"],\"auto_load_limit\":\"0\",\"auto_play_videos\":false,\"use_gif_player\":true,\"setTargetBlank\":true,\"useWaypoints\":true,\"stack\":\"original-2018\"}";
var bimber_front_microshare = "[]";
/* ]]> */
</script><script type="text/javascript" src="wp-content/themes/bimber/js/front.js"></script><script type="text/javascript" src="wp-content/themes/bimber-child-theme/modifications.js"></script><script type="text/javascript">
/* <![CDATA[ */
var thickboxL10n = {"next":"Pr\u00f3ximo \u00bb","prev":"\u00ab Anterior","image":"Imagem","of":"de","close":"Fechar","noiframes":"Este recurso necessita frames em linha. Os iframes est\u00e3o desativados por voc\u00ea ou seu navegador n\u00e3o os suporta.","loadingAnimation":"http:\/\/OFFLINEZIP.wpshowp-includes\/js\/thickbox\/loadingAnimation.gif"};
/* ]]> */
</script><script type="text/javascript" src="wp-includes/js/thickbox/thickbox.js"></script><script type="text/javascript" src="wp-content/plugins/super-socializer/js/front/combined.js"></script><script type="text/javascript" src="wp-content/plugins/youtube-embed-plus/scripts/fitvids.min.js"></script><script type="text/javascript">
/* <![CDATA[ */
var wpgdprcData = {"ajaxURL":"http:\/\/OFFLINEZIP.wpshowp-admin\/admin-ajax.php","ajaxSecurity":"16328ddf45","consentVersion":"1","consentStatus":"0","isMultisite":"","path":"\/","blogId":""};
/* ]]> */
</script><script type="text/javascript" src="wp-content/plugins/wp-gdpr-compliance/assets/js/front.js"></script><script type="text/javascript" src="wp-content/plugins/rss-feed-widget/js/jquery.bxslider.js"></script><script type="text/javascript">
/* <![CDATA[ */
var mc4wp_forms_config = [];
/* ]]> */
</script><script type="text/javascript" src="wp-content/plugins/mailchimp-for-wp/assets/js/forms-api.min.js"></script></body></html>