-
Notifications
You must be signed in to change notification settings - Fork 0
/
ipca.html
477 lines (447 loc) · 26.1 KB
/
ipca.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="generator" content="">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>IPCA</title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="marcus">
<link rel="icon" href="imgs/logo_fav.ico"/>
<link rel="preconnect" href="https://fonts.gstatic.com/">
<script src="https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.8.1/dist/alpine.min.js" defer=""></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"/>
<link rel="stylesheet" type="text/css" href="css/style.css">
<style type="text/css">
table#tbl-rend {
border-collapse: collapse;
border-radius: 1px;
text-align: center;
width: 50%;
margin-top: 07px;
margin-bottom: 07px;
}
#tbl-rend tr,td {
border: 1px solid;
padding: 5px;
background-color: #9dfd8a;
}
#tbl-rend th {
background-color: #1d9e04;
color: #fff;
}
</style>
</head>
<body>
<!--0b10f5/025afc-->
<header x-data="{ open: false, hidden: true }">
<div x-show="open" @click="{open = !open,hidden = !hidden}" x-transition:enter="transition duration-200 ease-out" x-transition:enter-start="opacity-0" x-transition:enter-end="opacity-100" x-transition:leave="transition duration-200 ease-in" x-transition:leave-start="opacity-100" x-transition:leave-end="opacity-0" class="top-0 left-0 main-nav-bg absolute w-full h-full z-40 bg-black bg-opacity-80 lg:hidden" style="display: none;">
</div>
<aside x-show="open" x-transition:enter="transition duration-200" x-transition:enter-start="transform translate-x-full" x-transition:enter-end="transform translate-x-0" x-transition:leave="transition duration-200" x-transition:leave-start="transform translate-x-0" x-transition:leave-end="transform translate-x-full" class="main-nav right-0 top-0 h-full w-full max-w-xs bg-white overflow-y-auto transform translate-x-0 fixed transition-transform pl-8 pr-4 z-50 lg:hidden" aria-labelledby="menu-button" :aria-hidden="hidden.toString()" aria-hidden="true" style="display: none;">
<nav class="flex flex-col flex-grow py-6" aria-label="Main Menu">
<div class="flex justify-end">
<button class="rounded-lg focus:outline-none focus:shadow-outline text-gray-700" @click="{open = !open,hidden = !hidden}" aria-label="Close menu"><svg fill="currentcolor" viewBox="0 0 20 20" class="w-6 h-6"><path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414.0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd"></path></svg></button>
</div>
<div class="flex flex-col flex-grow text-lg">
<a @click="{open = !open,hidden = !hidden}" class="py-2 mt-1.5 font-medium hover:text-gray-900 focus:text-gray-900 focus:outline-none" href="index.html">Mercado Crypto</a>
<a @click="{open = !open,hidden = !hidden}" class="py-2 mt-1.5 font-medium hover:text-gray-900 focus:text-gray-900 focus:outline-none" href="mercado-tradicional.html">Mercado Tradicional</a>
<a @click="{open = !open,hidden = !hidden}" class="py-2 mt-1.5 font-medium hover:text-gray-900 focus:text-gray-900 focus:outline-none" href="renda-fixa.html">Renda Fixa</a>
</div>
</nav>
</aside>
<div class="bg-green-78 relative z-30">
<div class="container flex flex-row items-center justify-between py-4 lg:py-5">
<a href="mercado-tradicional.html" class="focus:outline-none"><img src="imgs/logo-2.png" class="w-auto h-10 lg:h-14" alt="FavCrypto"></a>
<div class="flex items-center">
<div class="hidden lg:flex items-center space-x-6 text-base">
<a class="text-gray-800 hover:text-gray-900 focus:text-gray-900 focus:outline-none border-b-2 border-transparent hover:border-yellow-400 -mb-0.5 font-medium" href="index.html">Mercado Cripto</a>
<a class="text-gray-800 hover:text-gray-900 focus:text-gray-900 focus:outline-none border-b-2 border-transparent hover:border-yellow-400 -mb-0.5 font-medium" href="mercado-tradicional.html">Mercado Tradicional</a>
<a class="text-gray-800 hover:text-gray-900 focus:text-gray-900 focus:outline-none border-b-2 border-transparent hover:border-yellow-400 -mb-0.5 font-medium" href="renda-fixa.html">Renda Fixa</a>
</div>
<div class="flex items-center space-x-2 lg:ml-6"><div @click.away="open = false" class="relative" x-data="{ open: false }">
<button @click="open = !open" class="flex flex-shrink-0 items-center bg-white transform hover:translate-y-0.5 px-2.5 md:px-4 py-2 md:py-2.5 text-xs md:text-sm font-medium rounded-full border-2 border-gray-900 button-shadow focus:outline-none">
<span>Índices</span>
<svg fill="currentcolor" viewBox="0 0 20 20" :class="{'rotate-180': open, 'rotate-0': !open}" class="inline w-4 h-4 ml-1 lg:w-5 lg:h-5 lg:ml-1.5 transition-transform duration-200 transform rotate-0"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414.0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414.0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd"></path></svg>
</button>
<div x-show="open" x-transition:enter="transition ease-out duration-100" x-transition:enter-start="transform opacity-0 scale-95" x-transition:enter-end="transform opacity-100 scale-100" x-transition:leave="transition ease-in duration-75" x-transition:leave-start="transform opacity-100 scale-100" x-transition:leave-end="transform opacity-0 scale-95" class="dropdown absolute right-0 mt-4 origin-top-right rounded-lg shadow-lg w-48 z-30 text-left" style="display: none;">
<div class="px-2 py-2 bg-white rounded-md shadow space-y-1.5">
<a class="px-2 md:px-5 py-1.5 md:py-2.5 text-base font-medium bg-transparent rounded-lg text-gray-800 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline flex items-center" href="cdi.html">
<span class="ml-3" style="color: #5a5a5a;">CDI</span>
</a>
<a class="px-2 md:px-5 py-1.5 md:py-2.5 text-base font-medium bg-transparent rounded-lg text-gray-800 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline flex items-center" href="ipca.html" title="Twitter">
<span class="ml-3" style="color: #5a5a5a;">IPCA</span>
</a>
<a class="px-2 md:px-5 py-1.5 md:py-2.5 text-base font-medium bg-transparent rounded-lg text-gray-800 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline flex items-center" href="#" title="Twitter">
<span class="ml-3 incluir" style="color: #5a5a5a;">IBOVESPA</span>
</a>
<a class="px-2 md:px-5 py-1.5 md:py-2.5 text-base font-medium bg-transparent rounded-lg text-gray-800 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline flex items-center" href="selic.html" title="Telegram">
<span class="ml-3" style="color: #5a5a5a;">SELIC</span>
</a>
<a class="px-2 md:px-5 py-1.5 md:py-2.5 text-base font-medium bg-transparent rounded-lg text-gray-800 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline flex items-center" href="#" title="Telegram">
<span class="ml-3 incluir" style="color: #5a5a5a;">TX CAMBIO</span>
</a>
<a class="px-2 md:px-5 py-1.5 md:py-2.5 text-base font-medium bg-transparent rounded-lg text-gray-800 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline flex items-center" href="#" title="Telegram">
<span class="ml-3 incluir" style="color: #5a5a5a;">S&P 500</span>
</a>
<a class="px-2 md:px-5 py-1.5 md:py-2.5 text-base font-medium bg-transparent rounded-lg text-gray-800 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline flex items-center" href="#" title="Telegram">
<span class="ml-3 incluir" style="color: #5a5a5a;">NIKEI 225</span>
</a>
<a class="px-2 md:px-5 py-1.5 md:py-2.5 text-base font-medium bg-transparent rounded-lg text-gray-800 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline flex items-center" href="#" title="Telegram">
<span class="ml-3 incluir" style="color: #5a5a5a;">Índice Brasil</span>
</a>
<a class="px-2 md:px-5 py-1.5 md:py-2.5 text-base font-medium bg-transparent rounded-lg text-gray-800 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline flex items-center" href="#" title="Telegram">
<span class="ml-3 incluir" style="color: #5a5a5a;">IFIX</span>
</a>
<a class="px-2 md:px-5 py-1.5 md:py-2.5 text-base font-medium bg-transparent rounded-lg text-gray-800 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline flex items-center" href="#" title="Telegram">
<span class="ml-3 incluir" style="color: #5a5a5a;">ISE</span>
</a>
<a class="px-2 md:px-5 py-1.5 md:py-2.5 text-base font-medium bg-transparent rounded-lg text-gray-800 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline flex items-center" href="#" title="Telegram">
<span class="ml-3 incluir" style="color: #5a5a5a;">Índices setoriais da Bolsa</span>
</a>
<a class="px-2 md:px-5 py-1.5 md:py-2.5 text-base font-medium bg-transparent rounded-lg text-gray-800 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline flex items-center" href="#" title="Telegram">
<span class="ml-3 incluir" style="color: #5a5a5a;">Ptax</span>
</a>
</div>
</div>
</div>
<button class="rounded-lg lg:hidden focus:outsline-none focus:shadow-outline text-gray-700" @click="{open = !open,hidden = !hidden}" aria-label="Open menu" aria-controls="menu" :aria-expanded="open.toString()" id="menu-button" aria-expanded="false"><svg fill="#d4b4fd" viewBox="0 0 20 20" class="w-6 h-6"><path fill-rule="evenodd" d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4A1 1 0 013 5zm0 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zm6 5a1 1 0 011-1h6a1 1 0 110 2h-6a1 1 0 01-1-1z" clip-rule="evenodd"></path></svg></button>
</div>
</div>
</div>
</div>
</header>
<main class="overflow-x-hidden">
<section class="py-12 md:py-20 lg:py-28 xl:py-32 mx-auto" id="faq"><div class="container flex items-center flex-col">
<div class="max-w-3xl text-center flex flex-col items-center"><h1 class="text-3xl md:text-4xl xl:text-5xl font-display font-semibold mb-3 md:mb-4 lg:mb-5"><span style="color: #1d9e04;" id="font">IPCA</span></h1>
</div>
</div>
<article class="conteudo-mercado-tradicional">
<h2 class="font-20px">O que é IPCA?</h2>
<p>O Índice Nacional de Preços ao Consumidor Amplo (IPCA) mede a variação dos preços de produtos e serviços para o consumidor final.</p>
<p>O IPCA é também considerado como o principal indicador para a <strong>taxa de inflação do Brasil</strong>.</p>
<h2 class="font-20px">IPCA Acumulado e inflação anual</h2>
<p>O IPCA é obtido a partir da coleta de preços ao longo dos dias de um mês. Esses valores são comparados com o período base anterior, sendo calculada a taxa que indica a inflação no país.</p>
<p>Os valores mensais do índice vão se acumulando, e assim, se obtém a taxa de aumento dos preços para o ano, ou seja, a <strong>inflação acumulada dentro do período anual.</strong></p>
<h2 class="font-20px">Tabela IPCA acumulado</h2>
<p>Os valores atuais da inflação brasileira podem ser acompanhados na tabela abaixo:</p>
<p><strong>Tabela IPCA 2021</strong></p>
<table id="tbl-rend">
<tr>
<th>Mês</th>
<th>Valor mensal (%)</th>
<th>Acumulado no ano (%)</th>
<th>Acumulado em 12 meses (%)</th>
</tr>
<tr>
<td>JAN</td>
<td>0,25</td>
<td>0,25</td>
<td>4,56</td>
</tr>
<tr>
<td>FEV</td>
<td>0,86</td>
<td>1,11</td>
<td>5,20</td>
</tr>
<tr>
<td>MAR</td>
<td>0,93</td>
<td>2,05</td>
<td>6,10</td>
</tr>
<tr>
<td>ABR</td>
<td>0,31</td>
<td>2,37</td>
<td>6,76</td>
</tr>
<tr>
<td>MAI</td>
<td>0,83</td>
<td>3,22</td>
<td>8,06</td>
</tr>
<tr>
<td>JUN</td>
<td>0,53</td>
<td>3,77</td>
<td>8,35</td>
</tr>
<tr>
<td>JUL</td>
<td>0,96</td>
<td>4,76</td>
<td>8,99</td>
</tr>
<tr>
<td>AGO</td>
<td>0,87</td>
<td>5,67</td>
<td>9,68</td>
</tr>
<tr>
<td>SET</td>
<td>1,16</td>
<td>6,90</td>
<td>10,25</td>
</tr>
<tr>
<td>OUT</td>
<td>1,25</td>
<td>8,24</td>
<td>10,67</td>
</tr>
</table>
<p>O IBGE disponibiliza os valores para o IPCA do mês, analisado no mês anterior, apresentando também o acumulado no ano e o dos últimos 12 meses.</p>
<p>Em 2020 o acumulado da inflação brasileira foi de 4,52%. Confira os resultados na tabela:</p>
<p><strong>Tabela IPCA 2020</strong></p>
<table id="tbl-rend">
<tr>
<th>Mês</th>
<th>Valor mensal (%)</th>
<th>Acumulado no ano (%)</th>
<th>Acumulado em 12 meses (%)</th>
</tr>
<tr>
<td>JAN</td>
<td>0,21</td>
<td>0,21</td>
<td>4,19</td>
</tr>
<tr>
<td>FEV</td>
<td>0,25</td>
<td>0,46</td>
<td>4,01</td>
</tr>
<tr>
<td>MAR</td>
<td>0,07</td>
<td>0,53</td>
<td>3,30</td>
</tr>
<tr>
<td>ABR</td>
<td>-0,31</td>
<td>0,22</td>
<td>2,40</td>
</tr>
<tr>
<td>MAI</td>
<td>-0,38</td>
<td>0,16</td>
<td>1,88</td>
</tr>
<tr>
<td>JUN</td>
<td>0,26</td>
<td>0,10</td>
<td>2,13</td>
</tr>
<tr>
<td>JUL</td>
<td>0,36</td>
<td>0,46</td>
<td>2,31</td>
</tr>
<tr>
<td>AGO</td>
<td>0,24</td>
<td>0,70</td>
<td>2,44</td>
</tr>
<tr>
<td>SET</td>
<td>0,64</td>
<td>1,34</td>
<td>3,14</td>
</tr>
<tr>
<td>OUT</td>
<td>0,86</td>
<td>2,22</td>
<td>3,92</td>
</tr>
<tr>
<td>NOV</td>
<td>0,89</td>
<td>3,13</td>
<td>4,31</td>
</tr>
<tr>
<td>DEZ</td>
<td>1,35</td>
<td>4,52</td>
<td>4,52</td>
</tr>
</table>
<p>Além de definir a inflação para o país, o IPCA também serve como meta a ser seguida pela política monetária do Banco Central. Em 2021 a meta de inflação é de 3,75% no ano, com um mínimo de 2,25% e máximo de 5,25% considerando a margem de 1.5 pontos percentuais.</p>
<p>Os valores dos últimos anos são apresentados abaixo:</p>
<p><strong>IPCA nos últimos anos</strong></p>
<table id="tbl-rend">
<tr>
<th>Ano</th>
<th>Inflação acumulada (%)</th>
</tr>
<tr>
<td>2019</td>
<td>4,31</td>
</tr>
<tr>
<td>2018</td>
<td>3,75</td>
</tr>
<tr>
<td>2017</td>
<td>2,95</td>
</tr>
<tr>
<td>2016</td>
<td>6,29</td>
</tr>
<tr>
<td>2015</td>
<td>10,67</td>
</tr>
<tr>
<td>2014</td>
<td>6,41</td>
</tr>
<tr>
<td>2013</td>
<td>5,91</td>
</tr>
<tr>
<td>2012</td>
<td>5,84</td>
</tr>
<tr>
<td>2011</td>
<td>6,50</td>
</tr>
<tr>
<td>2010</td>
<td>5,91</td>
</tr>
<tr>
<td>2009</td>
<td>4,31</td>
</tr>
<tr>
<td>2008</td>
<td>5,90</td>
</tr>
<tr>
<td>2007</td>
<td>4,46</td>
</tr>
<tr>
<td>2006</td>
<td>3,14</td>
</tr>
<tr>
<td>2005</td>
<td>5,69</td>
</tr>
</table>
<p>Vale lembrar que a maior inflação brasileira foi de <strong>2.477,15%</strong> no ano de 1993, pouco antes do Plano Real.</p>
<h2 class="font-20px">Como é medido o IPCA</h2>
<p>Este índice é produzido pelo IBGE a partir do Sistema Nacional de Índices de Preços ao Consumidor (SNIPC). Ele analisa estabelecimentos comerciais e de prestações de serviços, em diferentes regiões metropolitanas do Brasil.</p>
<p>O foco deste índice feito pelo IBGE, são os bens destinados a consumidores e suas famílias, com rendas entre 1 e 40 salários mínimos e suas despesas no mês.</p>
<p>As despesas consideradas são divididas em grupos que fazem parte do orçamento familiar:</p>
<ul>
<li class="lis-rfx">• Alimentação e bebidas;</li>
<li class="lis-rfx">• Transportes;</li>
<li class="lis-rfx">• Habitação;</li>
<li class="lis-rfx">• Saúde e cuidados pessoais;</li>
<li class="lis-rfx">• Despesas pessoais;</li>
<li class="lis-rfx">• Vestuário;</li>
<li class="lis-rfx">• Comunicação;</li>
<li class="lis-rfx">• Artigos de residência;</li>
<li class="lis-rfx">• Educação.</li>
</ul>
<p>Além da variação dos preços, também são considerados os pesos que cada uma dessas despesas possuem no orçamento familiar.</p>
<p>Pelos valores do IPCA dizemos que, quando ele aumenta, os preços aumentaram com mais intensidade, e quando diminui significa que os preços cresceram com menor intensidade. Se acontecerem valores negativos, houve uma deflação, ou seja, os preços realmente caíram.</p>
<h2 class="font-20px">Importância dos valores do IPCA</h2>
<p>Ao servir como a inflação oficial, indica o quanto alterou o poder de compra dos consumidores no período estabelecido. O mesmo serve como indicador para quem faz uma aplicação financeira, por exemplo.</p>
<p>O IPCA serve, por exemplo, para a determinação da taxa básica de juros, SELIC. A partir dela é que se determina a remuneração de investimentos ou as taxas de empréstimos.</p>
<h2 class="font-20px">Diferenças entre IPCA e o INPC</h2>
<p>O sistema de coleta do IBGE também realiza nos estabelecimentos o levantamento dos preços para o Índice Nacional de Preços ao Consumidor (INPC). A diferença é que a população pesquisada apresenta rendimentos entre 1 e 5 salários mínimos.</p>
<p>Ao considerar uma faixa salarial menor, existe mais intensidade na variação dos preços às famílias de rendas mais baixas, principalmente entre setores mais básicos, como o de alimentação.</p>
<div>
<h2 class="origem">Fontes:</h2>
<p><a class="origem" href="https://www.dicionariofinanceiro.com/ipca/" target="_blank">Dicionário Financeiro</a></p>
</div>
</article>
</section>
</main>
<footer>
<div class="content-footer">
<div class="left box">
<div class="upper">
<div class="topic">Links</div>
<p class="meditar-refletir">Para meditar e refletir <strong><a href="https://bibliasagrada.github.io/antigo_testamento/jeremias/jeremias-9.html"><span style="color:#fff;">Jeremias 9:23-24</span></a></strong></p>
<div class="banner-footer">
<p>
<a href="index.html"><img alt="Páginas" src="imgs/logo-1.png"></a>
<a href="https://mlssystem.github.io/favcrypto/#noticias">Notícias</a>
<a href="https://mlssystem.github.io/favcrypto/#precos">Preços</a>
<a href="https://mlssystem.github.io/favcrypto/#exchanges">Exchanges</a>
<a href="https://mlssystem.github.io/favcrypto/#capitalizacao">Capitalização</a>
<a href="https://mlssystem.github.io/favcrypto/#arbitragem">Arbitragem</a>
<em>Outros Sites:</em>
<a href="https://mlssystem.github.io" target="_blank">MLSSystem</a>
<a href="https://mlssystem.github.io/bitblockdig" target="_blank">BitBlockDig</a>
<a href="https://mlssystem.github.io/trabalhadoresdaseara" target="_blank">TrabaladoresSeara</a>
<a href="https://mlssystem.github.io/linksuteis" target="_blank">Links Úteis</a>
<a href="https://bibliasagrada.github.io/" target="_blank">Bíblia Sagrada</a>
</p>
</div>
</div>
</div>
<div class="middle box">
<div class="topic">Favoritos</div>
<div><a href="https://mlssystem.github.io/favcrypto/mercado-tradicional.html"><img alt="Páginas" src="imgs/logo-favoritos-64.PNG"></a></div>
<div><a href="renda-fixa.html" target="_blank">Renda Fixa</a></div>
<div><a href="https://mlssystem.github.io/favcrypto/mercado-tradicional.html#renda-variavel" target="_blank">Renda Variável</a></div>
<div><a href="https://mlssystem.github.io/favcrypto/mercado-tradicional.html#fixa-variavel" target="_blank">Fixa e Variável</a></div>
<div><a href="https://mlssystem.github.io/favcrypto/mercado-tradicional.html#perfil" target="_blank">Perfil do Investidor</a></div>
<div><a href="https://mlssystem.github.io/favcrypto/mercado-tradicional.html#indices" target="_blank">Índices</a></div>
<em>Outros Sites:</em>
<div><a href="https://mlssystem.github.io" target="_blank">MLSSystem</a></div>
<div><a href="https://mlssystem.github.io/bitblockdig" target="_blank">BitBlockDig</a></div>
<div><a href="https://mlssystem.github.io/trabalhadoresdaseara" target="_blank">TrabaladoresSeara</a></div>
<div><a href="https://bibliasagrada.github.io/" target="_blank">Bíblia Sagrada</a></div>
</div>
<div class="right box">
<div class="topic">Inscreva-se</div>
<form action="#">
<input type="text" placeholder="Em desenvolvimento">
<input type="submit" name="" value="Inativo">
<div class="media-icons">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
</div>
</form>
<div class="lower">
<div class="topic">Contato</div>
<div class="phone">
<a href="#"><i class="fas fa-phone-volume"></i>+55 DD 98765 4321</a>
</div>
<div class="email">
<a href="#"><i class="fas fa-envelope"></i>abc@email.com</a>
</div>
</div>
</div>
</div>
<div class="bottom">
<p>Copyright © 2021 <a href="https://github.com/mlssystem">MLSSystem</a> Todos direitos reservados</p>
</div>
</footer>
</body>
</html>