359 lines
9.9 KiB
HTML
359 lines
9.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="pt-BR">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Laudo Clínico - Reformulado</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
}
|
|
|
|
body {
|
|
background-color: #f5f7f9;
|
|
color: #333;
|
|
line-height: 1.6;
|
|
padding: 20px;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
background: white;
|
|
border-radius: 10px;
|
|
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* Cabeçalho */
|
|
header {
|
|
background: #fff;
|
|
padding: 20px;
|
|
border-bottom: 1px solid #e1e4e8;
|
|
}
|
|
|
|
.menu {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 15px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.menu h1 {
|
|
color: #2c3e50;
|
|
font-size: 28px;
|
|
}
|
|
|
|
.nav-links {
|
|
display: flex;
|
|
gap: 20px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.nav-links a {
|
|
text-decoration: none;
|
|
color: #3498db;
|
|
font-weight: 500;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
.nav-links a:hover {
|
|
color: #2c3e50;
|
|
}
|
|
|
|
.patient-info {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 15px;
|
|
background: #f8f9fa;
|
|
padding: 15px;
|
|
border-radius: 8px;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
/* Conteúdo Principal */
|
|
.main-content {
|
|
display: grid;
|
|
grid-template-columns: 1fr 2fr;
|
|
gap: 30px;
|
|
padding: 30px;
|
|
}
|
|
|
|
/* Coluna da Esquerda */
|
|
.left-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 25px;
|
|
}
|
|
|
|
.lgpd-consent {
|
|
background: #e8f4fc;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
border-left: 4px solid #3498db;
|
|
}
|
|
|
|
.report-history {
|
|
background: #f8f9fa;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.report-history h3 {
|
|
margin-bottom: 15px;
|
|
color: #2c3e50;
|
|
border-bottom: 2px solid #3498db;
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
.report-history ul {
|
|
list-style: none;
|
|
}
|
|
|
|
.report-history li {
|
|
padding: 10px 0;
|
|
border-bottom: 1px solid #e1e4e8;
|
|
}
|
|
|
|
.report-history li:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
/* Coluna da Direita */
|
|
.right-column {
|
|
background: #fff;
|
|
padding: 25px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.report-title {
|
|
text-align: center;
|
|
margin-bottom: 25px;
|
|
color: #2c3e50;
|
|
border-bottom: 2px solid #3498db;
|
|
padding-bottom: 15px;
|
|
}
|
|
|
|
.action-buttons {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 15px;
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.btn {
|
|
padding: 10px 20px;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
font-weight: 500;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.btn-draft {
|
|
background: #e8f4fc;
|
|
color: #3498db;
|
|
border: 1px solid #3498db;
|
|
}
|
|
|
|
.btn-draft:hover {
|
|
background: #3498db;
|
|
color: white;
|
|
}
|
|
|
|
.btn-finish {
|
|
background: #3498db;
|
|
color: white;
|
|
}
|
|
|
|
.btn-finish:hover {
|
|
background: #2c3e50;
|
|
}
|
|
|
|
.report-type-priority {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 20px;
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.info-box {
|
|
background: #f8f9fa;
|
|
padding: 15px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.info-box h4 {
|
|
margin-bottom: 10px;
|
|
color: #2c3e50;
|
|
}
|
|
|
|
.form-section {
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.form-section h3 {
|
|
margin-bottom: 15px;
|
|
color: #2c3e50;
|
|
border-bottom: 1px solid #e1e4e8;
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
.form-section textarea {
|
|
width: 100%;
|
|
min-height: 120px;
|
|
padding: 15px;
|
|
border: 1px solid #dce1e6;
|
|
border-radius: 5px;
|
|
resize: vertical;
|
|
font-family: inherit;
|
|
}
|
|
|
|
/* Rodapé */
|
|
footer {
|
|
background: #2c3e50;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 20px;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.footer-links {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 20px;
|
|
margin-top: 10px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.footer-links a {
|
|
color: #3498db;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.footer-links a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Responsividade */
|
|
@media (max-width: 900px) {
|
|
.main-content {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.report-type-priority {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.nav-links {
|
|
margin-top: 15px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<header>
|
|
<div class="menu">
|
|
<h1>Aetvente</h1>
|
|
<div class="nav-links">
|
|
<a href="#">Home</a>
|
|
<a href="#">About</a>
|
|
<a href="#">Pricing</a>
|
|
<a href="#">How It Works</a>
|
|
<a href="#">Services</a>
|
|
<a href="#">Dropdown</a>
|
|
<a href="#">Contact</a>
|
|
<a href="#">Get Started</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="patient-info">
|
|
<div><strong>CPF:</strong> 000.000.000-00</div>
|
|
<div><strong>Idade:</strong> 00</div>
|
|
<div><strong>Contato:</strong> paciente@exemplo.com</div>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="main-content">
|
|
<!-- Coluna da Esquerda -->
|
|
<div class="left-column">
|
|
<div class="lgpd-consent">
|
|
<h3>Consentimento LGPD</h3>
|
|
<p>Autorizo o compartilhamento deste laudo com a equipe assistencial.</p>
|
|
</div>
|
|
|
|
<div class="report-history">
|
|
<h3>Histórico de Laudos</h3>
|
|
<ul>
|
|
<li>10/07/2025 — Exame de sangue (finalizado)</li>
|
|
<li>18/06/2025 — Raio-X torácico (finalizado)</li>
|
|
<li>03/05/2025 — Consulta clínica (rascunho)</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Coluna da Direita -->
|
|
<div class="right-column">
|
|
<h2 class="report-title">Laudo Clínico</h2>
|
|
|
|
<div class="action-buttons">
|
|
<button class="btn btn-draft">Salvar rascunho</button>
|
|
<button class="btn btn-finish">Finalizar e enviar</button>
|
|
</div>
|
|
|
|
<div class="report-type-priority">
|
|
<div class="info-box">
|
|
<h4>Tipo de laudo</h4>
|
|
<p>Consulta Clínica</p>
|
|
</div>
|
|
<div class="info-box">
|
|
<h4>Prioridade</h4>
|
|
<p>Normal</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-section">
|
|
<h3>Queixa principal</h3>
|
|
<textarea placeholder="Ex.: dor torácica há 2 dias"></textarea>
|
|
</div>
|
|
|
|
<div class="form-section">
|
|
<h3>História/Exame físico</h3>
|
|
<textarea placeholder="Achados relevantes..."></textarea>
|
|
</div>
|
|
|
|
<div class="form-section">
|
|
<h3>Resultados/Imagens</h3>
|
|
<textarea placeholder="Resultados de exames, observações de imagem..."></textarea>
|
|
</div>
|
|
|
|
<div class="form-section">
|
|
<h3>Conclusão/Diagnóstico</h3>
|
|
<textarea placeholder="Conclusão diagnóstica..."></textarea>
|
|
</div>
|
|
|
|
<div class="form-section">
|
|
<h3>Conduta/Orientações ao paciente</h3>
|
|
<textarea placeholder="Tratamento, retorno, sinais de alerta..."></textarea>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<footer>
|
|
<p>© 2025 SUS domiciliado/images</p>
|
|
<div class="footer-links">
|
|
<a href="#">Termos</a>
|
|
<a href="#">Conclusão</a>
|
|
<a href="#">Privacidade (LGPD)</a>
|
|
<a href="#">Ajuda</a>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html> |