maralvic commited on
Commit
faf938a
·
verified ·
1 Parent(s): 75e2de0

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +378 -19
  3. prompts.txt +3 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Teste
3
- emoji: 🏆
4
- colorFrom: red
5
- colorTo: purple
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: teste
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: green
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,378 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="pt-BR">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Relatório Negociações PGFN | MVICENTE ADVOCACIA</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.10.1/html2pdf.bundle.min.js"></script>
9
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
10
+ <style>
11
+ @media print {
12
+ body * {
13
+ visibility: hidden;
14
+ }
15
+ #report-content, #report-content * {
16
+ visibility: visible;
17
+ }
18
+ #report-content {
19
+ position: absolute;
20
+ left: 0;
21
+ top: 0;
22
+ width: 100%;
23
+ margin: 0;
24
+ padding: 0;
25
+ }
26
+ .no-print {
27
+ display: none !important;
28
+ }
29
+ }
30
+
31
+ /* Custom scrollbar */
32
+ ::-webkit-scrollbar {
33
+ width: 8px;
34
+ height: 8px;
35
+ }
36
+ ::-webkit-scrollbar-track {
37
+ background: #f1f1f1;
38
+ }
39
+ ::-webkit-scrollbar-thumb {
40
+ background: #888;
41
+ border-radius: 4px;
42
+ }
43
+ ::-webkit-scrollbar-thumb:hover {
44
+ background: #555;
45
+ }
46
+
47
+ /* Fade-in animation */
48
+ @keyframes fadeIn {
49
+ from { opacity: 0; transform: translateY(10px); }
50
+ to { opacity: 1; transform: translateY(0); }
51
+ }
52
+
53
+ .animate-fade-in {
54
+ animation: fadeIn 0.5s ease-out forwards;
55
+ }
56
+
57
+ /* Card hover effect */
58
+ .card-hover:hover {
59
+ transform: translateY(-5px);
60
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
61
+ }
62
+
63
+ /* Status badges */
64
+ .status-badge {
65
+ @apply inline-flex items-center px-3 py-1 rounded-full text-xs font-medium;
66
+ }
67
+ .status-awaiting {
68
+ @apply bg-yellow-100 text-yellow-800;
69
+ }
70
+ .status-due {
71
+ @apply bg-blue-100 text-blue-800;
72
+ }
73
+ .status-paid {
74
+ @apply bg-green-100 text-green-800;
75
+ }
76
+
77
+ /* Section divider */
78
+ .section-divider {
79
+ @apply relative my-8;
80
+ }
81
+ .section-divider:after {
82
+ content: "";
83
+ @apply absolute left-0 right-0 bottom-0 h-px bg-gradient-to-r from-transparent via-blue-200 to-transparent;
84
+ }
85
+
86
+ /* Table styling */
87
+ .table-container {
88
+ @apply overflow-x-auto rounded-xl border border-gray-200;
89
+ }
90
+ table {
91
+ @apply min-w-full divide-y divide-gray-200;
92
+ }
93
+ th {
94
+ @apply px-6 py-3 bg-gray-50 text-left text-xs font-semibold text-gray-600 uppercase tracking-wider;
95
+ }
96
+ td {
97
+ @apply px-6 py-4 whitespace-nowrap text-sm text-gray-700;
98
+ }
99
+ tr:nth-child(even) {
100
+ @apply bg-gray-50;
101
+ }
102
+ tr:hover {
103
+ @apply bg-blue-50;
104
+ }
105
+
106
+ /* Custom buttons */
107
+ .btn {
108
+ @apply inline-flex items-center px-4 py-2 rounded-lg font-medium transition-all duration-200;
109
+ }
110
+ .btn-primary {
111
+ @apply bg-blue-600 text-white hover:bg-blue-700 shadow-md;
112
+ }
113
+ .btn-secondary {
114
+ @apply bg-gray-100 text-gray-700 hover:bg-gray-200;
115
+ }
116
+ </style>
117
+ </head>
118
+ <body class="bg-gray-50 font-sans antialiased">
119
+ <!-- Floating action buttons -->
120
+ <div class="fixed bottom-6 right-6 space-y-3 z-50 no-print">
121
+ <button id="print-btn" class="btn btn-primary shadow-lg flex items-center">
122
+ <i class="fas fa-print mr-2"></i> Imprimir
123
+ </button>
124
+ <button id="download-btn" class="btn btn-primary shadow-lg flex items-center">
125
+ <i class="fas fa-download mr-2"></i> PDF
126
+ </button>
127
+ </div>
128
+
129
+ <div class="container mx-auto px-4 py-8 max-w-6xl">
130
+ <div class="bg-white rounded-2xl shadow-xl overflow-hidden mb-8 animate-fade-in" id="report-content">
131
+ <!-- Header with gradient background -->
132
+ <div class="bg-gradient-to-r from-blue-700 to-blue-600 text-white p-8">
133
+ <div class="flex flex-col md:flex-row justify-between items-start md:items-center">
134
+ <div class="mb-4 md:mb-0">
135
+ <div class="flex items-center">
136
+ <div class="bg-white/20 p-2 rounded-lg mr-4">
137
+ <i class="fas fa-file-invoice text-2xl"></i>
138
+ </div>
139
+ <div>
140
+ <h1 class="text-3xl font-bold">Relatório de Negociações PGFN</h1>
141
+ <p class="text-blue-100 opacity-90">MVICENTE ADVOCACIA</p>
142
+ </div>
143
+ </div>
144
+ </div>
145
+ <div class="text-right">
146
+ <div class="bg-white/10 p-3 rounded-lg inline-block">
147
+ <p class="text-sm text-blue-100">Gerado em: <span id="current-date" class="font-medium">30/05/2025 - 14:30</span></p>
148
+ </div>
149
+ </div>
150
+ </div>
151
+ </div>
152
+
153
+ <!-- Client Info Card -->
154
+ <div class="p-6 border-b border-gray-200">
155
+ <div class="flex flex-col md:flex-row justify-between items-start md:items-center gap-4">
156
+ <div>
157
+ <h2 class="text-2xl font-bold text-gray-800">BALUARTE EXTINTORES</h2>
158
+ <div class="flex items-center mt-1">
159
+ <span class="text-gray-600 mr-4">42.954.300/0001-50</span>
160
+ <span class="text-gray-600"><i class="fas fa-calendar-alt mr-1"></i> Desde: 15/03/2010</span>
161
+ </div>
162
+ </div>
163
+ <div class="flex flex-col items-end">
164
+ <span class="status-badge status-awaiting mb-2">
165
+ <i class="fas fa-clock mr-1"></i> AGUARDANDO PAGAMENTO
166
+ </span>
167
+ <div class="text-sm text-gray-600">
168
+ <span class="font-medium">Nº Negociação:</span> 12877926
169
+ </div>
170
+ </div>
171
+ </div>
172
+ </div>
173
+
174
+ <!-- Main Content -->
175
+ <div class="p-6 md:p-8">
176
+ <!-- General Information Section -->
177
+ <div class="mb-10">
178
+ <div class="flex items-center mb-6">
179
+ <div class="bg-blue-100 p-2 rounded-lg mr-3">
180
+ <i class="fas fa-info-circle text-blue-600"></i>
181
+ </div>
182
+ <h3 class="text-xl font-bold text-gray-800">Informações Gerais</h3>
183
+ </div>
184
+
185
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
186
+ <div class="bg-gray-50 p-5 rounded-xl border border-gray-200 card-hover transition-all duration-200">
187
+ <h4 class="text-sm font-semibold text-gray-500 mb-3">TIPO DE NEGOCIAÇÃO</h4>
188
+ <p class="text-lg font-medium text-gray-800">Parcelamento</p>
189
+ <p class="text-sm text-gray-600 mt-1">Modalidade: 0005 - PARCELAMENTO SEM GARANTIA</p>
190
+ </div>
191
+
192
+ <div class="bg-gray-50 p-5 rounded-xl border border-gray-200 card-hover transition-all duration-200">
193
+ <h4 class="text-sm font-semibold text-gray-500 mb-3">DETALHES TEMPORAIS</h4>
194
+ <div class="space-y-1">
195
+ <p class="text-sm text-gray-700"><span class="font-medium">Adesão:</span> 29/05/2025 - 18:33</p>
196
+ <p class="text-sm text-gray-700"><span class="font-medium">Consolidação:</span> 29/05/2025</p>
197
+ <p class="text-sm text-gray-700"><span class="font-medium">Situação:</span> 29/05/2025</p>
198
+ </div>
199
+ </div>
200
+
201
+ <div class="bg-gray-50 p-5 rounded-xl border border-gray-200 card-hover transition-all duration-200">
202
+ <h4 class="text-sm font-semibold text-gray-500 mb-3">CONFIGURAÇÕES</h4>
203
+ <div class="space-y-1">
204
+ <p class="text-sm text-gray-700"><span class="font-medium">Prestações:</span> 60 parcelas</p>
205
+ <p class="text-sm text-gray-700"><span class="font-medium">Débito automático:</span> Não</p>
206
+ <p class="text-sm text-gray-700"><span class="font-medium">Recibo:</span> 00000000000000000000</p>
207
+ </div>
208
+ </div>
209
+ </div>
210
+ </div>
211
+
212
+ <!-- Financial Summary Section -->
213
+ <div class="mb-10">
214
+ <div class="flex items-center mb-6">
215
+ <div class="bg-blue-100 p-2 rounded-lg mr-3">
216
+ <i class="fas fa-chart-pie text-blue-600"></i>
217
+ </div>
218
+ <h3 class="text-xl font-bold text-gray-800">Resumo Financeiro</h3>
219
+ </div>
220
+
221
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4">
222
+ <div class="bg-gradient-to-br from-blue-50 to-blue-100 p-5 rounded-xl border border-blue-200 card-hover transition-all duration-200">
223
+ <div class="flex items-center justify-between">
224
+ <div>
225
+ <p class="text-sm font-medium text-blue-600">PRINCIPAL</p>
226
+ <p class="text-2xl font-bold text-blue-800 mt-1">R$ 73.039,65</p>
227
+ </div>
228
+ <div class="bg-blue-100 p-2 rounded-lg">
229
+ <i class="fas fa-file-invoice-dollar text-blue-600"></i>
230
+ </div>
231
+ </div>
232
+ </div>
233
+
234
+ <div class="bg-gradient-to-br from-yellow-50 to-yellow-100 p-5 rounded-xl border border-yellow-200 card-hover transition-all duration-200">
235
+ <div class="flex items-center justify-between">
236
+ <div>
237
+ <p class="text-sm font-medium text-yellow-600">MULTA</p>
238
+ <p class="text-2xl font-bold text-yellow-800 mt-1">R$ 14.607,93</p>
239
+ </div>
240
+ <div class="bg-yellow-100 p-2 rounded-lg">
241
+ <i class="fas fa-exclamation-triangle text-yellow-600"></i>
242
+ </div>
243
+ </div>
244
+ </div>
245
+
246
+ <div class="bg-gradient-to-br from-purple-50 to-purple-100 p-5 rounded-xl border border-purple-200 card-hover transition-all duration-200">
247
+ <div class="flex items-center justify-between">
248
+ <div>
249
+ <p class="text-sm font-medium text-purple-600">JUROS</p>
250
+ <p class="text-2xl font-bold text-purple-800 mt-1">R$ 5.937,50</p>
251
+ </div>
252
+ <div class="bg-purple-100 p-2 rounded-lg">
253
+ <i class="fas fa-percentage text-purple-600"></i>
254
+ </div>
255
+ </div>
256
+ </div>
257
+
258
+ <div class="bg-gradient-to-br from-green-50 to-green-100 p-5 rounded-xl border border-green-200 card-hover transition-all duration-200">
259
+ <div class="flex items-center justify-between">
260
+ <div>
261
+ <p class="text-sm font-medium text-green-600">VALOR CONSOLIDADO</p>
262
+ <p class="text-2xl font-bold text-green-800 mt-1">R$ 102.943,58</p>
263
+ </div>
264
+ <div class="bg-green-100 p-2 rounded-lg">
265
+ <i class="fas fa-hand-holding-usd text-green-600"></i>
266
+ </div>
267
+ </div>
268
+ </div>
269
+ </div>
270
+ </div>
271
+
272
+ <!-- Debts Section -->
273
+ <div class="mb-10">
274
+ <div class="flex items-center justify-between mb-6">
275
+ <div class="flex items-center">
276
+ <div class="bg-blue-100 p-2 rounded-lg mr-3">
277
+ <i class="fas fa-file-invoice-dollar text-blue-600"></i>
278
+ </div>
279
+ <h3 class="text-xl font-bold text-gray-800">Débitos Incluídos</h3>
280
+ </div>
281
+ <span class="text-sm text-gray-500">1 débito encontrado</span>
282
+ </div>
283
+
284
+ <div class="table-container">
285
+ <table class="min-w-full">
286
+ <thead>
287
+ <tr>
288
+ <th class="pl-8">Item</th>
289
+ <th>Código Receita</th>
290
+ <th>Incluído em</th>
291
+ <th>Principal</th>
292
+ <th>Multa</th>
293
+ <th>Juros</th>
294
+ <th>Encargos</th>
295
+ <th class="pr-8">Total</th>
296
+ </tr>
297
+ </thead>
298
+ <tbody>
299
+ <tr>
300
+ <td class="pl-8">1</td>
301
+ <td>1507</td>
302
+ <td>29/05/2025 - 18:33</td>
303
+ <td class="font-medium">R$ 73.039,65</td>
304
+ <td>R$ 14.607,93</td>
305
+ <td>R$ 5.937,50</td>
306
+ <td>R$ 9.358,50</td>
307
+ <td class="pr-8 font-bold text-blue-600">R$ 102.943,58</td>
308
+ </tr>
309
+ </tbody>
310
+ </table>
311
+ </div>
312
+ </div>
313
+
314
+ <!-- Consolidation Demo Section -->
315
+ <div class="mb-10">
316
+ <div class="flex items-center mb-6">
317
+ <div class="bg-blue-100 p-2 rounded-lg mr-3">
318
+ <i class="fas fa-calculator text-blue-600"></i>
319
+ </div>
320
+ <h3 class="text-xl font-bold text-gray-800">Demonstrativo de Consolidação</h3>
321
+ </div>
322
+
323
+ <div class="table-container mb-6">
324
+ <table class="min-w-full">
325
+ <thead>
326
+ <tr>
327
+ <th class="pl-8">Demonstrativo</th>
328
+ <th>Principal</th>
329
+ <th>Multa</th>
330
+ <th>Juros</th>
331
+ <th>Encargos</th>
332
+ <th class="pr-8">Total</th>
333
+ </tr>
334
+ </thead>
335
+ <tbody>
336
+ <tr>
337
+ <td class="pl-8">Total sem reduções (A)</td>
338
+ <td>R$ 73.039,65</td>
339
+ <td>R$ 14.607,93</td>
340
+ <td>R$ 5.937,50</td>
341
+ <td>R$ 9.358,50</td>
342
+ <td class="pr-8">R$ 102.943,58</td>
343
+ </tr>
344
+ <tr>
345
+ <td class="pl-8">Valor da entrada (s/ Redução)</td>
346
+ <td>R$ 0,00</td>
347
+ <td>R$ 0,00</td>
348
+ <td>R$ 0,00</td>
349
+ <td>R$ 0,00</td>
350
+ <td class="pr-8">R$ 0,00</td>
351
+ </tr>
352
+ <tr>
353
+ <td class="pl-8">Descontos previstos em lei (B)</td>
354
+ <td>R$ 0,00</td>
355
+ <td>R$ 0,00</td>
356
+ <td>R$ 0,00</td>
357
+ <td>R$ 0,00</td>
358
+ <td class="pr-8">R$ 0,00</td>
359
+ </tr>
360
+ <tr>
361
+ <td class="pl-8">Utilização de créditos (C)</td>
362
+ <td>R$ 0,00</td>
363
+ <td>R$ 0,00</td>
364
+ <td>R$ 0,00</td>
365
+ <td>R$ 0,00</td>
366
+ <td class="pr-8">R$ 0,00</td>
367
+ </tr>
368
+ <tr class="bg-blue-50">
369
+ <td class="pl-8 font-semibold">Total com reduções (A - C - B)</td>
370
+ <td class="font-semibold">R$ 73.039,65</td>
371
+ <td class="font-semibold">R$ 14.607,93</td>
372
+ <td class="font-semibold">R$ 5.937,50</td>
373
+ <td class="font-semibold">R$ 9.358,50</td>
374
+ <td class="pr-8 font-semibold text-blue-600">R$ 102.943,58</td>
375
+ </tr>
376
+ </tbody>
377
+ </table
378
+ </html>
prompts.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ Preparar um site de página única com base no seguinte relatório, para um cliente da MVICENTE ADVOCACIA, sendo nominado como "Relatório Negociações PGFN", com rotina para Gerar PDF, devendo o PDF ser gerado configurado para folhas no padrão A4 e apresentar a maior quantidade de informações importantes possíveis: Consulta de Negociações Informações Gerais Número da Negociação: 12877926 Nome Contribuinte BALUARTE EXTINTORES Negociações: 0004 - PARCELAMENTO CONVENCIONAL Data da Consolidação: 29/05/2025 Data da Adesão: 29/05/2025 - 18:33 CPF/CNPJ Contribuinte: 42.954.300/0001-50 Modalidade: 0005 - PARCELAMENTO SEM GARANTIA - SIMPLES NACIONAL Nº do recibo: 00000000000000000000 Situação: AGUARDANDO PAGAMENTO Principal: 73.039,65 Tipo de Negociação: Parcelamento Data do Deferimento: - Data da Situação: 29/05/2025 Multa: 14.607,93 Data Liquidação Neg.: - Data Recurso Optante: - Quantidade de Prestações: 60 Juros: 5.937,50 Data Comunicação ao Optante: - Data Envio Comunicação: - Optante de débito automático: Não Encargos/Honorários: 9.358,50 Data da Rescisão: - Data da Inadimplência: - Honorários: 0,00 Impedimento da Rescisão: Não Data da validação: - Valor Consolidado: 102.943,58 Impedimento da Liquidação: Não Saldo Devedor sem Juros: 102.943,58 Saldo Devedor com Juros: 102.943,58 Débitos Item débitos Contribuinte (CPF/CNPJ) Incluído em Código Receita Consolidado em Principal Multa Juros Encargos/Honorários Valor Total Total: 73.039,65 14.607,93 5.937,50 9.358,50 102.943,58 1 80 4 25 044336 42.954.300/0001-50 29/05/2025 - 18:33 1507 29/05/2025 73.039,65 14.607,93 5.937,50 9.358,50 102.943,58 Demonstrativo de Consolidação Demonstrativo Principal Multa Juros Encargos Total Total sem reduções (A) 73.039,65 14.607,93 5.937,50 9.358,50 102.943,58 Valor da entrada (s/ Redução) 0,00 0,00 0,00 0,00 0,00 Descontos previstos em lei (B) 0,00 0,00 0,00 0,00 0,00 Utilização de créditos (C) 0,00 0,00 0,00 0,00 0,00 Total com reduções (A - C - B) 73.039,65 14.607,93 5.937,50 9.358,50 102.943,58 Desconto aplicado na consolidação: 0,00% Percentual efetivo de reduções:0,00% Créditos Informados Valor passível de amortização: 0,00 Prejuízo Fiscal CPF/CNPJ Alíquota Montante Informado Montante Confirmado pela RFB Valor calculado Nenhum registro encontrado Base de Cálculo Negativa CPF/CNPJ Alíquota Montante Informado Montante Confirmado pela RFB Valor calculado Nenhum registro encontrado Pedido Eletrônico de Restituição CPF/CNPJ Identificador PER Montante Informado Valor calculado Nenhum registro encontrado Pagamentos Item Data Tipo Número Principal Multa Juros Encargos/Honorários Total Nenhum registro encontrado Prestações Nr. Prestação Tipo Valor Originário Valor Principal Valor Multa Valor Juros Valor Encargos/Honorários Valor Saldo Devedor Data Vencimento Prestação Situação da Prestação 0001 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/05/2025 A vencer 0002 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/06/2025 A vencer 0003 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 31/07/2025 A vencer 0004 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 29/08/2025 A vencer 0005 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/09/2025 A vencer 0006 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 31/10/2025 A vencer 0007 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 28/11/2025 A vencer 0008 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/12/2025 A vencer 0009 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/01/2026 A vencer 0010 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 27/02/2026 A vencer 0011 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 31/03/2026 A vencer 0012 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/04/2026 A vencer 0013 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 29/05/2026 A vencer 0014 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/06/2026 A vencer 0015 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 31/07/2026 A vencer 0016 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 31/08/2026 A vencer 0017 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/09/2026 A vencer 0018 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/10/2026 A vencer 0019 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/11/2026 A vencer 0020 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/12/2026 A vencer 0021 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 29/01/2027 A vencer 0022 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 26/02/2027 A vencer 0023 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 31/03/2027 A vencer 0024 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/04/2027 A vencer 0025 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 31/05/2027 A vencer 0026 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/06/2027 A vencer 0027 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/07/2027 A vencer 0028 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 31/08/2027 A vencer 0029 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/09/2027 A vencer 0030 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 29/10/2027 A vencer 0031 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/11/2027 A vencer 0032 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/12/2027 A vencer 0033 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 31/01/2028 A vencer 0034 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 25/02/2028 A vencer 0035 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 31/03/2028 A vencer 0036 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 28/04/2028 A vencer 0037 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 31/05/2028 A vencer 0038 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/06/2028 A vencer 0039 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 31/07/2028 A vencer 0040 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 31/08/2028 A vencer 0041 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 29/09/2028 A vencer 0042 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 31/10/2028 A vencer 0043 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/11/2028 A vencer 0044 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 28/12/2028 A vencer 0045 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 31/01/2029 A vencer 0046 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 28/02/2029 A vencer 0047 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 29/03/2029 A vencer 0048 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/04/2029 A vencer 0049 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/05/2029 A vencer 0050 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 29/06/2029 A vencer 0051 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 31/07/2029 A vencer 0052 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 31/08/2029 A vencer 0053 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 28/09/2029 A vencer 0054 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 31/10/2029 A vencer 0055 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/11/2029 A vencer 0056 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 28/12/2029 A vencer 0057 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 31/01/2030 A vencer 0058 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 28/02/2030 A vencer 0059 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 29/03/2030 A vencer 0060 Prestaçao Básica 1.715,72 1.217,32 243,46 98,95 155,97 1.715,72 30/04/2030 A vencer Ocorrências Item Descrição Hora Data Detalhes 1 REQUERIMENTO DE ADESAO 18:33 29/05/2025 2 CONSOLIDACAO 18:33 29/05/2025
2
+ Continuar
3
+ Refazer, pois está incompleto. Fazer em modelo de layout moderno