summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/fivefilters/readability.php/test/test-pages/folha/source.html
blob: 03f749c1fd407e43b090b1d44b677b97f134885e (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
<!DOCTYPE html>
<html lang="pt-BR" data-version="prod@5391c020" xmlns="http://www.w3.org/1999/xhtml" xml:lang="pt-BR">
    <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
        <meta property="desliga:paywall" content="false" />
        <title>
            Tite diz que errou ao levar taça da Libertadores a Lula em 2012 - 21/12/2018 - Esporte - Folha
        </title>
        <meta name="description" content="Após rechaçar um encontro da seleção brasileira com o presidente eleito Jair Bolsonaro, o técnico Tite declarou que errou ao levar a taça da Copa Libertadores de 2012, conquistada pelo Corinthians, ao ex-presidente Luiz Inácio Lula da Silva." />
        <meta name="keywords" content="Futebol, corinthians, libertadores, folha" />
        <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests" />
        <link rel="canonical" href="https://www1.folha.uol.com.br/esporte/2018/12/tite-diz-que-errou-ao-levar-taca-da-libertadores-a-lula-em-2012.shtml" />
        <link rel="amphtml" href="https://www1.folha.uol.com.br/amp/esporte/2018/12/tite-diz-que-errou-ao-levar-taca-da-libertadores-a-lula-em-2012.shtml" /><!-- Open Graph Meta Tags -->
        <meta property="og:description" content="Após rechaçar um encontro da seleção brasileira com o presidente eleito Jair Bolsonaro, o técnico Tite declarou que errou ao levar a taça da Copa Libertadores de 2012, conquistada pelo Corinthians, ao ex-presidente Luiz Inácio Lula da Silva." />
        <meta property="og:image" content="https://f.i.uol.com.br/fotografia/2018/12/21/15454034955c1cfc67131dc_1545403495_3x2_rt.jpg" />
        <meta property="og:image:height" content="1600" />
        <meta property="og:image:type" content="image/jpeg" />
        <meta property="og:image:width" content="2400" />
        <meta property="og:locale" content="pt_BR" />
        <meta property="og:site_name" content="Folha de S.Paulo" />
        <meta property="og:title" content="Tite diz que errou ao levar taça da Libertadores a Lula em 2012" />
        <meta property="og:type" content="article" />
        <meta property="og:url" content="https://www1.folha.uol.com.br/esporte/2018/12/tite-diz-que-errou-ao-levar-taca-da-libertadores-a-lula-em-2012.shtml" />
        <meta property="article:published_time" content="2018-12-21 12:55:00" />
        <meta property="article:modified_time" content="2018-12-21 12:56:02" />
        <meta property="article:section" content="Esporte" />
        <meta property="article:tag" content="Folha de S.Paulo" />
        <meta property="article:tag" content="Futebol" />
        <meta property="article:tag" content="corinthians" />
        <meta property="article:tag" content="libertadores" /><!-- /Open Graph Meta Tags  -->
        <!-- Twitter Meta Tags -->
        <meta name="twitter:card" content="summary_large_image" />
        <meta name="twitter:image" content="https://f.i.uol.com.br/fotografia/2018/12/21/15454034955c1cfc67131dc_1545403495_3x2_rt.jpg" />
        <meta name="twitter:creator" content="folha" />
        <meta name="twitter:description" content="Após rechaçar um encontro da seleção brasileira com o presidente eleito Jair Bolsonaro, o técnico Tite declarou que errou ao levar a taça da Copa Libertadores de 2012, conquistada pelo Corinthians, ao ex-presidente Luiz Inácio Lula da Silva." />
        <meta name="twitter:site" content="folha" />
        <meta name="twitter:title" content="Tite diz que errou ao levar taça da Libertadores a Lula em 2012 - 21/12/2018 - Esporte - Folha" /><!-- /Twitter Meta Tags -->
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <meta name="mobile-web-app-capable" content="yes" />
        <link rel="manifest" href="/manifest.json" />
        <link rel="apple-touch-icon" href="//f.i.uol.com.br/hunting/folha/1/common/icons/apple-touch-icon.png" />
        <link rel="apple-touch-icon" sizes="76x76" href="//f.i.uol.com.br/hunting/folha/1/common/icons/touch-icon-ipad.png" />
        <link rel="apple-touch-icon" sizes="120x120" href="//f.i.uol.com.br/hunting/folha/1/common/icons/touch-icon-iphone-retina.png" />
        <link rel="apple-touch-icon" sizes="152x152" href="//f.i.uol.com.br/hunting/folha/1/common/icons/touch-icon-ipad-retina.png" />
        <link rel="apple-touch-startup-image" href="//f.i.uol.com.br/hunting/folha/1/common/splash/launch-640x1136.png" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" />
        <link rel="apple-touch-startup-image" href="//f.i.uol.com.br/hunting/folha/1/common/splash/launch-750x1294.png" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" />
        <link rel="apple-touch-startup-image" href="//f.i.uol.com.br/hunting/folha/1/common/splash/launch-1242x2148.png" media="(device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)" />
        <link rel="apple-touch-startup-image" href="//f.i.uol.com.br/hunting/folha/1/common/splash/launch-1125x2436.png" media="(device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)" />
        <link rel="apple-touch-startup-image" href="//f.i.uol.com.br/hunting/folha/1/common/splash/launch-1536x2048.png" media="(min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait)" />
        <link rel="apple-touch-startup-image" href="//f.i.uol.com.br/hunting/folha/1/common/splash/launch-1668x2224.png" media="(min-device-width: 834px) and (max-device-width: 834px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait)" />
        <link rel="apple-touch-startup-image" href="//f.i.uol.com.br/hunting/folha/1/common/splash/launch-2048x2732.png" media="(min-device-width: 1024px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait)" />
        <link rel="icon" sizes="192x192" href="//f.i.uol.com.br/hunting/folha/1/common/icons/favicon-192.png" />
        <link rel="shortcut icon" sizes="16x16 24x24 32x32 48x48 62x62" href="//f.i.uol.com.br/hunting/folha/1/common/icons/favicon.ico" />
        <meta name="apple-mobile-web-app-capable" content="yes" />
        <meta name="apple-mobile-web-app-status-bar-style" content="black" />
        <meta name="apple-mobile-web-app-title" content="Folha de S.Paulo" />
        <meta name="msapplication-TileImage" content="//f.i.uol.com.br/hunting/folha/1/common/icons/favicon-144.png" />
        <meta name="msapplication-TileColor" content="#fff" />
        <meta name="theme-color" content="#262626" />
        <script>
        <![CDATA[
        //UOLTM
        window.universal_variable = window.universal_variable || {};
        window.universal_variable.dfp = {"custom_params":{"subchan":"","keyword":"corinthians"}};
        ]]>
        </script>
        <script>
        <![CDATA[
        //UOLTM
        window.uolads = window.uolads || [];
        window.UOLPD = window.UOLPD || {};
        (function() {
        var uv = window.universal_variable, up = window.UOLPD;
        uv.aud = { userType: "none", loginType: "none", userGroup: "none" };
        up.dataLayer = { "t": String(Math.round(Math.random()*9)+1), "swgt": "sub_na" };
        //
        function uoltm() {
        var scr = document.createElement( "script" );
        scr.async = true;
        scr.src = "https://tm.jsuol.com.br/uoltm.js?id=1p0oxf";
        var el = document.getElementsByTagName( "script" )[0];
        el.parentNode.insertBefore( scr, el );
        };
        if ( document.cookie.indexOf( "folha_ga_userType" ) >= 0 ) {
        var ck = {}, e = document.cookie.split(";");
        for (var i = 0; i < e.length; i++) {
        var a = e[i].split("=");
        ck[a[0].replace(" ","")]=a[1];
        }
        uv.aud.userType = ck.folha_ga_userType;
        uv.aud.loginType = ck.folha_ga_loginType;
        uv.aud.userGroup = ck.folha_ga_userGroup;
        up.dataLayer.swgt = ck.folha_ga_swgt;
        uoltm();
        }
        else {
        (function tryType( delay, times ) {
        try {
        uv.aud.userType = paywall.data.log_type;
        uv.aud.loginType = paywall.data.origin;
        uv.aud.userGroup = paywall.all.track || uv.aud.userGroup;
        up.dataLayer.swgt = paywall.all.swgt || up.dataLayer.swgt;
        uoltm();
        }
        catch ( e ) {
        ( times > 0 ) ? setTimeout( function() { tryType( delay, --times ) ; }, delay ) : uoltm();
        }
        } ( 15, 100 ) );
        }
        })();

        //chartbeat
        var _sf_async_config = _sf_async_config || {};
        _sf_async_config.uid = 50059;
        _sf_async_config.domain = 'folha.com.br';
        _sf_async_config.topStorageDomain = 'uol.com.br';
        _sf_async_config.flickerControl = false;
        _sf_async_config.useCanonical = true;
        var _sf_startpt = (new Date()).getTime();
        ]]>
        </script>
        <script id="navegg" src="https://tag.navdmp.com/tm23947.js"></script>
        <script src="https://static.chartbeat.com/js/chartbeat_mab.js"></script>
        <link rel="stylesheet" href="https://static.folha.uol.com.br/storybook/css/portal-88010c12c5.css" />
        <script src="//f1-na.readspeaker.com/script/6877/ReadSpeaker.js?pids=embhl,custom" type="text/javascript"></script>
        <style type="text/css">
        /*<![CDATA[*/
        /*  Alloy problems */
        .c-headline__wrapper > p,
        .c-headline__wrapper .c-headline__content > p,
        .c-main-headline__wrapper > p {
        color: #757575;
        font-family: 'FolhaGrafico', Georgia, serif;
        font-size: 0.8888888888888888em;
        line-height: 1.33;
        margin-bottom: 0;
        }

        .c-main-headline__wrapper > p {
        font-size: 18px;
        }

        .c-headline__wrapper > p > strong,
        .c-headline__wrapper .c-headline__content > p > strong,
        .c-main-headline__wrapper > p > strong {
        font-weight: 500;
        }

        .c-headline__wrapper > p > a,
        .c-headline__wrapper .c-headline__content > p > a,
        .c-main-headline__wrapper > p > a {
        color: #0078a4;
        }

        .c-headline__wrapper > p > a > strong,
        .c-headline__wrapper .c-headline__content > p > a > strong,
        .c-main-headline__wrapper > p > a > strong {
        font-weight: 500;
        }

        .c-headline__wrapper > p:not(.c-headline__standfirst):last-child,
        .c-headline__wrapper .c-headline__content > p:not(.c-headline__standfirst):last-child,
        .c-main-headline__wrapper > p:not(.c-headline__standfirst):last-child {
        margin-bottom: 0.7777777777777778em;
        }

        /* Estradas */
        .c-status {
        background-color: #e0e0e0;
        display: inline-block;
        height: 0.666666666666667rem;
        width: 0.666666666666667rem;
        }
        .c-status--danger {
        background-color: #e51717;
        }
        .c-status--success {
        background-color: #6c9;
        border-radius: 50%;
        }
        .c-status--warning {
        background-color: #f2bc25;
        -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
        }
        .c-status--small {
        height: 0.5rem;
        width: 0.5rem;
        }
        .t-dark .c-status--danger {
        background-color: #ff5c5c;
        }
        /*]]>*/
        </style><!--//-->
        <script type="application/ld+json">
        <![CDATA[
        {
        "@context": "http://schema.org",
        "@type": "ReportageNewsArticle",
        "url": "https://www1.folha.uol.com.br/esporte/2018/12/tite-diz-que-errou-ao-levar-taca-da-libertadores-a-lula-em-2012.shtml",
        "mainEntityOfPage": "https://www1.folha.uol.com.br/esporte/2018/12/tite-diz-que-errou-ao-levar-taca-da-libertadores-a-lula-em-2012.shtml",
        "headline": "Tite diz que errou ao levar taça da Libertadores a Lula em 2012",
        "description": "Na ocasião, técnico do Corinthians entregou réplica do troféu ao ex-presidente",
        "datePublished": "2018-12-21T12:55:00Z",

        "image": { "@type": "ImageObject", "url": "https://f.i.uol.com.br/fotografia/2018/12/21/15454034955c1cfc67131dc_1545403495_3x2_md.jpg", "width": "768", "height": "512" },

        "contentLocation": {
        "@type": "Place",
        "name": "São Paulo "
        },  

        "author": [{
        "@type": "Person",
        "name": "Bruno (Henrique Zecchin) Rodrigues ",  
        "sameAs": ["" ,"" ,"" ],
        "workLocation": { "@type": "Place", "name": "São Paulo " }
        }],

        "publisher": {
        "@type": "NewsMediaOrganization",
        "@id" : "https://www1.folha.uol.com.br#organization",
        "name": "Folha de S.Paulo",
        "logo": {
        "@type": "ImageObject",
        "url": "https://f.i.uol.com.br/hunting/folha/1/amp/logo.png",
        "width": 600,
        "height": 60
        },
        "ethicsPolicy": "https://temas.folha.uol.com.br/projeto-editorial-da-folha/projeto-editorial-folha-de-s-paulo/principios-editoriais.shtml",
        "diversityPolicy": "https://temas.folha.uol.com.br/projeto-editorial-da-folha/projeto-editorial-folha-de-s-paulo/principios-editoriais.shtml",
        "correctionsPolicy": "https://www1.folha.uol.com.br/erramos/",
        "ownershipFundingInfo": "https://www1.folha.uol.com.br/institucional/",
        "foundingDate": "1921-02-19",
        "masthead": "https://www1.folha.uol.com.br/institucional/expediente.shtml",
        "missionCoveragePrioritiesPolicy": "https://temas.folha.uol.com.br/projeto-editorial-da-folha/projeto-editorial-folha-de-s-paulo/sua-excelencia-o-consumidor-de-noticias.shtml",
        "verificationFactCheckingPolicy": "https://temas.folha.uol.com.br/projeto-editorial-da-folha/projeto-editorial-folha-de-s-paulo/principios-editoriais.shtml",
        "unnamedSourcesPolicy": "https://temas.folha.uol.com.br/projeto-editorial-da-folha/projeto-editorial-folha-de-s-paulo/principios-editoriais.shtml",
        "actionableFeedbackPolicy": "https://www1.folha.uol.com.br/falecomafolha/",
        "contactPoint": [{
        "@type": "ContactPoint",
        "contactType": "Newsroom Contact",
        "url": "https://www1.folha.uol.com.br/falecomafolha/"
        },{
        "@type": "ContactPoint",
        "contactType": "Public Engagement",
        "url": "https://www1.folha.uol.com.br/falecomafolha/"
        }]
        },
        "publishingPrinciples": "http://temas.folha.uol.com.br/projeto-editorial-da-folha/projeto-editorial-folha-de-s-paulo/principios-editoriais.shtml"
        ,
        "isAccessibleForFree": false,
        "hasPart": {
        "@type": "WebPageElement",
        "isAccessibleForFree": false,
        "cssSelector": ".paywall"
        }
        }
        ]]>
        </script>
        <script src="https://static.folha.uol.com.br/folha/js/push/firebase-app.js"></script>
        <script src="https://static.folha.uol.com.br/folha/js/push/firebase-messaging.js"></script>
        <style>
        <![CDATA[
        .c-paywall{background-color:#fff;color:#333;font-family:inherit;font-size:16px;text-align:center;border:1px solid #e0e0e0;box-sizing:border-box;margin:0 0 40px;padding:30px 15px;position:relative;border-radius:4px;zoom:1}@media (min-width:1024px){.c-paywall{padding:70px 15px 65px}}.c-paywall a,a.c-paywall__button{color:#0078a4;text-decoration:none}a.c-paywall__button{font-size:14px;font-weight:500;line-height:1;text-align:center;text-transform:uppercase;border-radius:3px;display:inline-block;margin:0 0 40px;padding:12px 27px;border:1px solid}a.c-paywall__button:focus,a.c-paywall__button:hover{opacity:.75}a.c-paywall__button:active{opacity:.85}a.c-paywall__button--primary{color:#fff;background-color:#0078a4}.c-paywall__devices{display:inline-block;margin:0 0 20px;max-width:320px;padding:0}.c-paywall__devices img{width:100%}@media (min-width:1024px){.c-paywall__half-col{float:left;width:50%}}@media (min-width:1024px){.c-paywall__login-area{border-right:1px solid #e0e0e0;margin-top:58px}}.c-paywall__login-list{list-style:none;margin:0 0 80px;padding:0}.c-paywall__login-list li{display:inline-block;margin:0 4px;vertical-align:middle}@media (min-width:1024px){.c-paywall__login-list li{margin:0 5px}}@media (min-width:1024px){.c-paywall__login-list{margin:0}}.c-paywall__login-uol:focus,.c-paywall__login-uol:hover{opacity:.75}.c-paywall__login-uol:active{opacity:.85}.c-paywall__login-uol svg{vertical-align:bottom}p.c-paywall__price{font-size:18px;font-weight:500;margin:30px 0 20px}@media (min-width:1024px){p.c-paywall__price{font-size:24px}}.c-paywall__price small{display:block;font-size:14px;font-weight:400;margin:5px 0 0}.c-paywall__social-login{background-color:#ededed;font-size:16px;display:block;height:32px;padding:8px 0;width:32px;border-radius:50%}.c-paywall__social-login:focus,.c-paywall__social-login:hover{opacity:.75}.c-paywall__social-login:active{opacity:.85}.c-paywall__social-login .icon{fill:#fff;height:1em;vertical-align:top;width:1em}.c-paywall__social-login--facebook{background-color:#3a5999}.c-paywall__social-login--google{background-color:#fff;border:1px solid #e0e0e0;border-radius:23px;padding:8px 0 8px 9px;width:95px}.c-paywall__social-login--google .icon-google-logo{float:left;margin-right:17px}.c-paywall__social-login--google .icon-google-text{float:left;margin-top:1px;width:45px}.c-paywall__social-login--linkedin{background-color:#0077b5}.c-paywall__row{zoom:1}.c-paywall__row:after,.c-paywall__row:before{content:" ";display:table}.c-paywall__row:after{clear:both}p.c-paywall__text{font-size:16px;font-weight:500;line-height:1.38;margin:0 0 19px}@media (min-width:1024px){.c-paywall__text span{display:block}.c-paywall__text--custom{margin-top:22px}}.c-paywall__title{font-size:20px;font-weight:400;line-height:1.3;margin:0 0 30px}.c-paywall__title strong{font-weight:500}@media (min-width:1024px){.c-paywall__title{font-size:30px;line-height:1.2;margin:0 0 45px}}.c-paywall__teaser--is-hidden{display:none}.c-paywall--f5 .c-paywall__button{font-size:12px;font-weight:600;padding:12px 27px}.c-paywall--f5 .c-paywall__devices{max-width:270px}.c-paywall--f5 .c-paywall__price{font-weight:600}@media (min-width:1024px){.c-paywall--f5 p.c-paywall__price{font-size:18px}}.c-paywall--f5 p.c-paywall__text{font-size:14px}@media (min-width:1024px){.c-paywall--f5 .c-paywall__text--custom{margin-top:57px}}.c-paywall--f5 .c-paywall__title{font-family:inherit}.c-paywall--f5 .c-paywall__title strong{font-weight:600}@media (min-width:1024px){.c-paywall--f5 .c-paywall__title{font-size:24px}}@media (min-width:1024px){.c-paywall--guia .c-paywall{padding:30px 15px}}.c-paywall--guia .c-paywall__button{font-size:12px;padding:12px 27px}@media (min-width:1024px){.c-paywall--guia .c-paywall__half-col{float:none;width:100%}}@media (min-width:1024px){.c-paywall--guia .c-paywall__login-area{border-right:none;margin-top:0}}@media (min-width:1024px){.c-paywall--guia .c-paywall__login-list{margin:0 0 80px}}@media (min-width:1024px){.c-paywall--guia .c-paywall__text span{display:inline-block}}.c-paywall--guia .c-paywall__title{font-size:23px}
        ]]>
        </style>
    </head>
    <body>
        <div data-memcached="" class="is-hidden">
            <div data-project="scoreboard" data-status="on"></div>
            <div data-project="scoreboard-rounds" data-status="on"></div>
            <div data-project="eleicoes" data-status="off" data-memcached-url="//staffing1.folha.com.br/index.php?file=" data-timeout="3000"></div>
        </div>
        <script>
        <![CDATA[
        // Elections Vote Counting
        (function() {
        var pageUrlRegex = /poder\/eleicoes\/2018\/apuracao\/1turno\/([\w]+)\/?$/;
        var secondRoundPage = '//www1.folha.uol.com.br/poder/eleicoes/2018/apuracao/2turno/';

        window.location.href.match(pageUrlRegex);

        var secondRoundState = ['brasil','ap','am','df','mg','ms','pa','rj','rn','ro','rr','rs','sc','se','sp']
        .filter(page => page === RegExp.$1).pop();

        if (/google/.test(document.referrer) && secondRoundState) {
        window.location.href = secondRoundPage + secondRoundState;
        }
        })();
        ]]>
        </script> <!-- uol -->
         
        <script async="async" src="//jsuol.com.br/barra/parceiro-async.js?parceiro=folha"></script> <!-- /uol -->
        <header class="l-header u-no-print" data-elastic-header="" data-offset-target=".toolbar" data-tolerance="40">
            <div class="l-header__wrapper">
                <div class="container">
                    <div class="l-header__container">
                        <div class="l-header__action-group l-header__action-group--left">
                            <button name="button" class="l-header__action" data-c-sidebar-menu-btn="" data-target="#c-sidebar-menu__content" data-btn-close="#c-sidebar-menu__btn-close"><span class="u-sr-only">Abrir sidebar menu</span> <svg xmlns="https://www.w3.org/2000/svg" height="24" width="24" viewbox="0 0 24 24" class="icon icon--hamburger" aria-hidden="true">
                            <path d="m 3,18 18,0 0,-2 -18,0 0,2 z m 0,-5 18,0 0,-2 -18,0 0,2 z M 3,6 3,8 21,8 21,6 3,6 Z"></path></svg> <span class="u-visible-md">Menu</span></button> <a href="//secure.folha.com.br/folha?gid=FOL" title="Assine a Folha" class="l-header__action l-header__action--attention u-visible-md" rel="external">Assine</a>
                        </div>
                        <div class="l-header__branding">
                            <h1 title="Folha de S.Paulo">
                                <a href="//www.folha.uol.com.br/" class="u-link-clean"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 556 67" version="1.1" class="logo-folha" aria-hidden="true">
                                <path d="m 333.4496,4.0000038 c 4.15466,0 7.84768,0.308064 11.46377,1.078223 l 0,16.3273702 -3.00058,0 -2.92365,-12.01448 c -2.07733,-0.5391112 -3.30834,-0.6931432 -5.53954,-0.6931432 -5.07791,0 -7.92462,2.7725722 -7.92462,6.4693352 0,13.092705 22.00429,11.860445 22.00429,31.345475 0,10.78222 -7.84769,19.79308 -20.23472,19.79308 -5.30872,0 -9.54032,-0.69314 -12.77172,-1.84838 l 0,-16.40439 3.2314,0 2.6159,11.70642 c 2.61589,1.4633 5.61648,1.84838 8.694,1.84838 4.69322,0 7.84768,-3.3887 7.84768,-7.31651 0,-14.24794 -22.61979,-14.40197 -22.46591,-32.423692 0,-10.859241 8.07849,-17.8676882 19.0037,-17.8676882 l 0,0 z m -333.37266,3.773779 0,-2.849588 36.16089,0 0,17.7906722 -3.00058,0 -5.00098,-13.70883 -9.92501,0 0,24.028957 7.77075,0 1.76957,-7.47054 3.00059,0 0,19.56204 -3.00059,0 -1.76957,-8.00965 -7.77075,0 0,24.18299 7.15524,1.30927 0,2.77257 -25.4665,0 0,-2.77257 5.69342,-1.30927 0,-52.4478282 -5.61648,-1.078223 z m 384.92117,32.8857912 -4.77016,0 0,20.64026 6.84749,1.30927 0,2.77257 -25.08182,0 0,-2.77257 5.61648,-1.30927 0,-52.4478282 -5.53954,-1.078223 0,-2.849588 23.61999,0 c 9.92501,0 16.61862,3.850795 16.61862,17.9447042 0,10.782225 -5.4626,17.790675 -17.31106,17.790675 l 0,0 z m -4.77016,-4.00483 2.2312,0 c 4.07772,0 6.4628,-2.77257 6.4628,-13.939877 0,-11.090289 -1.69264,-13.70883 -6.30892,-13.70883 l -2.38508,0 0,27.648707 z m 134.71856,1.84838 c 0,-19.562036 8.61706,-27.18661 20.92716,-27.18661 14.07966,0 20.00389,8.702797 20.00389,27.72572 0,19.33099 -8.694,27.26363 -20.85021,27.26363 -14.15661,0 -20.08084,-8.7028 -20.08084,-27.80274 l 0,0 z m -475.3234,0.077 c 0,-19.485024 8.54012,-27.109598 20.85021,-27.109598 14.15661,0 19.85003,8.625781 19.85003,27.648708 0,19.33099 -8.54013,27.18661 -20.85022,27.18661 -14.07967,0 -19.85002,-8.62578 -19.85002,-27.72572 l 0,0 z m 137.56527,26.80153 -13.61804,0 0,-2.38749 3.92384,-1.07822 12.9256,-49.675259 6.69361,0 14.92598,49.675259 4.00079,1.07822 0,2.38749 -20.61941,0 0,-2.38749 4.77016,-1.07822 -4.15465,-12.70763 -11.23296,0 -2.92365,12.70763 5.30873,1.07822 0,2.38749 z m 235.04581,0 -14.23355,0 0,-2.38749 4.38547,-1.07822 12.9256,-49.675259 6.84749,0 14.92598,49.675259 4.46241,1.07822 0,2.38749 -21.00409,0 0,-2.38749 4.69322,-1.07822 -4.23159,-12.70763 -11.38684,0 -2.84671,12.70763 5.46261,1.07822 0,2.38749 z m -297.75034,0 -30.9291,0 0,-2.38749 4.61628,-1.07822 0,-46.209543 -4.38547,-0.847175 0,-2.464509 20.38859,0 0,2.464509 -4.770157,0.847175 0,46.055503 8.309307,0 4.38547,-12.39956 2.38508,0 0,16.01931 z m 3.15446,-50.522428 0,-2.464509 19.38839,0 0,2.464509 -3.8469,0.847175 0,21.641463 11.69459,0 0,-21.641463 -3.61609,-0.847175 0,-2.464509 18.92676,0 0,2.464509 -4.00077,0.847175 0,46.209543 4.38546,1.07822 0,2.38749 -19.31145,0 0,-2.38749 3.61609,-1.07822 0,-20.94833 -11.69459,0 0,20.94833 3.8469,1.07822 0,2.38749 -19.38839,0 0,-2.38749 4.38547,-1.07822 0,-46.055512 -4.38547,-1.001206 z M 259.8968,39.735384 c 0,18.63784 -8.694,25.64629 -19.23451,25.64629 l -20.61941,0 0,-2.38749 4.15466,-1.07822 0,-46.209543 -4.15466,-0.847175 0,-2.464509 19.54227,0 c 13.15641,0 20.31165,6.315304 20.31165,27.340647 l 0,0 z m 19.46534,22.02654 10.07888,0 4.2316,-11.78343 2.69283,0 0,15.40318 -33.23725,0 0,-2.38749 4.92404,-1.07822 0,-46.209543 -4.8471,-0.847175 0,-2.464509 31.46767,0 0,15.326167 -2.61589,0 -4.30853,-11.860452 -8.38625,0 0,21.179372 6.61667,0 1.76958,-6.54635 2.38508,0 0,17.25156 -2.38508,0 -1.76958,-7.08546 -6.61667,0 0,21.10235 z m 160.03118,-46.902678 0,-2.464509 20.31165,0 0,2.464509 -4.69322,0.847175 0,37.429723 c 0,6.93143 1.69264,10.1661 6.69362,10.1661 6.84748,0 9.00175,-4.08184 9.00175,-11.70641 l 0,-35.889413 -4.53935,-0.847175 0,-2.464509 12.23316,0 0,2.464509 -4.15466,0.847175 0,36.659563 c 0,10.32013 -5.07791,14.71004 -15.46455,14.63302 -11.9254,-0.077 -15.07986,-4.69796 -15.07986,-17.02051 l 0,-34.272073 -4.30854,-0.847175 z m 72.70648,50.522428 -30.46747,0 0,-2.38749 4.61628,-1.07822 0,-46.209543 -4.30853,-0.847175 0,-2.464509 20.31165,0 0,2.464509 -4.69322,0.847175 0,46.055503 7.61687,0 4.38547,-12.39956 2.53895,0 0,16.01931 z m 31.69849,-26.1854 c 0,-21.48744 -3.69303,-24.799124 -8.00156,-24.799124 -4.30853,0 -8.694,2.849589 -8.694,24.028964 0,21.41042 3.69302,24.87613 8.07849,24.87613 4.30853,0 8.61707,-3.08063 8.61707,-24.10597 l 0,0 z m -475.40035,0.077 c 0,-21.487434 -3.76996,-24.722102 -8.15543,-24.722102 -4.46241,0 -8.77094,2.772573 -8.77094,23.951942 0,21.41042 3.8469,24.79912 8.23237,24.79912 4.30853,0 8.694,-2.9266 8.694,-24.02896 l 0,0 z m 167.64806,22.48864 3.30834,0 c 6.23198,0 9.15563,-3.3887 9.15563,-22.71969 0,-19.716066 -3.38528,-23.181782 -9.38645,-23.181782 l -3.07752,0 0,45.901472 z m -56.16479,-33.11683 -4.23159,16.94349 9.38644,0 -5.15485,-16.94349 z m 234.96887,0 -4.15466,16.94349 9.23257,0 -5.07791,-16.94349 z m -61.70433,26.1854 c 2.8467,0 5.23179,2.54153 5.23179,5.69918 0,3.23467 -2.53896,5.77619 -5.38567,5.77619 -2.69283,0 -5.23179,-2.54152 -5.23179,-5.77619 0,-3.15765 2.69283,-5.69918 5.38567,-5.69918 l 0,0 z"></path></svg></a>
                            </h1>
                            <div class="l-header__sub">
                                <svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 55 14" version="1.1" class="brand-stars" aria-hidden="true">
                                <g>
                                    <polygon points="22.866795,14.321192 24.633205,8.8599664 20,5.4902743 25.733591,5.4902743 27.5,8.8817842e-16 29.266409,5.4902743 35,5.4902743 30.366795,8.8599664 32.133205,14.321192 27.5,10.92245" class="brand-stars-blue"></polygon>
                                    <polygon points="2.8667954,14.321192 4.6332046,8.8599664 0,5.4902743 5.7335907,5.4902743 7.5,8.8817842e-16 9.2664093,5.4902743 15,5.4902743 10.366795,8.8599664 12.133205,14.321192 7.5,10.92245" class="brand-stars-red"></polygon>
                                    <polygon points="42.866795,14.321192 44.633205,8.8599664 40,5.4902743 45.733591,5.4902743 47.5,8.8817842e-16 49.266409,5.4902743 55,5.4902743 50.366795,8.8599664 52.133205,14.321192 47.5,10.92245" class="brand-stars-dark"></polygon>
                                </g></svg>
                            </div>
                        </div>
                        <ul class="u-sr-only">
                            <li>
                                <a href="#conteudo" accesskey="1">Ir para o conteúdo [1]</a>
                            </li>
                            <li>
                                <a href="#menu" accesskey="2">Ir para o menu [2]</a>
                            </li>
                            <li>
                                <a href="#rodape" accesskey="3">Ir para o rodapé [3]</a>
                            </li>
                        </ul>
                        <div class="l-header__action-group l-header__action-group--right">
                            <a href="#" class="l-header__action js-link-logout u-visible-md"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--user" aria-hidden="true">
                            <path d="m 12,12 c 2.210001,0 4,-1.789999 4,-4 C 16,5.79 14.210001,4 12,4 9.790001,4 8,5.79 8,8 c 0,2.210001 1.790001,4 4,4 l 0,0 z m 0,2 c -2.67,0 -8,1.34 -8,4 l 0,2 16,0 0,-2 c 0,-2.66 -5.329999,-4 -8,-4 l 0,0 z"></path></svg> <span>Entrar</span></a> <button data-search-btn="" data-target="#search" type="button" name="button" class="l-header__action"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--search" aria-hidden="true">
                            <path d="m 15.757146,14.256289 -0.79045,0 -0.280158,-0.270154 c 0.98056,-1.140652 1.570896,-2.621498 1.570896,-4.2324192 0,-3.5920531 -2.911664,-6.5037173 -6.5037169,-6.5037173 -3.592053,0 -6.5037171,2.9116642 -6.5037171,6.5037173 0,3.5920522 2.9116641,6.5037182 6.5037171,6.5037182 1.6109209,0 3.0917669,-0.590339 4.2324199,-1.570898 l 0.270154,0.28016 0,0.790452 5.002857,4.992853 1.490852,-1.490852 -4.992854,-5.00286 0,0 z m -6.0034287,0 c -2.4914241,0 -4.5025735,-2.011149 -4.5025735,-4.5025732 0,-2.4914241 2.0111494,-4.5025735 4.5025735,-4.5025735 2.4914237,0 4.5025737,2.0111494 4.5025737,4.5025735 0,2.4914242 -2.01115,4.5025732 -4.5025737,4.5025732 l 0,0 z"></path></svg> <span class="u-visible-md">Buscar</span></button>
                        </div>
                    </div>
                </div>
            </div>
            <div class="l-header__wrapper">
                <div class="container">
                    <div id="menu" data-menu-channel="Esporte" class="l-header__nav c-site-nav js-c-site-nav">
                        <nav class="c-site-nav__group">
                            <ul class="c-site-nav__list">
                                <li class="c-site-nav__item c-site-nav__item--section">
                                    <a href="https://www1.folha.uol.com.br/esporte/">esporte</a> <svg xmlns="//www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" class="icon icon--chevron-right">
                                    <path d="M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z"></path></svg>
                                </li>
                                <li class="c-site-nav__item">
                                    <a href="https://www1.folha.uol.com.br/especial/2018/campeonato-brasileiro/serie-a/">Campeonato Brasileiro</a>
                                </li>
                                <li class="c-site-nav__item">
                                    <a href="https://www1.folha.uol.com.br/especial/2018/copa-libertadores/">Libertadores</a>
                                </li>
                                <li class="c-site-nav__item">
                                    <a href="https://www1.folha.uol.com.br/especial/2018/liga-dos-campeoes/">Champions League</a>
                                </li>
                                <li class="c-site-nav__item">
                                    <a href="https://www1.folha.uol.com.br/especial/2018/copa-do-mundo/">copa 2018</a>
                                </li>
                                <li class="c-site-nav__item">
                                    <a href="http://aovivo.folha.uol.com.br/2018/11/30/5617-aovivo.shtml">Mercado da bola</a>
                                </li>
                            </ul>
                        </nav>
                        <nav class="c-site-nav__group c-site-nav__group--right">
                            <ul class="c-site-nav__list">
                                <li class="c-site-nav__item c-site-nav__item--secondary">
                                    <a href="https://arte.folha.uol.com.br/esporte/2017/calendario-esportivo-2018/">calendário</a>
                                </li>
                                <li class="c-site-nav__item c-site-nav__item--secondary">
                                    <a href="https://www1.folha.uol.com.br/esporte/tv/">destaques da TV</a>
                                </li>
                            </ul>
                        </nav><!--!-->
                    </div>
                    <div class="c-tools-share c-tools-share--inner js-c-tools-share is-hidden" aria-hidden="true">
                        <ul aria-label="Opções de compartilhamento" class="c-tools-share__list" data-sharebar-utm-campaign-prefix="comp" data-sharebar-counter="" data-sharebar-buttons="facebook whatsapp twitter" data-sharebar-channel="esporte" data-sharebar-limit="2" data-sharebar-url="https://www1.folha.uol.com.br/esporte/2018/12/tite-diz-que-errou-ao-levar-taca-da-libertadores-a-lula-em-2012.shtml" data-sharebar-uolpd-id="content" data-sharebar-text="Tite diz que errou ao levar taça da Libertadores a Lula em 2012">
                            <li class="c-tools-share__item">
                                <a aria-label="Ir para a seção de comentários" href="#comentarios" class="c-tools-share__button c-tools-share__button--comment" title="Comentários"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--comments" aria-hidden="true">
                                <path d="M18,8H6V6H18V8M18,11H6V9H18V11M18,14H6V12H18V14M22,4A2,2 0 0,0 20,2H4A2,2 0 0,0 2,4V16A2,2 0 0,0 4,18H18L22,22V4Z"></path></svg> </a>
                            </li>
                            <li class="c-tools-share__item">
                                <div data-modal-drop="" data-qty-collumn="3.4" class="c-modal-drop">
                                    <button aria-label="Ver todas opções de compartilhamento" data-trigger="" class="c-tools-share__button c-tools-share__button--neutral"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 17 5" height="24" width="24" class="icon icon--more-options" aria-hidden="true">
                                    <path d="M2.5 0.5c-1.1 0-2 0.9-2 2s0.9 2 2 2 2-0.9 2-2-0.9-2-2-2zm12 0c-1.1 0-2 0.9-2 2s0.9 2 2 2 2-0.9 2-2-0.9-2-2-2zm-6 0c-1.1 0-2 0.9-2 2s0.9 2 2 2 2-0.9 2-2-0.9-2-2-2z"></path></svg></button>
                                    <div aria-hidden="true" data-content="" class="c-modal-drop__content c-modal-drop__content--no-padding">
                                        <div class="c-modal-drop__controls u-hidden-md">
                                            <button aria-label="Fechar seção de opções" data-close="" class="c-modal-drop__close"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="24" height="24" class="icon icon--close icon--tiny" aria-hidden="true">
                                            <path d="M16 1.61L14.39 0 8 6.39 1.61 0 0 1.61 6.39 8 0 14.39 1.61 16 8 9.61 14.39 16 16 14.39 9.61 8z"></path></svg></button>
                                        </div>
                                        <div class="c-tools-share--larger">
                                            <ul class="c-tools-share__list" data-sharebar-utm-campaign-prefix="comp" data-sharebar-buttons="facebook whatsapp twitter messenger googlePlus linkedIn pinterest rss email" data-sharebar-channel="esporte" data-triggered-byclick=".c-modal-drop [data-trigger]" data-sharebar-url="https://www1.folha.uol.com.br/esporte/2018/12/tite-diz-que-errou-ao-levar-taca-da-libertadores-a-lula-em-2012.shtml" data-sharebar-uolpd-id="content" data-sharebar-text="Tite diz que errou ao levar taça da Libertadores a Lula em 2012">
                                                <li class="c-tools-share__item">
                                                    <button aria-label="Copiar link" data-copy-link="" data-href="https://folha.com/rz1q0xue" class="c-tools-share__button c-tools-share__button--copy-link" title="URL curta"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon--link icon--" aria-hidden="true">
                                                    <path d="m 1.5200002,7.9999998 c 0,-1.368 1.112,-2.4799996 2.4799999,-2.4799996 l 3.1999996,0 0,-1.5199999 -3.1999996,0 C 1.7920001,4.0000003 1.5e-7,5.7920002 1.5e-7,7.9999998 1.5e-7,10.208 1.7920001,12 4.0000001,12 l 3.1999996,0 0,-1.519999 -3.1999996,0 c -1.368,0 -2.48,-1.1120012 -2.48,-2.4800012 l 0,0 z m 3.2799999,0.800001 6.3999999,0 0,-1.6000011 -6.4,0 0,1.6000011 0,0 z M 12,4.0000003 l -3.2000001,0 0,1.5199999 3.2000001,0 c 1.368,0 2.48,1.1119996 2.48,2.4799996 0,1.368 -1.112,2.4800012 -2.48,2.4800012 l -3.2000001,0 0,1.519999 L 12,12 c 2.208,0 4,-1.792 4,-4.0000002 0,-2.2079997 -1.792,-3.9999995 -4,-3.9999995 l 0,0 z"></path></svg></button> <span class="c-tools-share__button-name" aria-hidden="true">Copiar link</span>
                                                </li>
                                                <li class="c-tools-share__item u-visible-md">
                                                    <button aria-label="Imprimir" data-paper-print="" class="c-tools-share__button c-tools-share__button--paper-print" title="Imprimir"><svg xmlns="https://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" class="icon icon--paper-print icon--" aria-hidden="true">
                                                    <path d="M13.584 4.748H2.424A2.388 2.388 0 0 0 .03 7.14v4.784H3.22v3.19h9.567v-3.19h3.188V7.14a2.388 2.388 0 0 0-2.39-2.392zm-2.39 8.77h-6.38V9.532h6.377v3.986zm2.39-5.58a.8.8 0 0 1-.797-.798c0-.44.36-.797.797-.797.44 0 .797.358.797.797 0 .44-.357.797-.796.797zM12.787.763H3.22V3.95h9.567z"></path></svg></button>
                                                </li>
                                            </ul>
                                        </div>
                                    </div>
                                </div>
                            </li>
                        </ul>
                    </div>
                </div>
                <div class="c-search c-search--fixed">
                    <div id="search" class="collapse c-search__container" data-search="" data-btn="data-search-btn" data-field="#query" data-close-btn=".c-search__close-btn">
                        <form class="c-form c-search__form" action="//search.folha.uol.com.br/" method="get" data-form-validation="">
                            <fieldset class="container">
                                <legend class="u-visually-hidden">Busca</legend>
                                <div class="col col--5-8 col--xs-8-11 col-offset--sm-1-17 col--sm-7-10 col--md-7-13 col-offset--md-1-6 col-offset--lg-2-11">
                                    <div class="c-form__default">
                                        <label for="query" class="u-visually-hidden">Buscar no sites da Folha de S.Paulo</label> <input class="" type="text" name="q" id="query" placeholder="Digite o que procura" aria-required="true" data-required="\w+`g" data-error-message="&lt;svg xmlns=&quot;https://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 16 16&quot; width=&quot;16&quot; height=&quot;16&quot; class=&quot;icon icon--alert &quot; aria-hidden=&quot;true&quot;&gt; &lt;path d=&quot;M8 0C3.584 0 0 3.584 0 8s3.584 8 8 8 8-3.584 8-8-3.584-8-8-8zm.8 12H7.2v-1.6h1.6zm0-3.2H7.2V4h1.6z&quot;/&gt; &lt;/svg&gt; Digite o que procura" data-target="#query-error-message" /> <input type="hidden" value="todos" name="site" /> <span class="c-form__error-message" id="query-error-message"></span>
                                    </div>
                                </div>
                                <div class="col col--1-3 col-offset--1-6 col--xs-2-9 col--sm-1-6 col--md-1-9">
                                    <button class="c-button c-button--primary" type="submit">Buscar</button>
                                </div><button data-toggle="collapse" class="c-button--unstyled u-visible-sm c-search__close-btn"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="24" height="24" class="icon icon--close" aria-hidden="true">
                                <path d="M16 1.61L14.39 0 8 6.39 1.61 0 0 1.61 6.39 8 0 14.39 1.61 16 8 9.61 14.39 16 16 14.39 9.61 8z"></path></svg></button>
                            </fieldset>
                        </form>
                    </div>
                </div>
            </div><!--//-->
            <!--!-->
        </header>
        <div class="c-sidebar-menu">
            <!-- sidebar-menu-content -->
            <div id="c-sidebar-menu__content" class="c-sidebar-menu__content">
                <div class="flex c-sidebar-menu__content-header">
                    <a href="//www.folha.uol.com.br/" class="c-sidebar-menu__content-header__link" title="Folha de S.Paulo"><svg width="90" height="23" viewbox="0 0 90 23" class="logo-folha logo-tiny" aria-hidden="true">
                    <g fill-rule="evenodd">
                        <path class="brand-stars-red" d="M87.893 4.165l.83 2.58-2.188-1.598-2.188 1.598.841-2.58L83 2.58h2.705l.83-2.58.841 2.579h2.706z"></path>
                        <path class="brand-stars-blue" d="M87.893 11.753l.83 2.58-2.188-1.598-2.188 1.597.841-2.58L83 10.167h2.705l.83-2.579.841 2.58h2.706z"></path>
                        <path class="brand-stars-dark" d="M87.893 20.074l.83 2.58-2.188-1.597-2.188 1.597.841-2.58L83 18.488h2.705l.83-2.579.841 2.579h2.706z"></path>
                        <path d="M.027 1.01V0h12.8v6.303h-1.062l-1.77-4.857H6.482V9.96h2.75l.627-2.647h1.062v6.93H9.859l-.627-2.837h-2.75v8.567l2.532.464v.983H0v-.983l2.015-.464V1.392L.027 1.01zm13.999 10.913c0-6.903 3.023-9.604 7.38-9.604 5.011 0 7.026 3.056 7.026 9.795 0 6.849-3.023 9.632-7.38 9.632-4.984 0-7.026-3.056-7.026-9.823zM62.72 21.42H57.9v-.846l1.389-.382 4.575-17.599h2.37l5.283 17.599 1.416.382v.846h-7.299v-.846l1.689-.382-1.471-4.502h-3.976l-1.036 4.5 1.88.382v.846zm-22.196 0H29.576v-.846l1.634-.382V3.82l-1.552-.3v-.873h7.217v.873l-1.689.3v16.316h2.942l1.552-4.393h.844v5.676zm1.117-17.9v-.872h6.863v.873l-1.362.3v7.667h4.14V3.82l-1.28-.3v-.873h6.7v.873l-1.417.3v16.37l1.552.383v.846h-6.835v-.846l1.28-.382v-7.422h-4.14v7.422l1.362.382v.846H41.64v-.846l1.552-.382V3.874L41.64 3.52zm-17.43 8.65c0-7.612-1.334-8.758-2.887-8.758-1.58 0-3.104.982-3.104 8.485 0 7.585 1.361 8.786 2.914 8.786 1.525 0 3.077-1.037 3.077-8.513zm39.462-3.765l-1.498 6.002h3.323l-1.825-6.002z"></path>
                    </g></svg></a>
                    <div class="c-sidebar-menu__subscribe">
                        <a href="//secure.folha.com.br/folha?gid=FOL" title="Assine a Folha" class="c-sidebar-menu__content-header__link c-sidebar-menu__subscribe-link">Assine</a>
                    </div><button class="c-button--unstyled c-sidebar-menu__btn-close" id="c-sidebar-menu__btn-close"><span class="u-sr-only">Fechar sidebar menu</span> <svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="24" height="24" class="icon icon--close" aria-hidden="true">
                    <path d="M16 1.61L14.39 0 8 6.39 1.61 0 0 1.61 6.39 8 0 14.39 1.61 16 8 9.61 14.39 16 16 14.39 9.61 8z"></path></svg></button>
                </div>
                <div class="c-list-menu__divider"></div><!-- User -->
                <ul class="c-list-menu c-list-menu--insider c-sidebar-menu__user">
                    <li class="c-list-menu__item">
                        <div class="c-list-menu__wrap-links">
                            <div class="c-avatar" data-avatar="">
                                <div class="c-avatar__media js-avatar-media"></div>
                            </div><a class="u-link-clean link-icon" href="#user-info" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="user-info" data-nodropdown=""><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                            <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                        </div>
                        <ul class="c-list-menu__sublist collapse" id="user-info">
                            <li class="c-list-menu__item">
                                <a href="//login.folha.com.br/perfil" class="u-link-clean">Editar perfil</a>
                            </li>
                            <li class="c-list-menu__item">
                                <a href="//login.folha.com.br/conta" class="u-link-clean">Senha e conta</a>
                            </li>
                            <li class="c-list-menu__item">
                                <a href="//login.folha.com.br/newsletter" class="u-link-clean">Newsletter</a>
                            </li>
                            <li class="c-list-menu__item">
                                <a href="//login.folha.com.br/assinante" class="u-link-clean">Assinatura</a>
                            </li>
                            <li class="c-list-menu__item">
                                <a class="u-link-clean js-link-logout" href="#">Sair</a>
                            </li>
                        </ul>
                    </li>
                </ul><!-- /User -->
                <div class="c-list-menu__divider"></div><!-- Nav -->
                <nav>
                    <!-- Main sections -->
                    <ul class="c-list-menu c-list-menu--insider">
                        <li class="c-list-menu__item">
                            <a href="//www1.folha.uol.com.br/fsp/" class="u-link-clean">Edição Impressa</a>
                        </li>
                        <li class="c-list-menu__item">
                            <a href="//www1.folha.uol.com.br/ultimas-noticias/" class="u-link-clean">Últimas</a>
                        </li>
                    </ul>
                    <div class="c-list-menu__divider"></div>
                    <ul class="c-list-menu c-list-menu--insider">
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="https://www1.folha.uol.com.br/opiniao" class="u-link-clean">opinião</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-opiniao" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-opiniao"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-opiniao" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/folha-topicos/editoriais/">Editoriais</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://fotografia.folha.uol.com.br/galerias/nova/1618604763277631-charges-dezembro-2018">Charges</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/opiniao/tendenciasdebates/">Tendências/Debates</a>
                                </li>
                            </ul>
                        </li>
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="https://www1.folha.uol.com.br/colunaseblogs" class="u-link-clean">colunas e blogs</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-colunas-e-blogs" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-colunas-e-blogs"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-colunas-e-blogs" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/colunaseblogs/#so-colunas">Colunas</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/colunaseblogs/#so-blogs">Blogs</a>
                                </li>
                            </ul>
                        </li>
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="https://www1.folha.uol.com.br/maispopulares" class="u-link-clean">mais populares</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-mais-populares" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-mais-populares"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-mais-populares" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/maispopulares/#mais-lidas">Mais lidas</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/maispopulares/#mais-enviadas">Mais enviadas</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/maispopulares/#mais-comentadas">Mais comentadas</a>
                                </li>
                            </ul>
                        </li>
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="https://acervo.folha.uol.com.br/" class="u-link-clean">acervo folha</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-acervo-folha" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-acervo-folha"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-acervo-folha" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/especial/2017/ha-50-anos">Há 50 Anos</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/especial/2017/saiu-no-np">Saiu no NP</a>
                                </li>
                            </ul>
                        </li>
                    </ul>
                    <div class="c-list-menu__divider"></div>
                    <ul class="c-list-menu c-list-menu--insider">
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="https://www1.folha.uol.com.br/poder/eleicoes/2018/" class="u-link-clean">eleições 2018</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-eleicoes-2018" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-eleicoes-2018"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-eleicoes-2018" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="http://aovivo.folha.uol.com.br/2018/08/16/5454-aovivo.shtml">em tempo real</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/poder/eleicoes/candidatos/">candidatos</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/poder/eleicoes/2018/apuracao/2turno/brasil/">apuração</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="http://temas.folha.uol.com.br/entrevistas-eleicoes-2018/introducao/o-que-eles-pensam.shtml">Entrevistas com candidatos</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/especial/2018/sabatinas/sabatinas.shtml">Sabatinas</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/especial/2018/folha-informacoes/">Folha Informações</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/especial/2018/debates/">Debates</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/especial/2018/pesquisas-eleitorais/">Pesquisas eleitorais</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://painel.blogfolha.uol.com.br/">Painel</a>
                                </li>
                            </ul>
                        </li>
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="https://www1.folha.uol.com.br/poder/" class="u-link-clean">poder</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-poder" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-poder"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-poder" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/especial/2018/governo-bolsonaro/">Governo Bolsonaro</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/especial/2017/entrevista-da-segunda/">Entrevista da 2ª</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/especial/2014/petrolao/">lava jato</a>
                                </li>
                            </ul>
                        </li>
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="https://www1.folha.uol.com.br/mercado" class="u-link-clean">mercado</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-mercado" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-mercado"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-mercado" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/mercado/cifraseletras/">cifras &amp; letras</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/mercado/consumo-consciente/">consumo consciente</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/mercado/folhainvest/">folhainvest</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/mercado/imposto-de-renda/">ir 2018</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/colunas/mercadoaberto/">mercado aberto</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://fotografia.folha.uol.com.br/galerias/nova/1618607510546314-hora-do-cafe-dezembro-de-2018">hora do café</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/mpme/">mpme</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/mercado/brasil-que-da-certo/">o brasil que dá certo</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/mercado/previdencia/">previdência</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/colunas/vaivem/">vaivém das commodities</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="http://publicidadelegal.folha.uol.com.br/">Publicidade Legal</a>
                                </li>
                            </ul>
                        </li>
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="https://www1.folha.uol.com.br/cotidiano" class="u-link-clean">cotidiano</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-cotidiano" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-cotidiano"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-cotidiano" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/educacao">educação</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/cotidiano/ao-seu-tempo/">ao seu tempo</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/especial/2018/febre-amarela/">febre amarela</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/noticias/2016/folha-verao/">Folha verão</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/cotidiano/riodejaneiro/">rio de janeiro</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/loterias/">loterias</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="http://tempo.folha.uol.com.br/">tempo</a>
                                </li>
                            </ul>
                        </li>
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="https://www1.folha.uol.com.br/mundo" class="u-link-clean">mundo</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-mundo" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-mundo"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-mundo" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/especial/2017/coreia-do-norte/">coreia do norte</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/especial/2017/governo-trump/">governo trump</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/especial/2018/venezuela/">venezuela</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://arte.folha.uol.com.br/mundo/2018/hipercidades/">hipercidades</a>
                                </li>
                            </ul>
                        </li>
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="https://www1.folha.uol.com.br/esporte/" class="u-link-clean">esporte</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-esporte" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-esporte"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-esporte" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/esporte/">esporte</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/especial/2018/campeonato-brasileiro/serie-a/">campeonato brasileiro</a>
                                </li>
                            </ul>
                        </li>
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="https://www1.folha.uol.com.br/ilustrada" class="u-link-clean">ilustrada</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-ilustrada" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-ilustrada"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-ilustrada" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/colunas/monicabergamo/">mônica bergamo</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="http://www1.folha.uol.com.br/ilustrada/cartum/cartunsdiarios">quadrinhos</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="http://www1.folha.uol.com.br/comida/">comida</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/colunas/mauricio-meireles/">painel das letras</a>
                                </li>
                            </ul>
                        </li>
                        <li class="c-list-menu__item">
                            <a class="u-link-clean" href="https://www1.folha.uol.com.br/ilustrissima">ilustríssima</a>
                        </li>
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="https://f5.folha.uol.com.br" class="u-link-clean">F5</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-f5" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-f5"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-f5" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://f5.folha.uol.com.br/bichos">Bichos</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://f5.folha.uol.com.br/celebridades">celebridades</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://f5.folha.uol.com.br/horoscopo/">horóscopo</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://f5.folha.uol.com.br/voceviu">você viu?</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://f5.folha.uol.com.br/televisao/">televisão</a>
                                </li>
                            </ul>
                        </li>
                        <li class="c-list-menu__item">
                            <a class="u-link-clean" href="https://guia.folha.uol.com.br">guia folha</a>
                        </li>
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="https://www1.folha.uol.com.br/ciencia" class="u-link-clean">ciência</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-ciencia" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-ciencia"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-ciencia" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/ambiente">Ambiente</a>
                                </li>
                            </ul>
                        </li>
                        <li class="c-list-menu__item">
                            <a class="u-link-clean" href="https://www1.folha.uol.com.br/equilibrioesaude">equilíbrio e saúde</a>
                        </li>
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="https://www1.folha.uol.com.br/saopaulo" class="u-link-clean">sãopaulo</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-saopaulo" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-saopaulo"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-saopaulo" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/o-melhor-de-sao-paulo/restaurantes-bares-e-cozinha/2018/">o melhor de sãopaulo</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/saopaulo/viaja-sp/melhores/2018/">viaja sãopaulo</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/especial/2018/descubra-sao-paulo/">descubra sãopaulo</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/especial/2018/estradas/">estradas</a>
                                </li>
                            </ul>
                        </li>
                        <li class="c-list-menu__item">
                            <a class="u-link-clean" href="https://www1.folha.uol.com.br/especial/2018/">especiais</a>
                        </li>
                        <li class="c-list-menu__item">
                            <a class="u-link-clean" href="https://seminariosfolha.folha.com.br/">Seminários Folha</a>
                        </li>
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="https://www1.folha.uol.com.br/empreendedorsocial/" class="u-link-clean">empreendedor social</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-empreendedor-social" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-empreendedor-social"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-empreendedor-social" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/empreendedorsocial/fiis/">FIIS</a>
                                </li>
                            </ul>
                        </li>
                        <li class="c-list-menu__item">
                            <a class="u-link-clean" href="https://www1.folha.uol.com.br/especial/2018/top-of-mind/">top of mind</a>
                        </li>
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="" class="u-link-clean">imagem</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-imagem" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-imagem"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-imagem" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://fotografia.folha.uol.com.br/galerias">fotografia</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/tv">tv folha</a>
                                </li>
                            </ul>
                        </li>
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="" class="u-link-clean">parceiros</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-parceiros" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-parceiros"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-parceiros" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/bbc/">BBC News Brasil</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/dw/">Deutsche Welle</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/mundo/financialtimes/">Financial Times</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/especial/2018/globalmedia/">Global Media</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/mundo/latinoamerica21/">Latino América 21</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/nova-escola/">Nova Escola</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="http://piaui.folha.uol.com.br/">Piauí</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/rfi/">Radio France Internationale</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/mundo/nyt/">The New York Times</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/mundo/wsj/">The Wall Street Journal</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/mundo/washingtonpost/">The Washington Post</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="http://telepadi.folha.uol.com.br/">Telepadi</a>
                                </li>
                            </ul>
                        </li>
                        <li class="c-list-menu__item">
                            <a class="u-link-clean" href="https://www1.folha.uol.com.br/banco-de-dados">banco de dados</a>
                        </li>
                        <li class="c-list-menu__item">
                            <a class="u-link-clean" href="https://www1.folha.uol.com.br/dias-melhores">dias melhores</a>
                        </li>
                        <li class="c-list-menu__item">
                            <a class="u-link-clean" href="https://www1.folha.uol.com.br/paineldoleitor">painel do leitor</a>
                        </li>
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="https://www1.folha.uol.com.br/sobretudo" class="u-link-clean">sobre tudo</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-sobre-tudo" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-sobre-tudo"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-sobre-tudo" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/sobretudo/carreiras">carreiras</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="http://classificados1.folha.uol.com.br/">classificados</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/sobretudo/morar">morar</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/sobretudo/rodas">rodas</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/sobretudo/vida-pratica">vida prática</a>
                                </li>
                            </ul>
                        </li>
                        <li class="c-list-menu__item">
                            <a class="u-link-clean" href="https://www1.folha.uol.com.br/turismo">turismo</a>
                        </li>
                        <li class="c-list-menu__item">
                            <a class="u-link-clean" href="https://www1.folha.uol.com.br/serafina/">Serafina</a>
                        </li>
                    </ul>
                    <div class="c-list-menu__divider"></div>
                    <ul class="c-list-menu c-list-menu--insider">
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="" class="u-link-clean">mais seções</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-mais-secoes" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-mais-secoes"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-mais-secoes" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/internacional/es/">folha en español</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/internacional/en/">folha in english</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/mapas/">Folha Mapas</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="http://folhaleaks.folha.com.br/">folhaleaks</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/tudosobre/">tudo sobre</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/folha-topicos/">folha tópicos</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="http://transparencia.folha.uol.com.br">folha transparência</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/fsp">versão impressa</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/mapa-do-site/">Mapa do site</a>
                                </li>
                            </ul>
                        </li>
                    </ul>
                    <div class="c-list-menu__divider"></div>
                    <ul class="c-list-menu c-list-menu--insider">
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="https://www1.folha.uol.com.br/institucional/" class="u-link-clean">Sobre a Folha</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-sobre-a-folha" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-sobre-a-folha"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-sobre-a-folha" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="http://www1.folha.uol.com.br/institucional">sobre o grupo folha</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/institucional/expediente.shtml">expediente</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="http://www1.folha.uol.com.br/paineldoleitor/politicadeprivacidade/">política de privacidade</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://temas.folha.uol.com.br/projeto-editorial-da-folha/projeto-editorial-2017/">projeto editorial</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/treinamento/">treinamento</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="http://www1.folha.uol.com.br/folha/trabalhe/vagas.html">trabalhe na folha</a>
                                </li>
                            </ul>
                        </li>
                    </ul>
                    <div class="c-list-menu__divider"></div>
                    <ul class="c-list-menu c-list-menu--insider">
                        <li class="c-list-menu__item">
                            <div class="c-list-menu__wrap-links">
                                <a href="https://www1.folha.uol.com.br/falecomafolha" class="u-link-clean">fale com a folha</a> <a class="u-link-clean c-list-menu__toggle link-icon" href="#sidebarmenu-fale-com-a-folha" data-toggle="collapse" data-icon=".icon--chevron-down" aria-expanded="false" aria-controls="sidebarmenu-fale-com-a-folha"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-down" aria-hidden="true">
                                <path d="M 6.2499999,9.800625 7.60125,8.449375 12,12.838542 16.39875,8.449375 17.75,9.800625 l -5.75,5.75 -5.75,-5.75 z"></path></svg></a>
                            </div>
                            <ul class="c-list-menu__sublist collapse" id="sidebarmenu-fale-com-a-folha" aria-expanded="false">
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="http://www.publicidade.folha.com.br">anuncie (publicidade folha)</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="http://atendimento.folha.com.br">atendimento ao assinante</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/erramos">erramos</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/ombudsman">ombudsman</a>
                                </li>
                                <li class="c-list-menu__item">
                                    <a class="u-link-clean" href="https://www1.folha.uol.com.br/paineldoleitor">painel do leitor</a>
                                </li>
                            </ul>
                        </li>
                    </ul>
                    <div class="c-list-menu__divider"></div><!--!-->
                    <!-- /Main sections -->
                    <!-- Nav -->
                    <aside class="c-sidebar-menu__group">
                        <!-- Contrast -->
                        <div class="c-contrast" data-set-contrast="">
                            <h6 class="c-contrast__title">
                                Contraste
                            </h6>
                            <div class="c-contrast__content">
                                <div class="c-form__radio c-form__radio--inline">
                                    <input type="radio" id="contrast-default" name="contrast-theme" data-set-contrast-theme="t-default" checked="checked" /> <label for="contrast-default">Claro</label>
                                </div>
                                <div class="c-form__radio c-form__radio--inline">
                                    <input type="radio" id="contrast-dark" name="contrast-theme" data-set-contrast-theme="t-dark" /> <label for="contrast-dark">Escuro</label>
                                </div>
                            </div>
                        </div><!-- /Contrast -->
                        <!-- Edições -->
                        <h4 class="c-sidebar-menu__group-title">
                            Edições
                        </h4>
                        <ul class="c-list-flags">
                            <li class="c-list-flags__item">
                                <a href="//www1.folha.uol.com.br/internacional/en/" title="Ir para a versão Inglês" class="u-link-clean"><svg width="13" height="13" viewbox="0 0 13 13" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink" aria-hidden="true" class="icon icon-flag--usa icon--tiny">
                                <title>
                                    United States of America flag
                                </title>
                                <defs>
                                    <circle id="a" cx="6.5" cy="6.5" r="6.5"></circle>
                                </defs>
                                <g fill="none" fill-rule="evenodd">
                                    <mask id="b" fill="#fff">
                                        <use xlink:href="#a"></use>
                                    </mask>
                                    <g mask="url(#b)">
                                        <circle cx="6.5" cy="6.5" r="6.5" fill="#FFF"></circle>
                                        <path d="M0 12.133h13V13H0v-.867zm0-3.466h13V10.4H0V8.667zM6.933 5.2H13v1.733H6.933V5.2zm0-3.467H13v1.734H6.933V1.733z" fill="#B22234"></path>
                                        <path fill="#3C3B6E" d="M0 0h6.933v6.933H0z"></path>
                                    </g>
                                </g></svg> <span class="c-heading--tiny" lang="en" title="English" xml:lang="en">ENG</span></a>
                            </li>
                            <li class="c-list-flags__item">
                                <a href="//www1.folha.uol.com.br/internacional/es/" title="Ir para a versão Espanhol" class="u-link-clean"><svg width="13" height="13" viewbox="0 0 13 13" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink" aria-hidden="true" class="icon icon-flag--spain icon--tiny">
                                <defs>
                                    <circle id="a" cx="6.5" cy="6.5" r="6.5"></circle>
                                </defs>
                                <g fill="none" fill-rule="evenodd">
                                    <mask id="b" fill="#fff">
                                        <use xlink:href="#a"></use>
                                    </mask>
                                    <g mask="url(#b)">
                                        <circle cx="6.5" cy="6.5" r="6.5" fill="#AA151B"></circle>
                                        <path fill="#F1BF00" d="M0 3.467h13v6.066H0z"></path>
                                    </g>
                                </g></svg> <span class="c-heading--tiny" lang="es" title="Español" xml:lang="es">ESP</span></a>
                            </li>
                        </ul><!-- /Edições -->
                        <!-- Siga a folha -->
                        <div class="follow-folha">
                            <h4 class="c-sidebar-menu__group-title">
                                Siga a folha
                            </h4>
                            <ul class="c-follow-social-media">
                                <li>
                                    <a href="//twitter.com/folha" target="_blank"><span class="u-visually-hidden">Link externo, abre página da Folha de S.Paulo no Twitter</span> <svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="24" height="24" class="icon icon--twitter" aria-hidden="true">
                                    <path d="m 15.999997,3.2018549 c 0,-0.1451388 -0.119467,-0.2732046 -0.273067,-0.2732046 -0.08533,0 -0.674133,0.247589 -0.827733,0.2902776 0.2048,-0.2390525 0.674133,-0.9647527 0.674133,-1.2721095 0,-0.1451387 -0.119466,-0.2732046 -0.273067,-0.2732046 -0.04266,0 -0.09387,0.01711 -0.136533,0.042714 -0.580266,0.3158928 -1.134933,0.5634818 -1.783466,0.7000904 -0.64,-0.6147385 -1.5104,-0.9733204 -2.406399,-0.9733204 -1.8943999,0 -3.4474671,1.5453141 -3.4474671,3.4492104 0,0.136602 0.00853,0.281747 0.034133,0.418349 C 5.6831985,5.1484392 3.8997324,4.3629782 2.5002659,3.1079412 2.1589325,2.8005845 1.8687992,2.4676183 1.5615991,2.1261094 1.4933329,2.0492686 1.4335995,2.0236592 1.3311993,2.0236592 c -0.093866,0 -0.1706664,0.068298 -0.2133332,0.1366023 -0.30720005,0.4524956 -0.46933275,1.1867322 -0.46933275,1.7331415 0,0.7940042 0.2730663,1.5709292 0.78506615,2.1856432 -0.1621331,-0.05121 -0.4096003,-0.213443 -0.55466665,-0.213443 -0.1791994,0 -0.3327998,0.128066 -0.3327998,0.307357 0,1.195268 0.65706655,2.305169 1.66399955,2.928419 -0.0768,-0.0086 -0.1450664,-0.03416 -0.2218665,-0.03416 -0.145067,0 -0.2645333,0.128066 -0.2645333,0.264668 0,0.03416 0.00853,0.05976 0.017067,0.09391 0.3754662,1.1525798 1.314133,2.0234248 2.4917329,2.2966298 -0.9642667,0.597634 -2.0735999,0.904991 -3.1999998,0.904991 -0.25599995,0 -0.51199955,-0.04271 -0.75946615,-0.04271 -0.1535997,0 -0.2730666,0.128066 -0.2730666,0.273205 0,0.09391 0.0512,0.170754 0.1280003,0.230516 0.2218665,0.162218 0.4949331,0.29882 0.7423993,0.42688 1.31413295,0.683017 2.78186635,1.041593 4.26666575,1.041593 3.7205324,0 6.9034655,-1.99781 8.4394655,-5.3957938 0.554666,-1.220886 0.878933,-2.5613 0.853333,-3.901713 l 0,-0.281741 C 15.010131,4.5422372 15.57333,3.978749 15.95733,3.355499 15.98293,3.312785 16,3.261585 16,3.2018237 l 0,0 z"></path></svg></a>
                                </li>
                                <li>
                                    <a href="//www.linkedin.com/company-beta/15657/" target="_blank"><span class="u-visually-hidden">Link externo, abre página da Folha de S.Paulo no Linkedin</span> <svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="24" height="24" class="icon icon--linkedin" aria-hidden="true">
                                    <path d="M 0.5217573,3.4217496 C 0.8574099,3.7574022 1.3243328,3.925225 1.883477,3.925225 l 0.019112,0 c 0.5965319,0 1.062624,-0.1678228 1.416555,-0.5034754 C 3.6739051,3.0669849 3.8417314,2.656557 3.8417314,2.1348025 3.8417314,1.6313201 3.6547964,1.2026132 3.319144,0.86696056 2.9834872,0.531308 2.517395,0.3634851 1.9391422,0.3634851 1.3608886,0.3634851 0.8947967,0.531308 0.5408658,0.86696056 0.1861045,1.2026132 -1e-7,1.6313201 -1e-7,2.1348025 c 0,0.5217545 0.1678263,0.9321824 0.5217572,1.2869471 l 0,0 z m -0.3165439,12.2147654 3.4313014,0 0,-10.2939042 -3.4313014,0 0,10.2939042 z m 8.7460799,0 0,-5.7443117 c 0,-0.3539317 0.037384,-0.633921 0.1121617,-0.839135 C 9.2121719,8.6991367 9.4364945,8.4008753 9.7347601,8.1582701 10.013917,7.9156719 10.386957,7.8035124 10.834771,7.8035124 c 0.596531,0 1.025236,0.2052139 1.305224,0.6156349 0.279987,0.410428 0.428705,0.9886857 0.428705,1.7156547 l 0,5.501713 3.4313,0 0,-5.8930294 C 16,8.2139334 15.64607,7.0582579 14.919099,6.2747932 14.191298,5.4913284 13.240005,5.1000126 12.046942,5.1000126 c -0.428705,0 -0.839131,0.055677 -1.193893,0.1678228 -0.353931,0.093054 -0.652197,0.2425982 -0.9130756,0.446986 C 9.6973732,5.9017564 9.5104375,6.0878582 9.3617206,6.2565141 9.2121719,6.4235108 9.063455,6.6104458 8.9321847,6.8339388 l 0.019112,0 0,-1.491328 -3.4313016,0 0.018279,0.5034754 0,3.0765435 c 0,1.7156473 0,3.9538893 -0.018279,6.7138853 l 3.4313016,0 0,0 z"></path></svg></a>
                                </li>
                                <li>
                                    <a href="//www.instagram.com/folhadespaulo/" target="_blank"><span class="u-visually-hidden">Link externo, abre página da Folha de S.Paulo no Instagram</span> <svg xmlns="https://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" class="icon icon--instagram" aria-hidden="true">
                                    <path d="M7.8,2H16.2C19.4,2 22,4.6 22,7.8V16.2A5.8,5.8 0 0,1 16.2,22H7.8C4.6,22 2,19.4 2,16.2V7.8A5.8,5.8 0 0,1 7.8,2M7.6,4A3.6,3.6 0 0,0 4,7.6V16.4C4,18.39 5.61,20 7.6,20H16.4A3.6,3.6 0 0,0 20,16.4V7.6C20,5.61 18.39,4 16.4,4H7.6M17.25,5.5A1.25,1.25 0 0,1 18.5,6.75A1.25,1.25 0 0,1 17.25,8A1.25,1.25 0 0,1 16,6.75A1.25,1.25 0 0,1 17.25,5.5M12,7A5,5 0 0,1 17,12A5,5 0 0,1 12,17A5,5 0 0,1 7,12A5,5 0 0,1 12,7M12,9A3,3 0 0,0 9,12A3,3 0 0,0 12,15A3,3 0 0,0 15,12A3,3 0 0,0 12,9Z"></path></svg></a>
                                </li>
                                <li>
                                    <a href="//www1.folha.uol.com.br/feed" target="_blank"><span class="u-visually-hidden">Link externo, abre página RSS da Folha de S.Paulo</span> <svg xmlns="https://www.w3.org/2000/svg" height="24" viewbox="0 0 16 16" width="24" class="icon icon--rss" aria-hidden="true">
                                    <g transform="translate(-4, -4)">
                                        <circle cx="6.18" cy="17.82" r="2.18"></circle>
                                        <path d="M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z"></path>
                                    </g></svg></a>
                                </li>
                            </ul>
                        </div><!-- /Siga a folha -->
                    </aside>
                </nav>
            </div><!-- /sidebar-menu-content -->
            <div class="c-sidebar-menu__overlay"></div>
        </div>
        <div class="c-search__overlay" data-overlay-search=""></div>
        <header class="l-header u-only-print" aria-hidden="true">
            <div class="l-header__wrapper">
                <div class="container">
                    <div class="l-header__container">
                        <div class="l-header__branding">
                            <a href="#" class="l-header__logo u-link-clean">
                            <h1>
                                <svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 556 67" version="1.1" class="logo-folha" aria-hidden="true">
                                <path d="m 333.4496,4.0000038 c 4.15466,0 7.84768,0.308064 11.46377,1.078223 l 0,16.3273702 -3.00058,0 -2.92365,-12.01448 c -2.07733,-0.5391112 -3.30834,-0.6931432 -5.53954,-0.6931432 -5.07791,0 -7.92462,2.7725722 -7.92462,6.4693352 0,13.092705 22.00429,11.860445 22.00429,31.345475 0,10.78222 -7.84769,19.79308 -20.23472,19.79308 -5.30872,0 -9.54032,-0.69314 -12.77172,-1.84838 l 0,-16.40439 3.2314,0 2.6159,11.70642 c 2.61589,1.4633 5.61648,1.84838 8.694,1.84838 4.69322,0 7.84768,-3.3887 7.84768,-7.31651 0,-14.24794 -22.61979,-14.40197 -22.46591,-32.423692 0,-10.859241 8.07849,-17.8676882 19.0037,-17.8676882 l 0,0 z m -333.37266,3.773779 0,-2.849588 36.16089,0 0,17.7906722 -3.00058,0 -5.00098,-13.70883 -9.92501,0 0,24.028957 7.77075,0 1.76957,-7.47054 3.00059,0 0,19.56204 -3.00059,0 -1.76957,-8.00965 -7.77075,0 0,24.18299 7.15524,1.30927 0,2.77257 -25.4665,0 0,-2.77257 5.69342,-1.30927 0,-52.4478282 -5.61648,-1.078223 z m 384.92117,32.8857912 -4.77016,0 0,20.64026 6.84749,1.30927 0,2.77257 -25.08182,0 0,-2.77257 5.61648,-1.30927 0,-52.4478282 -5.53954,-1.078223 0,-2.849588 23.61999,0 c 9.92501,0 16.61862,3.850795 16.61862,17.9447042 0,10.782225 -5.4626,17.790675 -17.31106,17.790675 l 0,0 z m -4.77016,-4.00483 2.2312,0 c 4.07772,0 6.4628,-2.77257 6.4628,-13.939877 0,-11.090289 -1.69264,-13.70883 -6.30892,-13.70883 l -2.38508,0 0,27.648707 z m 134.71856,1.84838 c 0,-19.562036 8.61706,-27.18661 20.92716,-27.18661 14.07966,0 20.00389,8.702797 20.00389,27.72572 0,19.33099 -8.694,27.26363 -20.85021,27.26363 -14.15661,0 -20.08084,-8.7028 -20.08084,-27.80274 l 0,0 z m -475.3234,0.077 c 0,-19.485024 8.54012,-27.109598 20.85021,-27.109598 14.15661,0 19.85003,8.625781 19.85003,27.648708 0,19.33099 -8.54013,27.18661 -20.85022,27.18661 -14.07967,0 -19.85002,-8.62578 -19.85002,-27.72572 l 0,0 z m 137.56527,26.80153 -13.61804,0 0,-2.38749 3.92384,-1.07822 12.9256,-49.675259 6.69361,0 14.92598,49.675259 4.00079,1.07822 0,2.38749 -20.61941,0 0,-2.38749 4.77016,-1.07822 -4.15465,-12.70763 -11.23296,0 -2.92365,12.70763 5.30873,1.07822 0,2.38749 z m 235.04581,0 -14.23355,0 0,-2.38749 4.38547,-1.07822 12.9256,-49.675259 6.84749,0 14.92598,49.675259 4.46241,1.07822 0,2.38749 -21.00409,0 0,-2.38749 4.69322,-1.07822 -4.23159,-12.70763 -11.38684,0 -2.84671,12.70763 5.46261,1.07822 0,2.38749 z m -297.75034,0 -30.9291,0 0,-2.38749 4.61628,-1.07822 0,-46.209543 -4.38547,-0.847175 0,-2.464509 20.38859,0 0,2.464509 -4.770157,0.847175 0,46.055503 8.309307,0 4.38547,-12.39956 2.38508,0 0,16.01931 z m 3.15446,-50.522428 0,-2.464509 19.38839,0 0,2.464509 -3.8469,0.847175 0,21.641463 11.69459,0 0,-21.641463 -3.61609,-0.847175 0,-2.464509 18.92676,0 0,2.464509 -4.00077,0.847175 0,46.209543 4.38546,1.07822 0,2.38749 -19.31145,0 0,-2.38749 3.61609,-1.07822 0,-20.94833 -11.69459,0 0,20.94833 3.8469,1.07822 0,2.38749 -19.38839,0 0,-2.38749 4.38547,-1.07822 0,-46.055512 -4.38547,-1.001206 z M 259.8968,39.735384 c 0,18.63784 -8.694,25.64629 -19.23451,25.64629 l -20.61941,0 0,-2.38749 4.15466,-1.07822 0,-46.209543 -4.15466,-0.847175 0,-2.464509 19.54227,0 c 13.15641,0 20.31165,6.315304 20.31165,27.340647 l 0,0 z m 19.46534,22.02654 10.07888,0 4.2316,-11.78343 2.69283,0 0,15.40318 -33.23725,0 0,-2.38749 4.92404,-1.07822 0,-46.209543 -4.8471,-0.847175 0,-2.464509 31.46767,0 0,15.326167 -2.61589,0 -4.30853,-11.860452 -8.38625,0 0,21.179372 6.61667,0 1.76958,-6.54635 2.38508,0 0,17.25156 -2.38508,0 -1.76958,-7.08546 -6.61667,0 0,21.10235 z m 160.03118,-46.902678 0,-2.464509 20.31165,0 0,2.464509 -4.69322,0.847175 0,37.429723 c 0,6.93143 1.69264,10.1661 6.69362,10.1661 6.84748,0 9.00175,-4.08184 9.00175,-11.70641 l 0,-35.889413 -4.53935,-0.847175 0,-2.464509 12.23316,0 0,2.464509 -4.15466,0.847175 0,36.659563 c 0,10.32013 -5.07791,14.71004 -15.46455,14.63302 -11.9254,-0.077 -15.07986,-4.69796 -15.07986,-17.02051 l 0,-34.272073 -4.30854,-0.847175 z m 72.70648,50.522428 -30.46747,0 0,-2.38749 4.61628,-1.07822 0,-46.209543 -4.30853,-0.847175 0,-2.464509 20.31165,0 0,2.464509 -4.69322,0.847175 0,46.055503 7.61687,0 4.38547,-12.39956 2.53895,0 0,16.01931 z m 31.69849,-26.1854 c 0,-21.48744 -3.69303,-24.799124 -8.00156,-24.799124 -4.30853,0 -8.694,2.849589 -8.694,24.028964 0,21.41042 3.69302,24.87613 8.07849,24.87613 4.30853,0 8.61707,-3.08063 8.61707,-24.10597 l 0,0 z m -475.40035,0.077 c 0,-21.487434 -3.76996,-24.722102 -8.15543,-24.722102 -4.46241,0 -8.77094,2.772573 -8.77094,23.951942 0,21.41042 3.8469,24.79912 8.23237,24.79912 4.30853,0 8.694,-2.9266 8.694,-24.02896 l 0,0 z m 167.64806,22.48864 3.30834,0 c 6.23198,0 9.15563,-3.3887 9.15563,-22.71969 0,-19.716066 -3.38528,-23.181782 -9.38645,-23.181782 l -3.07752,0 0,45.901472 z m -56.16479,-33.11683 -4.23159,16.94349 9.38644,0 -5.15485,-16.94349 z m 234.96887,0 -4.15466,16.94349 9.23257,0 -5.07791,-16.94349 z m -61.70433,26.1854 c 2.8467,0 5.23179,2.54153 5.23179,5.69918 0,3.23467 -2.53896,5.77619 -5.38567,5.77619 -2.69283,0 -5.23179,-2.54152 -5.23179,-5.77619 0,-3.15765 2.69283,-5.69918 5.38567,-5.69918 l 0,0 z"></path></svg>
                            </h1></a>
                            <div class="l-header__sub">
                                <span class="l-header__brand-stars"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 55 14" version="1.1" class="brand-stars" aria-hidden="true">
                                <g>
                                    <polygon points="22.866795,14.321192 24.633205,8.8599664 20,5.4902743 25.733591,5.4902743 27.5,8.8817842e-16 29.266409,5.4902743 35,5.4902743 30.366795,8.8599664 32.133205,14.321192 27.5,10.92245" class="brand-stars-blue"></polygon>
                                    <polygon points="2.8667954,14.321192 4.6332046,8.8599664 0,5.4902743 5.7335907,5.4902743 7.5,8.8817842e-16 9.2664093,5.4902743 15,5.4902743 10.366795,8.8599664 12.133205,14.321192 7.5,10.92245" class="brand-stars-red"></polygon>
                                    <polygon points="42.866795,14.321192 44.633205,8.8599664 40,5.4902743 45.733591,5.4902743 47.5,8.8817842e-16 49.266409,5.4902743 55,5.4902743 50.366795,8.8599664 52.133205,14.321192 47.5,10.92245" class="brand-stars-dark"></polygon>
                                </g></svg></span>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </header>
        <div class="block">
            <div class="container">
                <div class="c-advertising c-advertising--pub-super">
                    <div id="banner-970x250-area" class="c-advertising__banner-area"></div>
                </div>
            </div>
        </div>
        <main id="conteudo" class="main">
            <article id="c-news" class="c-news" itemscope="itemscope" itemtype="https://schema.org/NewsArticle" role="main">
                <meta itemprop="mainEntityOfPage" content="https://www1.folha.uol.com.br/esporte/2018/12/tite-diz-que-errou-ao-levar-taca-da-libertadores-a-lula-em-2012.shtml" />
                <meta itemprop="description" content="Na ocasião, técnico do Corinthians entregou réplica do troféu ao ex-presidente" />
                <link itemprop="sameAs" href="https://www1.folha.uol.com.br" />
                <div itemprop="publisher" itemscope="itemscope" itemtype="https://schema.org/Organization">
                    <meta itemprop="name" content="Folha de S.Paulo" />
                    <div itemprop="logo" itemscope="itemscope" itemtype="https://schema.org/ImageObject">
                        <meta itemprop="url" content="https://f.i.uol.com.br/hunting/folha/1/amp/logo.png" />
                        <meta itemprop="width" content="300" />
                        <meta itemprop="height" content="60" />
                    </div>
                </div>
                <div itemprop="author" itemscope="itemscope" itemtype="https://schema.org/Organization">
                    <meta itemprop="name" content="Folha de S.Paulo" />
                </div>
                <div itemprop="image" itemscope="itemscope" itemtype="https://schema.org/ImageObject">
                    <meta itemprop="url" content="https://f.i.uol.com.br/fotografia/2018/12/21/15454034955c1cfc67131dc_1545403495_3x2_md.jpg" />
                    <meta itemprop="width" content="768" />
                    <meta itemprop="height" content="512" />
                </div>
                <div class="block">
                    <div class="container">
                        <div class="flex flex--gutter flex--col flex--md-row">
                            <div class="flex-cell">
                                <div class="row">
                                    <div class="col col--md-1-1 col--lg-10-15 col-offset--lg-5-18">
                                        <header class="c-content-head" data-share-text="">
                                            <div class="c-content-head__wrap">
                                                <h1 class="c-content-head__title" itemprop="headline">
                                                    Tite diz que errou ao levar taça da Libertadores a Lula em 2012
                                                </h1>
                                                <h2 class="c-content-head__subtitle" itemprop="alternativeHeadline">
                                                    Na ocasião, técnico do Corinthians entregou réplica do troféu ao ex-presidente
                                                </h2>
                                            </div>
                                        </header>
                                        <div class="c-tools-share c-tools-share--bordered-md toolbar">
                                            <ul aria-label="Opções de compartilhamento" class="c-tools-share__list" data-sharebar-utm-campaign-prefix="comp" data-sharebar-counter="" data-sharebar-buttons="facebook whatsapp twitter" data-sharebar-channel="esporte" data-sharebar-limit="2" data-sharebar-url="https://www1.folha.uol.com.br/esporte/2018/12/tite-diz-que-errou-ao-levar-taca-da-libertadores-a-lula-em-2012.shtml" data-sharebar-uolpd-id="content" data-sharebar-text="Tite diz que errou ao levar taça da Libertadores a Lula em 2012">
                                                <li class="c-tools-share__item">
                                                    <a aria-label="Ir para a seção de comentários" href="#comentarios" class="c-tools-share__button c-tools-share__button--comment" title="Comentários"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--comments" aria-hidden="true">
                                                    <path d="M18,8H6V6H18V8M18,11H6V9H18V11M18,14H6V12H18V14M22,4A2,2 0 0,0 20,2H4A2,2 0 0,0 2,4V16A2,2 0 0,0 4,18H18L22,22V4Z"></path></svg> </a>
                                                </li>
                                                <li class="c-tools-share__item">
                                                    <div data-modal-drop="" data-qty-collumn="3.4" class="c-modal-drop">
                                                        <button aria-label="Ver todas opções de compartilhamento" data-trigger="" class="c-tools-share__button c-tools-share__button--neutral"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 17 5" height="24" width="24" class="icon icon--more-options" aria-hidden="true">
                                                        <path d="M2.5 0.5c-1.1 0-2 0.9-2 2s0.9 2 2 2 2-0.9 2-2-0.9-2-2-2zm12 0c-1.1 0-2 0.9-2 2s0.9 2 2 2 2-0.9 2-2-0.9-2-2-2zm-6 0c-1.1 0-2 0.9-2 2s0.9 2 2 2 2-0.9 2-2-0.9-2-2-2z"></path></svg></button>
                                                        <div aria-hidden="true" data-content="" class="c-modal-drop__content c-modal-drop__content--no-padding">
                                                            <div class="c-modal-drop__controls u-hidden-md">
                                                                <button aria-label="Fechar seção de opções" data-close="" class="c-modal-drop__close"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="24" height="24" class="icon icon--close icon--tiny" aria-hidden="true">
                                                                <path d="M16 1.61L14.39 0 8 6.39 1.61 0 0 1.61 6.39 8 0 14.39 1.61 16 8 9.61 14.39 16 16 14.39 9.61 8z"></path></svg></button>
                                                            </div>
                                                            <div class="c-tools-share--larger">
                                                                <ul class="c-tools-share__list" data-sharebar-utm-campaign-prefix="comp" data-sharebar-buttons="facebook whatsapp twitter messenger googlePlus linkedIn pinterest rss email" data-sharebar-channel="esporte" data-triggered-byclick=".c-modal-drop [data-trigger]" data-sharebar-url="https://www1.folha.uol.com.br/esporte/2018/12/tite-diz-que-errou-ao-levar-taca-da-libertadores-a-lula-em-2012.shtml" data-sharebar-uolpd-id="content" data-sharebar-text="Tite diz que errou ao levar taça da Libertadores a Lula em 2012">
                                                                    <li class="c-tools-share__item">
                                                                        <button aria-label="Copiar link" data-copy-link="" data-href="https://folha.com/rz1q0xue" class="c-tools-share__button c-tools-share__button--copy-link" title="URL curta"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon--link icon--" aria-hidden="true">
                                                                        <path d="m 1.5200002,7.9999998 c 0,-1.368 1.112,-2.4799996 2.4799999,-2.4799996 l 3.1999996,0 0,-1.5199999 -3.1999996,0 C 1.7920001,4.0000003 1.5e-7,5.7920002 1.5e-7,7.9999998 1.5e-7,10.208 1.7920001,12 4.0000001,12 l 3.1999996,0 0,-1.519999 -3.1999996,0 c -1.368,0 -2.48,-1.1120012 -2.48,-2.4800012 l 0,0 z m 3.2799999,0.800001 6.3999999,0 0,-1.6000011 -6.4,0 0,1.6000011 0,0 z M 12,4.0000003 l -3.2000001,0 0,1.5199999 3.2000001,0 c 1.368,0 2.48,1.1119996 2.48,2.4799996 0,1.368 -1.112,2.4800012 -2.48,2.4800012 l -3.2000001,0 0,1.519999 L 12,12 c 2.208,0 4,-1.792 4,-4.0000002 0,-2.2079997 -1.792,-3.9999995 -4,-3.9999995 l 0,0 z"></path></svg></button> <span class="c-tools-share__button-name" aria-hidden="true">Copiar link</span>
                                                                    </li>
                                                                    <li class="c-tools-share__item u-visible-md">
                                                                        <button aria-label="Imprimir" data-paper-print="" class="c-tools-share__button c-tools-share__button--paper-print" title="Imprimir"><svg xmlns="https://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" class="icon icon--paper-print icon--" aria-hidden="true">
                                                                        <path d="M13.584 4.748H2.424A2.388 2.388 0 0 0 .03 7.14v4.784H3.22v3.19h9.567v-3.19h3.188V7.14a2.388 2.388 0 0 0-2.39-2.392zm-2.39 8.77h-6.38V9.532h6.377v3.986zm2.39-5.58a.8.8 0 0 1-.797-.798c0-.44.36-.797.797-.797.44 0 .797.358.797.797 0 .44-.357.797-.796.797zM12.787.763H3.22V3.95h9.567z"></path></svg></button>
                                                                    </li>
                                                                </ul>
                                                            </div>
                                                        </div>
                                                    </div>
                                                </li>
                                            </ul>
                                        </div>
                                        <div class="c-news__head">
                                            <div>
                                                <div class="widget-image">
                                                    <figure>
                                                        <img alt="Luiz Inácio Lula da Silva (ao centro) recebe de Tite e outros representantes do Corinthians réplica da taça da Libertadores" class="img-responsive" srcset="https://f.i.uol.com.br/fotografia/2018/12/21/15454034955c1cfc67131dc_1545403495_3x2_th.jpg 100w, https://f.i.uol.com.br/fotografia/2018/12/21/15454034955c1cfc67131dc_1545403495_3x2_sm.jpg 480w, https://f.i.uol.com.br/fotografia/2018/12/21/15454034955c1cfc67131dc_1545403495_3x2_md.jpg 768w, https://f.i.uol.com.br/fotografia/2018/12/21/15454034955c1cfc67131dc_1545403495_3x2_lg.jpg 1024w, https://f.i.uol.com.br/fotografia/2018/12/21/15454034955c1cfc67131dc_1545403495_3x2_xl.jpg 1200w, https://f.i.uol.com.br/fotografia/2018/12/21/15454034955c1cfc67131dc_1545403495_3x2_rt.jpg 2400w" sizes="(min-width: 1024px) 68vw, 100vw" src="https://f.i.uol.com.br/fotografia/2018/12/21/15454034955c1cfc67131dc_1545403495_3x2_md.jpg" />
                                                        <figcaption class="widget-image__subtitle">
                                                            Luiz Inácio Lula da Silva (ao centro) recebe de Tite e outros representantes do Corinthians réplica da taça da Libertadores - <span class="widget-image__credits">Heinrich Aikawa/Instituto Lula</span>
                                                        </figcaption>
                                                    </figure>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class="col-fixed col-fixed--md-300 u-visible-md"></div>
                        </div>
                    </div>
                </div>
                <div class="block">
                    <div class="container" data-paywall-box="">
                        <div class="flex flex--gutter flex--col flex--md-row">
                            <div class="flex-cell">
                                <div class="row">
                                    <div class="col col--lg-5-18">
                                        <div class="c-more-options">
                                            <div class="c-more-options__header">
                                                <time class="c-more-options__published-date" itemprop="datePublished" datetime="2018-12-21 12:55:00">21.dez.2018 às 12h55</time>
                                            </div>
                                            <div class="c-more-options__footer u-no-print">
                                                <ul class="c-more-options__list c-more-options__list--secundary" data-change-font-size="" data-children="[data-link]" data-target="[data-news-content-text], [data-force-change-font-size]">
                                                    <li>
                                                        <div data-readspeaker="">
                                                            <span tabindex="0" class="sr-only">Ouvir o texto</span>
                                                        </div>
                                                    </li>
                                                    <li>
                                                        <button class="c-more-options__button rs_preserve" data-link="" data-action="less"><span class="u-sr-only">Diminuir fonte</span> <svg xmlns="https://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" version="1.1" class="icon icon--font-size-less" aria-hidden="true">
                                                        <path d="M2.56 17.759L6.367 6h3.298l3.806 11.759V18h-2.827l-.753-2.485H5.933L5.198 18H2.56zm6.69-4.433L7.912 8.875l-1.338 4.451zM16.274 11.143h5.166v2.228h-5.166z"></path></svg></button>
                                                    </li>
                                                    <li>
                                                        <button class="c-more-options__button rs_preserve" data-link="" data-action="more"><span class="u-sr-only">Aumentar fonte</span> <svg xmlns="https://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" version="1.1" class="icon icon--font-size-more" aria-hidden="true">
                                                        <path d="M1.815 17.759L5.603 6h3.281l3.788 11.759V18H9.859l-.75-2.485H5.171L4.441 18H1.815zm6.657-4.433L7.14 8.875l-1.331 4.451zm7.057-2.356h2.36V8.571h1.937v2.4h2.359v1.746h-2.36v2.712h-1.937v-2.712h-2.359z"></path></svg></button>
                                                    </li>
                                                </ul>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="col col--md-1-1 col--lg-12-18">
                                        <div class="c-news__content">
                                            <div class="c-signature c-signature--left" data-force-change-font-size="">
                                                <strong class="c-signature__location">São Paulo</strong>
                                            </div>
                                            <div class="c-news__body" data-share-text="" data-news-content-text="" data-disable-copy="" data-continue-reading="" data-continue-reading-hide-others=".js-continue-reading-hidden" itemprop="articleBody">
                                                <p>
                                                    Após rechaçar <a href="https://www1.folha.uol.com.br/esporte/2018/12/tite-se-recusa-a-encontrar-bolsonaro-antes-da-disputa-da-copa-america.shtml">um encontro da seleção brasileira com o presidente eleito Jair</a> <a href="https://www1.folha.uol.com.br/esporte/2018/12/tite-se-recusa-a-encontrar-bolsonaro-antes-da-disputa-da-copa-america.shtml">Bolsonaro</a>, o técnico Tite declarou que errou ao levar a taça da Copa Libertadores de 2012, conquistada pelo Corinthians, ao ex-presidente Luiz Inácio Lula da Silva.
                                                </p>
                                                <p>
                                                    Ao lado de representantes do clube paulista, o atual comandante do Brasil ainda entregou uma réplica do troféu a Lula.
                                                </p>
                                                <p>
                                                    "Em 2012 eu errei. Ele não era presidente, mas fui ao Instituto e mandei felicitações por um aniversário. Não me posicionei politicamente. Não tenho partido político, tenho sim a torcida para que o Brasil seja melhor em igualdade social. E que nossas prioridades sejam educação e punição. Que seja dada a possibilidade de estudo ao garoto de São Braz, que não tem chão batido para ir à escola, ou da periferia de Caixas ou do morro do Rio de Janeiro. Seja dada a ele a prioridade de estudo e não a outras situações", falou Tite ao programa "Grande Círculo", que ainda irá ao ar no SporTV.
                                                </p>
                                                <p>
                                                    Na ocasião, Tite e outros representantes do Corinthians <a href="https://www1.folha.uol.com.br/poder/1124743-corinthians-leva-a-taca-da-libertadores-para-lula.shtml">foram ao Instituto Lula para mostrar a taça</a> original da Libertadores ao ex-presidente.
                                                </p>
                                                <div>
                                                    <div class="js-gallery-widget">
                                                        <figure class="gallery-widget-pre">
                                                            <figcaption class="gallery-widget-pre__caption">
                                                                <a href="https://fotografia.folha.uol.com.br/galerias/nova/1618838542352047-os-times-de-coracao-dos-presidentes" class="gallery-widget-pre__link">Os times de coração dos presidentes</a>
                                                            </figcaption><a href="https://fotografia.folha.uol.com.br/galerias/nova/1618838542352047-os-times-de-coracao-dos-presidentes" class="gallery-widget-pre__link"><img src="https://f.i.uol.com.br/fotografia/2018/12/03/15438447625c05339a96ad0_1543844762_3x2_md.jpg" alt="Os times de coração dos presidentes" class="gallery-widget-pre__photo" /></a>
                                                        </figure>
                                                        <div class="gallery-widget is-hidden" data-channel="esporte">
                                                            <div class="gallery-widget__header is-hidden rs_skip">
                                                                <a href="javascript:void(0);" class="gallery-widget__header-mosaic"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon-grid-three">
                                                                <path d="M0 0v4h4V0H0zm6 0v4h4V0H6zm6 0v4h4V0h-4zM0 6v4h4V6H0zm6 0v4h4V6H6zm6 0v4h4V6h-4zM0 12v4h4v-4H0zm6 0v4h4v-4H6zm6 0v4h4v-4h-4z"></path></svg></a> <span class="gallery-widget__header-counter"></span>
                                                                <h3 class="gallery-widget__header-title">
                                                                    <a href="#" class="gallery-widget__header-title-link"></a>
                                                                </h3><a href="javascript:void(0);" class="gallery-widget__header-minhafolha is-hidden" title="Minha Folha"><img src="//f.i.uol.com.br/guia/gallery/icons/ic_save.svg" class="icon icon-save" alt="Minha Folha" /></a> <a href="javascript:void(0);" data-action="open" class="gallery-widget__header-fullscreen" title="Fullscreen"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon-full-screen">
                                                                <path d="M10.31 0H16v5.692h-2.255V2.256H10.31V0zm3.435 13.745V10.31H16V16h-5.69v-2.255h3.435zM0 5.69V0h5.692v2.255H2.256V5.69H0zm2.255 4.62v3.435H5.69V16H0v-5.69h2.255z"></path></svg></a> <a href="javascript:void(0);" data-action="close" class="gallery-widget__header-close rs_skip is-hidden" title="Fechar"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon-close">
                                                                <path d="M16 1.61L14.39 0 8 6.39 1.61 0 0 1.61 6.39 8 0 14.39 1.61 16 8 9.61 14.39 16 16 14.39 9.61 8z"></path></svg></a>
                                                            </div><!-- Content -->
                                                            <div class="gallery-widget__content">
                                                                <div class="gallery-widget-carousel is-hidden">
                                                                    <div class="gallery-widget-carousel__container">
                                                                        <ol class="list-unstyled gallery-widget-carousel__list"></ol><a href="javascript:void(0);" class="gallery-widget-carousel__btn gallery-widget-carousel__btn-prev gallery-widget--is-hidden"><span><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon-chevron-left rs_skip">
                                                                        <title>
                                                                            Ícone seta para esquerda
                                                                        </title>
                                                                        <path d="M11.06 0l1.88 1.88L6.833 8l6.107 6.12L11.06 16l-8-8 8-8z"></path></svg></span></a> <a href="javascript:void(0);" class="gallery-widget-carousel__btn gallery-widget-carousel__btn-next gallery-widget--is-hidden"><span><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon-chevron-right rs_skip">
                                                                        <title>
                                                                            Ícone seta para direita
                                                                        </title>
                                                                        <path d="M4.94 0L3.06 1.88 9.167 8 3.06 14.12 4.94 16l8-8-8-8z"></path></svg></span></a>
                                                                    </div>
                                                                    <div class="gallery-widget-carousel__info is-hidden rs_skip">
                                                                        <div class="gallery-widget-carousel__info-container">
                                                                            <p class="gallery-widget-carousel__info-description"></p><a href="#" class="gallery-widget-carousel__info-share" title="Compartilhe"><img src="//f.i.uol.com.br/guia/gallery/icons/ic_share.svg" class="icon icon-share" alt="Compartilhe" /></a>
                                                                        </div>
                                                                        <div class="gallery-widget-carousel__info-read-more-container">
                                                                            <a href="#" class="gallery-widget-carousel__info-read-more is-hidden">Leia Mais</a>
                                                                        </div>
                                                                    </div>
                                                                    <div class="gallery-widget-advertising gallery-widget--is-hidden rs_skip">
                                                                        <div class="gallery-widget-advertising__container">
                                                                            <div class="gallery-widget-advertising__container-cell">
                                                                                <a href="javascript:void(0);" class="gallery-widget-advertising__container-close gallery--is-hidden" title="Fechar"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon-close rs_skip">
                                                                                <title>
                                                                                    Ícone fechar
                                                                                </title>
                                                                                <path d="M16 1.61L14.39 0 8 6.39 1.61 0 0 1.61 6.39 8 0 14.39 1.61 16 8 9.61 14.39 16 16 14.39 9.61 8z"></path></svg></a> <iframe class="gallery-widget-advertising__content" frameborder="0"></iframe>
                                                                            </div>
                                                                            <div class="gallery-widget-advertising__overlay is-hidden"></div>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                            </div>
                                                            <div class="gallery-widget-others gallery-widget--is-hidden">
                                                                <a href="javascript:;" class="gallery-widget-others__go-back rs_skip"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon-chevron-left rs_skip">
                                                                <path d="M11.06 0l1.88 1.88L6.833 8l6.107 6.12L11.06 16l-8-8 8-8z"></path></svg> Voltar</a> <a href="javascript:void(0);" class="gallery-widget-others__close is-hidden rs_skip" title="Fechar"><svg xmlns="//www.w3.org/2000/svg" viewbox="0 0 16 16" width="14" height="14" class="icon icon-close">
                                                                <path d="M16 1.61L14.39 0 8 6.39 1.61 0 0 1.61 6.39 8 0 14.39 1.61 16 8 9.61 14.39 16 16 14.39 9.61 8z"></path></svg></a> <button class="gallery-widget-others__btn rs_skip">Ver novamente</button>
                                                            </div>
                                                            <div class="gallery-widget-mosaic gallery-widget--is-hidden">
                                                                <div class="gallery-widget-mosaic__top">
                                                                    <a href="javascript:;" class="gallery-widget-mosaic__go-back rs_skip"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon-chevron-left rs_skip">
                                                                    <title>
                                                                        Ícone seta para esquerda
                                                                    </title>
                                                                    <path d="M11.06 0l1.88 1.88L6.833 8l6.107 6.12L11.06 16l-8-8 8-8z"></path></svg> Voltar</a>
                                                                    <h4 class="gallery-widget-mosaic__title rs_skip"></h4>
                                                                    <p class="gallery-widget-mosaic__description rs_skip"></p>
                                                                </div>
                                                                <div class="gallery-widget-mosaic__list">
                                                                    <div class="gallery-widget-mosaic__container">
                                                                        <ol class="gallery-widget-mosaic__thumbnails"></ol>
                                                                    </div>
                                                                </div>
                                                                <nav class="gallery-widget-mosaic__nav is-invisible">
                                                                    <a href="javascript:void(0);" class="gallery-widget-mosaic__btn gallery-widget-mosaic__btn-prev"><span><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon-chevron-left rs_skip">
                                                                    <title>
                                                                        Ícone seta para cima
                                                                    </title>
                                                                    <path d="M11.06 0l1.88 1.88L6.833 8l6.107 6.12L11.06 16l-8-8 8-8z"></path></svg></span></a> <a href="javascript:void(0);" class="gallery-widget-mosaic__btn gallery-widget-mosaic__btn-next"><span><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon-chevron-right rs_skip">
                                                                    <title>
                                                                        Ícone seta para baixo
                                                                    </title>
                                                                    <path d="M4.94 0L3.06 1.88 9.167 8 3.06 14.12 4.94 16l8-8-8-8z"></path></svg></span></a>
                                                                </nav>
                                                            </div>
                                                            <div class="gallery-widget-share-container">
                                                                <div class="gallery-widget-share is-hidden">
                                                                    <a href="" class="gallery-widget-share__go-back is-hidden rs_skip"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon-chevron-left rs_skip">
                                                                    <title>
                                                                        Ícone seta para esquerda
                                                                    </title>
                                                                    <path d="M11.06 0l1.88 1.88L6.833 8l6.107 6.12L11.06 16l-8-8 8-8z"></path></svg> Voltar</a>
                                                                    <h4 class="gallery-widget-share__title is-hidden">
                                                                        Compartilhe
                                                                    </h4>
                                                                    <ul class="list-unstyled gallery-widget-share__list">
                                                                        <li>
                                                                            <a class="gallery-widget-share-facebook" href="" target="_blank" rel="external" title="Compartilhe via facebook"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon-facebook rs_skip">
                                                                            <title>
                                                                                Ícone Facebook
                                                                            </title>
                                                                            <path d="M9.5 3H12V0H9.5C7.57 0 6 1.57 6 3.5V5H4v3h2v8h3V8h2.5l.5-3H9V3.5c0-.27.23-.5.5-.5z"></path></svg></a> <span class="is-hidden">Facebook</span>
                                                                        </li>
                                                                        <li class="is-hidden">
                                                                            <a class="gallery-widget-share-whatsapp" href="" target="_blank" rel="external" title="Compartilhe via whatsapp"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon-whatsapp rs_skip">
                                                                            <title>
                                                                                Ícone Whatsapp
                                                                            </title>
                                                                            <path d="M8.132-.007c-4.268 0-7.73 3.49-7.73 7.794 0 1.472.406 2.85 1.11 4.024L.117 15.994l4.28-1.382c1.107.618 2.38.97 3.735.97 4.27 0 7.73-3.49 7.73-7.793 0-4.305-3.46-7.794-7.73-7.794zm0 14.346c-1.32 0-2.55-.4-3.575-1.085l-2.497.807.812-2.434a6.554 6.554 0 0 1-1.238-3.842c0-3.613 2.915-6.552 6.498-6.552s6.498 2.94 6.498 6.552c0 3.613-2.915 6.553-6.498 6.553z"></path>
                                                                            <path d="M6.365 4.525c-.125-.304-.22-.314-.414-.324a4.407 4.407 0 0 0-.216-.005c-.25 0-.508.074-.663.235-.19.195-.662.653-.662 1.593S5.088 7.87 5.18 8c.096.126 1.325 2.084 3.238 2.883 1.493.623 1.936.568 2.276.493.496-.11 1.118-.478 1.276-.924.158-.446.158-.828.11-.908-.047-.08-.173-.127-.363-.223-.19-.094-1.12-.556-1.294-.62-.174-.064-.335-.044-.468.142-.184.257-.362.522-.51.678-.114.124-.3.14-.46.072-.208-.09-.8-.297-1.522-.948A5.747 5.747 0 0 1 6.41 7.32c-.112-.19-.01-.304.074-.408.097-.12.187-.204.282-.315.094-.112.147-.17.21-.3.063-.126.02-.258-.026-.353-.048-.096-.427-1.036-.585-1.42z"></path></svg></a> <span class="is-hidden">Whatsapp</span>
                                                                        </li>
                                                                        <li>
                                                                            <a class="gallery-widget-share-twitter" href="" target="_blank" rel="external" title="Compartilhe via twitter"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon-twitter rs_skip">
                                                                            <title>
                                                                                Ícone Twitter
                                                                            </title>
                                                                            <path d="M16 3.202a.275.275 0 0 0-.273-.273c-.085 0-.674.246-.828.29.204-.24.673-.966.673-1.273a.275.275 0 0 0-.273-.273.283.283 0 0 0-.136.042c-.58.316-1.135.564-1.784.7a3.498 3.498 0 0 0-2.406-.973 3.455 3.455 0 0 0-3.448 3.45c0 .136.01.28.035.418A8.736 8.736 0 0 1 2.5 3.11c-.34-.307-.63-.64-.938-.982a.268.268 0 0 0-.23-.102c-.095 0-.17.068-.214.136-.307.453-.47 1.187-.47 1.733 0 .794.274 1.57.786 2.186-.163-.052-.41-.214-.555-.214-.18 0-.334.128-.334.307 0 1.195.657 2.305 1.664 2.928-.077-.007-.145-.033-.222-.033a.272.272 0 0 0-.264.265c0 .034.008.06.017.094a3.44 3.44 0 0 0 2.493 2.296 6.07 6.07 0 0 1-3.2.905c-.256 0-.512-.042-.76-.042a.275.275 0 0 0-.273.273c0 .094.05.17.128.23.222.163.495.3.742.427a9.265 9.265 0 0 0 4.267 1.042c3.72 0 6.904-1.998 8.44-5.396.554-1.22.878-2.56.853-3.9v-.282c.58-.436 1.143-1 1.527-1.623A.295.295 0 0 0 16 3.202z"></path></svg></a> <span class="is-hidden">Twitter</span>
                                                                        </li>
                                                                        <li class="is-hidden">
                                                                            <a class="gallery-widget-share-messenger" href="" target="_blank" title="Messenger"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 18 18" width="16" height="16" class="icon icon-messenger rs_skip">
                                                                            <title>
                                                                                Ícone de messenger
                                                                            </title>
                                                                            <path d="M8.742.742c-4.418 0-8 3.27-8 7.304 0 2.299 1.163 4.35 2.981 5.688v2.785l2.724-1.474a8.71 8.71 0 0 0 2.295.306c4.418 0 8-3.27 8-7.305 0-4.034-3.582-7.304-8-7.304zm.795 9.836L7.5 8.436l-3.975 2.142 4.372-4.577 2.087 2.143L13.91 6l-4.373 4.577z"></path></svg></a> <span class="is-hidden">Messenger</span>
                                                                        </li>
                                                                        <li>
                                                                            <a class="gallery-widget-share-gplus" href="" target="_blank" rel="external" title="Compartilhe via google-plus"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon-google-plus rs_skip">
                                                                            <title>
                                                                                Ícone Google Plus
                                                                            </title>
                                                                            <path d="M5.09 7.272V9.02H7.98c-.115.75-.872 2.196-2.887 2.196-1.737 0-3.156-1.44-3.156-3.215 0-1.774 1.42-3.215 3.157-3.215.99 0 1.65.422 2.03.785L8.5 4.24c-.888-.83-2.038-1.332-3.41-1.332A5.09 5.09 0 0 0 0 8.002a5.085 5.085 0 0 0 5.09 5.09c2.938 0 4.888-2.065 4.888-4.975 0-.334-.038-.59-.082-.844H5.09zM16 7.125h-1.5v-1.5H13v1.5h-1.5v1.5H13v1.5h1.5v-1.5H16z"></path></svg></a> <span class="is-hidden">Google</span>
                                                                        </li>
                                                                        <li>
                                                                            <a class="gallery-widget-share-pinterest" href="" target="_blank" rel="external" title="Compartilhe via pinterest"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon-pinterest rs_skip">
                                                                            <title>
                                                                                Ícone Pinterest
                                                                            </title>
                                                                            <path d="M6.894 10.582C6.474 12.785 5.96 14.897 4.44 16c-.47-3.33.688-5.83 1.226-8.484-.917-1.544.11-4.65 2.044-3.884 2.38.94-2.06 5.738.92 6.338 3.113.625 4.383-5.4 2.453-7.36-2.788-2.83-8.117-.066-7.46 3.986.16.99 1.182 1.29.408 2.658-1.784-.395-2.316-1.803-2.248-3.68C1.892 2.502 4.542.352 7.2.054c3.36-.377 6.514 1.234 6.95 4.395.49 3.568-1.517 7.433-5.11 7.155-.975-.076-1.383-.56-2.146-1.023z"></path></svg></a> <span class="is-hidden">Pinterest</span>
                                                                        </li>
                                                                        <li>
                                                                            <a class="gallery-widget-share-linkedin" href="" target="_blank" rel="external" title="Compartilhe via linkedin"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon-linkedin rs_skip">
                                                                            <title>
                                                                                Ícone Linkedin
                                                                            </title>
                                                                            <path d="M.522 3.422c.335.335.802.503 1.36.503h.02c.597 0 1.063-.168 1.417-.503.354-.355.522-.765.522-1.287 0-.504-.187-.932-.523-1.268C2.982.53 2.516.363 1.94.363 1.36.363.894.53.54.867.187 1.203 0 1.63 0 2.135c0 .522.168.932.522 1.287zM.205 15.637h3.432V5.343H.205v10.294zm8.746 0V9.892c0-.354.04-.634.113-.84.15-.353.373-.65.672-.894.28-.242.652-.354 1.1-.354.596 0 1.025.205 1.305.615.28.41.43.988.43 1.715v5.502H16V9.743c0-1.53-.354-2.685-1.08-3.468-.73-.784-1.68-1.175-2.873-1.175-.43 0-.84.056-1.194.168a2.47 2.47 0 0 0-.913.447 4.1 4.1 0 0 0-.578.542c-.15.167-.3.353-.43.577h.02v-1.49H5.52l.018.502v3.077c0 1.715 0 3.954-.018 6.714h3.43z"></path></svg></a> <span class="is-hidden">Linkedin</span>
                                                                        </li>
                                                                        <li>
                                                                            <a class="gallery-widget-share-email" href="" target="_blank" rel="external" title="Compartilhe via email"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon-envelope rs_skip">
                                                                            <title>
                                                                                Ícone de envelope
                                                                            </title>
                                                                            <path d="M14.4 1.6H1.6C.72 1.6.008 2.32.008 3.2L0 12.8c0 .88.72 1.6 1.6 1.6h12.8c.88 0 1.6-.72 1.6-1.6V3.2c0-.88-.72-1.6-1.6-1.6zm0 3.2L8 8.8l-6.4-4V3.2l6.4 4 6.4-4v1.6z"></path></svg></a> <span class="is-hidden">E-mail</span>
                                                                        </li>
                                                                        <li>
                                                                            <a class="gallery-widget-share-clipboard" href="" title="Copiar link"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon-link rs_skip">
                                                                            <title>
                                                                                Ícone de link
                                                                            </title>
                                                                            <desc>
                                                                                Cadeado representando um link
                                                                            </desc>
                                                                            <path d="M1.52 8A2.482 2.482 0 0 1 4 5.52h3.2V4H4a4 4 0 0 0-4 4 4 4 0 0 0 4 4h3.2v-1.52H4A2.482 2.482 0 0 1 1.52 8zm3.28.8h6.4V7.2H4.8v1.6zM12 4H8.8v1.52H12A2.482 2.482 0 0 1 14.48 8 2.482 2.482 0 0 1 12 10.48H8.8V12H12a4 4 0 0 0 4-4 4 4 0 0 0-4-4z"></path></svg></a> <span class="is-hidden">Copiar link</span> <input type="text" class="gallery-widget-share-clipboard-input is-hidden" /> <button type="button" class="gallery-widget-share-clipboard-close is-hidden"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon-close rs_skip">
                                                                            <title>
                                                                                Ícone fechar
                                                                            </title>
                                                                            <path d="M16 1.61L14.39 0 8 6.39 1.61 0 0 1.61 6.39 8 0 14.39 1.61 16 8 9.61 14.39 16 16 14.39 9.61 8z"></path></svg></button>
                                                                        </li>
                                                                    </ul>
                                                                </div>
                                                            </div>
                                                            <div class="gallery-widget__loading rs_skip">
                                                                <img src="//f.i.uol.com.br/hunting/furniture/1/common/icons/spin.gif" alt="Loading" class="gallery-widget__loading-spin" />
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                                <p>
                                                    O assunto foi levantado&#160;porque recentemente Tite foi questionado se aceitaria um encontro da seleção brasileira com Bolsonaro em uma conquista de título ou <a href="https://www1.folha.uol.com.br/esporte/2018/12/selecao-brasileira-jogara-duas-vezes-em-sao-paulo-na-copa-america.shtml">antes da Copa América de 2019</a>, por exemplo. O treinador deixou claro que preferiria evitar esse tipo de formalidade.
                                                </p>
                                                <p>
                                                    Apesar disso, Tite não questionou a ação de Palmeiras e CBF, que <a href="https://www1.folha.uol.com.br/esporte/2018/12/cbf-usa-festa-do-palmeiras-para-se-aproximar-de-governo-bolsonaro.shtml">convidaram Bolsonaro para a festa do título do Campeonato Brasileiro</a>. O presidente eleito até levantou a taça conquistada pelo clube alviverde.
                                                </p>
                                                <p>
                                                    "Em 2012 eu fiz e errei. O protocolo e a situação gerada no jogo do Palmeiras são fatos de opinião pessoal. CBF e Palmeiras, enquanto instituições têm a opinião. Errei lá atrás, não faria com o presidente antes da Copa e nem agora porque entendo que misturar esporte e política não é legal. Fiz errado lá atrás? Sim. Faria de novo? Não", acrescentou o comandante.
                                                </p>
                                            </div>
                                            <div class="c-signature js-continue-reading-hidden">
                                                <strong class="c-signature__agency">UOL</strong>
                                            </div>
                                            <div class="c-news__stars u-no-print js-continue-reading-hidden">
                                                <svg viewbox="0 0 51 12" xmlns="https://www.w3.org/2000/svg" class="stars" aria-hidden="true">
                                                <g fill="none" fill-rule="evenodd">
                                                    <path fill="#E51717" d="M8.77 7.59l1.411 4.379-3.717-2.711-3.718 2.71 1.429-4.377L.457 4.898h4.597L6.464.522l1.428 4.376h4.597z"></path>
                                                    <path fill="#2BACE2" d="M27.71 7.59l1.411 4.379-3.717-2.711-3.718 2.71 1.429-4.377-3.718-2.693h4.597l1.41-4.376 1.428 4.376h4.597z"></path>
                                                    <path fill="#000" d="M46.65 7.59l1.411 4.379-3.717-2.711-3.718 2.71 1.429-4.377-3.718-2.693h4.597l1.41-4.376 1.428 4.376h4.597z"></path>
                                                </g></svg>
                                            </div>
                                            <div class="c-topics u-no-print js-continue-reading-hidden">
                                                <strong class="c-topics__title">Tópicos <span class="u-visually-hidden">relacionados</span></strong>
                                                <ul class="c-topics__list">
                                                    <li class="c-topics__item">
                                                        <a href="//www1.folha.uol.com.br/folha-topicos/corinthians" class="c-topics__link">corinthians</a>
                                                    </li>
                                                    <li class="c-topics__item">
                                                        <a href="//www1.folha.uol.com.br/folha-topicos/futebol" class="c-topics__link">Futebol</a>
                                                    </li>
                                                    <li class="c-topics__item">
                                                        <a href="//www1.folha.uol.com.br/folha-topicos/libertadores" class="c-topics__link">libertadores</a>
                                                    </li>
                                                </ul>
                                            </div>
                                            <ul class="c-button-list u-no-print js-continue-reading-hidden rs_skip">
                                                <li class="c-button-list__item">
                                                    <a href="//www1.folha.uol.com.br/enviesuanoticia/" class="c-button c-button--full-md">Envie sua notícia</a>
                                                </li>
                                                <li class="c-button-list__item">
                                                    <a href="//tools.folha.com.br/feedback?url=https://www1.folha.uol.com.br/esporte/2018/12/tite-diz-que-errou-ao-levar-taca-da-libertadores-a-lula-em-2012.shtml" title="Comunicar erro - Site externo" target="_blank" class="c-button c-button--neutral c-button--full-md">Erramos?</a>
                                                </li>
                                            </ul>
                                            <div class="u-only-print rs_skip" aria-hidden="true">
                                                <h4 class="c-heading">
                                                    Endereço da página
                                                </h4>
                                                <ul class="u-list-unstyled">
                                                    <li>https://www1.folha.uol.com.br/esporte/2018/12/tite-diz-que-errou-ao-levar-taca-da-libertadores-a-lula-em-2012.shtml
                                                    </li>
                                                </ul>
                                            </div>
                                            <section id="comentarios" class="comments-article rs_skip u-visually-hidden u-no-print js-continue-reading-hidden" data-version="2" data-site="Folha de S.Paulo" data-section="esporte" data-service="folha" data-title="Tite diz que errou ao levar taça da Libertadores a Lula em 2012" data-url="https://www1.folha.uol.com.br/esporte/2018/12/tite-diz-que-errou-ao-levar-taca-da-libertadores-a-lula-em-2012.shtml" data-type="news" data-id="1620472946540368">
                                                <header>
                                                    <h2>
                                                        Comentários
                                                    </h2>
                                                    <p class="terms hide">
                                                        <small>Os comentários não representam a opinião do jornal; a responsabilidade é do autor da mensagem.</small>
                                                    </p>
                                                    <div class="user-info hide"></div>
                                                </header>
                                                <footer>
                                                    <div class="terms-conditions">
                                                        <a href="//comentarios1.folha.uol.com.br/termos">Termos e condições</a>
                                                    </div><a class="more c-button c-button--full-md hide">Todos os comentários</a> <a class="comment-action c-button c-button--primary c-button--full-md hide">Comente*</a>
                                                    <div class="comment-info">
                                                        <span>* Apenas para assinantes</span>
                                                    </div>
                                                </footer>
                                            </section>
                                            <script type="text/template" class="rs_preserve rs_skip" id="tmpl-comment">
                                            <![CDATA[
                                            <article>
                                            <header style="position: relative;">
                                            <div class="u-clearfix">
                                            <h3></h3>

                                            <span class="time"></span>
                                            </div>

                                            <div class="share">
                                            <a href="javascript:void();">
                                            <i class="sprite icon-plus"></i> Compartilhar
                                            </a>

                                            <span class="arrow"></span>

                                            <ul>
                                            <li><a class="share-facebook"><i class="section-sprite facebook"></i> Facebook</a></li>
                                            <li><a class="share-twitter"><i class="section-sprite twitter"></i> Twitter</a></li>
                                            <li><a class="share-gplus"><i class="section-sprite google_plus"></i> Google+</a></li>
                                            </ul>
                                            </div>
                                            </header>

                                            <div class="comment-body">
                                            <i class="section-sprite comment-large"></i>
                                            </div>

                                            <footer>
                                            <a class="btn reply"><i class="section-sprite reply"></i> Responda</a>

                                            <div class="rating" style="position: static;">
                                            <a class="vote good">
                                            <i class="section-sprite comment-like"></i>
                                            </a>

                                            <div class="confirm-rating good hide">
                                            <img class="loading" src="//f.i.uol.com.br/folha/furniture/5.4/images/loading-alternate.gif">
                                            </div>

                                            <a class="vote bad">
                                            <i class="section-sprite comment-like"></i>
                                            </a>

                                            <div class="confirm-rating bad hide">
                                            <img class="loading" src="//f.i.uol.com.br/folha/furniture/5.4/images/loading-alternate.gif">
                                            </div>
                                            </div>

                                            <a class="to-report">
                                            <i class="section-sprite warning"></i> Denuncie
                                            </a>

                                            <div class="result"><p></p></div>
                                            </footer>
                                            </article>
                                            ]]>
                                            </script> 
                                            <script type="text/template" class="rs_preserve rs_skip" id="tmpl-comment_dialog">
                                            <![CDATA[

                                            <h4>Avaliar comentário como</h4>

                                            <div class="action">
                                            <a class="btn confirm">Confirmar</a>

                                            <div class="result"></div>

                                            <div class="evaluators hide">
                                            <h4>Também avaliaram</h4>
                                            <ul class="unstyled"></ul>
                                            </div>
                                            </div>
                                            ]]>
                                            </script>
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <aside class="col-fixed col-fixed--md-300 u-no-print rs_skip">
                                <div class="u-global-margin-bottom-component">
                                    <h4 class="c-section-title c-section-title--brand">
                                        Relacionadas
                                    </h4>
                                    <ul class="c-newslist c-newslist--no-gap">
                                        <li>
                                            <div class="c-headline c-headline--horizontal-small">
                                                <a href="https://www1.folha.uol.com.br/esporte/2018/12/tecnico-do-santos-deu-treino-da-arvore-cruzou-america-e-virou-piada-na-argentina.shtml" class="c-headline__url"><img class="c-headline__image" src="//f.i.uol.com.br/fotografia/2018/06/22/15297007675b2d619f51e79_1529700767_3x2_xs.jpg" alt="" />
                                                <h2 class="c-headline__title">
                                                    Técnico do Santos dirigiu time em árvore, cruzou América e virou piada na Argentina
                                                </h2></a>
                                            </div>
                                        </li>
                                        <li>
                                            <div class="c-headline c-headline--horizontal-small">
                                                <a href="https://www1.folha.uol.com.br/esporte/2018/12/com-tres-de-bale-real-vence-o-kashima-e-vai-em-busca-do-setimo-titulo-mundial.shtml" class="c-headline__url">
                                                <h2 class="c-headline__title">
                                                    Com três de Bale, Real vence o Kashima e vai em busca do sétimo título mundial
                                                </h2></a>
                                            </div>
                                        </li>
                                        <li>
                                            <div class="c-headline c-headline--horizontal-small">
                                                <a href="https://www1.folha.uol.com.br/esporte/2018/12/globo-muda-horario-e-rodadas-de-quarta-no-futebol-brasileiro-serao-as-21h30.shtml" class="c-headline__url">
                                                <h2 class="c-headline__title">
                                                    Globo muda horário, e rodada de quarta no futebol brasileiro será às 21h30
                                                </h2></a>
                                            </div>
                                        </li>
                                        <li>
                                            <div class="c-estudio-folha-headline">
                                                <div id="banner-native-related" class="c-advertising__banner-area"></div>
                                            </div>
                                        </li>
                                    </ul>
                                </div>
                                <div class="c-advertising c-advertising--300x250">
                                    <div id="banner-300x250-area" class="c-advertising__banner-area"></div>
                                </div>
                                <div class="c-wildcard-box u-global-margin-bottom-component">
                                    <h3 class="c-section-title c-section-title--brand">
                                        Veja também
                                    </h3>
                                    <ul class="c-newslist c-newslist--no-gap">
                                        <li>
                                            <div class="c-headline c-headline--small">
                                                <div class="c-headline__media-wrapper">
                                                    <a href="https://arte.folha.uol.com.br/esporte/2018/onde-pode-chegar-na-rodada/"><img class="c-headline__image" src="https://f.i.uol.com.br/fotografia/2018/08/31/15357551815b89c3ada3637_1535755181_5x2_sm.jpg" alt="Soccer Football - Brasileiro Championship - Flamengo v Sao Paulo - Maracana stadium, Rio de Janeiro, Brazil- July 18, 2018. Sao Paulo's Diego Souza (L) and Nene celebrates after the match. REUTERS/Ricardo Moraes ORG XMIT: AST101" /></a>
                                                </div>
                                                <div class="c-headline__wrapper">
                                                    <div class="c-headline__head">
                                                        <h3 class="c-headline__kicker c-kicker">
                                                            Tabela
                                                        </h3>
                                                        <div data-modal-drop="" data-qty-collumn="3.4" class="c-modal-drop">
                                                            <button data-trigger="" type="button" name="button" class="c-headline__action"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="24" height="24" class="icon icon--share">
                                                            <path d="m 12.818311,11.294921 c 1.280064,0 2.333667,1.054406 2.333667,2.333668 0,1.279261 -1.054406,2.371411 -2.333667,2.371411 -1.279262,0 -2.333668,-1.09215 -2.333668,-2.371411 0,-0.187915 0,-0.377435 0.03774,-0.526802 L 4.8407964,9.789199 A 2.4252158,2.4252158 0 0 1 0.772537,8.020076 2.4252158,2.4252158 0 0 1 4.8383872,6.250954 L 10.48384,2.9761092 A 2.8974102,2.8974102 0 0 1 10.40915,2.4091547 C 10.40915,1.0921502 11.5013,0 12.818304,0 c 1.317008,0 2.409159,1.0921502 2.409159,2.4091547 0,1.3170047 -1.092151,2.4091553 -2.409155,2.4091553 -0.640032,0 -1.204577,-0.263401 -1.656695,-0.677776 L 5.5161598,7.453925 c 0.036941,0.187914 0.074684,0.377434 0.074684,0.564545 0,0.187111 -0.037744,0.377434 -0.075486,0.562137 l 5.7217422,3.31339 c 0.417587,-0.377434 0.979724,-0.602289 1.582012,-0.602289 z"></path></svg> <span class="u-visually-hidden">Compartilhar Confira em tempo real a posição de seu clube no Brasileiro</span></button>
                                                            <div aria-hidden="true" data-content="" class="c-modal-drop__content c-modal-drop__content--no-padding">
                                                                <div class="c-modal-drop__controls u-hidden-md">
                                                                    <button data-close="" class="c-modal-drop__close"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="24" height="24" class="icon icon--close icon--tiny">
                                                                    <title>
                                                                        Ícone fechar
                                                                    </title>
                                                                    <path d="M16 1.61L14.39 0 8 6.39 1.61 0 0 1.61 6.39 8 0 14.39 1.61 16 8 9.61 14.39 16 16 14.39 9.61 8z"></path></svg></button>
                                                                </div>
                                                                <div class="c-tools-share--larger">
                                                                    <ul class="c-tools-share__list" data-sharebar-buttons="facebook whatsapp twitter messenger googlePlus linkedIn pinterest email" data-triggered-byclick=".c-modal-drop [data-trigger]" data-sharebar-url="https://arte.folha.uol.com.br/esporte/2018/onde-pode-chegar-na-rodada/" data-sharebar-utm-campaign-prefix="comp" data-sharebar-uolpd-id="internal" data-sharebar-text="Confira em tempo real a posição de seu clube no Brasileiro"></ul>
                                                                </div>
                                                            </div>
                                                        </div>
                                                    </div>
                                                    <div class="c-headline__content">
                                                        <a href="https://arte.folha.uol.com.br/esporte/2018/onde-pode-chegar-na-rodada/" class="c-headline__url">
                                                        <h2 class="c-headline__title">
                                                            Confira em tempo real a posição de seu clube no Brasileiro
                                                        </h2></a>
                                                    </div>
                                                </div>
                                            </div>
                                        </li>
                                        <li>
                                            <div class="c-headline c-headline--small">
                                                <div class="c-headline__wrapper">
                                                    <div class="c-headline__head">
                                                        <h3 class="c-headline__kicker c-kicker">
                                                            Futebol Internacional
                                                        </h3>
                                                        <div data-modal-drop="" data-qty-collumn="3.4" class="c-modal-drop">
                                                            <button data-trigger="" type="button" name="button" class="c-headline__action"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="24" height="24" class="icon icon--share">
                                                            <path d="m 12.818311,11.294921 c 1.280064,0 2.333667,1.054406 2.333667,2.333668 0,1.279261 -1.054406,2.371411 -2.333667,2.371411 -1.279262,0 -2.333668,-1.09215 -2.333668,-2.371411 0,-0.187915 0,-0.377435 0.03774,-0.526802 L 4.8407964,9.789199 A 2.4252158,2.4252158 0 0 1 0.772537,8.020076 2.4252158,2.4252158 0 0 1 4.8383872,6.250954 L 10.48384,2.9761092 A 2.8974102,2.8974102 0 0 1 10.40915,2.4091547 C 10.40915,1.0921502 11.5013,0 12.818304,0 c 1.317008,0 2.409159,1.0921502 2.409159,2.4091547 0,1.3170047 -1.092151,2.4091553 -2.409155,2.4091553 -0.640032,0 -1.204577,-0.263401 -1.656695,-0.677776 L 5.5161598,7.453925 c 0.036941,0.187914 0.074684,0.377434 0.074684,0.564545 0,0.187111 -0.037744,0.377434 -0.075486,0.562137 l 5.7217422,3.31339 c 0.417587,-0.377434 0.979724,-0.602289 1.582012,-0.602289 z"></path></svg> <span class="u-visually-hidden">Compartilhar Veja onde assistir e o que você precisa saber sobre os torneios europeus</span></button>
                                                            <div aria-hidden="true" data-content="" class="c-modal-drop__content c-modal-drop__content--no-padding">
                                                                <div class="c-modal-drop__controls u-hidden-md">
                                                                    <button data-close="" class="c-modal-drop__close"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="24" height="24" class="icon icon--close icon--tiny">
                                                                    <title>
                                                                        Ícone fechar
                                                                    </title>
                                                                    <path d="M16 1.61L14.39 0 8 6.39 1.61 0 0 1.61 6.39 8 0 14.39 1.61 16 8 9.61 14.39 16 16 14.39 9.61 8z"></path></svg></button>
                                                                </div>
                                                                <div class="c-tools-share--larger">
                                                                    <ul class="c-tools-share__list" data-sharebar-buttons="facebook whatsapp twitter messenger googlePlus linkedIn pinterest email" data-triggered-byclick=".c-modal-drop [data-trigger]" data-sharebar-url="https://www1.folha.uol.com.br/esporte/2018/08/veja-onde-assistir-e-o-que-voce-precisa-saber-sobre-os-torneios-europeus.shtml" data-sharebar-utm-campaign-prefix="comp" data-sharebar-uolpd-id="internal" data-sharebar-text="Veja onde assistir e o que você precisa saber sobre os torneios europeus"></ul>
                                                                </div>
                                                            </div>
                                                        </div>
                                                    </div>
                                                    <div class="c-headline__content">
                                                        <a href="https://www1.folha.uol.com.br/esporte/2018/08/veja-onde-assistir-e-o-que-voce-precisa-saber-sobre-os-torneios-europeus.shtml" class="c-headline__url">
                                                        <h2 class="c-headline__title">
                                                            Veja onde assistir e o que você precisa saber sobre os torneios europeus
                                                        </h2></a>
                                                    </div>
                                                </div>
                                            </div>
                                        </li>
                                    </ul>
                                </div><!--!-->
                                <div class="c-advertising c-advertising--300x600" data-sticky="">
                                    <div id="banner-300x600-area" class="c-advertising__banner-area"></div>
                                </div>
                            </aside>
                        </div>
                    </div>
                </div>
            </article>
            <div class="block u-no-print">
                <div class="container">
                    <div class="flex flex--gutter flex--col flex--md-row">
                        <div class="flex-cell">
                            <div class="row">
                                <div class="col col--lg-10-15 col-offset--lg-5-18">
                                    <div class="c-outbrain">
                                        <div class="OUTBRAIN" data-src="https://www1.folha.uol.com.br/esporte/2018/12/tite-diz-que-errou-ao-levar-taca-da-libertadores-a-lula-em-2012.shtml" data-widget-id="AR_12" data-ob-template="Folha"></div>
                                        <script type="text/javascript" async="async" src="https://widgets.outbrain.com/outbrain.js"></script>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="col-fixed col-fixed--md-300">
                            <div class="c-estudio-folha">
                                <!-- Header -->
                                <div class="c-estudio-folha__header">
                                    <div class="c-estudio-folha__logo">
                                        <a href="//estudio.folha.uol.com.br/institucional/"><svg xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink" width="166" height="45" class="icon icon--estudio-folha">
                                        <defs>
                                            <rect id="a" width="300" height="360" rx="3"></rect>
                                        </defs>
                                        <g fill="none" fill-rule="evenodd">
                                            <g transform="translate(-67 -10)">
                                                <use fill="none" xlink:href="#a"></use>
                                                <rect width="299" height="359" x=".5" y=".5" stroke="#E0E0E0" rx="3"></rect>
                                            </g>
                                            <path fill="#221F1F" d="M81.45 0h13.23v6.57h-1.17l-1.8-5.04h-3.6v8.82h2.79l.72-2.7h1.08v7.2h-1.08l-.72-2.97h-2.79v8.91l2.61.45v.99h-9.36v-.99l2.16-.45V1.44L81.45.99V0zm14.13 12.33c0-7.11 3.15-9.99 7.65-9.99 5.22 0 7.38 3.24 7.38 10.26 0 7.11-3.15 9.99-7.65 9.99-5.22 0-7.38-3.24-7.38-10.26zm10.62.27c0-7.92-1.35-9.09-2.97-9.09s-3.24 1.08-3.24 8.82c0 7.92 1.35 9.18 2.97 9.18 1.62-.09 3.24-1.17 3.24-8.91zm5.04 9.63v-.9l1.71-.36V4.05l-1.62-.36v-.9h7.47v.9l-1.71.36v16.92h2.97l1.62-4.59h.9v5.94h-11.34v-.09zM123.3 2.7h7.2v.9l-1.44.36v7.92h4.32V4.05l-1.44-.45v-.9h6.93v.9l-1.44.36v16.92l1.62.36v.9h-7.11v-.9l1.35-.36v-7.65h-4.32v7.65l1.44.36v.9h-7.2v-.9l1.62-.36V4.05l-1.62-.45c.09 0 .09-.9.09-.9zm16.38 19.53v-.9l1.35-.36L145.8 2.7h2.52l5.49 18.27 1.44.36v.9h-7.56v-.9l1.8-.36-1.53-4.68h-4.14l-1.08 4.68 1.98.36v.9h-5.04zm4.41-7.29h3.42l-1.89-6.12-1.53 6.12zm-77.4-.265c0-1.08.18-2.07.45-2.97a6.5 6.5 0 0 1 1.26-2.34c.54-.72 1.26-1.26 2.07-1.62.81-.36 1.62-.54 2.61-.54.99 0 1.89.18 2.7.54.81.36 1.44.9 2.07 1.53a6.5 6.5 0 0 1 1.26 2.34c.27.9.45 1.89.45 2.97v.45c0 1.08-.18 2.07-.45 2.97a6.5 6.5 0 0 1-1.26 2.34c-.54.63-1.26 1.17-2.07 1.53-.81.36-1.71.54-2.7.54-.99 0-1.89-.18-2.61-.54-.81-.36-1.44-.9-2.07-1.53-.54-.63-.99-1.44-1.35-2.34-.27-.9-.45-1.89-.45-2.97l.09-.36zm1.53.45c0 .81.09 1.62.36 2.34.18.72.54 1.35.9 1.89.36.54.9.99 1.53 1.35.63.36 1.26.45 2.07.45.81 0 1.44-.18 2.07-.45.63-.36 1.08-.81 1.53-1.35.45-.54.72-1.26.9-1.89.18-.72.36-1.53.36-2.34v-.45c0-.81-.09-1.53-.36-2.25-.18-.72-.54-1.35-.9-1.89-.36-.54-.9-.99-1.53-1.35a4.18 4.18 0 0 0-2.07-.54c-.81 0-1.44.18-2.07.54-.63.36-1.08.81-1.53 1.35-.45.54-.72 1.26-.9 1.89-.18.72-.36 1.53-.36 2.25v.45zm-5.76-11.88c0-.27.09-.54.27-.81.18-.18.45-.36.81-.36.36 0 .63.09.81.36.18.18.27.45.27.81 0 .36-.09.54-.27.81-.18.18-.45.27-.81.27-.36 0-.63-.09-.81-.27-.18-.27-.36-.54-.27-.81zm.27 18.99h1.62V7.475h-1.62v14.76zm-14.94-7.56c0-1.17.09-2.16.36-3.06.27-.9.63-1.71 1.08-2.34.45-.63 1.08-1.17 1.8-1.53.72-.36 1.44-.54 2.34-.54.99 0 1.89.18 2.61.63s1.35.99 1.8 1.71v-8.28h1.62v20.88h-1.53l-.09-1.98c-.45.72-1.08 1.26-1.8 1.62-.72.36-1.62.63-2.7.63-.81 0-1.62-.18-2.34-.54-.72-.36-1.26-.9-1.71-1.53-.45-.63-.81-1.44-1.08-2.34-.27-.9-.36-1.89-.36-3.06v-.27zm1.62.36c0 .9.09 1.71.27 2.43a6 6 0 0 0 .81 1.89c.36.54.81.99 1.35 1.26s1.17.45 1.89.45c.54 0 1.08-.09 1.44-.18.45-.09.81-.36 1.17-.54.36-.27.63-.54.9-.81.27-.36.45-.72.63-1.08v-6.93c-.18-.36-.36-.72-.63-1.08-.45-.72-1.17-1.26-2.07-1.53-.45-.18-.99-.27-1.53-.27-.72 0-1.35.18-1.89.45-.54.36-.99.72-1.35 1.26-.36.54-.63 1.17-.81 1.98-.18.81-.27 1.62-.27 2.43.09-.09.09.27.09.27zm-5.67 5.31c-.45.63-1.08 1.26-1.8 1.53-.72.36-1.71.54-2.79.54-.72 0-1.35-.09-1.98-.27-.54-.18-1.08-.54-1.53-.99-.45-.45-.72-.99-.99-1.71s-.36-1.53-.36-2.61v-9.36h1.62v9.45c0 .81.09 1.44.27 1.98.18.54.45.99.72 1.26.27.27.63.54 1.08.72.45.18.81.18 1.26.18.63 0 1.17-.09 1.71-.18.45-.09.9-.36 1.26-.63s.63-.54.9-.9.45-.72.54-1.17V7.474h1.62v14.76h-1.53c.09 0 0-1.89 0-1.89zm-2.07-18.9h1.98l-3.06 3.78h-1.44l2.52-3.78zm-12.42 2.25v3.78h2.97v1.35h-2.97v9.81c0 .54.09.9.18 1.26.09.27.27.54.45.72.18.18.36.27.63.36.27.09.45.09.72.09.27 0 .45 0 .72-.09.18 0 .45-.09.63-.09l.09 1.35c-.27.09-.54.18-.81.18-.36 0-.63.09-.9.09-.45 0-.9-.09-1.26-.18s-.72-.36-.99-.63-.45-.72-.63-1.17c-.18-.45-.27-1.08-.27-1.8v-9.9h-2.7v-1.35h2.7v-3.78h1.44zm-6.57 14.76c0-.27-.09-.63-.18-.9s-.27-.54-.54-.81-.63-.54-1.17-.72c-.54-.27-1.17-.45-1.98-.63-.72-.18-1.44-.36-2.16-.63-.63-.27-1.17-.54-1.62-.81-.45-.27-.72-.72-.99-1.17-.18-.45-.36-.99-.36-1.53s.09-1.08.36-1.53c.27-.54.63-.9.99-1.26.45-.36.99-.63 1.62-.9.72-.27 1.44-.36 2.25-.36s1.62.09 2.25.36c.63.18 1.26.54 1.71.9.45.36.81.9 1.08 1.44.27.54.36 1.08.36 1.71h-1.62c0-.36-.09-.72-.27-1.08-.18-.36-.45-.72-.72-.99-.36-.27-.72-.54-1.17-.72-.45-.18-.99-.27-1.62-.27-.63 0-1.17.09-1.62.27-.45.18-.81.36-1.08.63-.27.18-.45.54-.63.81-.09.27-.18.63-.18.9 0 .36.09.63.18.9s.27.54.54.72c.27.27.63.45 1.17.63.54.18 1.17.36 1.98.54.9.18 1.62.45 2.25.72.63.27 1.17.54 1.53.9.45.36.72.72.9 1.17.18.45.27.99.27 1.53 0 .63-.09 1.17-.36 1.71s-.63.99-1.08 1.26c-.45.36-.99.63-1.71.81-.63.18-1.35.27-2.16.27-.9 0-1.71-.09-2.43-.36-.72-.27-1.26-.54-1.8-.99-.45-.36-.81-.9-1.08-1.44-.27-.54-.36-1.08-.36-1.62h1.71c0 .54.18 1.08.45 1.44.27.36.54.72.99.9.36.27.81.36 1.26.54.45.09.9.18 1.35.18.63 0 1.17-.09 1.62-.18.45-.09.81-.36 1.17-.54.36-.27.54-.54.72-.81.09-.27.18-.63.18-.99zm-11.97-5.76H1.62v8.1h10.44v1.44H0v-19.8h12.06v1.44H1.62v7.47h9.09v1.35zm128.61 26.819c0-.09 0-.27-.09-.36-.09-.09-.09-.27-.27-.36l-.54-.27-.81-.27-1.08-.27c-.27-.09-.54-.27-.81-.45l-.54-.54c-.09-.27-.18-.54-.18-.81s.09-.54.18-.81.27-.45.54-.63.54-.36.81-.45c.36-.09.72-.18 1.08-.18.45 0 .81.09 1.17.18.36.09.63.27.9.45.45.36.72.99.72 1.62h-1.26c0-.18 0-.27-.09-.45s-.18-.27-.27-.36c-.18-.09-.27-.18-.45-.27-.18-.09-.45-.09-.63-.09-.27 0-.45 0-.63.09s-.36.18-.45.27c-.09.09-.18.18-.27.36-.09.27-.09.54 0 .72l.27.27c.09.09.27.18.54.27.18.09.45.18.81.18.45.09.81.18 1.17.36.36.09.63.27.81.45.18.18.36.36.45.54.09.18.18.45.18.72 0 .27-.09.63-.18.9s-.36.45-.54.63c-.27.18-.54.36-.9.45-.36.09-.72.18-1.17.18-.45 0-.9-.09-1.26-.18s-.63-.27-.9-.54a1.4 1.4 0 0 1-.54-.72c-.09-.27-.18-.54-.18-.9h1.26c0 .27.09.45.18.63s.27.27.36.45c.18.09.36.18.54.18.18 0 .36.09.54.09.27 0 .45 0 .63-.09s.36-.09.45-.18c.09-.09.18-.18.27-.36.09-.18.18-.27.18-.45zm-10.98-1.62c0 .36 0 .72.09.99.09.36.18.63.36.81.18.27.36.45.63.54.27.18.54.18.9.18s.63-.09.9-.18c.27-.18.45-.36.63-.54.18-.27.27-.54.36-.81.09-.36.09-.63.09-.99v-.09c0-.36 0-.72-.09-.99s-.18-.54-.36-.81-.36-.45-.63-.54c-.27-.18-.54-.18-.9-.18s-.63.09-.9.18c-.27.18-.45.36-.63.54-.18.27-.27.54-.36.81-.09.36-.09.63-.09.99v.09zm-1.26-.09c0-.54.09-.99.27-1.44.18-.45.36-.81.63-1.17.27-.36.63-.54.99-.72.45-.18.9-.27 1.35-.27.54 0 .99.09 1.35.27.36.18.72.45.99.72.27.36.54.72.63 1.17.18.45.18.9.18 1.44v.18c0 .54-.09.99-.18 1.44-.18.45-.36.81-.63 1.17-.27.36-.63.54-.99.72-.45.18-.9.27-1.35.27-.45 0-.9-.09-1.35-.27-.36-.18-.72-.45-.99-.72-.27-.36-.54-.72-.63-1.17-.18-.45-.27-.99-.27-1.44v-.18zm-6.3.09c0 .36 0 .72.09.99s.18.63.36.81c.18.27.36.45.63.54.27.18.54.18.81.18.18 0 .45 0 .54-.09.36-.09.63-.27.81-.54.09-.09.18-.27.27-.45v-3.24c-.09-.18-.18-.27-.27-.36-.18-.27-.54-.45-.81-.54-.18-.09-.36-.09-.54-.09-.36 0-.63.09-.9.18-.27.18-.45.36-.63.54-.18.27-.27.54-.36.81-.09.27-.09.63-.09.99l.09.27zm-1.26-.09c0-.54.09-1.08.18-1.53.09-.45.36-.81.54-1.17.27-.36.54-.54.9-.72.36-.18.72-.27 1.17-.27.45 0 .81.09 1.17.18.36.18.63.36.81.63v-3.69h1.26v10.17h-1.08l-.09-.72c-.27.27-.54.54-.9.63-.36.18-.72.27-1.17.27-.45 0-.81-.09-1.17-.27-.36-.18-.63-.45-.9-.72a2.79 2.79 0 0 1-.54-1.17c-.18-.45-.18-.99-.18-1.44v-.18zm-4.68 2.7c.18 0 .45 0 .63-.09l.54-.27c.18-.09.27-.18.45-.36.09-.09.18-.27.27-.36v-1.44h-.99c-.72 0-1.26.09-1.62.36-.36.27-.54.54-.54.99 0 .18 0 .36.09.45.09.18.18.27.27.36.09.09.27.18.45.27.09 0 .27.09.45.09zm2.07.9c-.09-.09-.09-.18-.09-.36s-.09-.27-.09-.45l-.36.36c-.27.27-.63.36-.99.45-.18.09-.45.09-.63.09-.36 0-.72-.09-.99-.18a1.96 1.96 0 0 1-.72-.45c-.18-.18-.36-.45-.45-.63-.09-.27-.18-.54-.18-.81 0-.36.09-.72.18-.99.18-.27.36-.54.63-.72.27-.18.63-.36.99-.45.45-.09.9-.18 1.35-.18h1.17v-.54c0-.45-.09-.81-.36-.99-.27-.27-.63-.36-1.17-.36-.27 0-.45 0-.63.09s-.36.18-.45.27c-.09.09-.27.18-.27.36-.09.09-.09.27-.09.45h-1.26c0-.27.09-.54.18-.72.18-.27.36-.45.54-.72.27-.18.54-.36.9-.45.36-.09.72-.18 1.17-.18.36 0 .72.09 1.08.18.36.09.63.27.81.45.27.18.45.45.54.72.09.27.18.63.18 1.08v3.33c0 .27 0 .54.09.72 0 .27.09.54.18.72v-.09h-1.26zm-10.71-7.11v.9c.27-.36.54-.54.9-.72.36-.18.72-.27 1.17-.27.36 0 .63.09.9.18s.54.27.72.45c.18.18.36.45.45.81.09.36.18.72.18 1.17v4.59h-1.08v-4.68c0-.27 0-.54-.09-.72-.09-.18-.18-.36-.27-.45-.09-.09-.27-.18-.45-.27-.18-.09-.45-.09-.63-.09-.36 0-.72.09-1.08.36-.27.18-.54.45-.72.81v5.04h-1.26v-7.11h1.26zm-4.41-1.89c0-.18.09-.36.18-.54.09-.18.27-.18.54-.18s.45.09.54.18c.09.18.18.36.18.54 0 .18-.09.36-.18.45-.09.09-.27.18-.54.18s-.45-.09-.54-.18c-.18-.09-.18-.27-.18-.45zm0 9h1.26v-7.11h-1.26v7.11zm-4.23-.9c.45 0 .81-.18 1.17-.36.18-.09.27-.27.36-.45.09-.18.18-.36.18-.54h1.17c0 .36-.09.63-.27.9-.18.27-.36.54-.63.72-.54.45-1.26.72-1.98.72-.54 0-.99-.09-1.44-.27-.36-.18-.72-.45-.99-.81-.27-.36-.45-.72-.63-1.17-.09-.45-.18-.9-.18-1.35v-.27c0-.45.09-.9.18-1.35.09-.45.36-.81.63-1.17.27-.36.63-.54.99-.81.36-.18.9-.27 1.44-.27.45 0 .81.09 1.17.18.36.09.63.27.9.54s.45.54.54.81c.18.36.18.63.27.99h-1.17c0-.18-.09-.45-.18-.63-.18-.36-.45-.72-.9-.81-.18-.09-.45-.09-.63-.09-.36 0-.72.09-.9.18-.27.18-.45.36-.63.63s-.27.54-.36.81c-.09.27-.09.63-.09.9v.27c0 .36 0 .63.09.9s.18.54.36.81.36.45.63.63c.18.36.54.36.9.36zm-9.63-2.61c0 .36 0 .72.09.99.09.36.18.63.36.81.18.27.36.45.63.54.27.18.54.18.9.18s.63-.09.9-.18c.27-.18.45-.36.63-.54.18-.27.27-.54.36-.81.09-.36.09-.63.09-.99v-.09c0-.36 0-.72-.09-.99s-.18-.54-.36-.81-.36-.45-.63-.54c-.27-.18-.54-.18-.9-.18s-.63.09-.9.18c-.27.18-.45.36-.63.54-.18.27-.27.54-.36.81-.09.36-.09.63-.09.99v.09zm-1.26-.09c0-.54.09-.99.27-1.44.18-.45.36-.81.63-1.17.27-.36.63-.54.99-.72.45-.18.9-.27 1.35-.27.54 0 .99.09 1.35.27.36.18.72.45.99.72.27.36.54.72.63 1.17.18.45.18.9.18 1.44v.18c0 .54-.09.99-.18 1.44-.18.45-.36.81-.63 1.17-.27.36-.63.54-.99.72-.45.18-.9.27-1.35.27-.45 0-.9-.09-1.35-.27-.36-.18-.72-.45-.99-.72-.27-.36-.54-.72-.63-1.17-.18-.45-.27-.99-.27-1.44v-.18zm-.81-2.43c-.18 0-.36-.09-.63-.09-.45 0-.81.09-.99.27-.27.18-.45.45-.63.72v5.13h-1.17v-7.11h1.17v.81c.18-.27.45-.54.72-.72.27-.18.63-.27.99-.27h.27c.09 0 .18 0 .27.09v1.17zm-6.21-2.79v1.71H81v.9h-1.35v4.41c0 .18 0 .36.09.45 0 .09.09.18.18.27.09.09.18.09.27.09h.63c.09 0 .18 0 .27-.09v1.08c-.09 0-.18.09-.36.09s-.36.09-.54.09c-.18 0-.45 0-.63-.09s-.36-.18-.54-.36c-.18-.18-.27-.36-.36-.63-.09-.27-.09-.54-.09-.9v-4.41h-1.26v-.9h1.26v-1.71h1.08zm-6.57 7.92c.18 0 .45 0 .63-.09l.54-.27c.18-.09.27-.18.45-.36.09-.09.18-.27.27-.36v-1.44h-.99c-.72 0-1.26.09-1.62.36-.36.27-.72.45-.72.9 0 .18 0 .36.09.45.09.18.18.27.27.36.09.09.27.18.45.27.18.09.36.18.63.18zm1.98.9c-.09-.09-.09-.18-.09-.36s-.09-.27-.09-.45l-.36.36c-.27.27-.63.36-.99.45-.18.09-.45.09-.63.09-.36 0-.72-.09-.99-.18a1.96 1.96 0 0 1-.72-.45c-.18-.18-.36-.45-.45-.63-.09-.27-.18-.54-.18-.81 0-.36.09-.72.18-.99.18-.27.36-.54.63-.72.27-.18.63-.36.99-.45.45-.09.9-.18 1.35-.18h1.17v-.54c0-.45-.09-.81-.36-.99-.27-.27-.63-.36-1.17-.36-.27 0-.45 0-.63.09s-.36.18-.45.27c-.09.09-.27.18-.27.36-.09.09-.09.27-.09.45h-1.26c0-.27.09-.54.18-.72.09-.18.36-.45.54-.72.27-.18.54-.36.9-.45.36-.09.72-.18 1.17-.18.36 0 .72.09 1.08.18.36.09.63.27.81.45.27.18.45.45.54.72.09.27.18.63.18 1.08v3.33c0 .27 0 .54.09.72 0 .27.09.54.18.72v-.09h-1.26zm-7.2-3.6c0-.36 0-.72-.09-.99s-.18-.54-.36-.81-.36-.45-.63-.54c-.27-.18-.54-.18-.9-.18-.18 0-.36 0-.54.09-.36.09-.63.27-.81.54-.09.09-.18.27-.27.36v3.33c.09.18.18.27.27.36.09.09.27.18.36.27.18.09.27.18.45.18.18.09.36.09.54.09.36 0 .63-.09.81-.18.27-.18.45-.36.63-.54.18-.27.27-.54.36-.81.09-.27.09-.63.09-.99.09-.09.09-.18.09-.18zm1.26.09c0 .54-.09.99-.18 1.44-.09.45-.27.81-.54 1.17-.27.36-.54.54-.9.72-.36.18-.72.27-1.17.27-.45 0-.81-.09-1.17-.18-.36-.18-.63-.36-.9-.63v3.42H63v-9.9h1.08l.09.81c.27-.27.54-.54.9-.72.36-.18.72-.27 1.17-.27.45 0 .81.09 1.17.27.36.18.63.45.9.72.27.36.45.72.54 1.17.09.45.18.9.18 1.53.09.09.09.18.09.18zm-12.15 1.62c0-.09 0-.27-.09-.36-.09-.09-.09-.27-.27-.36l-.54-.27-.81-.27-1.08-.27c-.27-.09-.54-.27-.81-.45l-.54-.54c-.09-.27-.18-.54-.18-.81s.09-.54.18-.81.27-.45.54-.63.54-.36.81-.45c.36-.09.72-.18 1.08-.18.45 0 .81.09 1.17.18.36.09.63.27.9.45.45.36.72.99.72 1.62h-1.26c0-.18 0-.27-.09-.45s-.18-.27-.27-.36c-.18-.09-.27-.18-.45-.27-.18-.09-.45-.09-.63-.09-.27 0-.45 0-.63.09s-.36.18-.45.27c-.09.09-.18.18-.27.36-.09.27-.09.54 0 .72l.27.27c.09.09.27.18.54.27.18.09.45.18.81.18.45.09.81.18 1.17.36.36.09.63.27.81.45.18.18.36.36.45.54.09.18.18.45.18.72 0 .27-.09.63-.18.9s-.27.45-.54.63-.54.36-.9.45c-.36.09-.72.18-1.17.18-.45 0-.9-.09-1.26-.18s-.63-.27-.9-.54a1.4 1.4 0 0 1-.54-.72c-.09-.27-.18-.54-.18-.9h1.26c0 .27.09.45.18.63s.27.27.45.45c.18.09.36.18.54.18.18 0 .36.09.54.09.27 0 .45 0 .63-.09s.36-.09.45-.18c.09-.09.18-.18.27-.36 0-.18.09-.27.09-.45zm-10.98-1.62c0 .36 0 .72.09.99.09.36.18.63.36.81.18.27.36.45.63.54.27.18.54.18.9.18s.63-.09.9-.18c.27-.18.45-.36.63-.54.18-.27.27-.54.36-.81.09-.36.09-.63.09-.99v-.09c0-.36 0-.72-.09-.99s-.18-.54-.36-.81-.36-.45-.63-.54c-.27-.18-.54-.18-.9-.18s-.63.09-.9.18c-.27.18-.45.36-.63.54-.18.27-.27.54-.36.81-.09.36-.09.63-.09.99v.09zm-1.26-.09c0-.54.09-.99.27-1.44.18-.45.36-.81.63-1.17.27-.36.63-.54.99-.72.45-.18.9-.27 1.35-.27.54 0 .99.09 1.35.27.36.18.72.45.99.72.27.36.45.72.63 1.17.18.45.18.9.18 1.44v.18c0 .54-.09.99-.18 1.44-.18.45-.36.81-.63 1.17-.27.36-.63.54-.99.72-.45.18-.9.27-1.35.27-.45 0-.9-.09-1.35-.27-.36-.18-.72-.45-.99-.72-.27-.36-.54-.72-.63-1.17-.18-.45-.27-.99-.27-1.44v-.18zm-2.43-5.22v1.71h1.35v.9H42.3v4.41c0 .18 0 .36.09.45 0 .09.09.18.18.27.09.09.18.09.27.09h.63c.09 0 .18 0 .27-.09v1.08c-.09 0-.18.09-.36.09s-.36.09-.54.09c-.18 0-.45 0-.63-.09s-.36-.18-.54-.36c-.18-.18-.27-.36-.36-.63-.09-.27-.09-.54-.09-.9v-4.41h-1.26v-.9h1.26v-1.71h1.08zm-5.94 2.52c-.27 0-.45 0-.72.18-.18.09-.36.18-.54.36-.18.18-.27.36-.45.63-.09.27-.18.54-.18.9h3.6v-.09c0-.27-.09-.45-.09-.72-.09-.27-.18-.45-.27-.63-.18-.18-.27-.36-.54-.45-.27-.09-.54-.18-.81-.18zm.09 6.39c-.45 0-.9-.09-1.35-.27-.36-.18-.72-.45-.99-.72-.27-.36-.54-.72-.63-1.08-.18-.45-.27-.9-.27-1.35v-.27c0-.54.09-1.08.27-1.53.18-.45.36-.81.72-1.17.27-.27.63-.54.99-.72.36-.18.72-.27 1.17-.27.54 0 .99.09 1.35.27.36.18.63.45.9.72.27.27.45.72.54 1.08.09.45.18.9.18 1.35v.54h-4.86c0 .36.09.63.18.9s.27.54.45.72c.18.18.36.36.63.54.27.09.54.18.9.18.45 0 .81-.09 1.08-.27.27-.18.54-.45.81-.72l.72.54c-.09.18-.27.36-.45.54-.18.18-.36.27-.54.45-.27.18-.45.27-.72.27-.36.27-.72.36-1.08.27zm-6.21-9.09c0-.18.09-.36.18-.54.09-.18.27-.18.54-.18s.45.09.54.18c.09.18.18.36.18.54 0 .18-.09.36-.18.45-.09.09-.27.18-.54.18s-.45-.09-.54-.18c-.18-.09-.18-.27-.18-.45zm1.35 1.89v8.01c0 .63-.18 1.17-.45 1.53-.27.36-.81.54-1.44.54h-.36c-.09 0-.27-.09-.36-.09v-1.08h.54c.27 0 .45-.09.63-.18.18-.18.18-.36.18-.81v-8.01c0 .09 1.26.09 1.26.09zm-8.1 3.6c0 .36 0 .72.09.99.09.36.18.63.36.81.18.27.36.45.63.54.27.18.54.18.9.18s.63-.09.9-.18c.27-.18.45-.36.63-.54.18-.27.27-.54.36-.81.09-.36.09-.63.09-.99v-.09c0-.36 0-.72-.09-.99s-.18-.54-.36-.81-.36-.45-.63-.54c-.27-.18-.54-.18-.9-.18s-.63.09-.9.18c-.27.18-.45.36-.63.54-.18.27-.27.54-.36.81-.09.36-.09.63-.09.99v.09zm-1.17-.09c0-.54.09-.99.27-1.44.18-.45.36-.81.63-1.17.27-.36.63-.54.99-.72.45-.18.9-.27 1.35-.27.54 0 .99.09 1.35.27.36.18.72.45.99.72.27.36.54.72.63 1.17.18.45.18.9.18 1.44v.18c0 .54-.09.99-.18 1.44-.18.45-.36.81-.63 1.17-.27.36-.63.54-.99.72-.45.18-.9.27-1.35.27-.45 0-.9-.09-1.35-.27-.36-.18-.72-.45-.99-.72-.27-.36-.54-.72-.63-1.17-.18-.45-.27-.99-.27-1.44v-.18zm-.81-2.43c-.18 0-.36-.09-.63-.09-.45 0-.81.09-.99.27-.27.18-.45.45-.63.72v5.13H18v-7.11h1.17v.81c.18-.27.45-.54.72-.72.27-.18.63-.27.99-.27h.27c.09 0 .18 0 .27.09l.09 1.17zm-6.21 2.43c0-.36 0-.72-.09-.99s-.18-.54-.36-.81-.36-.45-.63-.54c-.27-.18-.54-.18-.9-.18-.18 0-.36 0-.54.09-.36.09-.63.27-.81.54-.09.09-.18.27-.27.36v3.33c.09.18.18.27.27.36.09.09.27.18.36.27.18.09.27.18.45.18.18.09.36.09.54.09.36 0 .63-.09.81-.18.27-.18.45-.36.63-.54.18-.27.27-.54.36-.81.09-.27.09-.63.09-.99.09-.09.09-.18.09-.18zm1.17.09c0 .54-.09.99-.18 1.44-.09.45-.27.81-.54 1.17-.27.36-.54.54-.9.72-.36.18-.72.27-1.17.27-.45 0-.81-.09-1.17-.18-.36-.18-.63-.36-.9-.63v3.42h-1.17v-9.9h1.08l.09.81c.27-.27.54-.54.9-.72.36-.18.72-.27 1.17-.27.45 0 .81.09 1.17.27.36.18.63.45.9.72.27.36.45.72.54 1.17.09.45.18.9.18 1.53v.18z"></path>
                                            <path fill="#E1181C" d="M163.8 6.035l.63 2.07-1.71-1.26-1.8 1.26.72-2.07-1.8-1.26H162l.63-2.07.63 2.07h2.16z"></path>
                                            <path fill="#3EAAE0" d="M163.8 13.055l.63 2.07-1.71-1.26-1.8 1.26.72-2.07-1.8-1.26H162l.63-2.07.63 2.07h2.16z"></path>
                                            <path fill="#020303" d="M163.8 19.985l.63 2.07-1.71-1.26-1.8 1.26.72-2.07-1.8-1.26H162l.63-2.07.63 2.07h2.16z"></path>
                                        </g></svg></a>
                                    </div>
                                </div><!-- Main -->
                                <div class="c-estudio-folha__main">
                                    <div class="c-estudio-folha__rotate">
                                        <div class="c-rotate-generic" data-rotate-generic="" data-rotate-generic-autoplay="5000" data-rotate-generic-effect="slider" data-rotate-generic-eldots=".js-estudio-folha__control-dots" data-rotate-generic-prev=".js-estudio-folha__control-prev" data-rotate-generic-next=".js-estudio-folha__control-next" data-rotate-generic-btnpause=".js-estudio-folha__control-pause" data-rotate-generic-labelpause="parar|retomar">
                                            <div class="c-rotate-generic__stage-outer">
                                                <button class="c-estudio-folha__control c-estudio-folha__control--prev js-estudio-folha__control-prev"><svg xmlns="https://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" class="icon icon--chevron-left icon--estudio-folha-control">
                                                <path d="M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z"></path></svg></button> <button class="c-estudio-folha__control c-estudio-folha__control--next js-estudio-folha__control-next"><svg xmlns="https://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" class="icon icon--chevron-right icon--estudio-folha-control">
                                                <path d="M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z"></path></svg></button>
                                                <div class="c-rotate-generic__stage js-rotate-generic__stage">
                                                    <div class="c-rotate-generic__item js-rotate-generic__item">
                                                        <div class="c-estudio-folha__content">
                                                            <div class="c-estudio-folha__image-main">
                                                                <a href="http://bit.ly/2Bs8WqO" class="c-estudio-folha__link"><img src="//f.i.uol.com.br/estudiofolha/images/1833840.jpeg" alt="" /></a>
                                                            </div><a href="http://bit.ly/2Bs8WqO" class="c-estudio-folha__link">
                                                            <p>
                                                                <b>Organização atende 250 crianças e oferece aulas de luta, dança e música</b>
                                                            </p><img src="//f.i.uol.com.br/estudiofolha/images/1734138.jpeg" class="c-estudio-folha__sponsored-logo" alt="" /></a>
                                                        </div>
                                                    </div>
                                                    <div class="c-rotate-generic__item js-rotate-generic__item">
                                                        <div class="c-estudio-folha__content">
                                                            <div class="c-estudio-folha__image-main">
                                                                <a href="http://bit.ly/2CjBeFA" class="c-estudio-folha__link"><img src="//f.i.uol.com.br/estudiofolha/images/1835239.jpeg" alt="" /></a>
                                                            </div><a href="http://bit.ly/2CjBeFA" class="c-estudio-folha__link">
                                                            <p>
                                                                <b>Saiba como planejar e cumprir suas metas em 2019</b>
                                                            </p><img src="//f.i.uol.com.br/estudiofolha/images/1833922.jpeg" class="c-estudio-folha__sponsored-logo" alt="" /></a>
                                                        </div>
                                                    </div>
                                                    <div class="c-rotate-generic__item js-rotate-generic__item">
                                                        <div class="c-estudio-folha__content">
                                                            <div class="c-estudio-folha__image-main">
                                                                <a href="http://bit.ly/2QPwX4R" class="c-estudio-folha__link"><img src="//f.i.uol.com.br/estudiofolha/images/1834842.jpeg" alt="" /></a>
                                                            </div><a href="http://bit.ly/2QPwX4R" class="c-estudio-folha__link">
                                                            <p>
                                                                <b>COE pode aumentar potencial de rendimentos sem risco de perder o dinheiro aplicado</b>
                                                            </p><img src="//f.i.uol.com.br/estudiofolha/images/1825615.jpeg" class="c-estudio-folha__sponsored-logo" alt="" /></a>
                                                        </div>
                                                    </div>
                                                    <div class="c-rotate-generic__item js-rotate-generic__item">
                                                        <div class="c-estudio-folha__content">
                                                            <div class="c-estudio-folha__image-main">
                                                                <a href="http://bit.ly/2QQE5he" class="c-estudio-folha__link"><img src="//f.i.uol.com.br/estudiofolha/images/1834816.jpeg" alt="" /></a>
                                                            </div><a href="http://bit.ly/2QQE5he" class="c-estudio-folha__link">
                                                            <p>
                                                                <b>Novas tendências de consumo apontam escolha por praticidade e segurança alimentar</b>
                                                            </p><img src="http://f.i.uol.com.br/estudiofolha/images/1832651.jpeg" class="c-estudio-folha__sponsored-logo" alt="" /></a>
                                                        </div>
                                                    </div>
                                                    <div class="c-rotate-generic__item js-rotate-generic__item">
                                                        <div class="c-estudio-folha__content">
                                                            <div class="c-estudio-folha__image-main">
                                                                <a href="http://bit.ly/2Phy4VR" class="c-estudio-folha__link"><img src="//f.i.uol.com.br/estudiofolha/images/1834518.jpeg" alt="" /></a>
                                                            </div><a href="http://bit.ly/2Phy4VR" class="c-estudio-folha__link">
                                                            <p>
                                                                <b>Banco do Brasil lança app que auxilia produtores rurais</b>
                                                            </p><img src="https://f.i.uol.com.br/estudiofolha/images/1833351.jpeg" class="c-estudio-folha__sponsored-logo" alt="" /></a>
                                                        </div>
                                                    </div>
                                                    <div class="c-rotate-generic__item js-rotate-generic__item">
                                                        <div class="c-estudio-folha__content">
                                                            <div class="c-estudio-folha__image-main">
                                                                <a href="http://bit.ly/2EpMFxJ" class="c-estudio-folha__link"><img src="//f.i.uol.com.br/estudiofolha/images/183514.jpeg" alt="" /></a>
                                                            </div><a href="http://bit.ly/2EpMFxJ" class="c-estudio-folha__link">
                                                            <p>
                                                                <b>Aplicação pouco conhecida, COE pode garantir ganhos maiores com capital protegido</b>
                                                            </p><img src="//f.i.uol.com.br/estudiofolha/images/1825615.jpeg" class="c-estudio-folha__sponsored-logo" alt="" /></a>
                                                        </div>
                                                    </div>
                                                    <div class="c-rotate-generic__item js-rotate-generic__item">
                                                        <div class="c-estudio-folha__content">
                                                            <div class="c-estudio-folha__image-main">
                                                                <a href="http://bit.ly/2ry3b6k" class="c-estudio-folha__link"><img src="//f.i.uol.com.br/estudiofolha/images/1834519.jpeg" alt="" /></a>
                                                            </div><a href="http://bit.ly/2ry3b6k" class="c-estudio-folha__link">
                                                            <p>
                                                                <b>Projetos premiados trabalham a relação tributos e cidadania</b>
                                                            </p><img src="http://f.i.uol.com.br/estudiofolha/images/1832722.jpeg" class="c-estudio-folha__sponsored-logo" alt="" /></a>
                                                        </div>
                                                    </div>
                                                    <div class="c-rotate-generic__item js-rotate-generic__item">
                                                        <div class="c-estudio-folha__content">
                                                            <div class="c-estudio-folha__image-main">
                                                                <a href="http://bit.ly/2Aj1pKp" class="c-estudio-folha__link"><img src="//f.i.uol.com.br/estudiofolha/images/1832742.jpeg" alt="" /></a>
                                                            </div><a href="http://bit.ly/2Aj1pKp" class="c-estudio-folha__link">
                                                            <p>
                                                                <b>Estímulo à inovação gera interesse estrangeiro no setor aéreo nacional</b>
                                                            </p><img src="//f.i.uol.com.br/estudiofolha/images/1829216.jpeg" class="c-estudio-folha__sponsored-logo" alt="" /></a>
                                                        </div>
                                                    </div>
                                                    <div class="c-rotate-generic__item js-rotate-generic__item">
                                                        <div class="c-estudio-folha__content">
                                                            <div class="c-estudio-folha__image-main">
                                                                <a href="http://bit.ly/2KJ4yb3" class="c-estudio-folha__link"><img src="//f.i.uol.com.br/estudiofolha/images/1834516.jpeg" alt="" /></a>
                                                            </div><a href="http://bit.ly/2KJ4yb3" class="c-estudio-folha__link">
                                                            <p>
                                                                <b>Programa TAP Miles&amp;Go otimiza tempo de seus passageiros e agiliza viagem</b>
                                                            </p><img src="https://f.i.uol.com.br/estudiofolha/images/1831142.jpeg" class="c-estudio-folha__sponsored-logo" alt="" /></a>
                                                        </div>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div><!-- Footer -->
                                <div class="c-estudio-folha__footer">
                                    <div class="c-estudio-folha__dots js-estudio-folha__control-dots"></div>
                                    <div class="c-estudio-folha__pause">
                                        <button class="js-estudio-folha__control-pause">parar</button>
                                    </div>
                                </div>
                            </div><!--// -->
                            <div class="c-advertising c-advertising--300x250" data-sticky="">
                                <div id="banner-300x250-2-area" class="c-advertising__banner-area"></div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <div class="block t-soft u-no-print">
                <div class="container">
                    <div class="c-most-read">
                        <div class="c-most-read__head">
                            <h2 class="c-most-read__title c-section-title">
                                Mais lidas <span class="c-most-read__section c-section-title__thin">em Esporte</span>
                            </h2><a href="//www1.folha.uol.com.br/maispopulares/" class="c-button c-most-read__see-more" title="Ver todas matérias mais lidas">Ver todas</a>
                        </div>
                        <ol class="c-most-read__list">
                            <li>
                                <a href="https://www1.folha.uol.com.br/esporte/2018/12/fenomeno-do-basquete-dos-eua-refutou-futebol-americano-e-deve-chegar-a-nba.shtml">Fenômeno do basquete dos EUA refutou futebol americano e deve chegar à NBA</a>
                            </li>
                            <li>
                                <a href="https://www1.folha.uol.com.br/esporte/2018/12/secretario-de-esportes-e-bem-relacionado-com-militares-e-cupula-do-governo.shtml">Militar irá comandar secretaria de esporte do governo Bolsonaro</a>
                            </li>
                            <li>
                                <a href="https://www1.folha.uol.com.br/esporte/2018/12/globo-muda-horario-e-rodadas-de-quarta-no-futebol-brasileiro-serao-as-21h30.shtml">Globo muda horário, e rodada de quarta no futebol brasileiro será às 21h30</a>
                            </li>
                            <li>
                                <a href="https://www1.folha.uol.com.br/esporte/2018/12/ana-marcela-ve-toquio-20-como-ultima-chance-e-diz-temer-intolerancia-sexual.shtml">Ana Marcela vê Tóquio-20 como última chance e diz temer intolerância sexual</a>
                            </li>
                            <li>
                                <a href="https://www1.folha.uol.com.br/esporte/2018/12/quem-e-o-al-ain-time-que-desbancou-o-river-plate-no-mundial-de-clubes.shtml">Quem é o Al Ain, time que desbancou o River Plate no Mundial de Clubes</a>
                            </li>
                        </ol>
                    </div>
                </div>
            </div>
            <div class="block u-no-print">
                <div class="container">
                    <div class="flex flex--gutter flex--col flex--md-row">
                        <div class="flex-cell">
                            <h4 class="c-section-title c-section-title--brand">
                                Principais do dia
                            </h4>
                            <div class="c-headline c-headline--newslist">
                                <div class="c-headline__media-wrapper">
                                    <a href="https://www1.folha.uol.com.br/cotidiano/2018/12/covas-quebra-promessa-de-doria-e-preve-dinheiro-de-privatizacao-na-previdencia.shtml"><img class="c-headline__image" src="https://f.i.uol.com.br/fotografia/2018/04/06/15230315615ac79e095b8f3_1523031561_3x2_sm.jpg" alt="Covas quebra promessa de Doria e prevê dinheiro de privatização na previdência" /></a>
                                </div>
                                <div class="c-headline__wrapper">
                                    <div class="c-headline__head">
                                        <h3 class="c-headline__kicker c-kicker">
                                            <a href="http://www1.folha.uol.com.br/folha-topicos/joao-doria">João Doria</a>
                                        </h3>
                                        <div data-modal-drop="" data-qty-collumn="3.4" class="c-modal-drop">
                                            <button data-trigger="" type="button" name="button" class="c-headline__action"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="24" height="24" class="icon icon--share" aria-hidden="true">
                                            <path d="m 12.818311,11.294921 c 1.280064,0 2.333667,1.054406 2.333667,2.333668 0,1.279261 -1.054406,2.371411 -2.333667,2.371411 -1.279262,0 -2.333668,-1.09215 -2.333668,-2.371411 0,-0.187915 0,-0.377435 0.03774,-0.526802 L 4.8407964,9.789199 A 2.4252158,2.4252158 0 0 1 0.772537,8.020076 2.4252158,2.4252158 0 0 1 4.8383872,6.250954 L 10.48384,2.9761092 A 2.8974102,2.8974102 0 0 1 10.40915,2.4091547 C 10.40915,1.0921502 11.5013,0 12.818304,0 c 1.317008,0 2.409159,1.0921502 2.409159,2.4091547 0,1.3170047 -1.092151,2.4091553 -2.409155,2.4091553 -0.640032,0 -1.204577,-0.263401 -1.656695,-0.677776 L 5.5161598,7.453925 c 0.036941,0.187914 0.074684,0.377434 0.074684,0.564545 0,0.187111 -0.037744,0.377434 -0.075486,0.562137 l 5.7217422,3.31339 c 0.417587,-0.377434 0.979724,-0.602289 1.582012,-0.602289 z"></path></svg> <span class="u-visually-hidden">Compartilhar</span></button>
                                            <div aria-hidden="true" data-content="" class="c-modal-drop__content c-modal-drop__content--no-padding">
                                                <div class="c-modal-drop__controls u-hidden-md">
                                                    <button data-close="" class="c-modal-drop__close"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="24" height="24" class="icon icon--close icon--tiny" aria-hidden="true">
                                                    <path d="M16 1.61L14.39 0 8 6.39 1.61 0 0 1.61 6.39 8 0 14.39 1.61 16 8 9.61 14.39 16 16 14.39 9.61 8z"></path></svg></button>
                                                </div>
                                                <div class="c-tools-share--larger">
                                                    <ul class="c-tools-share__list" data-sharebar-utm-campaign-prefix="comp" data-sharebar-buttons="facebook whatsapp twitter messenger googlePlus linkedIn pinterest rss email" data-triggered-byclick=".c-modal-drop [data-trigger]" data-sharebar-url="https://www1.folha.uol.com.br/cotidiano/2018/12/covas-quebra-promessa-de-doria-e-preve-dinheiro-de-privatizacao-na-previdencia.shtml" data-sharebar-text="Covas quebra promessa de Doria e prevê dinheiro de privatização na previdência" data-sharebar-channel="cotidiano"></ul>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="c-headline__content">
                                        <a href="https://www1.folha.uol.com.br/cotidiano/2018/12/covas-quebra-promessa-de-doria-e-preve-dinheiro-de-privatizacao-na-previdencia.shtml">
                                        <h2 class="c-headline__title">
                                            Covas quebra promessa de Doria e prevê dinheiro de privatização na previdência
                                        </h2>
                                        <p class="c-headline__standfirst">
                                            Atual gestão tucana em São Paulo havia prometido usar venda de equipamentos na área social
                                        </p><time class="c-headline__dateline" itemprop="datePublished" datetime="2018-12-21 10:55:00">21.dez.2018 às 10h55</time></a>
                                    </div>
                                </div>
                            </div>
                            <div class="c-headline c-headline--newslist">
                                <div class="c-headline__media-wrapper">
                                    <a href="https://www1.folha.uol.com.br/poder/2018/12/pela-primeira-vez-na-republica-ministerio-excluira-norte-e-nordeste.shtml"><img class="c-headline__image" src="https://f.i.uol.com.br/fotografia/2018/12/19/15452261445c1a47a062deb_1545226144_3x2_sm.jpg" alt="Pela primeira vez na República, ministério que toma posse excluirá Norte e Nordeste" /></a>
                                </div>
                                <div class="c-headline__wrapper">
                                    <div class="c-headline__head">
                                        <h3 class="c-headline__kicker c-kicker">
                                            <a href="https://www1.folha.uol.com.br/especial/2018/governo-bolsonaro">Governo Bolsonaro</a>
                                        </h3>
                                        <div data-modal-drop="" data-qty-collumn="3.4" class="c-modal-drop">
                                            <button data-trigger="" type="button" name="button" class="c-headline__action"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="24" height="24" class="icon icon--share" aria-hidden="true">
                                            <path d="m 12.818311,11.294921 c 1.280064,0 2.333667,1.054406 2.333667,2.333668 0,1.279261 -1.054406,2.371411 -2.333667,2.371411 -1.279262,0 -2.333668,-1.09215 -2.333668,-2.371411 0,-0.187915 0,-0.377435 0.03774,-0.526802 L 4.8407964,9.789199 A 2.4252158,2.4252158 0 0 1 0.772537,8.020076 2.4252158,2.4252158 0 0 1 4.8383872,6.250954 L 10.48384,2.9761092 A 2.8974102,2.8974102 0 0 1 10.40915,2.4091547 C 10.40915,1.0921502 11.5013,0 12.818304,0 c 1.317008,0 2.409159,1.0921502 2.409159,2.4091547 0,1.3170047 -1.092151,2.4091553 -2.409155,2.4091553 -0.640032,0 -1.204577,-0.263401 -1.656695,-0.677776 L 5.5161598,7.453925 c 0.036941,0.187914 0.074684,0.377434 0.074684,0.564545 0,0.187111 -0.037744,0.377434 -0.075486,0.562137 l 5.7217422,3.31339 c 0.417587,-0.377434 0.979724,-0.602289 1.582012,-0.602289 z"></path></svg> <span class="u-visually-hidden">Compartilhar</span></button>
                                            <div aria-hidden="true" data-content="" class="c-modal-drop__content c-modal-drop__content--no-padding">
                                                <div class="c-modal-drop__controls u-hidden-md">
                                                    <button data-close="" class="c-modal-drop__close"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="24" height="24" class="icon icon--close icon--tiny" aria-hidden="true">
                                                    <path d="M16 1.61L14.39 0 8 6.39 1.61 0 0 1.61 6.39 8 0 14.39 1.61 16 8 9.61 14.39 16 16 14.39 9.61 8z"></path></svg></button>
                                                </div>
                                                <div class="c-tools-share--larger">
                                                    <ul class="c-tools-share__list" data-sharebar-utm-campaign-prefix="comp" data-sharebar-buttons="facebook whatsapp twitter messenger googlePlus linkedIn pinterest rss email" data-triggered-byclick=".c-modal-drop [data-trigger]" data-sharebar-url="https://www1.folha.uol.com.br/poder/2018/12/pela-primeira-vez-na-republica-ministerio-excluira-norte-e-nordeste.shtml" data-sharebar-text="Pela primeira vez na República, ministério que toma posse excluirá Norte e Nordeste" data-sharebar-channel="poder"></ul>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="c-headline__content">
                                        <a href="https://www1.folha.uol.com.br/poder/2018/12/pela-primeira-vez-na-republica-ministerio-excluira-norte-e-nordeste.shtml">
                                        <h2 class="c-headline__title">
                                            Pela primeira vez na República, ministério que toma posse excluirá Norte e Nordeste
                                        </h2>
                                        <p class="c-headline__standfirst">
                                            No primeiro escalão, há 11 integrantes do Sudeste, 8 do Sul, 2 do Centro-Oeste e 1 colombiano
                                        </p><time class="c-headline__dateline" itemprop="datePublished" datetime="2018-12-21 12:00:00">21.dez.2018 às 12h00</time></a>
                                    </div>
                                </div>
                            </div>
                            <div class="c-headline c-headline--newslist">
                                <div class="c-headline__media-wrapper">
                                    <a href="https://www1.folha.uol.com.br/colunas/reinaldoazevedo/2018/12/torcam-para-que-bolsonaro-consiga-modernizar-guedes.shtml"><img class="c-headline__image" src="https://f.i.uol.com.br/fotografia/2018/11/29/15435040395c0000a79a59e_1543504039_3x2_sm.jpg" alt="Torçam para que Bolsonaro consiga modernizar Guedes" /></a>
                                </div>
                                <div class="c-headline__wrapper">
                                    <div class="c-headline__head">
                                        <div data-modal-drop="" data-qty-collumn="3.4" class="c-modal-drop">
                                            <button data-trigger="" type="button" name="button" class="c-headline__action"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="24" height="24" class="icon icon--share" aria-hidden="true">
                                            <path d="m 12.818311,11.294921 c 1.280064,0 2.333667,1.054406 2.333667,2.333668 0,1.279261 -1.054406,2.371411 -2.333667,2.371411 -1.279262,0 -2.333668,-1.09215 -2.333668,-2.371411 0,-0.187915 0,-0.377435 0.03774,-0.526802 L 4.8407964,9.789199 A 2.4252158,2.4252158 0 0 1 0.772537,8.020076 2.4252158,2.4252158 0 0 1 4.8383872,6.250954 L 10.48384,2.9761092 A 2.8974102,2.8974102 0 0 1 10.40915,2.4091547 C 10.40915,1.0921502 11.5013,0 12.818304,0 c 1.317008,0 2.409159,1.0921502 2.409159,2.4091547 0,1.3170047 -1.092151,2.4091553 -2.409155,2.4091553 -0.640032,0 -1.204577,-0.263401 -1.656695,-0.677776 L 5.5161598,7.453925 c 0.036941,0.187914 0.074684,0.377434 0.074684,0.564545 0,0.187111 -0.037744,0.377434 -0.075486,0.562137 l 5.7217422,3.31339 c 0.417587,-0.377434 0.979724,-0.602289 1.582012,-0.602289 z"></path></svg> <span class="u-visually-hidden">Compartilhar</span></button>
                                            <div aria-hidden="true" data-content="" class="c-modal-drop__content c-modal-drop__content--no-padding">
                                                <div class="c-modal-drop__controls u-hidden-md">
                                                    <button data-close="" class="c-modal-drop__close"><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="24" height="24" class="icon icon--close icon--tiny" aria-hidden="true">
                                                    <path d="M16 1.61L14.39 0 8 6.39 1.61 0 0 1.61 6.39 8 0 14.39 1.61 16 8 9.61 14.39 16 16 14.39 9.61 8z"></path></svg></button>
                                                </div>
                                                <div class="c-tools-share--larger">
                                                    <ul class="c-tools-share__list" data-sharebar-utm-campaign-prefix="comp" data-sharebar-buttons="facebook whatsapp twitter messenger googlePlus linkedIn pinterest rss email" data-triggered-byclick=".c-modal-drop [data-trigger]" data-sharebar-url="https://www1.folha.uol.com.br/colunas/reinaldoazevedo/2018/12/torcam-para-que-bolsonaro-consiga-modernizar-guedes.shtml" data-sharebar-text="Torçam para que Bolsonaro consiga modernizar Guedes" data-sharebar-channel="colunistas-reinaldo-azevedo"></ul>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="c-headline__content">
                                        <a href="https://www1.folha.uol.com.br/colunas/reinaldoazevedo/2018/12/torcam-para-que-bolsonaro-consiga-modernizar-guedes.shtml">
                                        <h2 class="c-headline__title">
                                            Torçam para que Bolsonaro consiga modernizar Guedes
                                        </h2>
                                        <p class="c-headline__standfirst">
                                            Ou o presidente vira o conselheiro do ministro da Economia ou a nau afunda
                                        </p><time class="c-headline__dateline" itemprop="datePublished" datetime="2018-12-21 02:00:00">21.dez.2018 às 2h00</time></a>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="col-fixed col-fixed--md-300">
                            <div class="c-advertising c-advertising--300x600">
                                <div id="banner-300x600-2-area" class="c-advertising__banner-area"></div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <div class="block">
                <div class="container">
                    <div class="c-advertising">
                        <div id="banner-970x250-area-2" class="c-advertising__banner-area"></div>
                    </div>
                </div>
            </div>
        </main>
        <footer id="rodape" class="l-footer u-no-print">
            <div class="block">
                <div class="container">
                    <div class="l-footer__head">
                        <svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 190 20" version="1.1" class="logo-folha logo-small" aria-hidden="true">
                        <g>
                            <g transform="translate(183.000000, 0.000000)">
                                <polygon class="brand-stars-red" points="4.26167491 3.62184038 4.98484067 5.86503408 3.07913972 4.47605581 1.17343877 5.86503408 1.90570095 3.62184038 0 2.24236717 2.35638744 2.24236717 3.07913972 1.77635684e-15 3.8114019 2.24236717 6.16778933 2.24236717"></polygon>
                                <polygon class="brand-stars-blue" points="4.26167491 10.2195905 4.98484067 12.4627842 3.07913972 11.0738059 1.17343877 12.4627842 1.90570095 10.2195905 -7.10542736e-15 8.84011725 2.35638744 8.84011725 3.07913972 6.59775008 3.8114019 8.84011725 6.16778933 8.84011725"></polygon>
                                <polygon class="brand-stars-dark" points="4.26167491 17.4558325 4.98484067 19.6990262 3.07913972 18.3100479 1.17343877 19.6990262 1.90570095 17.4558325 0 16.0763593 2.35638744 16.0763593 3.07913972 13.8339921 3.8114019 16.0763593 6.16778933 16.0763593"></polygon>
                            </g>
                            <g>
                                <path d="M102.802445,0 C104.083325,0 105.221884,0.0949034745 106.336724,0.332162161 L106.336724,5.36204631 L105.411644,5.36204631 L104.510285,1.6608108 C103.869845,1.49472972 103.490325,1.44727799 102.802445,1.44727799 C101.236926,1.44727799 100.359286,2.30140926 100.359286,3.44025095 C100.359286,7.47364862 107.143204,7.09403472 107.143204,13.0966795 C107.143204,16.4183011 104.723764,19.1942277 100.904846,19.1942277 C99.2681663,19.1942277 97.9635668,18.9806949 96.9673271,18.6248069 L96.9673271,13.5711969 L97.9635668,13.5711969 L98.7700465,17.1775289 C99.5765262,17.6283204 100.501606,17.7469497 101.450406,17.7469497 C102.897325,17.7469497 103.869845,16.7030115 103.869845,15.4929922 C103.869845,11.1037065 96.8961672,11.0562548 96.9436071,5.50440152 C96.9436071,2.15905405 99.4342063,0 102.802445,0 L102.802445,0 Z M0.023719992,1.16256756 L0.023719992,0.284710424 L11.1721162,0.284710424 L11.1721162,5.76538608 L10.2470365,5.76538608 L8.70523705,1.54218146 L5.64535809,1.54218146 L5.64535809,8.94465247 L8.04107727,8.94465247 L8.58663709,6.64324322 L9.51171678,6.64324322 L9.51171678,12.6696138 L8.58663709,12.6696138 L8.04107727,10.2021235 L5.64535809,10.2021235 L5.64535809,17.6520463 L7.85131734,18.055386 L7.85131734,18.9095173 L2.84217094e-14,18.9095173 L2.84217094e-14,18.055386 L1.7552794,17.6520463 L1.7552794,1.49472972 L0.023719992,1.16256756 Z M118.69484,11.2935135 L117.2242,11.2935135 L117.2242,17.6520463 L119.33528,18.055386 L119.33528,18.9095173 L111.602562,18.9095173 L111.602562,18.055386 L113.334122,17.6520463 L113.334122,1.49472972 L111.626282,1.16256756 L111.626282,0.284710424 L118.90832,0.284710424 C121.968199,0.284710424 124.031838,1.47100386 124.031838,5.81283781 C124.031838,9.13445942 122.347719,11.2935135 118.69484,11.2935135 L118.69484,11.2935135 Z M117.2242,10.0597683 L117.91208,10.0597683 C119.16924,10.0597683 119.904559,9.20563703 119.904559,5.76538608 C119.904559,2.34886099 119.38272,1.54218146 117.95952,1.54218146 L117.2242,1.54218146 L117.2242,10.0597683 Z M158.757906,10.6291891 C158.757906,4.60281851 161.414545,2.25395752 165.209744,2.25395752 C169.550503,2.25395752 171.376942,4.93498067 171.376942,10.7952702 C171.376942,16.7504633 168.696583,19.1942277 164.948824,19.1942277 C160.584346,19.1942277 158.757906,16.5132046 158.757906,10.6291891 L158.757906,10.6291891 Z M12.2157959,10.652915 C12.2157959,4.65027025 14.848715,2.30140926 18.6439137,2.30140926 C23.0083922,2.30140926 24.7636716,4.95870654 24.7636716,10.8189961 C24.7636716,16.7741891 22.1307525,19.1942277 18.3355538,19.1942277 C13.9947953,19.1942277 12.2157959,16.5369304 12.2157959,10.652915 L12.2157959,10.652915 Z M54.6271415,18.9095173 L50.4287029,18.9095173 L50.4287029,18.1740154 L51.6384225,17.8418532 L55.6233811,2.53866794 L57.6870204,2.53866794 L62.2886989,17.8418532 L63.5221385,18.1740154 L63.5221385,18.9095173 L57.1651806,18.9095173 L57.1651806,18.1740154 L58.6358201,17.8418532 L57.3549406,13.9270849 L53.8918217,13.9270849 L52.990462,17.8418532 L54.6271415,18.1740154 L54.6271415,18.9095173 Z M127.091717,18.9095173 L122.703518,18.9095173 L122.703518,18.1740154 L124.055558,17.8418532 L128.040517,2.53866794 L130.151596,2.53866794 L134.753274,17.8418532 L136.129034,18.1740154 L136.129034,18.9095173 L129.653476,18.9095173 L129.653476,18.1740154 L131.100396,17.8418532 L129.795796,13.9270849 L126.285237,13.9270849 L125.407597,17.8418532 L127.091717,18.1740154 L127.091717,18.9095173 Z M35.295348,18.9095173 L25.7599113,18.9095173 L25.7599113,18.1740154 L27.1831108,17.8418532 L27.1831108,3.60633203 L25.8310712,3.34534748 L25.8310712,2.58611968 L32.1168691,2.58611968 L32.1168691,3.34534748 L30.6462296,3.60633203 L30.6462296,17.7944015 L33.2079887,17.7944015 L34.5600283,13.9745366 L35.295348,13.9745366 L35.295348,18.9095173 Z M36.2678677,3.34534748 L36.2678677,2.58611968 L42.2453057,2.58611968 L42.2453057,3.34534748 L41.0593061,3.60633203 L41.0593061,10.2733011 L44.6647449,10.2733011 L44.6647449,3.60633203 L43.5499052,3.34534748 L43.5499052,2.58611968 L49.3850233,2.58611968 L49.3850233,3.34534748 L48.1515837,3.60633203 L48.1515837,17.8418532 L49.5036232,18.1740154 L49.5036232,18.9095173 L43.5499052,18.9095173 L43.5499052,18.1740154 L44.6647449,17.8418532 L44.6647449,11.3884169 L41.0593061,11.3884169 L41.0593061,17.8418532 L42.2453057,18.1740154 L42.2453057,18.9095173 L36.2678677,18.9095173 L36.2678677,18.1740154 L37.6199072,17.8418532 L37.6199072,3.65378377 L36.2678677,3.34534748 Z M80.1261328,11.008803 C80.1261328,16.7504633 77.4457737,18.9095173 74.1961348,18.9095173 L67.839177,18.9095173 L67.839177,18.1740154 L69.1200566,17.8418532 L69.1200566,3.60633203 L67.839177,3.34534748 L67.839177,2.58611968 L73.864055,2.58611968 C77.9201736,2.58611968 80.1261328,4.53164091 80.1261328,11.008803 L80.1261328,11.008803 Z M86.1272908,17.7944015 L89.2346097,17.7944015 L90.5392093,14.1643436 L91.369409,14.1643436 L91.369409,18.9095173 L81.1223725,18.9095173 L81.1223725,18.1740154 L82.640452,17.8418532 L82.640452,3.60633203 L81.1460925,3.34534748 L81.1460925,2.58611968 L90.8475692,2.58611968 L90.8475692,7.30756754 L90.0410895,7.30756754 L88.7127699,3.65378377 L86.1272908,3.65378377 L86.1272908,10.1783976 L88.1672101,10.1783976 L88.7127699,8.16169881 L89.4480897,8.16169881 L89.4480897,13.4762934 L88.7127699,13.4762934 L88.1672101,11.2935135 L86.1272908,11.2935135 L86.1272908,17.7944015 Z M135.464874,3.34534748 L135.464874,2.58611968 L141.726952,2.58611968 L141.726952,3.34534748 L140.280032,3.60633203 L140.280032,15.1371042 C140.280032,17.2724324 140.801872,18.2689188 142.343672,18.2689188 C144.454751,18.2689188 145.118911,17.0114478 145.118911,14.6625868 L145.118911,3.60633203 L143.719431,3.34534748 L143.719431,2.58611968 L147.49091,2.58611968 L147.49091,3.34534748 L146.21003,3.60633203 L146.21003,14.8998455 C146.21003,18.0791119 144.644511,19.4314864 141.442312,19.4077605 C137.765713,19.3840347 136.793194,17.9604826 136.793194,14.1643436 L136.793194,3.60633203 L135.464874,3.34534748 Z M157.880266,18.9095173 L148.48715,18.9095173 L148.48715,18.1740154 L149.910349,17.8418532 L149.910349,3.60633203 L148.58203,3.34534748 L148.58203,2.58611968 L154.844108,2.58611968 L154.844108,3.34534748 L153.397188,3.60633203 L153.397188,17.7944015 L155.745467,17.7944015 L157.097507,13.9745366 L157.880266,13.9745366 L157.880266,18.9095173 Z M167.652903,10.842722 C167.652903,4.22320462 166.514344,3.20299226 165.186024,3.20299226 C163.857704,3.20299226 162.505665,4.0808494 162.505665,10.6054633 C162.505665,17.2012548 163.644225,18.2689188 164.996264,18.2689188 C166.324584,18.2689188 167.652903,17.3198841 167.652903,10.842722 L167.652903,10.842722 Z M21.0870729,10.8664478 C21.0870729,4.24693048 19.9247932,3.250444 18.5727537,3.250444 C17.1969942,3.250444 15.8686746,4.10457527 15.8686746,10.6291891 C15.8686746,17.2249806 17.0546742,18.2689188 18.4067138,18.2689188 C19.7350333,18.2689188 21.0870729,17.3673358 21.0870729,10.8664478 L21.0870729,10.8664478 Z M72.7729353,17.7944015 L73.792895,17.7944015 C75.7142143,17.7944015 76.615574,16.7504633 76.615574,10.7952702 C76.615574,4.72144786 75.5718944,3.65378377 73.721735,3.65378377 L72.7729353,3.65378377 L72.7729353,17.7944015 Z M55.4573412,7.59227796 L54.1527416,12.8119691 L57.0465807,12.8119691 L55.4573412,7.59227796 Z M127.898197,7.59227796 L126.617317,12.8119691 L129.463716,12.8119691 L127.898197,7.59227796 Z M108.874763,15.6590733 C109.752403,15.6590733 110.487723,16.442027 110.487723,17.4147876 C110.487723,18.4112741 109.704963,19.1942277 108.827323,19.1942277 C107.997123,19.1942277 107.214364,18.4112741 107.214364,17.4147876 C107.214364,16.442027 108.044563,15.6590733 108.874763,15.6590733 L108.874763,15.6590733 Z"></path>
                            </g>
                        </g></svg> <span class="u-sr-only">Folha de S.Paulo</span> <a href="//secure.folha.com.br/folha?gid=FOL" class="l-footer__link l-footer__link--attention" title="Assine a Folha" rel="external">Assine</a> <a href="#top" class="l-footer__link l-footer__link--back-to-top"><span>Topo</span> <svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 24 24" width="24" height="24" class="icon icon--chevron-up" aria-hidden="true">
                        <path d="M 17.75,14.199375 16.39875,15.550625 12,11.161458 7.60125,15.550625 6.25,14.199375 l 5.75,-5.75 5.75,5.75 z"></path></svg></a>
                    </div>
                    <div class="l-footer__content">
                        <div class="row">
                            <div class="col col--xs-1-1 col--sm-1-1 u-visible-md col--md-3-4">
                                <div class="row">
                                    <div class="col col--xs-1-1 col--sm-1-1 col--md-1-4">
                                        <div class="row">
                                            <div class="col col--xs-1-1 col--sm-1-1 col--md-1-1">
                                                <nav class="l-footer__section">
                                                    <h4 class="c-heading c-heading--tiny">
                                                        folha de s.paulo
                                                    </h4>
                                                    <ul class="l-footer__nav">
                                                        <li>
                                                            <a href="http://www1.folha.uol.com.br/institucional/">Sobre a Folha</a>
                                                        </li>
                                                        <li>
                                                            <a href="http://acervo.folha.uol.com.br/">Acervo Folha</a>
                                                        </li>
                                                        <li>
                                                            <a href="http://atendimento.folha.com.br/clubefolha/Inicio.do">ClubeFolha</a>
                                                        </li>
                                                        <li>
                                                            <a href="http://www1.folha.uol.com.br/institucional/pages/expediente.shtml">Expediente</a>
                                                        </li>
                                                        <li>
                                                            <a href="http://www1.folha.uol.com.br/paineldoleitor/politicadeprivacidade/">Política de Privacidade</a>
                                                        </li>
                                                        <li>
                                                            <a href="http://www1.folha.uol.com.br/especial/2013/premiofolha/">Prêmio Folha</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://temas.folha.uol.com.br/projeto-editorial-da-folha/projeto-editorial-2017/">Projeto Editorial</a>
                                                        </li>
                                                        <li>
                                                            <a href="http://seminariosfolha.folha.com.br/">Seminários Folha</a>
                                                        </li>
                                                        <li>
                                                            <a href="http://www1.folha.uol.com.br/folha/trabalhe/vagas.html">Trabalhe na Folha</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/treinamento/">Treinamento</a>
                                                        </li>
                                                    </ul>
                                                </nav>
                                            </div>
                                            <div class="col col--xs-1-1 col--sm-1-1 col--md-1-1">
                                                <nav class="l-footer__section">
                                                    <h4 class="c-heading c-heading--tiny">
                                                        Fale com a Folha
                                                    </h4>
                                                    <ul class="l-footer__nav">
                                                        <li>
                                                            <a href="http://www.publicidade.folha.com.br/">Anuncie (Publicidade Folha)</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://atendimento.folha.com.br/">Atendimento ao Assinante</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/erramos/">Erramos</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/falecomafolha/">Fale com a Folha</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/ombudsman/">Ombudsman</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/paineldoleitor/">Painel do Leitor</a>
                                                        </li>
                                                    </ul>
                                                </nav>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="col col--xs-1-1 col--sm-1-1 col--md-1-4">
                                        <div class="row">
                                            <div class="col col--xs-1-1 col--sm-1-1 col--md-1-1">
                                                <nav class="l-footer__section">
                                                    <h4 class="c-heading c-heading--tiny">
                                                        editorias
                                                    </h4>
                                                    <ul class="l-footer__nav">
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/poder">Poder</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/mercado">Mercado</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/cotidiano">Cotidiano</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/mundo">Mundo</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/esporte">Esporte</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/ilustrada/">Ilustrada</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/ilustrissima/">Ilustríssima</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://f5.folha.uol.com.br">F5</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/ciencia/">Ciência</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/equilibrioesaude/">Equilíbrio e Saúde</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://fotografia.folha.uol.com.br/galerias/">Fotografia</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/tv/">TV Folha</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/educacao/">Educação</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/banco-de-dados/">Banco de Dados</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/turismo/">Turismo</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/sobretudo">Sobre Tudo</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/saopaulo/">Revista sãopaulo</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://guia.folha.uol.com.br/">Guia Folha</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/serafina">Serafina</a>
                                                        </li>
                                                    </ul>
                                                </nav>
                                            </div>
                                            <div class="col col--xs-1-1 col--sm-1-1 col--md-1-1"></div>
                                        </div>
                                    </div>
                                    <div class="col col--xs-1-1 col--sm-1-1 col--md-1-4">
                                        <div class="row">
                                            <div class="col col--xs-1-1 col--sm-1-1 col--md-1-1">
                                                <nav class="l-footer__section">
                                                    <h4 class="c-heading c-heading--tiny">
                                                        opinião
                                                    </h4>
                                                    <ul class="l-footer__nav">
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/opiniao">Opinião</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/colunaseblogs/">Colunas e Blogs</a>
                                                        </li>
                                                    </ul>
                                                </nav>
                                            </div>
                                            <div class="col col--xs-1-1 col--sm-1-1 col--md-1-1">
                                                <nav class="l-footer__section">
                                                    <h4 class="c-heading c-heading--tiny">
                                                        mais seções
                                                    </h4>
                                                    <ul class="l-footer__nav">
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/dias-melhores/">Dias Melhores</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/empreendedorsocial/">Empreendedor Social</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/especial/2018/">Especiais</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/internacional/es/">Folha en Español</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/internacional/en/">Folha In English</a>
                                                        </li>
                                                        <li>
                                                            <a href="http://www1.folha.uol.com.br/mercado/folhainvest/">Folhainvest</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://folhaleaks.folha.com.br/">Folhaleaks</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/mapas/">Folha Mapas</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/folha-topicos/">Folha Tópicos</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://transparencia.folha.uol.com.br/">Folha Transparência</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/o-melhor-de-sao-paulo/2017/restaurantes-bares-e-cozinha/">O Melhor de sãopaulo</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/ultimas-noticias/">Últimas</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/fsp/">Versão Impressa</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/mapa-do-site/">Mapa do site</a>
                                                        </li>
                                                    </ul>
                                                </nav>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="col col--xs-1-1 col--sm-1-1 col--md-1-4">
                                        <div class="row">
                                            <div class="col col--xs-1-1 col--sm-1-1 col--md-1-1">
                                                <nav class="l-footer__section">
                                                    <h4 class="c-heading c-heading--tiny">
                                                        serviços
                                                    </h4>
                                                    <ul class="l-footer__nav">
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/cotidiano/aeroportos/">Aeroportos</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://classificados1.folha.uol.com.br/">Classificados</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/especial/2018/folha-informacoes/">Folha Informações</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://f5.folha.uol.com.br/horoscopo/">Horóscopo</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/loterias/">Loterias</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/cotidiano/mortes/">Mortes</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/cotidiano/praias/sp/">Praias</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://tempo.folha.uol.com.br/">Tempo</a>
                                                        </li>
                                                    </ul>
                                                </nav>
                                            </div>
                                            <div class="col col--xs-1-1 col--sm-1-1 col--md-1-1">
                                                <nav class="l-footer__section">
                                                    <h4 class="c-heading c-heading--tiny">
                                                        outros canais
                                                    </h4>
                                                    <ul class="l-footer__nav">
                                                        <li>
                                                            <a href="https://email.folha.uol.com.br/">e-mailFOLHA</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://datafolha.folha.uol.com.br/">Datafolha</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://folhapress.folha.com.br/">Folhapress</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://eventos.folha.uol.com.br/">Folha Eventos</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://publifolha.folha.uol.com.br/">Publifolha</a>
                                                        </li>
                                                        <li>
                                                            <a href="https://www1.folha.uol.com.br/especial/2018/top-of-mind/">Top of Mind</a>
                                                        </li>
                                                    </ul>
                                                </nav>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class="col col--xs-1-1 col--sm-1-1 col--md-1-4">
                                <div class="row">
                                    <div class="col col--xs-1-1 col--sm-1-1 col--md-1-1">
                                        <div class="c-audience">
                                            <h4 class="c-heading c-heading--tiny">
                                                Audiência da Folha
                                            </h4>
                                            <table class="c-audience__table">
                                                <tbody>
                                                    <tr>
                                                        <th class="c-audience__cell">
                                                            Páginas vistas
                                                        </th>
                                                        <td class="c-audience__cell">
                                                            231.506.740 <span id="tooltip-pagesviews" class="u-visually-hidden" role="tooltip" aria-hidden="true"><span class="c-tooltip__content">Total de páginas visualizadas no site da Folha em novembro de 2018, segundo o Google Analytics</span></span> <a aria-describedby="tooltip-pagesviews" data-tooltip="" data-direction="bottom" data-target="#tooltip-pagesviews" class="c-audience__cell--anchor"><svg xmlns="//www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" version="1.1" class="icon icon--information" aria-hidden="true">
                                                            <path d="M13,9H11V7H13M13,17H11V11H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z"></path></svg><span class="u-visually-hidden">Informação</span></a> <span class="c-audience__date">nov.2018</span>
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <th class="c-audience__cell">
                                                            Visitantes únicos
                                                        </th>
                                                        <td class="c-audience__cell">
                                                            35.681.468 <span id="tooltip-unique_visitors" class="u-visually-hidden" role="tooltip" aria-hidden="true"><span class="c-tooltip__content">Total de visitantes diferentes do site da Folha em novembro de 2018, segundo o Google Analytics</span></span> <a aria-describedby="tooltip-unique_visitors" data-tooltip="" data-direction="bottom" data-target="#tooltip-unique_visitors" class="c-audience__cell--anchor"><svg xmlns="//www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" version="1.1" class="icon icon--information" aria-hidden="true">
                                                            <path d="M13,9H11V7H13M13,17H11V11H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z"></path></svg><span class="u-visually-hidden">Informação</span></a> <span class="c-audience__date">nov.2018</span>
                                                        </td>
                                                    </tr>
                                                </tbody>
                                            </table>
                                        </div>
                                    </div>
                                    <div class="col col--xs-1-1 col--sm-1-1 col--md-1-1">
                                        <div data-newsletter="" class="c-newsletter">
                                            <h4 class="c-heading c-heading--tiny">
                                                Escolha suas newsletters
                                            </h4>
                                            <form class="c-form__default">
                                                <div class="c-newsletter__wrapper">
                                                    <input type="email" class="c-newsletter__text js-validator" name="email" placeholder="Digite seu e-mail" /> <button class="c-newsletter__button js-button"><svg xmlns="http://www.w3.org/2000/svg" width="21" height="18" viewbox="0 0 21 18" class="icon icon--arrow-rigth">
                                                    <path fill="#333" fill-rule="evenodd" d="M21 9L.01 0 0 7l15 2-15 2 .01 7z"></path></svg></button>
                                                </div><span class="c-form__error-message c-newsletter__error-message" id="validation-error"></span>
                                            </form>
                                        </div>
                                    </div>
                                    <div class="col col--xs-1-1 col--sm-1-1 col--md-1-1">
                                        <ul class="c-follow-social-media">
                                            <li>
                                                <a href="https://twitter.com/folha" target="_blank"><span class="u-visually-hidden">Link externo, abre página da Folha de S.Paulo no Twitter</span> <svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="24" height="24" class="icon icon--twitter" aria-hidden="true">
                                                <path d="m 15.999997,3.2018549 c 0,-0.1451388 -0.119467,-0.2732046 -0.273067,-0.2732046 -0.08533,0 -0.674133,0.247589 -0.827733,0.2902776 0.2048,-0.2390525 0.674133,-0.9647527 0.674133,-1.2721095 0,-0.1451387 -0.119466,-0.2732046 -0.273067,-0.2732046 -0.04266,0 -0.09387,0.01711 -0.136533,0.042714 -0.580266,0.3158928 -1.134933,0.5634818 -1.783466,0.7000904 -0.64,-0.6147385 -1.5104,-0.9733204 -2.406399,-0.9733204 -1.8943999,0 -3.4474671,1.5453141 -3.4474671,3.4492104 0,0.136602 0.00853,0.281747 0.034133,0.418349 C 5.6831985,5.1484392 3.8997324,4.3629782 2.5002659,3.1079412 2.1589325,2.8005845 1.8687992,2.4676183 1.5615991,2.1261094 1.4933329,2.0492686 1.4335995,2.0236592 1.3311993,2.0236592 c -0.093866,0 -0.1706664,0.068298 -0.2133332,0.1366023 -0.30720005,0.4524956 -0.46933275,1.1867322 -0.46933275,1.7331415 0,0.7940042 0.2730663,1.5709292 0.78506615,2.1856432 -0.1621331,-0.05121 -0.4096003,-0.213443 -0.55466665,-0.213443 -0.1791994,0 -0.3327998,0.128066 -0.3327998,0.307357 0,1.195268 0.65706655,2.305169 1.66399955,2.928419 -0.0768,-0.0086 -0.1450664,-0.03416 -0.2218665,-0.03416 -0.145067,0 -0.2645333,0.128066 -0.2645333,0.264668 0,0.03416 0.00853,0.05976 0.017067,0.09391 0.3754662,1.1525798 1.314133,2.0234248 2.4917329,2.2966298 -0.9642667,0.597634 -2.0735999,0.904991 -3.1999998,0.904991 -0.25599995,0 -0.51199955,-0.04271 -0.75946615,-0.04271 -0.1535997,0 -0.2730666,0.128066 -0.2730666,0.273205 0,0.09391 0.0512,0.170754 0.1280003,0.230516 0.2218665,0.162218 0.4949331,0.29882 0.7423993,0.42688 1.31413295,0.683017 2.78186635,1.041593 4.26666575,1.041593 3.7205324,0 6.9034655,-1.99781 8.4394655,-5.3957938 0.554666,-1.220886 0.878933,-2.5613 0.853333,-3.901713 l 0,-0.281741 C 15.010131,4.5422372 15.57333,3.978749 15.95733,3.355499 15.98293,3.312785 16,3.261585 16,3.2018237 l 0,0 z"></path></svg></a>
                                            </li>
                                            <li>
                                                <a href="https://www.linkedin.com/company/folha-de-s-paulo" target="_blank"><span class="u-visually-hidden">Link externo, abre página da Folha de S.Paulo no Linkedin</span> <svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="24" height="24" class="icon icon--linkedin" aria-hidden="true">
                                                <path d="M 0.5217573,3.4217496 C 0.8574099,3.7574022 1.3243328,3.925225 1.883477,3.925225 l 0.019112,0 c 0.5965319,0 1.062624,-0.1678228 1.416555,-0.5034754 C 3.6739051,3.0669849 3.8417314,2.656557 3.8417314,2.1348025 3.8417314,1.6313201 3.6547964,1.2026132 3.319144,0.86696056 2.9834872,0.531308 2.517395,0.3634851 1.9391422,0.3634851 1.3608886,0.3634851 0.8947967,0.531308 0.5408658,0.86696056 0.1861045,1.2026132 -1e-7,1.6313201 -1e-7,2.1348025 c 0,0.5217545 0.1678263,0.9321824 0.5217572,1.2869471 l 0,0 z m -0.3165439,12.2147654 3.4313014,0 0,-10.2939042 -3.4313014,0 0,10.2939042 z m 8.7460799,0 0,-5.7443117 c 0,-0.3539317 0.037384,-0.633921 0.1121617,-0.839135 C 9.2121719,8.6991367 9.4364945,8.4008753 9.7347601,8.1582701 10.013917,7.9156719 10.386957,7.8035124 10.834771,7.8035124 c 0.596531,0 1.025236,0.2052139 1.305224,0.6156349 0.279987,0.410428 0.428705,0.9886857 0.428705,1.7156547 l 0,5.501713 3.4313,0 0,-5.8930294 C 16,8.2139334 15.64607,7.0582579 14.919099,6.2747932 14.191298,5.4913284 13.240005,5.1000126 12.046942,5.1000126 c -0.428705,0 -0.839131,0.055677 -1.193893,0.1678228 -0.353931,0.093054 -0.652197,0.2425982 -0.9130756,0.446986 C 9.6973732,5.9017564 9.5104375,6.0878582 9.3617206,6.2565141 9.2121719,6.4235108 9.063455,6.6104458 8.9321847,6.8339388 l 0.019112,0 0,-1.491328 -3.4313016,0 0.018279,0.5034754 0,3.0765435 c 0,1.7156473 0,3.9538893 -0.018279,6.7138853 l 3.4313016,0 0,0 z"></path></svg></a>
                                            </li>
                                            <li>
                                                <a href="https://www.instagram.com/folhadespaulo/" target="_blank"><span class="u-visually-hidden">Link externo, abre página da Folha de S.Paulo no Instagram</span> <svg xmlns="https://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" class="icon icon--instagram" aria-hidden="true">
                                                <path d="M7.8,2H16.2C19.4,2 22,4.6 22,7.8V16.2A5.8,5.8 0 0,1 16.2,22H7.8C4.6,22 2,19.4 2,16.2V7.8A5.8,5.8 0 0,1 7.8,2M7.6,4A3.6,3.6 0 0,0 4,7.6V16.4C4,18.39 5.61,20 7.6,20H16.4A3.6,3.6 0 0,0 20,16.4V7.6C20,5.61 18.39,4 16.4,4H7.6M17.25,5.5A1.25,1.25 0 0,1 18.5,6.75A1.25,1.25 0 0,1 17.25,8A1.25,1.25 0 0,1 16,6.75A1.25,1.25 0 0,1 17.25,5.5M12,7A5,5 0 0,1 17,12A5,5 0 0,1 12,17A5,5 0 0,1 7,12A5,5 0 0,1 12,7M12,9A3,3 0 0,0 9,12A3,3 0 0,0 12,15A3,3 0 0,0 15,12A3,3 0 0,0 12,9Z"></path></svg></a>
                                            </li>
                                            <li>
                                                <a href="https://www1.folha.uol.com.br/feed/" target="_blank"><span class="u-visually-hidden">Link externo, abre página RSS da Folha de S.Paulo</span> <svg xmlns="https://www.w3.org/2000/svg" height="24" viewbox="0 0 16 16" width="24" class="icon icon--rss" aria-hidden="true">
                                                <g transform="translate(-4, -4)">
                                                    <circle cx="6.18" cy="17.82" r="2.18"></circle>
                                                    <path d="M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z"></path>
                                                </g></svg></a>
                                            </li>
                                        </ul>
                                    </div>
                                </div>
                            </div>
                        </div><!--!-->
                    </div>
                    <p class="l-footer__copyright">
                        <small>Copyright Folha de S.Paulo. Todos os direitos reservados. É proibida a reprodução do conteúdo desta página em qualquer meio de comunicação, eletrônico ou impresso, sem autorização escrita da <a href="mailto:[email protected]">Folhapress</a>.</small>
                    </p>
                </div>
            </div>
        </footer>
        <div class="c-modal" data-modal-newsletter="">
            <div class="c-modal__content" data-content="">
                <div class="c-modal__head">
                    NEWSLETTER <button class="c-modal__close" data-close=""><svg xmlns="https://www.w3.org/2000/svg" viewbox="0 0 16 16" width="24" height="24" class="icon icon--close icon--tiny" aria-hidden="true">
                    <path d="M16 1.61L14.39 0 8 6.39 1.61 0 0 1.61 6.39 8 0 14.39 1.61 16 8 9.61 14.39 16 16 14.39 9.61 8z"></path></svg></button>
                </div>
                <div class="c-modal__body c-newsletter__modal">
                    <span class="c-form__error-message c-newsletter__error-message c-newsletter__error-no-selected is-hidden" data-newsletter-none-selected="" id="validation-error"><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" height="16" class="icon icon--alert">
                    <title>
                        Ícone alerta
                    </title>
                    <path d="M8 0C3.584 0 0 3.584 0 8s3.584 8 8 8 8-3.584 8-8-3.584-8-8-8zm.8 12H7.2v-1.6h1.6zm0-3.2H7.2V4h1.6z"></path></svg> Por favor, selecione uma das opções abaixo.</span>
                    <form id="form_newsletter" role="form" class="c-form js-newsletter-form" action="#" method="post" data-newsletter-form="" name="form_newsletter">
                        <fieldset>
                            <legend>Quais newsletter você gostaria de assinar?</legend>
                            <div class="c-form__checkbox">
                                <input type="checkbox" id="portugues" value="portugues" name="check-box" /> <label class="c-newsletter__label" for="portugues">Notícias do dia (português)</label>
                            </div>
                            <div class="c-form__checkbox">
                                <input type="checkbox" id="revista-colunas" value="colunas_blogs" name="check-box" /> <label class="c-newsletter__label" for="revista-colunas">Colunas e Blogs</label>
                            </div>
                            <div class="c-form__checkbox">
                                <input type="checkbox" id="dicas_editor" value="dicas_editor" name="check-box" /> <label class="c-newsletter__label" for="dicas_editor">Dicas do Editor (somente para assinantes)</label>
                            </div>
                            <div class="c-form__checkbox">
                                <input type="checkbox" id="ingles" value="ingles" name="check-box" /> <label class="c-newsletter__label" for="ingles">News in English</label>
                            </div>
                            <div class="c-form__checkbox">
                                <input type="checkbox" id="espanhol" value="espanhol" name="check-box" /> <label class="c-newsletter__label" for="espanhol">Noticias en español</label>
                            </div>
                            <div class="c-form__checkbox">
                                <input type="checkbox" id="id_f5" value="f5" name="check-box" /> <label class="c-newsletter__label" for="id_f5">F5</label>
                            </div>
                            <div class="c-form__checkbox">
                                <input type="checkbox" id="editoria_tv_folha" value="tv_folha" name="check-box" /> <label class="c-newsletter__label" for="editoria_tv_folha">TV Folha</label>
                            </div>
                            <div class="c-form__checkbox">
                                <input type="checkbox" id="para_curtir_sao_paulo" value="para_curtir_sp" name="check-box" /> <label class="c-newsletter__label" for="para_curtir_sao_paulo">Para curtir SP</label>
                            </div>
                            <div class="c-form__checkbox">
                                <input type="checkbox" id="id_eleicoes_2018" value="eleicoes_2018" name="check-box" /> <label class="c-newsletter__label" for="id_eleicoes_2018">Eleições 2018</label>
                            </div>
                        </fieldset>
                        <fieldset class="c-newsletter__fieldset">
                            <legend>Você também gostaria de:</legend>
                            <div class="c-form__checkbox">
                                <input type="checkbox" id="news_informacoes" value="news_informacoes" name="check-box" checked="checked" /> <label class="c-newsletter__label" for="news_informacoes">Receber informações sobre produtos e serviços da Folha de S. Paulo</label>
                            </div>
                            <div class="c-form__checkbox">
                                <input type="checkbox" id="news_ofertas" value="news_ofertas" name="check-box" checked="checked" /> <label class="c-newsletter__label" for="news_ofertas">Receber ofertas de parceiros da Folha de S. Paulo</label>
                            </div>
                        </fieldset>
                        <div class="c-newsletter__box-button">
                            <a data-close="" class="c-button">Cancelar</a> <button class="c-button c-button--primary" name="origin_id" data-send="">Confirmar</button>
                        </div>
                    </form>
                    <div class="c-newsletter__feedback is-hidden" data-newsletter-feedback="success">
                        <p>
                            Seu e-mail foi cadastrado com sucesso!
                        </p>
                        <div class="c-newsletter__box-button">
                            <a data-close="" class="c-button c-button--primary">Ok</a>
                        </div>
                    </div>
                    <div class="c-newsletter__feedback is-hidden" data-newsletter-feedback="error">
                        <p>
                            Por favor, tente mais tarde!
                        </p>
                        <div class="c-newsletter__box-button">
                            <a data-close="" class="c-button c-button--primary">Ok</a>
                        </div>
                    </div>
                </div>
            </div>
            <div class="c-modal__overlay" data-overlay=""></div>
        </div>
        <script src="https://static.folha.uol.com.br/storybook/js/portal-6cc7743041.js"></script> <!--!-->
        <script data-paywall="" data-paywall-wall-register="no" data-paywall-wall-env="folha" data-paywall-product="portal">
        <![CDATA[
        !function(e){function __webpack_require__(r){if(t[r])return t[r].exports;var n=t[r]={i:r,l:!1,exports:{}};return e[r].call(n.exports,n,n.exports,__webpack_require__),n.l=!0,n.exports}var t={};return __webpack_require__.m=e,__webpack_require__.c=t,__webpack_require__.i=function(e){return e},__webpack_require__.d=function(e,t,r){Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:r})},__webpack_require__.n=function(e){var t=e&&e.__esModule?function getDefault(){return e.default}:function getModuleExports(){return e};return __webpack_require__.d(t,"a",t),t},__webpack_require__.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},__webpack_require__.p="",__webpack_require__(__webpack_require__.s=135)}([function(e,t){var r=e.exports={version:"2.5.7"};"number"==typeof __e&&(__e=r)},function(e,t){var r=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=r)},function(e,t,r){var n=r(32)("wks"),o=r(22),a=r(1).Symbol,i="function"==typeof a;(e.exports=function(e){return n[e]||(n[e]=i&&a[e]||(i?a:o)("Symbol."+e))}).store=n},function(e,t,r){var n=r(1),o=r(0),a=r(13),i=r(9),c=r(8),s="prototype",u=function(e,t,r){var l,f,p,h=e&u.F,d=e&u.G,y=e&u.S,_=e&u.P,v=e&u.B,m=e&u.W,g=d?o:o[t]||(o[t]={}),b=g[s],w=d?n:y?n[t]:(n[t]||{})[s];d&&(r=t);for(l in r)f=!h&&w&&void 0!==w[l],f&&c(g,l)||(p=f?w[l]:r[l],g[l]=d&&"function"!=typeof w[l]?r[l]:v&&f?a(p,n):m&&w[l]==p?function(e){var t=function(t,r,n){if(this instanceof e){switch(arguments.length){case 0:return new e;case 1:return new e(t);case 2:return new e(t,r)}return new e(t,r,n)}return e.apply(this,arguments)};return t[s]=e[s],t}(p):_&&"function"==typeof p?a(Function.call,p):p,_&&((g.virtual||(g.virtual={}))[l]=p,e&u.R&&b&&!b[l]&&i(b,l,p)))};u.F=1,u.G=2,u.S=4,u.P=8,u.B=16,u.W=32,u.U=64,u.R=128,e.exports=u},function(e,t,r){var n=r(6);e.exports=function(e){if(!n(e))throw TypeError(e+" is not an object!");return e}},function(e,t,r){e.exports=!r(10)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(e,t){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},function(e,t,r){var n=r(4),o=r(44),a=r(34),i=Object.defineProperty;t.f=r(5)?Object.defineProperty:function defineProperty(e,t,r){if(n(e),t=a(t,!0),n(r),o)try{return i(e,t,r)}catch(e){}if("get"in r||"set"in r)throw TypeError("Accessors not supported!");return"value"in r&&(e[t]=r.value),e}},function(e,t){var r={}.hasOwnProperty;e.exports=function(e,t){return r.call(e,t)}},function(e,t,r){var n=r(7),o=r(19);e.exports=r(5)?function(e,t,r){return n.f(e,t,o(1,r))}:function(e,t,r){return e[t]=r,e}},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t,r){var n=r(45),o=r(25);e.exports=function(e){return n(o(e))}},function(e,t){var r={}.toString;e.exports=function(e){return r.call(e).slice(8,-1)}},function(e,t,r){var n=r(17);e.exports=function(e,t,r){if(n(e),void 0===t)return e;switch(r){case 1:return function(r){return e.call(t,r)};case 2:return function(r,n){return e.call(t,r,n)};case 3:return function(r,n,o){return e.call(t,r,n,o)}}return function(){return e.apply(t,arguments)}}},function(e,t){e.exports={}},function(e,t){e.exports=!0},function(e,t,r){var n=r(50),o=r(27);e.exports=Object.keys||function keys(e){return n(e,o)}},function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},function(e,t){t.f={}.propertyIsEnumerable},function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t,r){var n=r(7).f,o=r(8),a=r(2)("toStringTag");e.exports=function(e,t,r){e&&!o(e=r?e:e.prototype,a)&&n(e,a,{configurable:!0,value:t})}},function(e,t,r){var n=r(25);e.exports=function(e){return Object(n(e))}},function(e,t){var r=0,n=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++r+n).toString(36))}},function(e,t){var r;r=function(){return this}();try{r=r||Function("return this")()||(0,eval)("this")}catch(e){"object"==typeof window&&(r=window)}e.exports=r},function(e,t,r){"use strict";function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}}t.__esModule=!0;var n=r(82),o=_interopRequireDefault(n),a=r(81),i=_interopRequireDefault(a),c="function"==typeof i.default&&"symbol"==typeof o.default?function(e){return typeof e}:function(e){return e&&"function"==typeof i.default&&e.constructor===i.default&&e!==i.default.prototype?"symbol":typeof e};t.default="function"==typeof i.default&&"symbol"===c(o.default)?function(e){return void 0===e?"undefined":c(e)}:function(e){return e&&"function"==typeof i.default&&e.constructor===i.default&&e!==i.default.prototype?"symbol":void 0===e?"undefined":c(e)}},function(e,t){e.exports=function(e){if(void 0==e)throw TypeError("Can't call method on  "+e);return e}},function(e,t,r){var n=r(6),o=r(1).document,a=n(o)&&n(o.createElement);e.exports=function(e){return a?o.createElement(e):{}}},function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(e,t,r){"use strict";function PromiseCapability(e){var t,r;this.promise=new e(function(e,n){if(void 0!==t||void 0!==r)throw TypeError("Bad Promise constructor");t=e,r=n}),this.resolve=n(t),this.reject=n(r)}var n=r(17);e.exports.f=function(e){return new PromiseCapability(e)}},function(e,t,r){var n=r(4),o=r(111),a=r(27),i=r(31)("IE_PROTO"),c=function(){},s="prototype",u=function(){var e,t=r(26)("iframe"),n=a.length,o="<",i=">";for(t.style.display="none",r(43).appendChild(t),t.src="javascript:",e=t.contentWindow.document,e.open(),e.write(o+"script"+i+"document.F=Object"+o+"/script"+i),e.close(),u=e.F;n--;)delete u[s][a[n]];return u()};e.exports=Object.create||function create(e,t){var r;return null!==e?(c[s]=n(e),r=new c,c[s]=null,r[i]=e):r=u(),void 0===t?r:o(r,t)}},function(e,t){t.f=Object.getOwnPropertySymbols},function(e,t,r){var n=r(32)("keys"),o=r(22);e.exports=function(e){return n[e]||(n[e]=o(e))}},function(e,t,r){var n=r(0),o=r(1),a="__core-js_shared__",i=o[a]||(o[a]={});(e.exports=function(e,t){return i[e]||(i[e]=void 0!==t?t:{})})("versions",[]).push({version:n.version,mode:r(15)?"pure":"global",copyright:"© 2018 Denis Pushkarev (zloirock.ru)"})},function(e,t){var r=Math.ceil,n=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?n:r)(e)}},function(e,t,r){var n=r(6);e.exports=function(e,t){if(!n(e))return e;var r,o;if(t&&"function"==typeof(r=e.toString)&&!n(o=r.call(e)))return o;if("function"==typeof(r=e.valueOf)&&!n(o=r.call(e)))return o;if(!t&&"function"==typeof(r=e.toString)&&!n(o=r.call(e)))return o;throw TypeError("Can't convert object to primitive value")}},function(e,t,r){var n=r(1),o=r(0),a=r(15),i=r(36),c=r(7).f;e.exports=function(e){var t=o.Symbol||(o.Symbol=a?{}:n.Symbol||{});"_"==e.charAt(0)||e in t||c(t,e,{value:i.f(e)})}},function(e,t,r){t.f=r(2)},function(e,t,r){(function(t){function getValue(e,t){return null==e?void 0:e[t]}function isHostObject(e){var t=!1;if(null!=e&&"function"!=typeof e.toString)try{t=!!(e+"")}catch(e){}return t}function Hash(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function hashClear(){this.__data__=L?L(null):{}}function hashDelete(e){return this.has(e)&&delete this.__data__[e]}function hashGet(e){var t=this.__data__;if(L){var r=t[e];return r===n?void 0:r}return k.call(t,e)?t[e]:void 0}function hashHas(e){var t=this.__data__;return L?void 0!==t[e]:k.call(t,e)}function hashSet(e,t){return this.__data__[e]=L&&void 0===t?n:t,this}function ListCache(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function listCacheClear(){this.__data__=[]}function listCacheDelete(e){var t=this.__data__,r=assocIndexOf(t,e);return!(r<0)&&(r==t.length-1?t.pop():E.call(t,r,1),!0)}function listCacheGet(e){var t=this.__data__,r=assocIndexOf(t,e);return r<0?void 0:t[r][1]}function listCacheHas(e){return assocIndexOf(this.__data__,e)>-1}function listCacheSet(e,t){var r=this.__data__,n=assocIndexOf(r,e);return n<0?r.push([e,t]):r[n][1]=t,this}function MapCache(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function mapCacheClear(){this.__data__={hash:new Hash,map:new(A||ListCache),string:new Hash}}function mapCacheDelete(e){return getMapData(this,e).delete(e)}function mapCacheGet(e){return getMapData(this,e).get(e)}function mapCacheHas(e){return getMapData(this,e).has(e)}function mapCacheSet(e,t){return getMapData(this,e).set(e,t),this}function assocIndexOf(e,t){for(var r=e.length;r--;)if(eq(e[r][0],t))return r;return-1}function baseHas(e,t){return null!=e&&k.call(e,t)}function baseIsNative(e){return!(!isObject(e)||isMasked(e))&&(isFunction(e)||isHostObject(e)?M:_).test(toSource(e))}function baseToString(e){if("string"==typeof e)return e;if(isSymbol(e))return T?T.call(e):"";var t=e+"";return"0"==t&&1/e==-o?"-0":t}function castPath(e){return F(e)?e:H(e)}function getMapData(e,t){var r=e.__data__;return isKeyable(t)?r["string"==typeof t?"string":"hash"]:r.map}function getNative(e,t){var r=getValue(e,t);return baseIsNative(r)?r:void 0}function hasPath(e,t,r){t=isKey(t,e)?[t]:castPath(t);for(var n,o=-1,a=t.length;++o<a;){var i=toKey(t[o]);if(!(n=null!=e&&r(e,i)))break;e=e[i]}if(n)return n;var a=e?e.length:0;return!!a&&isLength(a)&&isIndex(i,a)&&(F(e)||isArguments(e))}function isIndex(e,t){return t=null==t?a:t,!!t&&("number"==typeof e||v.test(e))&&e>-1&&e%1==0&&e<t}function isKey(e,t){if(F(e))return!1;var r=typeof e;return!("number"!=r&&"symbol"!=r&&"boolean"!=r&&null!=e&&!isSymbol(e))||(f.test(e)||!l.test(e)||null!=t&&e in Object(t))}function isKeyable(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e}function isMasked(e){return!!S&&S in e}function toKey(e){if("string"==typeof e||isSymbol(e))return e;var t=e+"";return"0"==t&&1/e==-o?"-0":t}function toSource(e){if(null!=e){try{return j.call(e)}catch(e){}try{return e+""}catch(e){}}return""}function memoize(e,t){if("function"!=typeof e||t&&"function"!=typeof t)throw new TypeError(r);var n=function(){var r=arguments,o=t?t.apply(this,r):r[0],a=n.cache;if(a.has(o))return a.get(o);var i=e.apply(this,r);return n.cache=a.set(o,i),i};return n.cache=new(memoize.Cache||MapCache),n}function eq(e,t){return e===t||e!==e&&t!==t}function isArguments(e){return isArrayLikeObject(e)&&k.call(e,"callee")&&(!D.call(e,"callee")||P.call(e)==i)}function isArrayLike(e){return null!=e&&isLength(e.length)&&!isFunction(e)}function isArrayLikeObject(e){return isObjectLike(e)&&isArrayLike(e)}function isFunction(e){var t=isObject(e)?P.call(e):"";return t==c||t==s}function isLength(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=a}function isObject(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function isObjectLike(e){return!!e&&"object"==typeof e}function isSymbol(e){return"symbol"==typeof e||isObjectLike(e)&&P.call(e)==u}function toString(e){return null==e?"":baseToString(e)}function has(e,t){return null!=e&&hasPath(e,t,baseHas)}var r="Expected a function",n="__lodash_hash_undefined__",o=1/0,a=9007199254740991,i="[object Arguments]",c="[object Function]",s="[object GeneratorFunction]",u="[object Symbol]",l=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,f=/^\w*$/,p=/^\./,h=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,d=/[\\^$.*+?()[\]{}|]/g,y=/\\(\\)?/g,_=/^\[object .+?Constructor\]$/,v=/^(?:0|[1-9]\d*)$/,m="object"==typeof t&&t&&t.Object===Object&&t,g="object"==typeof self&&self&&self.Object===Object&&self,b=m||g||Function("return this")(),w=Array.prototype,x=Function.prototype,C=Object.prototype,O=b["__core-js_shared__"],S=function(){var e=/[^.]+$/.exec(O&&O.keys&&O.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}(),j=x.toString,k=C.hasOwnProperty,P=C.toString,M=RegExp("^"+j.call(k).replace(d,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),R=b.Symbol,D=C.propertyIsEnumerable,E=w.splice,A=getNative(b,"Map"),L=getNative(Object,"create"),q=R?R.prototype:void 0,T=q?q.toString:void 0;Hash.prototype.clear=hashClear,Hash.prototype.delete=hashDelete,Hash.prototype.get=hashGet,Hash.prototype.has=hashHas,Hash.prototype.set=hashSet,ListCache.prototype.clear=listCacheClear,ListCache.prototype.delete=listCacheDelete,ListCache.prototype.get=listCacheGet,ListCache.prototype.has=listCacheHas,ListCache.prototype.set=listCacheSet,MapCache.prototype.clear=mapCacheClear,MapCache.prototype.delete=mapCacheDelete,MapCache.prototype.get=mapCacheGet,MapCache.prototype.has=mapCacheHas,MapCache.prototype.set=mapCacheSet;var H=memoize(function(e){e=toString(e);var t=[];return p.test(e)&&t.push(""),e.replace(h,function(e,r,n,o){t.push(n?o.replace(y,"$1"):r||e)}),t});memoize.Cache=MapCache;var F=Array.isArray;e.exports=has}).call(t,r(23))},function(e,t,r){"use strict";function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var n=r(79),o=_interopRequireDefault(n),a=r(83),i=_interopRequireDefault(a),c=r(86),s=_interopRequireDefault(c),u=r(85),l=_interopRequireDefault(u),f=function(e){function AdBlockError(){return(0,i.default)(this,AdBlockError),(0,s.default)(this,(AdBlockError.__proto__||(0,o.default)(AdBlockError)).apply(this,arguments))}return(0,l.default)(AdBlockError,e),AdBlockError}(Error);t.default=f,e.exports=t.default},function(e,t,r){e.exports={default:r(91),__esModule:!0}},function(e,t,r){e.exports={default:r(93),__esModule:!0}},function(e,t,r){"use strict";function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}}t.__esModule=!0;var n=r(76),o=_interopRequireDefault(n);t.default=o.default||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}},function(e,t,r){var n=r(12),o=r(2)("toStringTag"),a="Arguments"==n(function(){return arguments}()),i=function(e,t){try{return e[t]}catch(e){}};e.exports=function(e){var t,r,c;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(r=i(t=Object(e),o))?r:a?n(t):"Object"==(c=n(t))&&"function"==typeof t.callee?"Arguments":c}},function(e,t,r){var n=r(1).document;e.exports=n&&n.documentElement},function(e,t,r){e.exports=!r(5)&&!r(10)(function(){return 7!=Object.defineProperty(r(26)("div"),"a",{get:function(){return 7}}).a})},function(e,t,r){var n=r(12);e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==n(e)?e.split(""):Object(e)}},function(e,t,r){"use strict";var n=r(15),o=r(3),a=r(54),i=r(9),c=r(14),s=r(105),u=r(20),l=r(49),f=r(2)("iterator"),p=!([].keys&&"next"in[].keys()),h="keys",d="values",y=function(){return this};e.exports=function(e,t,r,_,v,m,g){s(r,t,_);var b,w,x,C=function(e){if(!p&&e in k)return k[e];switch(e){case h:return function keys(){return new r(this,e)};case d:return function values(){return new r(this,e)}}return function entries(){return new r(this,e)}},O=t+" Iterator",S=v==d,j=!1,k=e.prototype,P=k[f]||k["@iterator"]||v&&k[v],M=P||C(v),R=v?S?C("entries"):M:void 0,D="Array"==t?k.entries||P:P;if(D&&(x=l(D.call(new e)),x!==Object.prototype&&x.next&&(u(x,O,!0),n||"function"==typeof x[f]||i(x,f,y))),S&&P&&P.name!==d&&(j=!0,M=function values(){return P.call(this)}),n&&!g||!p&&!j&&k[f]||i(k,f,M),c[t]=M,c[O]=y,v)if(b={values:S?M:C(d),keys:m?M:C(h),entries:R},g)for(w in b)w in k||a(k,w,b[w]);else o(o.P+o.F*(p||j),t,b);return b}},function(e,t,r){var n=r(18),o=r(19),a=r(11),i=r(34),c=r(8),s=r(44),u=Object.getOwnPropertyDescriptor;t.f=r(5)?u:function getOwnPropertyDescriptor(e,t){if(e=a(e),t=i(t,!0),s)try{return u(e,t)}catch(e){}if(c(e,t))return o(!n.f.call(e,t),e[t])}},function(e,t,r){var n=r(50),o=r(27).concat("length","prototype");t.f=Object.getOwnPropertyNames||function getOwnPropertyNames(e){return n(e,o)}},function(e,t,r){var n=r(8),o=r(21),a=r(31)("IE_PROTO"),i=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=o(e),n(e,a)?e[a]:"function"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?i:null}},function(e,t,r){var n=r(8),o=r(11),a=r(98)(!1),i=r(31)("IE_PROTO");e.exports=function(e,t){var r,c=o(e),s=0,u=[];for(r in c)r!=i&&n(c,r)&&u.push(r);for(;t.length>s;)n(c,r=t[s++])&&(~a(u,r)||u.push(r));return u}},function(e,t,r){var n=r(3),o=r(0),a=r(10);e.exports=function(e,t){var r=(o.Object||{})[e]||Object[e],i={};i[e]=t(r),n(n.S+n.F*a(function(){r(1)}),"Object",i)}},function(e,t){e.exports=function(e){try{return{e:!1,v:e()}}catch(e){return{e:!0,v:e}}}},function(e,t,r){var n=r(4),o=r(6),a=r(28);e.exports=function(e,t){if(n(e),o(t)&&t.constructor===e)return t;var r=a.f(e);return(0,r.resolve)(t),r.promise}},function(e,t,r){e.exports=r(9)},function(e,t,r){var n=r(4),o=r(17),a=r(2)("species");e.exports=function(e,t){var r,i=n(e).constructor;return void 0===i||void 0==(r=n(i)[a])?t:o(r)}},function(e,t,r){var n,o,a,i=r(13),c=r(101),s=r(43),u=r(26),l=r(1),f=l.process,p=l.setImmediate,h=l.clearImmediate,d=l.MessageChannel,y=l.Dispatch,_=0,v={},m="onreadystatechange",g=function(){var e=+this;if(v.hasOwnProperty(e)){var t=v[e];delete v[e],t()}},b=function(e){g.call(e.data)};p&&h||(p=function setImmediate(e){for(var t=[],r=1;arguments.length>r;)t.push(arguments[r++]);return v[++_]=function(){c("function"==typeof e?e:Function(e),t)},n(_),_},h=function clearImmediate(e){delete v[e]},"process"==r(12)(f)?n=function(e){f.nextTick(i(g,e,1))}:y&&y.now?n=function(e){y.now(i(g,e,1))}:d?(o=new d,a=o.port2,o.port1.onmessage=b,n=i(a.postMessage,a,1)):l.addEventListener&&"function"==typeof postMessage&&!l.importScripts?(n=function(e){l.postMessage(e+"","*")},l.addEventListener("message",b,!1)):n=m in u("script")?function(e){s.appendChild(u("script"))[m]=function(){s.removeChild(this),g.call(e)}}:function(e){setTimeout(i(g,e,1),0)}),e.exports={set:p,clear:h}},function(e,t,r){var n=r(33),o=Math.min;e.exports=function(e){return e>0?o(n(e),9007199254740991):0}},function(e,t){},function(e,t,r){"use strict";var n=r(116)(!0);r(46)(String,"String",function(e){this._t=e+"",this._i=0},function(){var e,t=this._t,r=this._i;return r>=t.length?{value:void 0,done:!0}:(e=n(t,r),this._i+=e.length,{value:e,done:!1})})},function(e,t,r){r(120);for(var n=r(1),o=r(9),a=r(14),i=r(2)("toStringTag"),c="CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,TextTrackList,TouchList".split(","),s=0;s<c.length;s++){var u=c[s],l=n[u],f=l&&l.prototype;f&&!f[i]&&o(f,i,u),a[u]=a.Array}},function(e,t,r){(function(t){function getValue(e,t){return null==e?void 0:e[t]}function isHostObject(e){var t=!1;if(null!=e&&"function"!=typeof e.toString)try{t=!!(e+"")}catch(e){}return t}function Hash(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function hashClear(){this.__data__=R?R(null):{}}function hashDelete(e){return this.has(e)&&delete this.__data__[e]}function hashGet(e){var t=this.__data__;if(R){var r=t[e];return r===n?void 0:r}return O.call(t,e)?t[e]:void 0}function hashHas(e){var t=this.__data__;return R?void 0!==t[e]:O.call(t,e)}function hashSet(e,t){return this.__data__[e]=R&&void 0===t?n:t,this}function ListCache(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function listCacheClear(){this.__data__=[]}function listCacheDelete(e){var t=this.__data__,r=assocIndexOf(t,e);return!(r<0)&&(r==t.length-1?t.pop():P.call(t,r,1),!0)}function listCacheGet(e){var t=this.__data__,r=assocIndexOf(t,e);return r<0?void 0:t[r][1]}function listCacheHas(e){return assocIndexOf(this.__data__,e)>-1}function listCacheSet(e,t){var r=this.__data__,n=assocIndexOf(r,e);return n<0?r.push([e,t]):r[n][1]=t,this}function MapCache(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function mapCacheClear(){this.__data__={hash:new Hash,map:new(M||ListCache),string:new Hash}}function mapCacheDelete(e){return getMapData(this,e).delete(e)}function mapCacheGet(e){return getMapData(this,e).get(e)}function mapCacheHas(e){return getMapData(this,e).has(e)}function mapCacheSet(e,t){return getMapData(this,e).set(e,t),this}function assocIndexOf(e,t){for(var r=e.length;r--;)if(eq(e[r][0],t))return r;return-1}function baseGet(e,t){t=isKey(t,e)?[t]:castPath(t);for(var r=0,n=t.length;null!=e&&r<n;)e=e[toKey(t[r++])];return r&&r==n?e:void 0}function baseIsNative(e){return!(!isObject(e)||isMasked(e))&&(isFunction(e)||isHostObject(e)?j:d).test(toSource(e))}function baseToString(e){if("string"==typeof e)return e;if(isSymbol(e))return E?E.call(e):"";var t=e+"";return"0"==t&&1/e==-o?"-0":t}function castPath(e){return L(e)?e:A(e)}function getMapData(e,t){var r=e.__data__;return isKeyable(t)?r["string"==typeof t?"string":"hash"]:r.map}function getNative(e,t){var r=getValue(e,t);return baseIsNative(r)?r:void 0}function isKey(e,t){if(L(e))return!1;var r=typeof e;return!("number"!=r&&"symbol"!=r&&"boolean"!=r&&null!=e&&!isSymbol(e))||(u.test(e)||!s.test(e)||null!=t&&e in Object(t))}function isKeyable(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e}function isMasked(e){return!!x&&x in e}function toKey(e){if("string"==typeof e||isSymbol(e))return e;var t=e+"";return"0"==t&&1/e==-o?"-0":t}function toSource(e){if(null!=e){try{return C.call(e)}catch(e){}try{return e+""}catch(e){}}return""}function memoize(e,t){if("function"!=typeof e||t&&"function"!=typeof t)throw new TypeError(r);var n=function(){var r=arguments,o=t?t.apply(this,r):r[0],a=n.cache;if(a.has(o))return a.get(o);var i=e.apply(this,r);return n.cache=a.set(o,i),i};return n.cache=new(memoize.Cache||MapCache),n}function eq(e,t){return e===t||e!==e&&t!==t}function isFunction(e){var t=isObject(e)?S.call(e):"";return t==a||t==i}function isObject(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function isObjectLike(e){return!!e&&"object"==typeof e}function isSymbol(e){return"symbol"==typeof e||isObjectLike(e)&&S.call(e)==c}function toString(e){return null==e?"":baseToString(e)}function get(e,t,r){var n=null==e?void 0:baseGet(e,t);return void 0===n?r:n}var r="Expected a function",n="__lodash_hash_undefined__",o=1/0,a="[object Function]",i="[object GeneratorFunction]",c="[object Symbol]",s=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,u=/^\w*$/,l=/^\./,f=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,p=/[\\^$.*+?()[\]{}|]/g,h=/\\(\\)?/g,d=/^\[object .+?Constructor\]$/,y="object"==typeof t&&t&&t.Object===Object&&t,_="object"==typeof self&&self&&self.Object===Object&&self,v=y||_||Function("return this")(),m=Array.prototype,g=Function.prototype,b=Object.prototype,w=v["__core-js_shared__"],x=function(){var e=/[^.]+$/.exec(w&&w.keys&&w.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}(),C=g.toString,O=b.hasOwnProperty,S=b.toString,j=RegExp("^"+C.call(O).replace(p,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),k=v.Symbol,P=m.splice,M=getNative(v,"Map"),R=getNative(Object,"create"),D=k?k.prototype:void 0,E=D?D.toString:void 0;Hash.prototype.clear=hashClear,Hash.prototype.delete=hashDelete,Hash.prototype.get=hashGet,Hash.prototype.has=hashHas,Hash.prototype.set=hashSet,ListCache.prototype.clear=listCacheClear,ListCache.prototype.delete=listCacheDelete,ListCache.prototype.get=listCacheGet,ListCache.prototype.has=listCacheHas,ListCache.prototype.set=listCacheSet,MapCache.prototype.clear=mapCacheClear,MapCache.prototype.delete=mapCacheDelete,MapCache.prototype.get=mapCacheGet,MapCache.prototype.has=mapCacheHas,MapCache.prototype.set=mapCacheSet;var A=memoize(function(e){e=toString(e);var t=[];return l.test(e)&&t.push(""),e.replace(f,function(e,r,n,o){t.push(n?o.replace(h,"$1"):r||e)}),t});memoize.Cache=MapCache;var L=Array.isArray;e.exports=get}).call(t,r(23))},function(e,t,r){"use strict";function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}}function redirectAdBlock(e,t){var r=new URLSearchParams;return r.append("origin","after"),r.append("url",t),window.location.replace(e+"?"+r)}function redirectUolLogin(e,t){var r=new URLSearchParams;return r.append("return_url",t),r.append("logintype","navfolha"),r.append("urltype","login"),window.location.replace(e+"?"+r)}var n=r(61),o=_interopRequireDefault(n),a=r(133),i=_interopRequireDefault(a),c=r(72),s=_interopRequireDefault(c),u=r(67),l=_interopRequireDefault(u),f=r(66),p=_interopRequireDefault(f),h=r(69),d=_interopRequireDefault(h),y=r(68),_=_interopRequireDefault(y),v=r(70),m=_interopRequireDefault(v),g=r(74),b=_interopRequireDefault(g),w=r(38),x=_interopRequireDefault(w),C=r(75),O=_interopRequireDefault(C),S=r(71),j=_interopRequireDefault(S),k={extractConfig:"[data-paywall]",blacklist:[/arte\.folha(\.uol)?\.com\.br\//],timeout:"30",teaser:"15",url:{config:"https://static.folha.uol.com.br/paywall/online/config.json",detector:"https://static.folha.uol.com.br/paywall/js/1/publicidade.ads.js",wall:"//paywall.folha.uol.com.br/wall.json",adblock:"//www1.folha.uol.com.br/paywall/adblock.shtml",login:"//paywall.folha.uol.com.br/folha/login",signin:"//assine.folha.com.br/folha/assinatura/default.asp?cod_Cript=6230900763241750",fallback:"//www1.folha.uol.com.br/paywall/"},wall:{env:null,register:null,url:window.location.href,referrer:(0,s.default)("original_referrer")}},P=(0,l.default)(document.querySelector(k.extractConfig),k);(0,d.default)(P.url.config).then(function(){return(0,_.default)(P.url.detector,parseInt(P.timeout||30,10))}).then(function(e){return(0,m.default)(P.url.wall,P.wall,e,parseInt(P.timeout||30,10))}).then(function(e){if((0,i.default)(window,"paywall.data",e),(0,j.default)(e),(0,b.default)(),"ok"!==(0,o.default)(e,"status")||"on"!==(0,o.default)(e,"paywall"))throw Error("[paywall] paywall off/unavailable");if("yes"===e.is_killed)return void window.location.replace("//paywall.folha.uol.com.br/folha/login?message=killed&return_url="+e.referer_url);var t="login"===e.action?"soft":"hard",r="";0===e.max_visitor_views&&(r=0===e.max_logged_views?"-super":"-opin");var n=document.cookie.indexOf("loggedpaywall"),a=window.location.search.indexOf("loggedpaywall");"not_logged"===e.log_type&&(document.cookie="loggedpaywall=1"),"not_logged"!==e.log_type&&a>0&&n>=0&&(document.cookie="loggedpaywall=;expires='Thu, 01 Jan 1970 00:00:00 UTC'",(0,j.default)({category:"login",action:"login-success",userType:""+e.log_type,loginType:""+e.origin})),"required_login"!==e.message&&"required_subscription"!==e.message||(0,j.default)({category:"porteira-embed-"+t+r,action:"impressao",userType:""+e.log_type,loginType:""+e.origin});var c=e.log_type;if(!c||"subscriber"!==c){if(e.hasAdBlock&&!(0,p.default)(P.blacklist,P.wall.url))throw new x.default;var s=e.action;if(!s||"granted"!==s){if("redirect_uol_login"===s)return void redirectUolLogin(P.url.login,P.wall.url);var u=e.behavior,l=e.message,f=e.max_visitor_views?parseInt(e.max_visitor_views,10):0,h=e.max_logged_views?parseInt(e.max_logged_views,10):0,d=e.total_urls?parseInt(e.total_urls,10):0,y=null!==document.querySelector("[data-paywall-box]"),_=e.action;_="default"===e.skin?_:_+"-"+e.skin,u&&l&&"block"===u&&"limit_is_not_exceeded"===l||(y?(0,O.default)(s,l,d,f,h,t,P.url,parseInt(P.teaser,10),e.link_subscribe||""):window.location.replace(""+P.url.fallback+_+".shtml?"+encodeURIComponent(P.wall.url)))}}}).catch(function(e){if(e instanceof x.default)return void redirectAdBlock(P.url.adblock,P.wall.url);throw e}).catch(void 0).then(b.default)},function(e,t){},function(e,t,r){(function(e){!function(e){"use strict";function URLSearchParams(e){if(e=e||"",this[t]={},e instanceof URLSearchParams&&(e=""+e),"object"==typeof e){for(var r in e)if(e.hasOwnProperty(r)){var n="string"==typeof e[r]?e[r]:JSON.stringify(e[r]);this.append(r,n)}}else{0===e.indexOf("?")&&(e=e.slice(1));for(var o=e.split("&"),a=0;a<o.length;a++){var i=o[a],c=i.indexOf("=");-1<c&&this.append(decode(i.slice(0,c)),decode(i.slice(c+1)))}}}function encode(e){var t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'\(\)~]|%20|%00/g,function(e){return t[e]})}function decode(e){return decodeURIComponent(e.replace(/\+/g," "))}function makeIterator(t){var r={next:function(){var e=t.shift();return{done:void 0===e,value:e}}};return n&&(r[e.Symbol.iterator]=function(){return r}),r}if(!e.URLSearchParams||""+new e.URLSearchParams({a:1})!="a=1"){var t="__URLSearchParams__",r=URLSearchParams.prototype,n=!(!e.Symbol||!e.Symbol.iterator);r.append=function(e,r){var n=this[t];e in n?n[e].push(""+r):n[e]=[""+r]},r.delete=function(e){delete this[t][e]},r.get=function(e){var r=this[t];return e in r?r[e][0]:null},r.getAll=function(e){var r=this[t];return e in r?r[e].slice(0):[]},r.has=function(e){return e in this[t]},r.set=function set(e,r){this[t][e]=[""+r]},r.forEach=function(e,r){var n=this[t];Object.getOwnPropertyNames(n).forEach(function(t){n[t].forEach(function(n){e.call(r,n,t,this)},this)},this)},r.toString=function(){var e,r,n,o,a=this[t],i=[];for(r in a)for(n=encode(r),e=0,o=a[r];e<o.length;e++)i.push(n+"="+encode(o[e]));return i.join("&")},r.sort=function(){var e,r,n=this[t],o=[],a={};for(e in n)o.push(e);for(o.sort(),r=0;r<o.length;r++)a[o[r]]=n[o[r]];this[t]=a},r.keys=function(){var e=[];return this.forEach(function(t,r){e.push([r])}),makeIterator(e)},r.values=function(){var e=[];return this.forEach(function(t){e.push([t])}),makeIterator(e)},r.entries=function(){var e=[];return this.forEach(function(t,r){e.push([r,t])}),makeIterator(e)},n&&(r[e.Symbol.iterator]=r.entries),e.URLSearchParams=URLSearchParams,e.URLSearchParams.polyfill=!0}}(void 0!==e?e:"undefined"!=typeof window?window:this)}).call(t,r(23))},function(e,t){!function(e){"use strict";function normalizeName(e){if("string"!=typeof e&&(e+=""),/[^a-z0-9\-#$%&'*+.\^_`|~]/i.test(e))throw new TypeError("Invalid character in header field name");return e.toLowerCase()}function normalizeValue(e){return"string"!=typeof e&&(e+=""),e}function iteratorFor(e){var r={next:function(){var t=e.shift();return{done:void 0===t,value:t}}};return t.iterable&&(r[Symbol.iterator]=function(){return r}),r}function Headers(e){this.map={},e instanceof Headers?e.forEach(function(e,t){this.append(t,e)},this):e&&Object.getOwnPropertyNames(e).forEach(function(t){this.append(t,e[t])},this)}function consumed(e){return e.bodyUsed?Promise.reject(new TypeError("Already read")):void(e.bodyUsed=!0)}function fileReaderReady(e){return new Promise(function(t,r){e.onload=function(){t(e.result)},e.onerror=function(){r(e.error)}})}function readBlobAsArrayBuffer(e){var t=new FileReader,r=fileReaderReady(t);return t.readAsArrayBuffer(e),r}function readBlobAsText(e){var t=new FileReader,r=fileReaderReady(t);return t.readAsText(e),r}function readArrayBufferAsText(e){for(var t=new Uint8Array(e),r=Array(t.length),n=0;n<t.length;n++)r[n]=String.fromCharCode(t[n]);return r.join("")}function bufferClone(e){if(e.slice)return e.slice(0);var t=new Uint8Array(e.byteLength);return t.set(new Uint8Array(e)),t.buffer}function Body(){return this.bodyUsed=!1,this._initBody=function(e){if(this._bodyInit=e,e)if("string"==typeof e)this._bodyText=e;else if(t.blob&&Blob.prototype.isPrototypeOf(e))this._bodyBlob=e;else if(t.formData&&FormData.prototype.isPrototypeOf(e))this._bodyFormData=e;else if(t.searchParams&&URLSearchParams.prototype.isPrototypeOf(e))this._bodyText=""+e;else if(t.arrayBuffer&&t.blob&&n(e))this._bodyArrayBuffer=bufferClone(e.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer]);else{if(!t.arrayBuffer||!ArrayBuffer.prototype.isPrototypeOf(e)&&!o(e))throw Error("unsupported BodyInit type");
        this._bodyArrayBuffer=bufferClone(e)}else this._bodyText="";this.headers.get("content-type")||("string"==typeof e?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):t.searchParams&&URLSearchParams.prototype.isPrototypeOf(e)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},t.blob&&(this.blob=function(){var e=consumed(this);if(e)return e;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))},this.arrayBuffer=function(){return this._bodyArrayBuffer?consumed(this)||Promise.resolve(this._bodyArrayBuffer):this.blob().then(readBlobAsArrayBuffer)}),this.text=function(){var e=consumed(this);if(e)return e;if(this._bodyBlob)return readBlobAsText(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(readArrayBufferAsText(this._bodyArrayBuffer));if(this._bodyFormData)throw Error("could not read FormData body as text");return Promise.resolve(this._bodyText)},t.formData&&(this.formData=function(){return this.text().then(decode)}),this.json=function(){return this.text().then(JSON.parse)},this}function normalizeMethod(e){var t=e.toUpperCase();return a.indexOf(t)>-1?t:e}function Request(e,t){t=t||{};var r=t.body;if("string"==typeof e)this.url=e;else{if(e.bodyUsed)throw new TypeError("Already read");this.url=e.url,this.credentials=e.credentials,t.headers||(this.headers=new Headers(e.headers)),this.method=e.method,this.mode=e.mode,r||null==e._bodyInit||(r=e._bodyInit,e.bodyUsed=!0)}if(this.credentials=t.credentials||this.credentials||"omit",!t.headers&&this.headers||(this.headers=new Headers(t.headers)),this.method=normalizeMethod(t.method||this.method||"GET"),this.mode=t.mode||this.mode||null,this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&r)throw new TypeError("Body not allowed for GET or HEAD requests");this._initBody(r)}function decode(e){var t=new FormData;return e.trim().split("&").forEach(function(e){if(e){var r=e.split("="),n=r.shift().replace(/\+/g," "),o=r.join("=").replace(/\+/g," ");t.append(decodeURIComponent(n),decodeURIComponent(o))}}),t}function parseHeaders(e){var t=new Headers;return e.split("\r\n").forEach(function(e){var r=e.split(":"),n=r.shift().trim();if(n){var o=r.join(":").trim();t.append(n,o)}}),t}function Response(e,t){t||(t={}),this.type="default",this.status="status"in t?t.status:200,this.ok=this.status>=200&&this.status<300,this.statusText="statusText"in t?t.statusText:"OK",this.headers=new Headers(t.headers),this.url=t.url||"",this._initBody(e)}if(!e.fetch){var t={searchParams:"URLSearchParams"in e,iterable:"Symbol"in e&&"iterator"in Symbol,blob:"FileReader"in e&&"Blob"in e&&function(){try{return new Blob,!0}catch(e){return!1}}(),formData:"FormData"in e,arrayBuffer:"ArrayBuffer"in e};if(t.arrayBuffer)var r=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],n=function(e){return e&&DataView.prototype.isPrototypeOf(e)},o=ArrayBuffer.isView||function(e){return e&&r.indexOf(Object.prototype.toString.call(e))>-1};Headers.prototype.append=function(e,t){e=normalizeName(e),t=normalizeValue(t);var r=this.map[e];r||(r=[],this.map[e]=r),r.push(t)},Headers.prototype.delete=function(e){delete this.map[normalizeName(e)]},Headers.prototype.get=function(e){var t=this.map[normalizeName(e)];return t?t[0]:null},Headers.prototype.getAll=function(e){return this.map[normalizeName(e)]||[]},Headers.prototype.has=function(e){return this.map.hasOwnProperty(normalizeName(e))},Headers.prototype.set=function(e,t){this.map[normalizeName(e)]=[normalizeValue(t)]},Headers.prototype.forEach=function(e,t){Object.getOwnPropertyNames(this.map).forEach(function(r){this.map[r].forEach(function(n){e.call(t,n,r,this)},this)},this)},Headers.prototype.keys=function(){var e=[];return this.forEach(function(t,r){e.push(r)}),iteratorFor(e)},Headers.prototype.values=function(){var e=[];return this.forEach(function(t){e.push(t)}),iteratorFor(e)},Headers.prototype.entries=function(){var e=[];return this.forEach(function(t,r){e.push([r,t])}),iteratorFor(e)},t.iterable&&(Headers.prototype[Symbol.iterator]=Headers.prototype.entries);var a=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];Request.prototype.clone=function(){return new Request(this,{body:this._bodyInit})},Body.call(Request.prototype),Body.call(Response.prototype),Response.prototype.clone=function(){return new Response(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new Headers(this.headers),url:this.url})},Response.error=function(){var e=new Response(null,{status:0,statusText:""});return e.type="error",e};var i=[301,302,303,307,308];Response.redirect=function(e,t){if(i.indexOf(t)===-1)throw new RangeError("Invalid status code");return new Response(null,{status:t,headers:{location:e}})},e.Headers=Headers,e.Request=Request,e.Response=Response,e.fetch=function(e,r){return new Promise(function(n,o){var a=new Request(e,r),i=new XMLHttpRequest;i.onload=function(){var e={status:i.status,statusText:i.statusText,headers:parseHeaders(i.getAllResponseHeaders()||"")};e.url="responseURL"in i?i.responseURL:e.headers.get("X-Request-URL"),n(new Response("response"in i?i.response:i.responseText,e))},i.onerror=function(){o(new TypeError("Network request failed"))},i.ontimeout=function(){o(new TypeError("Network request failed"))},i.open(a.method,a.url,!0),"include"===a.credentials&&(i.withCredentials=!0),"responseType"in i&&t.blob&&(i.responseType="blob"),a.headers.forEach(function(e,t){i.setRequestHeader(t,e)}),i.send(void 0===a._bodyInit?null:a._bodyInit)})},e.fetch.polyfill=!0}}("undefined"!=typeof self?self:this)},function(e,t){"use strict";function blacklistedLocation(e,t){return!Array.prototype.slice.call(e).reduce(function(e,r){return e||(r instanceof RegExp?r:RegExp(r)).test(t)},!1)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=blacklistedLocation,e.exports=t.default},function(e,t,r){"use strict";function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}}function captalize(e){return""+e.charAt(0).toUpperCase()+e.slice(1)}function expandConfig(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"paywall";return(0,l.default)(t).reduce(function(n,a){var c=""+r+captalize(a);return t[a]&&"object"===(0,s.default)(t[a])?(0,i.default)({},n,(0,o.default)({},a,expandConfig(e,t[a],c))):e.dataset[c]?(0,i.default)({},n,(0,o.default)({},a,e.dataset[c])):n},t)}Object.defineProperty(t,"__esModule",{value:!0});var n=r(84),o=_interopRequireDefault(n),a=r(41),i=_interopRequireDefault(a),c=r(24),s=_interopRequireDefault(c),u=r(39),l=_interopRequireDefault(u);t.default=expandConfig,e.exports=t.default},function(e,t,r){"use strict";function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}}function fetchDetector(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:30;return new o.default(function(r){window.folha_ads=!1;var n=window.setTimeout(function(){window.clearTimeout(n),r(!0)},1e3*t),o=document.createElement("script");o.src=e,o.addEventListener("load",function(){window.clearTimeout(n),r(!window.folha_ads)},!1),document.body.appendChild(o)})}Object.defineProperty(t,"__esModule",{value:!0});var n=r(40),o=_interopRequireDefault(n);t.default=fetchDetector,e.exports=t.default},function(e,t,r){"use strict";function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}}function fetchStaticConfig(e){return fetch(e).then(function(e){return e.json()}).then(function(e){if(!(0,o.default)(e,"params.paywall")||!(0,o.default)(e,"params.status"))throw Error("Configurações estáticas inválidas.");if("on"!==e.params.paywall||"ok"!==e.params.status)throw Error("Paywall desligado ou não funcional.");return e})}Object.defineProperty(t,"__esModule",{value:!0}),t.default=fetchStaticConfig;var n=r(37),o=_interopRequireDefault(n);e.exports=t.default},function(e,t,r){"use strict";function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}}function fetchWall(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:30;return new i.default(function(a,i){var c=window.setTimeout(function(){window.clearTimeout(c),i(new s.default("AdBlock ligado"))},1e3*n);return fetch(e+"?"+(0,l.default)(t,r),{credentials:"include"}).then(function(e){return e.json()}).then(function(e){window.clearTimeout(c),a((0,o.default)({},e,{hasAdBlock:r}))}).catch(function(e){return i(e)})})}Object.defineProperty(t,"__esModule",{value:!0});var n=r(41),o=_interopRequireDefault(n),a=r(40),i=_interopRequireDefault(a);t.default=fetchWall;var c=r(38),s=_interopRequireDefault(c),u=r(73),l=_interopRequireDefault(u);e.exports=t.default},function(e,t,r){"use strict";function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}}function gaEvent(e){function sendEvent(e){!function tryHit(t,r){try{UOLPD.Audience.countEvent(e,!0)}catch(e){r>0&&setTimeout(function tryDelay(){tryHit(t,r-1)},t)}}(50,300)}(0,o.default)(e,"analytics")?e.analytics.forEach(function(e){sendEvent({category:"paywall",action:e.a,label:e.l})}):sendEvent(e)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=gaEvent;var n=r(37),o=_interopRequireDefault(n);e.exports=t.default},function(e,t,r){"use strict";function getReferrer(e){var t=(0,n.get)(e);return(0,n.remove)(e),t||document.referrer}Object.defineProperty(t,"__esModule",{value:!0}),t.default=getReferrer;var n=r(134);e.exports=t.default},function(e,t,r){"use strict";function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}}function hasEmptyParam(e){return(0,o.default)(e).filter(function(e){return"referrer"!==e}).reduce(function(t,r){return t||!e[r]},!1)}function getWallParams(e,t){var r=new URLSearchParams;if(hasEmptyParam(e))throw Error("[paywall] Invalid wall params");return(0,o.default)(e).forEach(function(t){return r.append(t,e[t])}),r.append("hab",t?"yes":"no"),r.append("_",(new Date).getTime()),r}Object.defineProperty(t,"__esModule",{value:!0});var n=r(39),o=_interopRequireDefault(n);t.default=getWallParams,e.exports=t.default},function(e,t,r){"use strict";function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){if(!c&&(c=!0,(0,i.default)(window,"paywall.after"))){var t=(0,o.default)(window,"paywall.after");"function"==typeof t&&t(e)}};var n=r(61),o=_interopRequireDefault(n),a=r(37),i=_interopRequireDefault(a),c=!1;e.exports=t.default},function(e,t){"use strict";function showPaywall(e,t,r,n,o,a){var i=arguments.length>6&&void 0!==arguments[6]?arguments[6]:{login:"#"},c=i.login,s=(arguments[7],arguments[8]),u=document.querySelector("[data-paywall-box]"),l=document.querySelector("[data-paywall]").getAttribute("data-paywall-product"),f=l?" c-paywall--"+l:"",p=document.querySelector('meta[name="folhaapp-webview"][content="ios"]'),h=navigator.userAgent.match(/iphone|ipad/i),d=p&&h?"c-paywall__teaser--is-hidden":"",y=null!==document.querySelector(".c-image-full"),_=null!==document.querySelector(".c-news__head"),v=encodeURIComponent(window.location.href),m=s||"//secure.folha.com.br/folha/assine/380101",g="//login.folha.com.br/uol/login",b=void 0,w='<div class="c-paywall'+f+'"><div class="c-paywall__row">'+('<h4 class="c-paywall__title">Você atingiu o limite de '+n+" reportagens por mês</h4>")+'<div class="c-paywall__half-col c-paywall__login-area"><div class="c-paywall__row"><div class="c-paywall__half-col">'+('<p class="c-paywall__text">Tenha acesso a '+o+" reportagens por mês<br>")+"Caso seja assinante, o acesso será ilimitado</p>"+("<a onclick=\"UOLPD.Audience.countClick({category:'porteira-embed-"+a+"'")+",action:'clique',label:'crie-sua-conta'})\" "+('href="'+c+"?return_url="+v+'%3Floggedpaywall&urltype=register" class="c-paywall__button">')+'Crie sua conta</a></div><div class="c-paywall__half-col"><p class="c-paywall__text"><span class="c-paywall__text--custom">Para você que já tem conta</span></p>'+("<a onclick=\"UOLPD.Audience.countClick({category:'porteira-embed-"+a+"'")+",action:'clique',label:'faca-login'})\""+('href="'+c+"?return_url="+v+'%3Floggedpaywall&logintype=cadastrado&urltype=login" ')+'class="c-paywall__button">Faça login</a></div></div><div class="c-paywall__social"><p class="c-paywall__text">ou acesse com:</p><ul class="c-paywall__login-list"><li>'+("<a onclick=\"UOLPD.Audience.countClick({category:'porteira-embed-"+a+"',action:'clique',")+"label:'acessar-com-facebook'})\" "+('href="'+c+"?return_url="+v+'%3Floggedpaywall&amp;logintype=cadastrado&amp;urltype=facebook" ')+'class="c-paywall__social-login c-paywall__social-login--facebook rs_skip" role="button" aria-label="Facebook"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="24" height="24" class="icon icon--facebook" aria-hidden="true"><path d="M 9.5000001,2.9999998 H 12 V -1.95e-7 H 9.5000001 C 7.57,-1.95e-7 6,1.5699998 6,3.4999998 v 1.5 H 4 v 3 H 6 V 16 H 9.0000001 V 7.9999998 H 11.5 l 0.5,-3 H 9.0000001 v -1.5 c 0,-0.271 0.229,-0.5 0.5,-0.5 z"/></svg></a></li><li>'+("<a onclick=\"UOLPD.Audience.countClick({category:'porteira-embed-"+a+"',action:'clique',")+"label:'acessar-com-linkedin'})\""+('href="'+c+"?return_url="+v+'%3Floggedpaywall&amp;logintype=cadastrado&amp;urltype=linkedin" ')+'class="c-paywall__social-login c-paywall__social-login--linkedin rs_skip" role="button" aria-label="Linkedin"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="24" height="24" class="icon icon--linkedin" aria-hidden="true"><path d="M 0.5217573,3.4217496 C 0.8574099,3.7574022 1.3243328,3.925225 1.883477,3.925225 l 0.019112,0 c 0.5965319,0 1.062624,-0.1678228 1.416555,-0.5034754 C 3.6739051,3.0669849 3.8417314,2.656557 3.8417314,2.1348025 3.8417314,1.6313201 3.6547964,1.2026132 3.319144,0.86696056 2.9834872,0.531308 2.517395,0.3634851 1.9391422,0.3634851 1.3608886,0.3634851 0.8947967,0.531308 0.5408658,0.86696056 0.1861045,1.2026132 -1e-7,1.6313201 -1e-7,2.1348025 c 0,0.5217545 0.1678263,0.9321824 0.5217572,1.2869471 l 0,0 z m -0.3165439,12.2147654 3.4313014,0 0,-10.2939042 -3.4313014,0 0,10.2939042 z m 8.7460799,0 0,-5.7443117 c 0,-0.3539317 0.037384,-0.633921 0.1121617,-0.839135 C 9.2121719,8.6991367 9.4364945,8.4008753 9.7347601,8.1582701 10.013917,7.9156719 10.386957,7.8035124 10.834771,7.8035124 c 0.596531,0 1.025236,0.2052139 1.305224,0.6156349 0.279987,0.410428 0.428705,0.9886857 0.428705,1.7156547 l 0,5.501713 3.4313,0 0,-5.8930294 C 16,8.2139334 15.64607,7.0582579 14.919099,6.2747932 14.191298,5.4913284 13.240005,5.1000126 12.046942,5.1000126 c -0.428705,0 -0.839131,0.055677 -1.193893,0.1678228 -0.353931,0.093054 -0.652197,0.2425982 -0.9130756,0.446986 C 9.6973732,5.9017564 9.5104375,6.0878582 9.3617206,6.2565141 9.2121719,6.4235108 9.063455,6.6104458 8.9321847,6.8339388 l 0.019112,0 0,-1.491328 -3.4313016,0 0.018279,0.5034754 0,3.0765435 c 0,1.7156473 0,3.9538893 -0.018279,6.7138853 l 3.4313016,0 0,0 z"/></svg></a></li><li>'+("<a onclick=\"UOLPD.Audience.countClick({category:'porteira-embed-"+a+"',action:'clique',")+"label:'acessar-com-google'})\" "+('href="'+c+"?return_url="+v+'%3Floggedpaywall&amp;logintype=cadastrado&amp;urltype=google" ')+'class="c-paywall__social-login c-paywall__social-login--google rs_skip" role="button" aria-label="Google"><svg xmlns="http://www.w3.org/2000/svg" width="14px" height="14px" viewBox="0 0 14 14" version="1.1" class="icon-google-logo" aria-hidden="true"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><path d="M7,2.70666667 C8.31444444,2.70666667 9.20111111,3.27444444 9.70666667,3.74888889 L11.6822222,1.82 C10.4688889,0.692222222 8.89,0 7,0 C4.26222222,0 1.89777778,1.57111111 0.746666667,3.85777778L3.01,5.61555556 C3.57777778,3.92777778 5.14888889,2.70666667 7,2.70666667 L7,2.70666667 Z" fill="#EA4335"></path><path d="M13.72,7.15555556 C13.72,6.58 13.6733333,6.16 13.5722222,5.72444444 L7,5.72444444 L7,8.32222222 L10.8577778,8.32222222 C10.78,8.96777778 10.36,9.94 9.42666667,10.5933333 L11.6355556,12.3044444 C12.9577778,11.0833333 13.72,9.28666667 13.72,7.15555556 L13.72,7.15555556 Z" fill="#4285F4"></path><path d="M3.01777778,8.38444444 C2.87,7.94888889 2.78444444,7.48222222 2.78444444,7 C2.78444444,6.51777778 2.87,6.05111111 3.01,5.61555556 L0.746666667,3.85777778 C0.272222222,4.80666667 0,5.87222222 0,7 C0,8.12777778 0.272222222,9.19333333 0.746666667,10.1422222 L3.01777778,8.38444444 L3.01777778,8.38444444 Z" fill="#FBBC05"></path><path d="M7,14 C8.89,14 10.4766667,13.3777778 11.6355556,12.3044444 L9.42666667,10.5933333 C8.83555556,11.0055556 8.04222222,11.2933333 7,11.2933333 C5.14888889,11.2933333 3.57777778,10.0722222 3.01777778,8.38444444 L0.754444444,10.1422222C1.90555556,12.4288889 4.26222222,14 7,14 L7,14 Z" fill="#34A853"></path></g></svg><svg xmlns="http://www.w3.org/2000/svg" width="46" height="14" viewBox="0 0 46 14" version="1.1" class="icon-google-text" aria-hidden="true"><path fill="#757575" fill-rule="evenodd" d="M8.64 9.708c-.36.47-.858.825-1.496 1.066-.638.242-1.363.363-2.174.363-.834 0-1.573-.19-2.215-.568a3.78 3.78 0 0 1-1.487-1.623C.92 8.242.738 7.42.725 6.48v-.779c0-1.504.36-2.678 1.08-3.524C2.525 1.333 3.53.91 4.819.91c1.108 0 1.987.274 2.639.82.652.547 1.044 1.336 1.176 2.366H6.938c-.19-1.199-.886-1.798-2.084-1.798-.775 0-1.364.279-1.768.837-.403.559-.6111.378-.625 2.458v.765c0 1.076.227 1.911.68 2.506.454.594 1.084.892 1.89.892.884 0 1.513-.2 1.887-.602V7.206h-2.05V5.894H8.64v3.814zm1.648-2.475c0-.724.144-1.377.43-1.958a3.145 3.145 0 0 1 1.21-1.34c.52-.312 1.117-.468 1.792-.468.998 0 1.808.321 2.43.964.622.642.958 1.494 1.008 2.556l.007.39c0 .73-.14 1.38-.42 1.955a3.108 3.108 0 0 1-1.203 1.333c-.522.314-1.125.472-1.809.472-1.043 0-1.878-.348-2.505-1.043s-.94-1.621-.94-2.779v-.082zm1.661.144c0 .761.157 1.357.472 1.788.314.43.752.646 1.312.646s.997-.22 1.31-.657c.312-.437.468-1.077.468-1.92 0-.748-.16-1.34-.482-1.778-.321-.437-.758-.656-1.31-.656-.542 0-.972.215-1.291.646-.32.43-.479 1.074-.479 1.931zm6.529-.144c0-.724.143-1.377.43-1.958a3.145 3.145 0 0 1 1.21-1.34c.52-.312 1.117-.468 1.791-.468.998 0 1.808.321 2.43.964.622.642.959 1.494 1.009 2.556l.006.39c0 .73-.14 1.38-.42 1.955a3.108 3.108 0 0 1-1.203 1.333c-.522.314-1.125.472-1.808.472-1.044 0-1.879-.348-2.506-1.043-.626-.695-.94-1.621-.94-2.779v-.082zm1.66.144c0 .761.158 1.357.472 1.788.315.43.752.646 1.313.646.56 0 .997-.22 1.309-.657.312-.437.468-1.077.468-1.92 0-.748-.16-1.34-.482-1.778-.321-.437-.757-.656-1.309-.656-.542 0-.973.215-1.292.646-.319.43-.478 1.074-.478 1.931zm6.55-.13c0-1.148.27-2.066.81-2.751.54-.686 1.256-1.03 2.15-1.03.843 0 1.506.295 1.989.883l.075-.745h1.497v7.17c0 .971-.302 1.737-.906 2.297-.604.56-1.418.841-2.444.841a3.939 3.939 0 0 1-1.589-.338c-.517-.226-.91-.52-1.18-.886l.787-.998c.51.607 1.14.91 1.887.91.551 0 .986-.15 1.305-.448.32-.299.479-.737.479-1.316v-.5c-.479.534-1.117.8-1.914.8-.866 0-1.574-.343-2.123-1.032-.549-.688-.823-1.64-.823-2.857zm1.654.144c0 .742.151 1.327.454 1.753.303.426.724.64 1.262.64.67 0 1.166-.288 1.49-.862V5.668c-.315-.56-.807-.84-1.477-.84-.547 0-.972.216-1.275.649-.303.433-.454 1.07-.454 1.914zM36.9 11h-1.66V.5h1.66V11zm5.285.137c-1.053 0-1.907-.332-2.56-.995-.654-.663-.981-1.546-.981-2.649v-.205c0-.738.142-1.398.427-1.979a3.252 3.252 0 0 1 1.2-1.357 3.172 3.172 0 0 1 1.722-.485c1.007 0 1.785.321 2.335.964.549.642.823 1.551.823 2.727v.67h-4.833c.05.61.254 1.094.612 1.45.358.355.808.533 1.35.533.761 0 1.381-.308 1.86-.923l.895.854a2.99 2.99 0 0 1-1.186 1.029 3.713 3.713 0 0 1-1.664.366zM41.986 4.8c-.455 0-.823.16-1.104.478-.28.32-.459.764-.536 1.333h3.165v-.123c-.037-.556-.185-.976-.445-1.26-.26-.286-.62-.428-1.08-.428z"/></svg></a></li><li>'+("<a onclick=\"UOLPD.Audience.countClick({category:'porteira-embed-"+a+"',action:'clique',")+("label:'acessar-com-uol'})\" href=\""+g+"?done="+v+'%3Floggedpaywall" ')+'class="c-paywall__login-uol rs_skip" role="button"></a></li></ul></div></div><div class="c-paywall__half-col">'+('<div class="c-paywall__teaser '+d+'">')+'<figure class="c-paywall__devices"><img src="//f.i.uol.com.br/heimdall/assine-folha-todos-dispositivos-transparente-321x149.png" alt="Folha de São Paulo em todos devices"></figure><p class="c-paywall__text">Tenha acesso ilimitado, <span>descontos em produtos Folha e muito mais</span></p><p class="c-paywall__price">Folha digital por apenas R$1,90* <small>*no primeiro mês</small></p>'+("<a onclick=\"UOLPD.Audience.countClick({category:'porteira-embed-"+a+"'")+",action:'clique',label:'assine-a-folha'})\""+('href="'+m+'" class="c-paywall__button c-paywall__button--primary">Assine a Folha</a>')+"</div></div></div></div>",x=""+('<div class="c-paywall'+f+'">')+('<h4 class="c-paywall__title">Você atingiu o limite de '+o+" reportagens por mês</h4>")+('<div class="c-paywall__teaser '+d+'">')+'<figure class="c-paywall__devices"><img src="//f.i.uol.com.br/heimdall/assine-folha-todos-dispositivos-transparente-321x149.png" alt="Folha de São Paulo em todos devices"></figure><p class="c-paywall__text c-paywall__text-offers">Tenha acesso ilimitado, descontos em produtos Folha e muito mais</p><p class="c-paywall__price">Folha digital por apenas R$1,90* <small>*no primeiro mês</small></p>'+("<a onclick=\"UOLPD.Audience.countClick({category:'porteira-embed-"+a+"'")+",action:'clique',label:'assine-a-folha'})\""+('href="'+m+'" class="c-paywall__button c-paywall__button--primary">Assine a Folha</a>')+'</div><p class="c-paywall__text">Já é assinante?</p>'+("<a onclick=\"UOLPD.Audience.countClick({category:'porteira-embed-"+a+"'")+",action:'clique',label:'faca-login'})\""+('href="'+c+"?return_url="+v+'%3Floggedpaywall&logintype=cadastrado&urltype=login" ')+'class="c-paywall__button">Faça login</a><p class="c-paywall__text">Se já estiver logado, '+("<a onclick=\"UOLPD.Audience.countClick({category:'porteira-embed-"+a+"',action:'clique',")+"label:'vincule-sua-conta'})\" "+('href="'+c+"?return_url="+v+'%3Floggedpaywall&amp;logintype=assinanteedit">')+'vincule sua conta à assinatura</a></p><div class="c-paywall__social"><p class="c-paywall__text">ou acesse com:</p>'+("<a onclick=\"UOLPD.Audience.countClick({category:'porteira-embed-"+a+"',action:'clique',")+("label:'acessar-com-uol'})\" href=\""+g+"?done="+v+'%3Floggedpaywall" ')+'class="c-paywall__login-uol rs_skip" role="button"></a></div></div>';if(y){var C=document.querySelector(".c-image-full").parentNode;C.parentNode.removeChild(C)}if(_){var O=document.querySelector(".c-news__head");O.parentNode.removeChild(O)}var S="Conteúdo restrito a assinantes e cadastrados";if("required_subscription"===t?(u.innerHTML=""+x,b="4387796",S="Conteúdo restrito a assinantes"):"required_login"===t&&(0===o?u.innerHTML=""+x:u.innerHTML=""+w,b="4388432"),0===n){if(0===o){S="As reportagens da Folha são acessíveis apenas para assinantes";document.querySelector(".c-paywall__text-offers").innerHTML="Tenha acesso ilimitado a reportagens e colunas,<br>descontos em produtos Folha e muito mais"}document.querySelector(".c-paywall__title").innerHTML=S}u.querySelector(".c-paywall__login-uol").innerHTML='<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="71" height="32" viewBox="0 0 71 32"><defs><path id="svg-uol-a" d="M27.244 9.944V.046H.825v9.897h26.419z"></path><path id="svg-uol-c" d="M19.765 20h29.479V0H0v20h19.765V0H0v20h19.765z"></path></defs><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><rect width="71" height="32" fill="#333" rx="16"></rect><g transform="translate(33 11)"><mask id="svg-uol-b" fill="#fff"><use xlink:href="#svg-uol-a"></use></mask><path fill="#FFF" d="M12.753 4.995c0-1.212.872-2.167 2.072-2.167 1.213 0 2.127.955 2.127 2.167 0 1.2-.914 2.14-2.127 2.14-1.2 0-2.072-.94-2.072-2.14zM9.836 2.01c0-1.103-.409-1.717-1.65-1.717h-1.43V.32.305v5.112c0 1.295-.573 1.718-1.432 1.718s-1.418-.423-1.418-1.718V2.01C3.906.907 3.497.293 2.257.293H.825v5.112c0 3.244 1.691 4.538 4.512 4.538 2.822 0 4.308-1.104 4.5-4.115.435 2.398 2.521 4.115 5.07 4.115 2.385 0 4.471-1.716 4.907-3.87v3.625h5.698c1.227 0 1.732-.354 1.732-1.58V6.984h-4.363V2.011c0-1.105-.395-1.719-1.636-1.719h-1.43l.013.028-.014-.014V3.96c-.436-2.208-2.33-3.912-4.907-3.912-2.549 0-4.635 1.705-5.07 3.912V2.01z" mask="url(#svg-uol-b)"></path></g><path fill="#AC2F1B" d="M28.035 15.71a2.881 2.881 0 0 0-.615-.092 6.616 6.616 0 0 1 .712 3.605A7.77 7.77 0 0 0 29.31 16.5a2.482 2.482 0 0 0-1.275-.79M25.084 14.849c-1.633-1.568-3.923-2.594-5.939-2.594-2.808 0-5.222 1.228-6.344 3.333.49 3.978 4.08 7.233 8.334 7.233.13 0 .26-.004.387-.01-.505-1.082-.454-2.543.158-4.08.64-1.611 1.952-3.1 3.404-3.882"></path><g transform="translate(11 6)"><mask id="svg-uol-d" fill="#fff"><use xlink:href="#svg-uol-c"></use></mask><path fill="#AC2F1B" d="M14.246 18.54a7.233 7.233 0 0 1-4.394 1.394C4.924 19.88.812 16.19.782 12.145a7.1 7.1 0 0 1 .405-2.45 8.265 8.265 0 0 1-.095-1.246c0-2.872 2.315-6.574 5.54-7.74 1.27-.46 2.318-.662 3.53-.63 1.145.028 2.61.32 3.58.813 2.747 1.401 5.143 4.497 5.238 7.664a7.716 7.716 0 0 1-.113 1.558c.582 1.334.468 3.185-.485 4.847-.163.284-.336.556-.515.817l-.045.065c-.988 1.41-2.21 2.432-3.576 2.697M9.926 0C4.468 0 0 4.584 0 10.031c0 5.448 4.454 9.97 9.912 9.97 5.46 0 9.853-4.522 9.853-9.97 0-5.447-4.38-10.03-9.839-10.03" mask="url(#svg-uol-d)"></path></g><path fill="#AC2F1B" d="M27.092 20.907a9.268 9.268 0 0 1-4.91 2.15c.318.61.878 1.066 1.703 1.293.276.076.556.11.837.106a5.948 5.948 0 0 0 2.37-3.55"></path><path fill="#EDC647" d="M28.7 11.267c-1.326-2.796-4.182-4.86-7.495-4.815-4.908.067-8.377 3.736-8.458 8.055 1.304-2.175 3.81-3.519 6.775-3.519 2.79 0 5.445 1.32 7.057 3.332a3.249 3.249 0 0 1 1.348.054 2.79 2.79 0 0 1 1.442.926l.102.078c.015-.204.025-.41.024-.619a8.281 8.281 0 0 0-.795-3.492M22.34 19.438c-.508 1.262-.622 2.434-.285 3.334 2.006-.207 3.81-1.085 5.14-2.418.045-.318.07-.646.07-.987 0-1.257-.492-2.458-1.278-3.504-1.538.56-3.011 1.996-3.647 3.575M23.575 24.48c-.868-.23-1.5-.717-1.897-1.374a9.346 9.346 0 0 1-.651.025c-4.164 0-7.65-2.798-8.647-6.509a6.134 6.134 0 0 0-.248 1.825c.038 3.587 3.717 7.332 8.235 7.332 1.534 0 2.972-.412 4.134-1.173a3.8 3.8 0 0 1-.926-.127"></path><path fill="#E7992E" d="M29.654 17.023a8.12 8.12 0 0 1-1.61 2.927c-.308 1.811-1.241 3.348-2.565 4.411 1.22-.29 2.408-1.22 3.295-2.452.106-.149.216-.312.335-.503 0 0 0-.002.002-.003a6.5 6.5 0 0 0 .188-.324l.006-.01c.118-.219.223-.445.316-.675.485-1.234.486-2.465.033-3.37"></path><path fill="#000" d="M29.202 21.254c-.91 1.553-2.293 2.767-3.723 3.107 1.324-1.062 2.257-2.599 2.565-4.411a8.123 8.123 0 0 0 1.61-2.927c.559 1.118.427 2.73-.452 4.231m-8.835 4.525c-4.518 0-8.197-3.744-8.236-7.332a6.167 6.167 0 0 1 .249-1.825c.998 3.712 4.483 6.509 8.647 6.509.219 0 .435-.01.65-.025.398.658 1.03 1.143 1.898 1.373.314.084.622.124.926.127-1.162.761-2.6 1.173-4.134 1.173m7.053-10.16c.209.008.415.037.615.09.532.142.958.418 1.275.79a7.755 7.755 0 0 1-1.178 2.724 6.615 6.615 0 0 0-.712-3.604m-5.08 3.819c.636-1.579 2.109-3.015 3.647-3.574.786 1.046 1.277 2.246 1.277 3.503 0 .341-.025.67-.07.988-1.33 1.333-3.133 2.21-5.14 2.417-.336-.899-.223-2.071.286-3.334m-.818 3.374a9.901 9.901 0 0 1-.387.009c-4.253 0-7.844-3.256-8.334-7.234 1.122-2.104 3.536-3.332 6.344-3.332 2.017 0 4.307 1.026 5.94 2.594-1.453.782-2.764 2.27-3.405 3.881-.611 1.538-.662 2.998-.158 4.082m3.2 1.644a3.018 3.018 0 0 1-.837-.106c-.825-.227-1.385-.682-1.703-1.292a9.28 9.28 0 0 0 4.91-2.151 5.954 5.954 0 0 1-2.37 3.549M21.205 6.453c3.313-.046 6.169 2.018 7.495 4.814a8.283 8.283 0 0 1 .795 3.493c0 .223-.01.444-.027.662a2.802 2.802 0 0 0-1.541-1.047 3.216 3.216 0 0 0-1.348-.054c-1.612-2.012-4.267-3.332-7.057-3.332-2.965 0-5.472 1.343-6.775 3.518.08-4.318 3.55-7.987 8.458-8.054m8.663 9.661a7.784 7.784 0 0 0 .112-1.558c-.094-3.167-2.491-6.263-5.238-7.664-.97-.494-2.435-.785-3.58-.814-1.212-.031-2.26.17-3.53.63-3.224 1.167-5.54 4.87-5.54 7.741 0 .422.034.838.095 1.245a7.123 7.123 0 0 0-.405 2.451c.029 4.045 4.142 7.734 9.07 7.79a7.238 7.238 0 0 0 4.394-1.395c1.636-.318 3.07-1.72 4.136-3.579.954-1.662 1.067-3.513.486-4.847"></path></g></svg>';var j=document.getElementsByTagName("head")[0],k=document.createElement("script");k.type="text/javascript",k.src="https://static.folha.uol.com.br/library/propensity/propensity.js",k.async="async",k.id="propensity-activity-tag",k.setAttribute("data-xsp",""+b),j.appendChild(k)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=showPaywall,e.exports=t.default},function(e,t,r){e.exports={default:r(87),__esModule:!0}},function(e,t,r){e.exports={default:r(88),__esModule:!0}},function(e,t,r){e.exports={default:r(89),__esModule:!0}},function(e,t,r){e.exports={default:r(90),__esModule:!0}},function(e,t,r){e.exports={default:r(92),__esModule:!0}},function(e,t,r){e.exports={default:r(94),__esModule:!0}},function(e,t,r){e.exports={default:r(95),__esModule:!0}},function(e,t){"use strict";t.__esModule=!0,t.default=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},function(e,t,r){"use strict";function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}}t.__esModule=!0;var n=r(78),o=_interopRequireDefault(n);t.default=function(e,t,r){return t in e?(0,o.default)(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}},function(e,t,r){"use strict";function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}}t.__esModule=!0;var n=r(80),o=_interopRequireDefault(n),a=r(77),i=_interopRequireDefault(a),c=r(24),s=_interopRequireDefault(c);t.default=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+(void 0===t?"undefined":(0,s.default)(t)));e.prototype=(0,i.default)(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(o.default?(0,o.default)(e,t):e.__proto__=t)}},function(e,t,r){"use strict";function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}}t.__esModule=!0;var n=r(24),o=_interopRequireDefault(n);t.default=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==(void 0===t?"undefined":(0,o.default)(t))&&"function"!=typeof t?e:t}},function(e,t,r){r(121),e.exports=r(0).Object.assign},function(e,t,r){r(122);var n=r(0).Object;e.exports=function create(e,t){return n.create(e,t)}},function(e,t,r){r(123);var n=r(0).Object;e.exports=function defineProperty(e,t,r){return n.defineProperty(e,t,r)}},function(e,t,r){r(124),e.exports=r(0).Object.getPrototypeOf},function(e,t,r){r(125),e.exports=r(0).Object.keys},function(e,t,r){r(126),e.exports=r(0).Object.setPrototypeOf},function(e,t,r){r(58),r(59),r(60),r(127),r(129),r(130),e.exports=r(0).Promise},function(e,t,r){r(128),r(58),r(131),r(132),e.exports=r(0).Symbol},function(e,t,r){r(59),r(60),e.exports=r(36).f("iterator")},function(e,t){e.exports=function(){}},function(e,t){e.exports=function(e,t,r,n){if(!(e instanceof t)||void 0!==n&&n in e)throw TypeError(r+": incorrect invocation!");return e}},function(e,t,r){var n=r(11),o=r(57),a=r(117);e.exports=function(e){return function(t,r,i){var c,s=n(t),u=o(s.length),l=a(i,u);if(e&&r!=r){for(;u>l;)if(c=s[l++],c!=c)return!0}else for(;u>l;l++)if((e||l in s)&&s[l]===r)return e||l||0;return!e&&-1}}},function(e,t,r){var n=r(16),o=r(30),a=r(18);e.exports=function(e){var t=n(e),r=o.f;if(r)for(var i,c=r(e),s=a.f,u=0;c.length>u;)s.call(e,i=c[u++])&&t.push(i);return t}},function(e,t,r){var n=r(13),o=r(104),a=r(102),i=r(4),c=r(57),s=r(119),u={},l={},t=e.exports=function(e,t,r,f,p){var h,d,y,_,v=p?function(){return e}:s(e),m=n(r,f,t?2:1),g=0;if("function"!=typeof v)throw TypeError(e+" is not iterable!");if(a(v)){for(h=c(e.length);h>g;g++)if(_=t?m(i(d=e[g])[0],d[1]):m(e[g]),_===u||_===l)return _}else for(y=v.call(e);!(d=y.next()).done;)if(_=o(y,m,d.value,t),
        _===u||_===l)return _};t.BREAK=u,t.RETURN=l},function(e,t){e.exports=function(e,t,r){var n=void 0===r;switch(t.length){case 0:return n?e():e.call(r);case 1:return n?e(t[0]):e.call(r,t[0]);case 2:return n?e(t[0],t[1]):e.call(r,t[0],t[1]);case 3:return n?e(t[0],t[1],t[2]):e.call(r,t[0],t[1],t[2]);case 4:return n?e(t[0],t[1],t[2],t[3]):e.call(r,t[0],t[1],t[2],t[3])}return e.apply(r,t)}},function(e,t,r){var n=r(14),o=r(2)("iterator"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(n.Array===e||a[o]===e)}},function(e,t,r){var n=r(12);e.exports=Array.isArray||function isArray(e){return"Array"==n(e)}},function(e,t,r){var n=r(4);e.exports=function(e,t,r,o){try{return o?t(n(r)[0],r[1]):t(r)}catch(t){var a=e.return;throw void 0!==a&&n(a.call(e)),t}}},function(e,t,r){"use strict";var n=r(29),o=r(19),a=r(20),i={};r(9)(i,r(2)("iterator"),function(){return this}),e.exports=function(e,t,r){e.prototype=n(i,{next:o(1,r)}),a(e,t+" Iterator")}},function(e,t,r){var n=r(2)("iterator"),o=!1;try{var a=[7][n]();a.return=function(){o=!0},Array.from(a,function(){throw 2})}catch(e){}e.exports=function(e,t){if(!t&&!o)return!1;var r=!1;try{var a=[7],i=a[n]();i.next=function(){return{done:r=!0}},a[n]=function(){return i},e(a)}catch(e){}return r}},function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},function(e,t,r){var n=r(22)("meta"),o=r(6),a=r(8),i=r(7).f,c=0,s=Object.isExtensible||function(){return!0},u=!r(10)(function(){return s(Object.preventExtensions({}))}),l=function(e){i(e,n,{value:{i:"O"+ ++c,w:{}}})},f=function(e,t){if(!o(e))return"symbol"==typeof e?e:("string"==typeof e?"S":"P")+e;if(!a(e,n)){if(!s(e))return"F";if(!t)return"E";l(e)}return e[n].i},p=function(e,t){if(!a(e,n)){if(!s(e))return!0;if(!t)return!1;l(e)}return e[n].w},h=function(e){return u&&d.NEED&&s(e)&&!a(e,n)&&l(e),e},d=e.exports={KEY:n,NEED:!1,fastKey:f,getWeak:p,onFreeze:h}},function(e,t,r){var n=r(1),o=r(56).set,a=n.MutationObserver||n.WebKitMutationObserver,i=n.process,c=n.Promise,s="process"==r(12)(i);e.exports=function(){var e,t,r,u=function(){var n,o;for(s&&(n=i.domain)&&n.exit();e;){o=e.fn,e=e.next;try{o()}catch(n){throw e?r():t=void 0,n}}t=void 0,n&&n.enter()};if(s)r=function(){i.nextTick(u)};else if(!a||n.navigator&&n.navigator.standalone)if(c&&c.resolve){var l=c.resolve(void 0);r=function(){l.then(u)}}else r=function(){o.call(n,u)};else{var f=!0,p=document.createTextNode("");new a(u).observe(p,{characterData:!0}),r=function(){p.data=f=!f}}return function(n){var o={fn:n,next:void 0};t&&(t.next=o),e||(e=o,r()),t=o}}},function(e,t,r){"use strict";var n=r(16),o=r(30),a=r(18),i=r(21),c=r(45),s=Object.assign;e.exports=!s||r(10)(function(){var e={},t={},r=Symbol(),n="abcdefghijklmnopqrst";return e[r]=7,n.split("").forEach(function(e){t[e]=e}),7!=s({},e)[r]||Object.keys(s({},t)).join("")!=n})?function assign(e,t){for(var r=i(e),s=arguments.length,u=1,l=o.f,f=a.f;s>u;)for(var p,h=c(arguments[u++]),d=l?n(h).concat(l(h)):n(h),y=d.length,_=0;y>_;)f.call(h,p=d[_++])&&(r[p]=h[p]);return r}:s},function(e,t,r){var n=r(7),o=r(4),a=r(16);e.exports=r(5)?Object.defineProperties:function defineProperties(e,t){o(e);for(var r,i=a(t),c=i.length,s=0;c>s;)n.f(e,r=i[s++],t[r]);return e}},function(e,t,r){var n=r(11),o=r(48).f,a={}.toString,i="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],c=function(e){try{return o(e)}catch(e){return i.slice()}};e.exports.f=function getOwnPropertyNames(e){return i&&"[object Window]"==a.call(e)?c(e):o(n(e))}},function(e,t,r){var n=r(9);e.exports=function(e,t,r){for(var o in t)r&&e[o]?e[o]=t[o]:n(e,o,t[o]);return e}},function(e,t,r){var n=r(6),o=r(4),a=function(e,t){if(o(e),!n(t)&&null!==t)throw TypeError(t+": can't set as prototype!")};e.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(e,t,n){try{n=r(13)(Function.call,r(47).f(Object.prototype,"__proto__").set,2),n(e,[]),t=!(e instanceof Array)}catch(e){t=!0}return function setPrototypeOf(e,r){return a(e,r),t?e.__proto__=r:n(e,r),e}}({},!1):void 0),check:a}},function(e,t,r){"use strict";var n=r(1),o=r(0),a=r(7),i=r(5),c=r(2)("species");e.exports=function(e){var t="function"==typeof o[e]?o[e]:n[e];i&&t&&!t[c]&&a.f(t,c,{configurable:!0,get:function(){return this}})}},function(e,t,r){var n=r(33),o=r(25);e.exports=function(e){return function(t,r){var a,i,c=o(t)+"",s=n(r),u=c.length;return s<0||s>=u?e?"":void 0:(a=c.charCodeAt(s),a<55296||a>56319||s+1===u||(i=c.charCodeAt(s+1))<56320||i>57343?e?c.charAt(s):a:e?c.slice(s,s+2):(a-55296<<10)+(i-56320)+65536)}}},function(e,t,r){var n=r(33),o=Math.max,a=Math.min;e.exports=function(e,t){return e=n(e),e<0?o(e+t,0):a(e,t)}},function(e,t,r){var n=r(1),o=n.navigator;e.exports=o&&o.userAgent||""},function(e,t,r){var n=r(42),o=r(2)("iterator"),a=r(14);e.exports=r(0).getIteratorMethod=function(e){if(void 0!=e)return e[o]||e["@iterator"]||a[n(e)]}},function(e,t,r){"use strict";var n=r(96),o=r(107),a=r(14),i=r(11);e.exports=r(46)(Array,"Array",function(e,t){this._t=i(e),this._i=0,this._k=t},function(){var e=this._t,t=this._k,r=this._i++;return!e||r>=e.length?(this._t=void 0,o(1)):"keys"==t?o(0,r):"values"==t?o(0,e[r]):o(0,[r,e[r]])},"values"),a.Arguments=a.Array,n("keys"),n("values"),n("entries")},function(e,t,r){var n=r(3);n(n.S+n.F,"Object",{assign:r(110)})},function(e,t,r){var n=r(3);n(n.S,"Object",{create:r(29)})},function(e,t,r){var n=r(3);n(n.S+n.F*!r(5),"Object",{defineProperty:r(7).f})},function(e,t,r){var n=r(21),o=r(49);r(51)("getPrototypeOf",function(){return function getPrototypeOf(e){return o(n(e))}})},function(e,t,r){var n=r(21),o=r(16);r(51)("keys",function(){return function keys(e){return o(n(e))}})},function(e,t,r){var n=r(3);n(n.S,"Object",{setPrototypeOf:r(114).set})},function(e,t,r){"use strict";var n,o,a,i,c=r(15),s=r(1),u=r(13),l=r(42),f=r(3),p=r(6),h=r(17),d=r(97),y=r(100),_=r(55),v=r(56).set,m=r(109)(),g=r(28),b=r(52),w=r(118),x=r(53),C="Promise",O=s.TypeError,S=s.process,j=S&&S.versions,k=j&&j.v8||"",P=s[C],M="process"==l(S),R=function(){},D=o=g.f,E=!!function(){try{var e=P.resolve(1),t=(e.constructor={})[r(2)("species")]=function(e){e(R,R)};return(M||"function"==typeof PromiseRejectionEvent)&&e.then(R)instanceof t&&0!==k.indexOf("6.6")&&w.indexOf("Chrome/66")===-1}catch(e){}}(),A=function(e){var t;return!(!p(e)||"function"!=typeof(t=e.then))&&t},L=function(e,t){if(!e._n){e._n=!0;var r=e._c;m(function(){for(var n=e._v,o=1==e._s,a=0,i=function(t){var r,a,i,c=o?t.ok:t.fail,s=t.resolve,u=t.reject,l=t.domain;try{c?(o||(2==e._h&&H(e),e._h=1),c===!0?r=n:(l&&l.enter(),r=c(n),l&&(l.exit(),i=!0)),r===t.promise?u(O("Promise-chain cycle")):(a=A(r))?a.call(r,s,u):s(r)):u(n)}catch(e){l&&!i&&l.exit(),u(e)}};r.length>a;)i(r[a++]);e._c=[],e._n=!1,t&&!e._h&&q(e)})}},q=function(e){v.call(s,function(){var t,r,n,o=e._v,a=T(e);if(a&&(t=b(function(){M?S.emit("unhandledRejection",o,e):(r=s.onunhandledrejection)?r({promise:e,reason:o}):(n=s.console)&&n.error&&n.error("Unhandled promise rejection",o)}),e._h=M||T(e)?2:1),e._a=void 0,a&&t.e)throw t.v})},T=function(e){return 1!==e._h&&0===(e._a||e._c).length},H=function(e){v.call(s,function(){var t;M?S.emit("rejectionHandled",e):(t=s.onrejectionhandled)&&t({promise:e,reason:e._v})})},F=function(e){var t=this;t._d||(t._d=!0,t=t._w||t,t._v=e,t._s=2,t._a||(t._a=t._c.slice()),L(t,!0))},I=function(e){var t,r=this;if(!r._d){r._d=!0,r=r._w||r;try{if(r===e)throw O("Promise can't be resolved itself");(t=A(e))?m(function(){var n={_w:r,_d:!1};try{t.call(e,u(I,n,1),u(F,n,1))}catch(e){F.call(n,e)}}):(r._v=e,r._s=1,L(r,!1))}catch(e){F.call({_w:r,_d:!1},e)}}};E||(P=function Promise(e){d(this,P,C,"_h"),h(e),n.call(this);try{e(u(I,this,1),u(F,this,1))}catch(e){F.call(this,e)}},n=function Promise(e){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1},n.prototype=r(113)(P.prototype,{then:function then(e,t){var r=D(_(this,P));return r.ok="function"!=typeof e||e,r.fail="function"==typeof t&&t,r.domain=M?S.domain:void 0,this._c.push(r),this._a&&this._a.push(r),this._s&&L(this,!1),r.promise},catch:function(e){return this.then(void 0,e)}}),a=function(){var e=new n;this.promise=e,this.resolve=u(I,e,1),this.reject=u(F,e,1)},g.f=D=function(e){return e===P||e===i?new a(e):o(e)}),f(f.G+f.W+f.F*!E,{Promise:P}),r(20)(P,C),r(115)(C),i=r(0)[C],f(f.S+f.F*!E,C,{reject:function reject(e){var t=D(this);return(0,t.reject)(e),t.promise}}),f(f.S+f.F*(c||!E),C,{resolve:function resolve(e){return x(c&&this===i?P:this,e)}}),f(f.S+f.F*!(E&&r(106)(function(e){P.all(e).catch(R)})),C,{all:function all(e){var t=this,r=D(t),n=r.resolve,o=r.reject,a=b(function(){var r=[],a=0,i=1;y(e,!1,function(e){var c=a++,s=!1;r.push(void 0),i++,t.resolve(e).then(function(e){s||(s=!0,r[c]=e,--i||n(r))},o)}),--i||n(r)});return a.e&&o(a.v),r.promise},race:function race(e){var t=this,r=D(t),n=r.reject,o=b(function(){y(e,!1,function(e){t.resolve(e).then(r.resolve,n)})});return o.e&&n(o.v),r.promise}})},function(e,t,r){"use strict";var n=r(1),o=r(8),a=r(5),i=r(3),c=r(54),s=r(108).KEY,u=r(10),l=r(32),f=r(20),p=r(22),h=r(2),d=r(36),y=r(35),_=r(99),v=r(103),m=r(4),g=r(6),b=r(11),w=r(34),x=r(19),C=r(29),O=r(112),S=r(47),j=r(7),k=r(16),P=S.f,M=j.f,R=O.f,D=n.Symbol,E=n.JSON,A=E&&E.stringify,L="prototype",q=h("_hidden"),T=h("toPrimitive"),H={}.propertyIsEnumerable,F=l("symbol-registry"),I=l("symbols"),B=l("op-symbols"),U=Object[L],N="function"==typeof D,z=n.QObject,V=!z||!z[L]||!z[L].findChild,G=a&&u(function(){return 7!=C(M({},"a",{get:function(){return M(this,"a",{value:7}).a}})).a})?function(e,t,r){var n=P(U,t);n&&delete U[t],M(e,t,r),n&&e!==U&&M(U,t,n)}:M,$=function(e){var t=I[e]=C(D[L]);return t._k=e,t},K=N&&"symbol"==typeof D.iterator?function(e){return"symbol"==typeof e}:function(e){return e instanceof D},W=function defineProperty(e,t,r){return e===U&&W(B,t,r),m(e),t=w(t,!0),m(r),o(I,t)?(r.enumerable?(o(e,q)&&e[q][t]&&(e[q][t]=!1),r=C(r,{enumerable:x(0,!1)})):(o(e,q)||M(e,q,x(1,{})),e[q][t]=!0),G(e,t,r)):M(e,t,r)},J=function defineProperties(e,t){m(e);for(var r,n=_(t=b(t)),o=0,a=n.length;a>o;)W(e,r=n[o++],t[r]);return e},Y=function create(e,t){return void 0===t?C(e):J(C(e),t)},Z=function propertyIsEnumerable(e){var t=H.call(this,e=w(e,!0));return!(this===U&&o(I,e)&&!o(B,e))&&(!(t||!o(this,e)||!o(I,e)||o(this,q)&&this[q][e])||t)},X=function getOwnPropertyDescriptor(e,t){if(e=b(e),t=w(t,!0),e!==U||!o(I,t)||o(B,t)){var r=P(e,t);return!r||!o(I,t)||o(e,q)&&e[q][t]||(r.enumerable=!0),r}},Q=function getOwnPropertyNames(e){for(var t,r=R(b(e)),n=[],a=0;r.length>a;)o(I,t=r[a++])||t==q||t==s||n.push(t);return n},ee=function getOwnPropertySymbols(e){for(var t,r=e===U,n=R(r?B:b(e)),a=[],i=0;n.length>i;)!o(I,t=n[i++])||r&&!o(U,t)||a.push(I[t]);return a};N||(D=function Symbol(){if(this instanceof D)throw TypeError("Symbol is not a constructor!");var e=p(arguments.length>0?arguments[0]:void 0),t=function(r){this===U&&t.call(B,r),o(this,q)&&o(this[q],e)&&(this[q][e]=!1),G(this,e,x(1,r))};return a&&V&&G(U,e,{configurable:!0,set:t}),$(e)},c(D[L],"toString",function toString(){return this._k}),S.f=X,j.f=W,r(48).f=O.f=Q,r(18).f=Z,r(30).f=ee,a&&!r(15)&&c(U,"propertyIsEnumerable",Z,!0),d.f=function(e){return $(h(e))}),i(i.G+i.W+i.F*!N,{Symbol:D});for(var te="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),re=0;te.length>re;)h(te[re++]);for(var ne=k(h.store),oe=0;ne.length>oe;)y(ne[oe++]);i(i.S+i.F*!N,"Symbol",{for:function(e){return o(F,e+="")?F[e]:F[e]=D(e)},keyFor:function keyFor(e){if(!K(e))throw TypeError(e+" is not a symbol!");for(var t in F)if(F[t]===e)return t},useSetter:function(){V=!0},useSimple:function(){V=!1}}),i(i.S+i.F*!N,"Object",{create:Y,defineProperty:W,defineProperties:J,getOwnPropertyDescriptor:X,getOwnPropertyNames:Q,getOwnPropertySymbols:ee}),E&&i(i.S+i.F*(!N||u(function(){var e=D();return"[null]"!=A([e])||"{}"!=A({a:e})||"{}"!=A(Object(e))})),"JSON",{stringify:function stringify(e){for(var t,r,n=[e],o=1;arguments.length>o;)n.push(arguments[o++]);if(r=t=n[1],(g(t)||void 0!==e)&&!K(e))return v(t)||(t=function(e,t){if("function"==typeof r&&(t=r.call(this,e,t)),!K(t))return t}),n[1]=t,A.apply(E,n)}}),D[L][T]||r(9)(D[L],T,D[L].valueOf),f(D,"Symbol"),f(Math,"Math",!0),f(n.JSON,"JSON",!0)},function(e,t,r){"use strict";var n=r(3),o=r(0),a=r(1),i=r(55),c=r(53);n(n.P+n.R,"Promise",{finally:function(e){var t=i(this,o.Promise||a.Promise),r="function"==typeof e;return this.then(r?function(r){return c(t,e()).then(function(){return r})}:e,r?function(r){return c(t,e()).then(function(){throw r})}:e)}})},function(e,t,r){"use strict";var n=r(3),o=r(28),a=r(52);n(n.S,"Promise",{try:function(e){var t=o.f(this),r=a(e);return(r.e?t.reject:t.resolve)(r.v),t.promise}})},function(e,t,r){r(35)("asyncIterator")},function(e,t,r){r(35)("observable")},function(e,t,r){(function(t){function getValue(e,t){return null==e?void 0:e[t]}function isHostObject(e){var t=!1;if(null!=e&&"function"!=typeof e.toString)try{t=!!(e+"")}catch(e){}return t}function Hash(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function hashClear(){this.__data__=E?E(null):{}}function hashDelete(e){return this.has(e)&&delete this.__data__[e]}function hashGet(e){var t=this.__data__;if(E){var r=t[e];return r===n?void 0:r}return j.call(t,e)?t[e]:void 0}function hashHas(e){var t=this.__data__;return E?void 0!==t[e]:j.call(t,e)}function hashSet(e,t){return this.__data__[e]=E&&void 0===t?n:t,this}function ListCache(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function listCacheClear(){this.__data__=[]}function listCacheDelete(e){var t=this.__data__,r=assocIndexOf(t,e);return!(r<0)&&(r==t.length-1?t.pop():R.call(t,r,1),!0)}function listCacheGet(e){var t=this.__data__,r=assocIndexOf(t,e);return r<0?void 0:t[r][1]}function listCacheHas(e){return assocIndexOf(this.__data__,e)>-1}function listCacheSet(e,t){var r=this.__data__,n=assocIndexOf(r,e);return n<0?r.push([e,t]):r[n][1]=t,this}function MapCache(e){var t=-1,r=e?e.length:0;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function mapCacheClear(){this.__data__={hash:new Hash,map:new(D||ListCache),string:new Hash}}function mapCacheDelete(e){return getMapData(this,e).delete(e)}function mapCacheGet(e){return getMapData(this,e).get(e)}function mapCacheHas(e){return getMapData(this,e).has(e)}function mapCacheSet(e,t){return getMapData(this,e).set(e,t),this}function assignValue(e,t,r){var n=e[t];j.call(e,t)&&eq(n,r)&&(void 0!==r||t in e)||(e[t]=r)}function assocIndexOf(e,t){for(var r=e.length;r--;)if(eq(e[r][0],t))return r;return-1}function baseIsNative(e){return!(!isObject(e)||isMasked(e))&&(isFunction(e)||isHostObject(e)?P:y).test(toSource(e))}function baseSet(e,t,r,n){if(!isObject(e))return e;t=isKey(t,e)?[t]:castPath(t);for(var o=-1,a=t.length,i=a-1,c=e;null!=c&&++o<a;){var s=toKey(t[o]),u=r;if(o!=i){var l=c[s];u=n?n(l,s,c):void 0,void 0===u&&(u=isObject(l)?l:isIndex(t[o+1])?[]:{})}assignValue(c,s,u),c=c[s]}return e}function baseToString(e){if("string"==typeof e)return e;if(isSymbol(e))return L?L.call(e):"";var t=e+"";return"0"==t&&1/e==-o?"-0":t}function castPath(e){return T(e)?e:q(e)}function getMapData(e,t){var r=e.__data__;return isKeyable(t)?r["string"==typeof t?"string":"hash"]:r.map}function getNative(e,t){var r=getValue(e,t);return baseIsNative(r)?r:void 0}function isIndex(e,t){return t=null==t?a:t,!!t&&("number"==typeof e||_.test(e))&&e>-1&&e%1==0&&e<t}function isKey(e,t){if(T(e))return!1;var r=typeof e;return!("number"!=r&&"symbol"!=r&&"boolean"!=r&&null!=e&&!isSymbol(e))||(l.test(e)||!u.test(e)||null!=t&&e in Object(t))}function isKeyable(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e}function isMasked(e){return!!O&&O in e}function toKey(e){if("string"==typeof e||isSymbol(e))return e;var t=e+"";return"0"==t&&1/e==-o?"-0":t}function toSource(e){if(null!=e){try{return S.call(e)}catch(e){}try{return e+""}catch(e){}}return""}function memoize(e,t){if("function"!=typeof e||t&&"function"!=typeof t)throw new TypeError(r);var n=function(){var r=arguments,o=t?t.apply(this,r):r[0],a=n.cache;if(a.has(o))return a.get(o);var i=e.apply(this,r);return n.cache=a.set(o,i),i};return n.cache=new(memoize.Cache||MapCache),n}function eq(e,t){return e===t||e!==e&&t!==t}function isFunction(e){var t=isObject(e)?k.call(e):"";return t==i||t==c}function isObject(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function isObjectLike(e){return!!e&&"object"==typeof e}function isSymbol(e){return"symbol"==typeof e||isObjectLike(e)&&k.call(e)==s}function toString(e){return null==e?"":baseToString(e)}function set(e,t,r){return null==e?e:baseSet(e,t,r)}var r="Expected a function",n="__lodash_hash_undefined__",o=1/0,a=9007199254740991,i="[object Function]",c="[object GeneratorFunction]",s="[object Symbol]",u=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,l=/^\w*$/,f=/^\./,p=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,h=/[\\^$.*+?()[\]{}|]/g,d=/\\(\\)?/g,y=/^\[object .+?Constructor\]$/,_=/^(?:0|[1-9]\d*)$/,v="object"==typeof t&&t&&t.Object===Object&&t,m="object"==typeof self&&self&&self.Object===Object&&self,g=v||m||Function("return this")(),b=Array.prototype,w=Function.prototype,x=Object.prototype,C=g["__core-js_shared__"],O=function(){var e=/[^.]+$/.exec(C&&C.keys&&C.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}(),S=w.toString,j=x.hasOwnProperty,k=x.toString,P=RegExp("^"+S.call(j).replace(h,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),M=g.Symbol,R=b.splice,D=getNative(g,"Map"),E=getNative(Object,"create"),A=M?M.prototype:void 0,L=A?A.toString:void 0;Hash.prototype.clear=hashClear,Hash.prototype.delete=hashDelete,Hash.prototype.get=hashGet,Hash.prototype.has=hashHas,Hash.prototype.set=hashSet,ListCache.prototype.clear=listCacheClear,ListCache.prototype.delete=listCacheDelete,ListCache.prototype.get=listCacheGet,ListCache.prototype.has=listCacheHas,ListCache.prototype.set=listCacheSet,MapCache.prototype.clear=mapCacheClear,MapCache.prototype.delete=mapCacheDelete,MapCache.prototype.get=mapCacheGet,MapCache.prototype.has=mapCacheHas,MapCache.prototype.set=mapCacheSet;var q=memoize(function(e){e=toString(e);var t=[];return f.test(e)&&t.push(""),e.replace(p,function(e,r,n,o){t.push(n?o.replace(d,"$1"):r||e)}),t});memoize.Cache=MapCache;var T=Array.isArray;e.exports=set}).call(t,r(23))},function(e,t,r){var n,o;!function(a,i){n=i,o="function"==typeof n?n.call(t,r,t,e):n,!(void 0!==o&&(e.exports=o))}(this,function(){"use strict";function Cookie(e,t,r){return void 0===t?Cookie.get(e):void(null===t?Cookie.remove(e):Cookie.set(e,t,r))}function escapeRe(e){return e.replace(/[.*+?^$|[\](){}\\-]/g,"\\$&")}function convert(e){var t="";for(var r in e)if(e.hasOwnProperty(r)){if("expires"===r){var n=e[r];"object"!=typeof n&&(n+="number"==typeof n?"D":"",n=computeExpires(n)),e[r]=n.toUTCString()}if("secure"===r){e[r]&&(t+=";"+r);continue}t+=";"+r+"="+e[r]}return e.hasOwnProperty("path")||(t+=";path=/"),t}function computeExpires(e){var t=new Date,r=e.charAt(e.length-1),n=parseInt(e,10);switch(r){case"Y":t.setFullYear(t.getFullYear()+n);break;case"M":t.setMonth(t.getMonth()+n);break;case"D":t.setDate(t.getDate()+n);break;case"h":t.setHours(t.getHours()+n);break;case"m":t.setMinutes(t.getMinutes()+n);break;case"s":t.setSeconds(t.getSeconds()+n);break;default:t=new Date(e)}return t}return Cookie.enabled=function(){var e,t="__test_key";return document.cookie=t+"=1",e=!!document.cookie,e&&Cookie.remove(t),e},Cookie.get=function(e,t){if("string"!=typeof e||!e)return null;e="(?:^|; )"+escapeRe(e)+"(?:=([^;]*?))?(?:;|$)";var r=RegExp(e),n=r.exec(document.cookie);return null!==n?t?n[1]:decodeURIComponent(n[1]):null},Cookie.getRaw=function(e){return Cookie.get(e,!0)},Cookie.set=function(e,t,r,n){r!==!0&&(n=r,r=!1),n=convert(n?n:{});var o=e+"="+(r?t:encodeURIComponent(t))+n;document.cookie=o},Cookie.setRaw=function(e,t,r){Cookie.set(e,t,!0,r)},Cookie.remove=function(e){Cookie.set(e,"a",{expires:new Date})},Cookie})},function(e,t,r){r(65),r(64),r(62),e.exports=r(63)}]);
        ]]>
        </script>
        <div id="banner-1x1-area"></div>
        <script>
        <![CDATA[
        //chartbeat
        var _sf_async_config = {};
        _sf_async_config.sections = "esporte";
        ]]>
        </script> 
        <script>
        <![CDATA[

        //UOLTM - ads
        document.querySelectorAll(".c-advertising__banner-area").forEach(function(ad){window.uolads.push({id:ad.id})});
        window.uolads.push({id:"banner-1x1-area"});

        //IVC
        (function(p,l,o,w,i,n,g){if(!p[i]){p.GlobalIvcNamespace=p.GlobalIvcNamespace||[];
        p.GlobalIvcNamespace.push(i);p[i]=function(){(p[i].q=p[i].q||[]).push(arguments)
        };p[i].q=p[i].q||[];n=l.createElement(o);g=l.getElementsByTagName(o)[0];n.async=1;
        n.src=w;g.parentNode.insertBefore(n,g)}}(window,document,"script","https://datpdpmej1fn2.cloudfront.net/ivc.js","ivc"));
        window.ivc('newTracker', 'cf', 'ivccf.ivcbrasil.org.br', { idWeb: '125' });
        window.ivc('trackPageView');

        //chartbeat
        var _sf_async_config = _sf_async_config || {};
        _sf_async_config.uid = 50059;
        _sf_async_config.domain = 'folha.com.br';
        _sf_async_config.useCanonical = true;
        _sf_async_config.authors = 'Folha';
        (function(){
        function loadChartbeat() {
        window._sf_endpt=(new Date()).getTime();
        var e = document.createElement('script');
        e.setAttribute('language', 'javascript');
        e.setAttribute('type', 'text/javascript');
        e.setAttribute('src', 'https://static.chartbeat.com/js/chartbeat.js');
        document.body.appendChild(e);
        }
        var oldonload = window.onload;
        window.onload = (typeof window.onload != 'function') ?
        loadChartbeat : function() { oldonload(); loadChartbeat(); };
        })();

        //UOLTM  - clique - menu
        (function(){document.querySelector("header .container button[data-c-sidebar-menu-btn]").addEventListener("click",function(){
        window.UOLPD.Audience.countClick({category:'menulateral',action:'clique',label:'menu'});},false);})();
        ]]>
        </script> 
        <script src="//static.folha.uol.com.br/plugins/stats/1.0/stats.js"></script> <!--//-->
         
        <script src="https://static.folha.uol.com.br/folha/js/push/firebase-init.js?2018082001"></script>
    </body>
</html>