maralvic commited on
Commit
7081b16
·
verified ·
1 Parent(s): 116fd93

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +22 -227
index.html CHANGED
@@ -6,128 +6,18 @@
6
  <title>Prof. Marcelo Vicente | Tributarista - @profmarcelovicente</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
8
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
- <style>
10
- .container {
11
- background: white;
12
- padding: 40px;
13
- border-radius: 15px;
14
- box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
15
- text-align: center;
16
- max-width: 500px;
17
- width: 100%;
18
- }
19
-
20
- .search-form {
21
- margin-bottom: 20px;
22
- }
23
-
24
- .input-group {
25
- display: flex;
26
- gap: 10px;
27
- margin-bottom: 20px;
28
- }
29
-
30
- input[type="text"] {
31
- flex: 1;
32
- padding: 15px;
33
- border: 2px solid #e0e0e0;
34
- border-radius: 8px;
35
- font-size: 16px;
36
- transition: border-color 0.3s ease;
37
- }
38
-
39
- input[type="text"]:focus {
40
- outline: none;
41
- border-color: #667eea;
42
- }
43
-
44
- .btn-acessar {
45
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
46
- color: white;
47
- border: none;
48
- padding: 15px 30px;
49
- border-radius: 8px;
50
- font-size: 16px;
51
- cursor: pointer;
52
- transition: transform 0.2s ease;
53
- }
54
-
55
- .btn-acessar:hover {
56
- transform: translateY(-2px);
57
- }
58
-
59
- .help-text {
60
- color: #666;
61
- font-size: 14px;
62
- margin-top: 10px;
63
- }
64
-
65
- /* Modal styles */
66
- .modal {
67
  display: none;
68
- position: fixed;
69
- z-index: 1000;
70
- left: 0;
71
- top: 0;
72
- width: 100%;
73
- height: 100%;
74
- background-color: rgba(0, 0, 0, 0.5);
75
- }
76
-
77
- .modal-content {
78
- background-color: white;
79
- margin: 15% auto;
80
- padding: 30px;
81
- border-radius: 10px;
82
- width: 90%;
83
- max-width: 400px;
84
- text-align: center;
85
- box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
86
- }
87
-
88
- .modal-header {
89
- font-size: 1.5em;
90
- font-weight: bold;
91
- color: #333;
92
- margin-bottom: 20px;
93
- }
94
-
95
- .modal-body {
96
- color: #666;
97
- margin-bottom: 25px;
98
- font-size: 16px;
99
- }
100
-
101
- .btn-ok {
102
- background: #667eea;
103
- color: white;
104
- border: none;
105
- padding: 12px 25px;
106
- border-radius: 6px;
107
- font-size: 16px;
108
- cursor: pointer;
109
- transition: background-color 0.3s ease;
110
  }
111
-
112
- .btn-ok:hover {
113
- background: #5a6fd8;
114
- }
115
-
116
- @media (max-width: 600px) {
117
- .container {
118
- padding: 30px 20px;
119
- }
120
-
121
- h1 {
122
- font-size: 1.8em;
123
- }
124
-
125
- .input-group {
126
- flex-direction: column;
127
- }
128
  }
129
-
130
- @import url('https://fonts.cdnfonts.com/css/arial-rounded-mt');
131
 
132
  body {
133
  font-family: 'Arial Rounded MT', sans-serif;
@@ -196,8 +86,8 @@
196
  <section class="text-white bg-cover bg-center" style="background-image: url('https://marcelovicente.prof/img/capa_02.png')">
197
  <div class="bg-blue-900 bg-opacity-70 py-2">
198
  <div class="container mx-auto px-4 text-center py-8">
199
- <h1 class="text-4xl md:text-5xl mb-6">Negociações Tributárias por Unidade Federada - Estados / DF</h1>
200
- <p class="text-xl md:text-2xl mb-8">Confira quais modalidades de Negocição estão disponíveis</p>
201
  <div class="mt-8 text-center">
202
  <a href="https://marcelovicente.prof/live1947" target="_blank" class="inline-block profmarcelovicente-btn text-xl font-semibold px-8 py-3 rounded-full hover:shadow-md transition-all">
203
  <i class="fas fa-rocket"></i> Quero me tornar expert!
@@ -210,114 +100,19 @@
210
  <!-- Content Section -->
211
  <section class="container mx-auto px-4 py-12 max-w-4xl">
212
  <div class="bg-white rounded-lg shadow-lg p-8">
213
- <div class="container">
214
- <h1>Acesso às Procuradorias das Fazendas dos Estados e do DF</h1>
215
-
216
- <form class="search-form" onsubmit="buscarEstado(event)">
217
- <div class="input-group">
218
- <input
219
- type="text"
220
- id="estadoInput"
221
- placeholder="Digite a sigla (ex: SP) ou nome do estado (ex: São Paulo)"
222
- autocomplete="off"
223
- >
224
- <button type="submit" class="btn-acessar">Acessar</button>
225
- </div>
226
- </form>
227
-
228
- <div class="help-text">
229
- Digite a sigla (SP, RJ, DF etc.) ou o nome da Unidade Federada
230
- </div>
231
- </div>
232
-
233
- <!-- Modal -->
234
- <div id="errorModal" class="modal">
235
- <div class="modal-content">
236
- <div class="modal-header">Resultado da pesquisa</div>
237
- <div class="modal-body">Unidade não encontrada. Tente novamente</div>
238
- <button class="btn-ok" onclick="fecharModal()">OK</button>
239
  </div>
240
- </div>
241
-
242
- <script>
243
- // Dados dos estados brasileiros
244
- const statesData = {
245
- 'AC': 'www.pge.ac.gov.br/', 'ACRE': 'www.pge.ac.gov.br/',
246
- 'AL': 'http://www.pge.al.gov.br/', 'ALAGOAS': 'http://www.pge.al.gov.br/',
247
- 'AM': 'http://www.pge.am.gov.br/', 'AMAZONAS': 'http://www.pge.am.gov.br/',
248
- 'AP': 'http://www.pge.ap.gov.br/', 'AMAPÁ': 'http://www.pge.ap.gov.br/', 'AMAPA': 'http://www.pge.ap.gov.br/',
249
- 'BA': 'http://www.pge.ba.gov.br/', 'BAHIA': 'http://www.pge.ba.gov.br/',
250
- 'CE': 'http://www.pge.ce.gov.br/', 'CEARÁ': 'http://www.pge.ce.gov.br/', 'CEARA': 'http://www.pge.ce.gov.br/',
251
- 'DF': 'http://www.pg.df.gov.br/', 'DISTRITO FEDERAL': 'http://www.pg.df.gov.br/',
252
- 'ES': 'http://www.pge.es.gov.br/', 'ESPÍRITO SANTO': 'http://www.pge.es.gov.br/', 'ESPIRITO SANTO': 'http://www.pge.es.gov.br/',
253
- 'GO': 'http://www.procuradoria.go.gov.br/', 'GOIÁS': 'http://www.procuradoria.go.gov.br/', 'GOIAS': 'http://www.procuradoria.go.gov.br/',
254
- 'MA': 'http://www.pge.ma.gov.br/', 'MARANHÃO': 'http://www.pge.ma.gov.br/', 'MARANHAO': 'http://www.pge.ma.gov.br/',
255
- 'MG': 'http://www.pge.mg.gov.br/', 'MINAS GERAIS': 'http://www.pge.mg.gov.br/',
256
- 'MS': 'http://www.pge.ms.gov.br/', 'MATO GROSSO DO SUL': 'http://www.pge.ms.gov.br/',
257
- 'MT': 'http://www.pge.mt.gov.br/', 'MATO GROSSO': 'http://www.pge.mt.gov.br/',
258
- 'PA': 'http://www.pge.pa.gov.br/', 'PARÁ': 'http://www.pge.pa.gov.br/', 'PARA': 'http://www.pge.pa.gov.br/',
259
- 'PB': 'http://www.pge.pb.gov.br/', 'PARAÍBA': 'http://www.pge.pb.gov.br/', 'PARAIBA': 'http://www.pge.pb.gov.br/',
260
- 'PE': 'http://www.pge.pe.gov.br/', 'PERNAMBUCO': 'http://www.pge.pe.gov.br/',
261
- 'PI': 'http://www.pge.pi.gov.br/', 'PIAUÍ': 'http://www.pge.pi.gov.br/', 'PIAUI': 'http://www.pge.pi.gov.br/',
262
- 'PR': 'http://www.pge.pr.gov.br/', 'PARANÁ': 'http://www.pge.pr.gov.br/', 'PARANA': 'http://www.pge.pr.gov.br/',
263
- 'RJ': 'http://www.pge.rj.gov.br/', 'RIO DE JANEIRO': 'http://www.pge.rj.gov.br/',
264
- 'RN': 'http://www.pge.rn.gov.br/', 'RIO GRANDE DO NORTE': 'http://www.pge.rn.gov.br/',
265
- 'RO': 'http://www.pge.ro.gov.br/', 'RONDÔNIA': 'http://www.pge.ro.gov.br/', 'RONDONIA': 'http://www.pge.ro.gov.br/',
266
- 'RR': 'http://www.pge.rn.gov.br/', 'RORAIMA': 'http://www.pge.rn.gov.br/',
267
- 'RS': 'http://www.pge.rs.gov.br/', 'RIO GRANDE DO SUL': 'http://www.pge.rs.gov.br/',
268
- 'SC': 'http://www.pge.sc.gov.br/', 'SANTA CATARINA': 'http://www.pge.sc.gov.br/',
269
- 'SE': 'http://www.pge.se.gov.br/', 'SERGIPE': 'http://www.pge.se.gov.br/',
270
- 'SP': 'http://www.pge.sp.gov.br/', 'SÃO PAULO': 'http://www.pge.sp.gov.br/', 'SAO PAULO': 'http://www.pge.sp.gov.br/',
271
- 'TO': 'http://www.pge.to.gov.br/', 'TOCANTINS': 'http://www.pge.to.gov.br/'
272
- };
273
-
274
- function buscarEstado(event) {
275
- event.preventDefault();
276
-
277
- const input = document.getElementById('estadoInput');
278
- const busca = input.value.trim().toUpperCase();
279
-
280
- if (!busca) {
281
- mostrarModal();
282
- return;
283
- }
284
-
285
- const url = statesData[busca];
286
-
287
- if (url) {
288
- // Adiciona protocolo se não existir
289
- const urlCompleta = url.startsWith('http') ? url : 'http://' + url;
290
- window.open(urlCompleta, '_blank');
291
- input.value = ''; // Limpa o campo após busca bem-sucedida
292
- } else {
293
- mostrarModal();
294
- }
295
- }
296
-
297
- function mostrarModal() {
298
- document.getElementById('errorModal').style.display = 'block';
299
- }
300
-
301
- function fecharModal() {
302
- document.getElementById('errorModal').style.display = 'none';
303
- }
304
-
305
- // Fechar modal ao clicar fora dele
306
- window.onclick = function(event) {
307
- const modal = document.getElementById('errorModal');
308
- if (event.target === modal) {
309
- fecharModal();
310
- }
311
- }
312
 
313
- // Permitir busca ao pressionar Enter
314
- document.getElementById('estadoInput').addEventListener('keypress', function(event) {
315
- if (event.key === 'Enter') {
316
- buscarEstado(event);
317
- }
318
- });
319
- </script>
320
- </div>
321
 
322
  <!-- Torne-se um Expert Section -->
323
  <div class="mb-12">
 
6
  <title>Prof. Marcelo Vicente | Tributarista - @profmarcelovicente</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
8
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .dropdown-menu {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  display: none;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  }
13
+ .dropdown:hover .dropdown-menu {
14
+ display: block;
15
+ z-index: 1000;
16
+ min-width: 160px;
17
+ box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
18
+ border-radius: 4px;
 
 
 
 
 
 
 
 
 
 
 
19
  }
20
+ @import url('https://fonts.cdnfonts.com/css/arial-rounded-mt');
 
21
 
22
  body {
23
  font-family: 'Arial Rounded MT', sans-serif;
 
86
  <section class="text-white bg-cover bg-center" style="background-image: url('https://marcelovicente.prof/img/capa_02.png')">
87
  <div class="bg-blue-900 bg-opacity-70 py-2">
88
  <div class="container mx-auto px-4 text-center py-8">
89
+ <h1 class="text-4xl md:text-5xl mb-6">AAAA</h1>
90
+ <p class="text-xl md:text-2xl mb-8">BBBB</p>
91
  <div class="mt-8 text-center">
92
  <a href="https://marcelovicente.prof/live1947" target="_blank" class="inline-block profmarcelovicente-btn text-xl font-semibold px-8 py-3 rounded-full hover:shadow-md transition-all">
93
  <i class="fas fa-rocket"></i> Quero me tornar expert!
 
100
  <!-- Content Section -->
101
  <section class="container mx-auto px-4 py-12 max-w-4xl">
102
  <div class="bg-white rounded-lg shadow-lg p-8">
103
+ XXXX
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  </div>
105
+ <!-- Prazos Importantes Section -->
106
+ <div class="mb-12">
107
+ <div class="p-6 rounded-lg bg-[#00CC88]">
108
+ <h2 class="text-2xl font-bold text-white mb-4 flex items-center gap-3">
109
+ <i class="fas fa-clock"></i>
110
+ PRAZOS IMPORTANTES
111
+ </h2>
112
+ <p class="text-white">Muitas modalidades são temporárias, criando um senso de urgência. Posicione-se como um especialista atento e proativo, comunicando-se rapidamente com seus clientes sobre as janelas de oportunidade.</p>
113
+ </div>
114
+ </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115
 
 
 
 
 
 
 
 
 
116
 
117
  <!-- Torne-se um Expert Section -->
118
  <div class="mb-12">