alexandremoraisdarosa commited on
Commit
7f0e4fe
·
verified ·
1 Parent(s): c433d28

Exclua o "Fluxo Básico do RJPd" e Deixe apenas o "Fluxo Completo do RJPd Penal" centralizado - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +301 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Rjpdpenal
3
- emoji: 📚
4
- colorFrom: purple
5
- colorTo: gray
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: rjpdpenal
3
+ emoji: 🐳
4
+ colorFrom: yellow
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,301 @@
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>Raciocínio Jurídico Padrão no Processo Penal</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
+ .flow-arrow {
11
+ position: relative;
12
+ }
13
+ .flow-arrow:after {
14
+ content: "";
15
+ position: absolute;
16
+ bottom: -20px;
17
+ left: 50%;
18
+ transform: translateX(-50%);
19
+ width: 0;
20
+ height: 0;
21
+ border-left: 10px solid transparent;
22
+ border-right: 10px solid transparent;
23
+ border-top: 15px solid #4b5563;
24
+ }
25
+ .step-card {
26
+ transition: all 0.3s ease;
27
+ }
28
+ .step-card:hover {
29
+ transform: translateY(-5px);
30
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
31
+ }
32
+ .divider-line {
33
+ height: 40px;
34
+ width: 2px;
35
+ background-color: #6b7280;
36
+ margin: 0 auto;
37
+ }
38
+ @media (max-width: 768px) {
39
+ .flow-arrow:after {
40
+ display: none;
41
+ }
42
+ .divider-line {
43
+ height: 2px;
44
+ width: 80%;
45
+ margin: 10px auto;
46
+ }
47
+ }
48
+ </style>
49
+ </head>
50
+ <body class="bg-gray-100 text-gray-900 font-sans">
51
+ <div class="container mx-auto px-4 py-12">
52
+ <header class="text-center mb-16">
53
+ <h1 class="text-4xl font-bold mb-4">Raciocínio Jurídico Padrão [RJPd] no Processo Penal</h1>
54
+ <p class="text-xl text-gray-700 max-w-3xl mx-auto">
55
+ Estrutura silogística aplicada ao direito penal: Premissa Maior/Normativa + Premissa Menor/Fática = Conclusão/Inferência
56
+ </p>
57
+ </header>
58
+
59
+ <div class="bg-white rounded-xl shadow-lg p-6 mb-16">
60
+ <div class="flex flex-col md:flex-row justify-center items-center mb-8">
61
+ <div class="text-center mb-8 md:mb-0 md:mr-8">
62
+ <h2 class="text-2xl font-semibold mb-4">Premissa Maior</h2>
63
+ <div class="bg-gray-800 text-white p-4 rounded-lg w-64 h-32 flex items-center justify-center">
64
+ <p class="text-center">Norma Jurídica Penal<br>(Plano Normativo)</p>
65
+ </div>
66
+ </div>
67
+
68
+ <div class="text-center mb-8 md:mb-0">
69
+ <h2 class="text-2xl font-semibold mb-4">Premissa Menor</h2>
70
+ <div class="bg-gray-600 text-white p-4 rounded-lg w-64 h-32 flex items-center justify-center">
71
+ <p class="text-center">Fato Concreto<br>(Plano Fático)</p>
72
+ </div>
73
+ </div>
74
+
75
+ <div class="text-center">
76
+ <i class="fas fa-equals text-4xl mx-4 text-gray-700 hidden md:block"></i>
77
+ <div class="divider-line md:hidden"></div>
78
+ </div>
79
+
80
+ <div class="text-center mt-8 md:mt-0 md:ml-8">
81
+ <h2 class="text-2xl font-semibold mb-4">Conclusão</h2>
82
+ <div class="bg-gray-400 text-white p-4 rounded-lg w-64 h-32 flex items-center justify-center">
83
+ <p class="text-center">Inferência Jurídica<br>(Decisão Judicial)</p>
84
+ </div>
85
+ </div>
86
+ </div>
87
+ </div>
88
+
89
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-16">
90
+ <!-- Primeiro Fluxo -->
91
+ <div class="bg-white rounded-xl shadow-lg p-6">
92
+ <h3 class="text-2xl font-semibold mb-6 text-center">Fluxo Básico do RJPd</h3>
93
+
94
+ <div class="space-y-8">
95
+ <!-- INÍCIO -->
96
+ <div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
97
+ <div class="bg-black text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
98
+ <i class="fas fa-play"></i>
99
+ </div>
100
+ <h4 class="font-bold text-lg mb-2">INÍCIO</h4>
101
+ </div>
102
+
103
+ <!-- Apresentação de Hipóteses -->
104
+ <div class="divider-line"></div>
105
+ <div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
106
+ <div class="bg-gray-800 text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
107
+ <i class="fas fa-lightbulb"></i>
108
+ </div>
109
+ <h4 class="font-bold text-lg mb-2">Apresentação de Hipóteses</h4>
110
+ <p class="text-gray-700">Formulação das possíveis interpretações do caso</p>
111
+ </div>
112
+
113
+ <!-- Identificação do Fato -->
114
+ <div class="divider-line"></div>
115
+ <div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
116
+ <div class="bg-gray-700 text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
117
+ <i class="fas fa-search"></i>
118
+ </div>
119
+ <h4 class="font-bold text-lg mb-2">Identificação do Fato</h4>
120
+ <p class="text-gray-700">(Plano Fático)</p>
121
+ </div>
122
+
123
+ <!-- Verificação de Tipo Penal -->
124
+ <div class="divider-line"></div>
125
+ <div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
126
+ <div class="bg-gray-600 text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
127
+ <i class="fas fa-gavel"></i>
128
+ </div>
129
+ <h4 class="font-bold text-lg mb-2">Verificação de Existência de Tipo Penal</h4>
130
+ <p class="text-gray-700">(Plano Normativo)</p>
131
+ </div>
132
+
133
+ <!-- Formulação do Silogismo -->
134
+ <div class="divider-line"></div>
135
+ <div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
136
+ <div class="bg-gray-500 text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
137
+ <i class="fas fa-balance-scale"></i>
138
+ </div>
139
+ <h4 class="font-bold text-lg mb-2">Formulação do Silogismo Jurídico</h4>
140
+ </div>
141
+
142
+ <!-- Análise de Provas -->
143
+ <div class="divider-line"></div>
144
+ <div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
145
+ <div class="bg-gray-400 text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
146
+ <i class="fas fa-file-alt"></i>
147
+ </div>
148
+ <h4 class="font-bold text-lg mb-2">Análise de Provas e Argumentos</h4>
149
+ </div>
150
+
151
+ <!-- Volta ao início -->
152
+ <div class="divider-line"></div>
153
+ <div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center">
154
+ <div class="bg-black text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
155
+ <i class="fas fa-undo"></i>
156
+ </div>
157
+ <h4 class="font-bold text-lg mb-2">INÍCIO</h4>
158
+ </div>
159
+ </div>
160
+ </div>
161
+
162
+ <!-- Segundo Fluxo -->
163
+ <div class="bg-white rounded-xl shadow-lg p-6">
164
+ <h3 class="text-2xl font-semibold mb-6 text-center">Fluxo Completo do RJPd Penal</h3>
165
+
166
+ <div class="space-y-8">
167
+ <!-- INÍCIO -->
168
+ <div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
169
+ <div class="bg-black text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
170
+ <i class="fas fa-play"></i>
171
+ </div>
172
+ <h4 class="font-bold text-lg mb-2">INÍCIO</h4>
173
+ </div>
174
+
175
+ <!-- Hipótese Acusatória -->
176
+ <div class="divider-line"></div>
177
+ <div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
178
+ <div class="bg-gray-800 text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
179
+ <i class="fas fa-gavel"></i>
180
+ </div>
181
+ <h4 class="font-bold text-lg mb-2">Apresentação de Hipótese Acusatória</h4>
182
+ </div>
183
+
184
+ <!-- Identificação do Fato -->
185
+ <div class="divider-line"></div>
186
+ <div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
187
+ <div class="bg-gray-700 text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
188
+ <i class="fas fa-search"></i>
189
+ </div>
190
+ <h4 class="font-bold text-lg mb-2">Identificação do Fato</h4>
191
+ <p class="text-gray-700">(Plano Fático)</p>
192
+ </div>
193
+
194
+ <!-- Verificação de Tipo Penal -->
195
+ <div class="divider-line"></div>
196
+ <div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
197
+ <div class="bg-gray-600 text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
198
+ <i class="fas fa-book"></i>
199
+ </div>
200
+ <h4 class="font-bold text-lg mb-2">Verificação de Existência de Tipo Penal</h4>
201
+ <p class="text-gray-700">(Plano Normativo)</p>
202
+ </div>
203
+
204
+ <!-- Formulação do Silogismo -->
205
+ <div class="divider-line"></div>
206
+ <div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
207
+ <div class="bg-gray-500 text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
208
+ <i class="fas fa-balance-scale"></i>
209
+ </div>
210
+ <h4 class="font-bold text-lg mb-2">Formulação do Silogismo Jurídico</h4>
211
+ </div>
212
+
213
+ <!-- Standard Probatório -->
214
+ <div class="divider-line"></div>
215
+ <div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
216
+ <div class="bg-gray-400 text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
217
+ <i class="fas fa-check-double"></i>
218
+ </div>
219
+ <h4 class="font-bold text-lg mb-2">Superação do Standard Probatório</h4>
220
+ <p class="text-gray-700">Para Além da Dúvida Razoável<br>Sim ou Não</p>
221
+ </div>
222
+
223
+ <!-- Justificação -->
224
+ <div class="divider-line"></div>
225
+ <div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
226
+ <div class="bg-gray-300 text-gray-800 rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
227
+ <i class="fas fa-question"></i>
228
+ </div>
229
+ <h4 class="font-bold text-lg mb-2">Justificação da Conclusão</h4>
230
+ <p class="text-gray-700">Hipótese V ou F?</p>
231
+ </div>
232
+
233
+ <!-- Decisão Judicial -->
234
+ <div class="divider-line"></div>
235
+ <div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center">
236
+ <div class="bg-gray-200 text-gray-800 rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
237
+ <i class="fas fa-flag-checkered"></i>
238
+ </div>
239
+ <h4 class="font-bold text-lg mb-2">Decisão Judicial Motivada</h4>
240
+ </div>
241
+
242
+ <!-- FIM -->
243
+ <div class="divider-line"></div>
244
+ <div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center">
245
+ <div class="bg-black text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
246
+ <i class="fas fa-stop"></i>
247
+ </div>
248
+ <h4 class="font-bold text-lg mb-2">FIM</h4>
249
+ </div>
250
+ </div>
251
+ </div>
252
+ </div>
253
+
254
+ <div class="bg-white rounded-xl shadow-lg p-8">
255
+ <h3 class="text-2xl font-semibold mb-6 text-center">Exemplo Prático de Aplicação</h3>
256
+
257
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
258
+ <div class="border border-gray-200 p-4 rounded-lg">
259
+ <h4 class="font-bold text-lg mb-3 text-gray-800">Premissa Maior (Norma)</h4>
260
+ <p class="text-gray-700">Art. 121 do CP: "Matar alguém: Pena - reclusão, de 6 a 20 anos."</p>
261
+ </div>
262
+
263
+ <div class="border border-gray-200 p-4 rounded-lg">
264
+ <h4 class="font-bold text-lg mb-3 text-gray-800">Premissa Menor (Fato)</h4>
265
+ <p class="text-gray-700">João disparou contra Pedro, causando sua morte.</p>
266
+ </div>
267
+
268
+ <div class="border border-gray-200 p-4 rounded-lg">
269
+ <h4 class="font-bold text-lg mb-3 text-gray-800">Conclusão (Inferência)</h4>
270
+ <p class="text-gray-700">João cometeu homicídio, nos termos do art. 121 do CP.</p>
271
+ </div>
272
+ </div>
273
+
274
+ <div class="mt-8 bg-gray-100 p-6 rounded-lg">
275
+ <h4 class="font-bold text-lg mb-3 text-gray-800">Análise do Standard Probatório:</h4>
276
+ <div class="flex items-center mb-4">
277
+ <div class="bg-gray-800 text-white rounded-full w-8 h-8 flex items-center justify-center mr-3">
278
+ <i class="fas fa-question"></i>
279
+ </div>
280
+ <p class="text-gray-700">As provas apresentadas superam a dúvida razoável sobre a autoria e materialidade?</p>
281
+ </div>
282
+
283
+ <div class="flex flex-wrap gap-4">
284
+ <div class="flex items-center">
285
+ <div class="bg-green-100 text-green-800 rounded-full w-8 h-8 flex items-center justify-center mr-2">
286
+ <i class="fas fa-check"></i>
287
+ </div>
288
+ <span class="text-gray-700">Sim → Condenação</span>
289
+ </div>
290
+ <div class="flex items-center">
291
+ <div class="bg-red-100 text-red-800 rounded-full w-8 h-8 flex items-center justify-center mr-2">
292
+ <i class="fas fa-times"></i>
293
+ </div>
294
+ <span class="text-gray-700">Não → Absolvição</span>
295
+ </div>
296
+ </div>
297
+ </div>
298
+ </div>
299
+ </div>
300
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=alexandremoraisdarosa/rjpdpenal" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
301
+ </html>