Spaces:
Running
Running
File size: 17,230 Bytes
7f0e4fe |
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 |
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Raciocínio Jurídico Padrão no Processo Penal</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.flow-arrow {
position: relative;
}
.flow-arrow:after {
content: "";
position: absolute;
bottom: -20px;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 15px solid #4b5563;
}
.step-card {
transition: all 0.3s ease;
}
.step-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}
.divider-line {
height: 40px;
width: 2px;
background-color: #6b7280;
margin: 0 auto;
}
@media (max-width: 768px) {
.flow-arrow:after {
display: none;
}
.divider-line {
height: 2px;
width: 80%;
margin: 10px auto;
}
}
</style>
</head>
<body class="bg-gray-100 text-gray-900 font-sans">
<div class="container mx-auto px-4 py-12">
<header class="text-center mb-16">
<h1 class="text-4xl font-bold mb-4">Raciocínio Jurídico Padrão [RJPd] no Processo Penal</h1>
<p class="text-xl text-gray-700 max-w-3xl mx-auto">
Estrutura silogística aplicada ao direito penal: Premissa Maior/Normativa + Premissa Menor/Fática = Conclusão/Inferência
</p>
</header>
<div class="bg-white rounded-xl shadow-lg p-6 mb-16">
<div class="flex flex-col md:flex-row justify-center items-center mb-8">
<div class="text-center mb-8 md:mb-0 md:mr-8">
<h2 class="text-2xl font-semibold mb-4">Premissa Maior</h2>
<div class="bg-gray-800 text-white p-4 rounded-lg w-64 h-32 flex items-center justify-center">
<p class="text-center">Norma Jurídica Penal<br>(Plano Normativo)</p>
</div>
</div>
<div class="text-center mb-8 md:mb-0">
<h2 class="text-2xl font-semibold mb-4">Premissa Menor</h2>
<div class="bg-gray-600 text-white p-4 rounded-lg w-64 h-32 flex items-center justify-center">
<p class="text-center">Fato Concreto<br>(Plano Fático)</p>
</div>
</div>
<div class="text-center">
<i class="fas fa-equals text-4xl mx-4 text-gray-700 hidden md:block"></i>
<div class="divider-line md:hidden"></div>
</div>
<div class="text-center mt-8 md:mt-0 md:ml-8">
<h2 class="text-2xl font-semibold mb-4">Conclusão</h2>
<div class="bg-gray-400 text-white p-4 rounded-lg w-64 h-32 flex items-center justify-center">
<p class="text-center">Inferência Jurídica<br>(Decisão Judicial)</p>
</div>
</div>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-16">
<!-- Primeiro Fluxo -->
<div class="bg-white rounded-xl shadow-lg p-6">
<h3 class="text-2xl font-semibold mb-6 text-center">Fluxo Básico do RJPd</h3>
<div class="space-y-8">
<!-- INÍCIO -->
<div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
<div class="bg-black text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
<i class="fas fa-play"></i>
</div>
<h4 class="font-bold text-lg mb-2">INÍCIO</h4>
</div>
<!-- Apresentação de Hipóteses -->
<div class="divider-line"></div>
<div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
<div class="bg-gray-800 text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
<i class="fas fa-lightbulb"></i>
</div>
<h4 class="font-bold text-lg mb-2">Apresentação de Hipóteses</h4>
<p class="text-gray-700">Formulação das possíveis interpretações do caso</p>
</div>
<!-- Identificação do Fato -->
<div class="divider-line"></div>
<div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
<div class="bg-gray-700 text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
<i class="fas fa-search"></i>
</div>
<h4 class="font-bold text-lg mb-2">Identificação do Fato</h4>
<p class="text-gray-700">(Plano Fático)</p>
</div>
<!-- Verificação de Tipo Penal -->
<div class="divider-line"></div>
<div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
<div class="bg-gray-600 text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
<i class="fas fa-gavel"></i>
</div>
<h4 class="font-bold text-lg mb-2">Verificação de Existência de Tipo Penal</h4>
<p class="text-gray-700">(Plano Normativo)</p>
</div>
<!-- Formulação do Silogismo -->
<div class="divider-line"></div>
<div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
<div class="bg-gray-500 text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
<i class="fas fa-balance-scale"></i>
</div>
<h4 class="font-bold text-lg mb-2">Formulação do Silogismo Jurídico</h4>
</div>
<!-- Análise de Provas -->
<div class="divider-line"></div>
<div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
<div class="bg-gray-400 text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
<i class="fas fa-file-alt"></i>
</div>
<h4 class="font-bold text-lg mb-2">Análise de Provas e Argumentos</h4>
</div>
<!-- Volta ao início -->
<div class="divider-line"></div>
<div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center">
<div class="bg-black text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
<i class="fas fa-undo"></i>
</div>
<h4 class="font-bold text-lg mb-2">INÍCIO</h4>
</div>
</div>
</div>
<!-- Segundo Fluxo -->
<div class="bg-white rounded-xl shadow-lg p-6">
<h3 class="text-2xl font-semibold mb-6 text-center">Fluxo Completo do RJPd Penal</h3>
<div class="space-y-8">
<!-- INÍCIO -->
<div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
<div class="bg-black text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
<i class="fas fa-play"></i>
</div>
<h4 class="font-bold text-lg mb-2">INÍCIO</h4>
</div>
<!-- Hipótese Acusatória -->
<div class="divider-line"></div>
<div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
<div class="bg-gray-800 text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
<i class="fas fa-gavel"></i>
</div>
<h4 class="font-bold text-lg mb-2">Apresentação de Hipótese Acusatória</h4>
</div>
<!-- Identificação do Fato -->
<div class="divider-line"></div>
<div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
<div class="bg-gray-700 text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
<i class="fas fa-search"></i>
</div>
<h4 class="font-bold text-lg mb-2">Identificação do Fato</h4>
<p class="text-gray-700">(Plano Fático)</p>
</div>
<!-- Verificação de Tipo Penal -->
<div class="divider-line"></div>
<div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
<div class="bg-gray-600 text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
<i class="fas fa-book"></i>
</div>
<h4 class="font-bold text-lg mb-2">Verificação de Existência de Tipo Penal</h4>
<p class="text-gray-700">(Plano Normativo)</p>
</div>
<!-- Formulação do Silogismo -->
<div class="divider-line"></div>
<div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
<div class="bg-gray-500 text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
<i class="fas fa-balance-scale"></i>
</div>
<h4 class="font-bold text-lg mb-2">Formulação do Silogismo Jurídico</h4>
</div>
<!-- Standard Probatório -->
<div class="divider-line"></div>
<div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
<div class="bg-gray-400 text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
<i class="fas fa-check-double"></i>
</div>
<h4 class="font-bold text-lg mb-2">Superação do Standard Probatório</h4>
<p class="text-gray-700">Para Além da Dúvida Razoável<br>Sim ou Não</p>
</div>
<!-- Justificação -->
<div class="divider-line"></div>
<div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center flow-arrow">
<div class="bg-gray-300 text-gray-800 rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
<i class="fas fa-question"></i>
</div>
<h4 class="font-bold text-lg mb-2">Justificação da Conclusão</h4>
<p class="text-gray-700">Hipótese V ou F?</p>
</div>
<!-- Decisão Judicial -->
<div class="divider-line"></div>
<div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center">
<div class="bg-gray-200 text-gray-800 rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
<i class="fas fa-flag-checkered"></i>
</div>
<h4 class="font-bold text-lg mb-2">Decisão Judicial Motivada</h4>
</div>
<!-- FIM -->
<div class="divider-line"></div>
<div class="step-card bg-gray-50 p-5 rounded-lg border border-gray-200 text-center">
<div class="bg-black text-white rounded-full w-12 h-12 flex items-center justify-center mx-auto mb-3">
<i class="fas fa-stop"></i>
</div>
<h4 class="font-bold text-lg mb-2">FIM</h4>
</div>
</div>
</div>
</div>
<div class="bg-white rounded-xl shadow-lg p-8">
<h3 class="text-2xl font-semibold mb-6 text-center">Exemplo Prático de Aplicação</h3>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="border border-gray-200 p-4 rounded-lg">
<h4 class="font-bold text-lg mb-3 text-gray-800">Premissa Maior (Norma)</h4>
<p class="text-gray-700">Art. 121 do CP: "Matar alguém: Pena - reclusão, de 6 a 20 anos."</p>
</div>
<div class="border border-gray-200 p-4 rounded-lg">
<h4 class="font-bold text-lg mb-3 text-gray-800">Premissa Menor (Fato)</h4>
<p class="text-gray-700">João disparou contra Pedro, causando sua morte.</p>
</div>
<div class="border border-gray-200 p-4 rounded-lg">
<h4 class="font-bold text-lg mb-3 text-gray-800">Conclusão (Inferência)</h4>
<p class="text-gray-700">João cometeu homicídio, nos termos do art. 121 do CP.</p>
</div>
</div>
<div class="mt-8 bg-gray-100 p-6 rounded-lg">
<h4 class="font-bold text-lg mb-3 text-gray-800">Análise do Standard Probatório:</h4>
<div class="flex items-center mb-4">
<div class="bg-gray-800 text-white rounded-full w-8 h-8 flex items-center justify-center mr-3">
<i class="fas fa-question"></i>
</div>
<p class="text-gray-700">As provas apresentadas superam a dúvida razoável sobre a autoria e materialidade?</p>
</div>
<div class="flex flex-wrap gap-4">
<div class="flex items-center">
<div class="bg-green-100 text-green-800 rounded-full w-8 h-8 flex items-center justify-center mr-2">
<i class="fas fa-check"></i>
</div>
<span class="text-gray-700">Sim → Condenação</span>
</div>
<div class="flex items-center">
<div class="bg-red-100 text-red-800 rounded-full w-8 h-8 flex items-center justify-center mr-2">
<i class="fas fa-times"></i>
</div>
<span class="text-gray-700">Não → Absolvição</span>
</div>
</div>
</div>
</div>
</div>
<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>
</html> |