Spaces:
Running
Running
Exclua o "Fluxo Básico do RJPd" e Deixe apenas o "Fluxo Completo do RJPd Penal" centralizado - Initial Deployment
7f0e4fe
verified
<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> |