Spaces:
Running
Running
Sami
commited on
Commit
·
17fcaeb
1
Parent(s):
b09696a
Reorganized project structure and moved files from PROPUESTA_HOSPITALES_AI
Browse files- style.css → assets/css/style.css +0 -0
- assets/css/styles.css +114 -0
- assets/img/index.png +0 -0
- assets/img/proposal-NHS.png +0 -0
- assets/img/propuesta-12-de-octubre.png +0 -0
- assets/js/main.js +59 -0
- docs/requirements-conversation.py +0 -0
- docs/requirements-conversation.txt +0 -0
- docs/spanish-hospital-context.txt +162 -0
- proposals/12-octubre-proposal.html +884 -0
- proposals/main-proposal.html +747 -0
- proposals/nhs-proposal.html +0 -0
- proposals/simple-proposal.md +116 -0
style.css → assets/css/style.css
RENAMED
File without changes
|
assets/css/styles.css
ADDED
@@ -0,0 +1,114 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* Base styles */
|
2 |
+
:root {
|
3 |
+
--primary-color: #003366;
|
4 |
+
--secondary-color: #1e3a8a;
|
5 |
+
--success-color: #10b981;
|
6 |
+
--text-color: #333;
|
7 |
+
--border-color: #e5e7eb;
|
8 |
+
--bg-light: #f8fafc;
|
9 |
+
}
|
10 |
+
|
11 |
+
body {
|
12 |
+
font-family: 'Times New Roman', serif;
|
13 |
+
margin: 0 auto;
|
14 |
+
max-width: 800px;
|
15 |
+
line-height: 1.8;
|
16 |
+
color: var(--text-color);
|
17 |
+
background-color: #fff;
|
18 |
+
padding: 40px;
|
19 |
+
font-size: 12pt;
|
20 |
+
}
|
21 |
+
|
22 |
+
/* Typography */
|
23 |
+
h1, h2, h3 {
|
24 |
+
color: #000;
|
25 |
+
font-family: 'Times New Roman', serif;
|
26 |
+
margin-top: 2em;
|
27 |
+
border-bottom: 2px solid #000;
|
28 |
+
padding-bottom: 0.5em;
|
29 |
+
}
|
30 |
+
|
31 |
+
h1 { font-size: 28px; text-align: center; margin-bottom: 2em; }
|
32 |
+
h2 { font-size: 24px; }
|
33 |
+
h3 { font-size: 20px; }
|
34 |
+
p, li { font-size: 16px; }
|
35 |
+
|
36 |
+
/* Layout */
|
37 |
+
.section {
|
38 |
+
margin-bottom: 30px;
|
39 |
+
padding: 15px 20px;
|
40 |
+
background-color: #fff;
|
41 |
+
}
|
42 |
+
|
43 |
+
.section:not(:last-child) {
|
44 |
+
border-bottom: 1px solid var(--border-color);
|
45 |
+
}
|
46 |
+
|
47 |
+
/* Components */
|
48 |
+
.info-card {
|
49 |
+
border: 2px solid var(--primary-color);
|
50 |
+
border-radius: 8px;
|
51 |
+
padding: 20px;
|
52 |
+
text-align: center;
|
53 |
+
background: #fff;
|
54 |
+
}
|
55 |
+
|
56 |
+
.info-card h3 {
|
57 |
+
color: var(--primary-color);
|
58 |
+
border: none;
|
59 |
+
margin: 10px 0;
|
60 |
+
}
|
61 |
+
|
62 |
+
.medical-interface {
|
63 |
+
border: 1px solid var(--border-color);
|
64 |
+
border-radius: 8px;
|
65 |
+
overflow: hidden;
|
66 |
+
background: var(--bg-light);
|
67 |
+
margin: 20px 0;
|
68 |
+
}
|
69 |
+
|
70 |
+
.interface-header {
|
71 |
+
background: var(--primary-color);
|
72 |
+
color: white;
|
73 |
+
padding: 10px;
|
74 |
+
font-size: 0.9em;
|
75 |
+
}
|
76 |
+
|
77 |
+
.data-output {
|
78 |
+
padding: 15px;
|
79 |
+
background: white;
|
80 |
+
}
|
81 |
+
|
82 |
+
.analysis-text {
|
83 |
+
padding: 15px;
|
84 |
+
background: #f3f4f6;
|
85 |
+
border-top: 1px solid var(--border-color);
|
86 |
+
}
|
87 |
+
|
88 |
+
/* Utilities */
|
89 |
+
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
|
90 |
+
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
|
91 |
+
|
92 |
+
/* Print styles */
|
93 |
+
@media print {
|
94 |
+
body {
|
95 |
+
padding: 0;
|
96 |
+
margin: 2.54cm;
|
97 |
+
font-size: 11pt;
|
98 |
+
}
|
99 |
+
.section {
|
100 |
+
page-break-inside: avoid;
|
101 |
+
margin-bottom: 20px;
|
102 |
+
}
|
103 |
+
}
|
104 |
+
|
105 |
+
@page {
|
106 |
+
margin: 2.54cm;
|
107 |
+
size: A4 portrait;
|
108 |
+
}
|
109 |
+
|
110 |
+
/* Responsive */
|
111 |
+
@media (max-width: 768px) {
|
112 |
+
body { padding: 20px; }
|
113 |
+
.grid-2, .grid-3 { grid-template-columns: 1fr; }
|
114 |
+
}
|
assets/img/index.png
ADDED
![]() |
assets/img/proposal-NHS.png
ADDED
![]() |
assets/img/propuesta-12-de-octubre.png
ADDED
![]() |
assets/js/main.js
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// Initialize Mermaid diagrams
|
2 |
+
document.addEventListener('DOMContentLoaded', () => {
|
3 |
+
if (window.mermaid) {
|
4 |
+
mermaid.initialize({
|
5 |
+
startOnLoad: true,
|
6 |
+
theme: 'neutral',
|
7 |
+
themeVariables: {
|
8 |
+
fontSize: '16px'
|
9 |
+
}
|
10 |
+
});
|
11 |
+
}
|
12 |
+
});
|
13 |
+
|
14 |
+
// Lazy loading for images
|
15 |
+
document.addEventListener('DOMContentLoaded', () => {
|
16 |
+
const images = document.querySelectorAll('img[loading="lazy"]');
|
17 |
+
if ('loading' in HTMLImageElement.prototype) {
|
18 |
+
images.forEach(img => {
|
19 |
+
img.src = img.dataset.src;
|
20 |
+
});
|
21 |
+
} else {
|
22 |
+
// Fallback for browsers that don't support lazy loading
|
23 |
+
const script = document.createElement('script');
|
24 |
+
script.src = 'https://cdnjs.cloudflare.com/ajax/libs/lazysizes/5.3.2/lazysizes.min.js';
|
25 |
+
document.body.appendChild(script);
|
26 |
+
}
|
27 |
+
});
|
28 |
+
|
29 |
+
// Print optimization
|
30 |
+
const optimizePrint = () => {
|
31 |
+
const style = document.createElement('style');
|
32 |
+
style.textContent = `
|
33 |
+
@media print {
|
34 |
+
.no-print { display: none !important; }
|
35 |
+
a[href]:after { content: " (" attr(href) ")"; }
|
36 |
+
img { max-width: 500px !important; }
|
37 |
+
}
|
38 |
+
`;
|
39 |
+
document.head.appendChild(style);
|
40 |
+
};
|
41 |
+
|
42 |
+
// Initialize all components
|
43 |
+
const initComponents = () => {
|
44 |
+
// Initialize Lottie animations if present
|
45 |
+
if (window.lottie) {
|
46 |
+
document.querySelectorAll('.lottie-player').forEach(player => {
|
47 |
+
if (!player.hasAttribute('data-initialized')) {
|
48 |
+
player.setAttribute('data-initialized', 'true');
|
49 |
+
// Add any specific Lottie initialization here
|
50 |
+
}
|
51 |
+
});
|
52 |
+
}
|
53 |
+
};
|
54 |
+
|
55 |
+
// Export utilities
|
56 |
+
window.hospitalAI = {
|
57 |
+
optimizePrint,
|
58 |
+
initComponents
|
59 |
+
};
|
docs/requirements-conversation.py
ADDED
The diff for this file is too large to render.
See raw diff
|
|
docs/requirements-conversation.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
docs/spanish-hospital-context.txt
ADDED
@@ -0,0 +1,162 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Okay, let's break down the audience, their potential concerns, and how a public hospital operates in Spain to further refine the proposal.
|
2 |
+
|
3 |
+
**Who Will Be Reading This Document?**
|
4 |
+
|
5 |
+
In a Spanish public hospital like "12 de Octubre," the primary readers of this document would be a mix of medical and administrative leadership. While you're aiming for the top, it's a multi-layered decision-making process. Here's a breakdown:
|
6 |
+
|
7 |
+
* **Gerente del Hospital (Hospital Manager/CEO):** This is the **key decision-maker** regarding hospital-wide strategy, budget allocation, and new initiatives. They have the final say on implementing large-scale projects. Their background could be in medicine, but often it's in healthcare management.
|
8 |
+
* **Director Médico (Medical Director):** A senior physician responsible for the overall clinical operations of the hospital. They will be very interested in the clinical benefits and impact on patient care, and also, on the workload and well-being of medical staff.
|
9 |
+
* **Subdirector de Gestión (Deputy Director of Management) or Director de Sistemas de Información (Chief Information Officer):** These individuals are crucial for evaluating the feasibility, cost-effectiveness, and technical aspects of the proposal (budget, IT integration, data security, etc).
|
10 |
+
* **Other relevant supervisors or head departments if interested.** But initially, the main actors are the ones listed above.
|
11 |
+
|
12 |
+
**Important Note:** While Heads of Departments can be influential advocates, the initiative to implement something like this typically starts at the top administrative level (Gerente) in coordination with the Medical Director and the Management/IT Directors.
|
13 |
+
|
14 |
+
**Their Main Concerns and Knowledge of AI:**
|
15 |
+
|
16 |
+
* **Age Range:** Most likely between 45-65 years old.
|
17 |
+
* **AI Knowledge:** Variable. Some might have a basic understanding of AI from the news or conferences, but many will likely have **limited in-depth knowledge**. They might view it with a mix of curiosity and skepticism. Assume a **baseline understanding but be prepared to explain things clearly and simply.**
|
18 |
+
* **Main Concerns:**
|
19 |
+
* **Cost:** Public hospitals in Spain operate on tight budgets. They will scrutinize the cost of implementation, maintenance, training, and any potential impact on existing budgets.
|
20 |
+
* **Efficacy and Evidence:** They need to see concrete evidence that the AI tools work as advertised and deliver tangible benefits in a real-world hospital setting.
|
21 |
+
* **Integration:** Seamless integration with existing hospital systems (HIS, PACS) is crucial. They will be concerned about disruption to workflows, data security, and compatibility issues.
|
22 |
+
* **Job Security (a common fear):** Although you emphasize that AI is a support tool, there might be underlying anxieties about job displacement among staff.
|
23 |
+
* **Ethical Considerations:** Data privacy, algorithmic bias, and the potential impact on the doctor-patient relationship are important ethical concerns, especially in healthcare.
|
24 |
+
* **Regulation and Compliance:** They need to be assured that the AI tools comply with Spanish and EU regulations regarding medical devices, data protection (GDPR), etc.
|
25 |
+
* **Change Management:** Implementing new technology requires significant organizational change. They will be concerned about the staff's willingness to adopt the new tools and the training required.
|
26 |
+
|
27 |
+
**How Does a Public Hospital Work in Spain? Who Decides?**
|
28 |
+
|
29 |
+
* **Structure:** Spanish public hospitals are part of the National Health System (SNS), which is decentralized. Each Autonomous Community (like Madrid) has its own regional health service.
|
30 |
+
* **Funding:** Primarily funded through taxes at the regional level. Each regional health service manages its budget and allocates funds to its hospitals.
|
31 |
+
* **Decision-Making:**
|
32 |
+
* **Hospital Level:** The Gerente (Hospital Manager) has significant autonomy in operational decisions, within the framework set by the regional health service.
|
33 |
+
* **Regional Level:** The Consejería de Sanidad (Health Department) of the Autonomous Community (e.g., Consejería de Sanidad de la Comunidad de Madrid) sets overall health policy, allocates budgets, and oversees the hospitals in its region.
|
34 |
+
* **National Level:** The Ministerio de Sanidad (Ministry of Health) sets the general framework for the SNS, coordinates between regions, and handles some regulatory aspects. But the real power is at the regional level.
|
35 |
+
|
36 |
+
**In essence:** The **Gerente** of Hospital 12 de Octubre will make the final decision about your proposal, but they will do so in consultation with the **Medical Director**, the **Management/IT Directors**, taking into account the budget and guidelines set by the **Consejería de Sanidad de la Comunidad de Madrid**. The Spanish government has a less direct role in these operational decisions.
|
37 |
+
|
38 |
+
**Common Fears, Doubts, and Thoughts for Each Section (and How to Address Them):**
|
39 |
+
|
40 |
+
Here's a breakdown of potential concerns related to each section of your proposal and how to address them proactively in the text:
|
41 |
+
|
42 |
+
**1. Resumen Ejecutivo & Introduction:**
|
43 |
+
|
44 |
+
* **Fears/Doubts:** "Is this just another tech hype that will cost a lot and deliver little?" "Will this replace doctors?"
|
45 |
+
* **Addressing them:**
|
46 |
+
* Clearly state that the focus is on **tangible benefits:** efficiency, diagnostic accuracy, improved patient care.
|
47 |
+
* **Emphasize "support," "complement," and "potentiate"** when referring to the role of AI.
|
48 |
+
* Mention successful use cases of AI in healthcare (briefly, you'll elaborate later).
|
49 |
+
|
50 |
+
**2. Contexto: Desafíos y Oportunidades:**
|
51 |
+
|
52 |
+
* **Fears/Doubts:** "We are already doing fine." "Our problems are due to underfunding, not lack of technology."
|
53 |
+
* **Addressing them:**
|
54 |
+
* Acknowledge the challenges they face (high demand, limited resources) and position AI as a **tool to alleviate these pressures**, not a magic solution.
|
55 |
+
* Frame AI as a way to **optimize existing resources** and improve efficiency.
|
56 |
+
|
57 |
+
**3. Soluciones de Inteligencia Artificial Propuestas:**
|
58 |
+
|
59 |
+
* **3.1. Análisis Automatizado de Imágenes Médicas:**
|
60 |
+
* **Fears/Doubts:** "Will this be accurate enough?" "Will it be compatible with our systems?" "What if it makes mistakes?" "Will doctors accept it?"
|
61 |
+
* **Addressing them:**
|
62 |
+
* **Stress rigorous training and validation** of the AI models.
|
63 |
+
* **Quantify accuracy** whenever possible (e.g., "achieved 95% accuracy in detecting X in clinical trials").
|
64 |
+
* **Highlight compatibility with PACS/HIS and ease of integration.**
|
65 |
+
* **Emphasize that AI provides a "second opinion" or "safety net," not a replacement for human judgment.**
|
66 |
+
* **Mention successful implementations in other hospitals (if applicable).**
|
67 |
+
* **Reiterate that it can be trained to detect anomalies with high precision.**
|
68 |
+
|
69 |
+
* **3.2. Asistente Virtual: "Enfermera Virtual":**
|
70 |
+
* **Fears/Doubts:** "Will patients trust a chatbot?" "Will it really understand complex medical questions?" "What about data privacy?" "Will it replace nurses?"
|
71 |
+
* **Addressing them:**
|
72 |
+
* **Emphasize the natural language processing capabilities and ability to understand context.**
|
73 |
+
* **Provide examples of how it can handle common patient queries and concerns.**
|
74 |
+
* **Strongly emphasize compliance with GDPR and data security protocols.**
|
75 |
+
* **Position it as a tool to free up nurses' time for more complex tasks, improving overall patient care.**
|
76 |
+
* **Highlight the 24/7 availability and emotional support aspects, particularly for vulnerable patients.**
|
77 |
+
|
78 |
+
**4. Beneficios Clave:**
|
79 |
+
|
80 |
+
* **Fears/Doubts:** "These benefits seem too good to be true." "How can we be sure they will materialize?"
|
81 |
+
* **Addressing them:**
|
82 |
+
* **Be realistic and avoid overpromising.**
|
83 |
+
* **Back up claims with data or evidence whenever possible.**
|
84 |
+
* **Focus on benefits that are most relevant to a public hospital (efficiency, cost-effectiveness, improved access to care).**
|
85 |
+
* **Mention potential for pilot studies to demonstrate benefits in their specific context.**
|
86 |
+
|
87 |
+
**5. Plan de Implementación y Colaboración:**
|
88 |
+
|
89 |
+
* **Fears/Doubts:** "This will be too disruptive." "We don't have the resources for this." "It will be a lot of work for our staff."
|
90 |
+
* **Addressing them:**
|
91 |
+
* **Propose a phased implementation approach to minimize disruption.**
|
92 |
+
* **Offer to work closely with their IT team to ensure smooth integration.**
|
93 |
+
* **Highlight your commitment to training and ongoing support.**
|
94 |
+
* **Emphasize that you will adapt the solutions to their specific needs and workflows.**
|
95 |
+
|
96 |
+
**6. Conclusión:**
|
97 |
+
|
98 |
+
* **Fears/Doubts:** "This is too risky." "We are not ready for this."
|
99 |
+
* **Addressing them:**
|
100 |
+
* **Reiterate the potential of AI to significantly improve healthcare delivery.**
|
101 |
+
* **Emphasize that you are seeking a partnership, not just selling a product.**
|
102 |
+
* **Offer a clear call to action, such as a meeting to discuss a pilot project.**
|
103 |
+
|
104 |
+
**Revised Proposal Snippets (incorporating these considerations):**
|
105 |
+
|
106 |
+
Here are some examples of how you can modify specific sections of your proposal to address these concerns:
|
107 |
+
|
108 |
+
**Original:**
|
109 |
+
|
110 |
+
> "El presente documento propone la implementación de soluciones avanzadas de Inteligencia Artificial (IA) en el Hospital Universitario 12 de Octubre..."
|
111 |
+
|
112 |
+
**Revised:**
|
113 |
+
|
114 |
+
> "El presente documento propone la implementación de soluciones avanzadas de Inteligencia Artificial (IA) en el Hospital Universitario 12 de Octubre, **con el objetivo de apoyar a los profesionales sanitarios, optimizar la eficiencia, mejorar la precisión diagnóstica y elevar la calidad de la atención al paciente, todo ello enmarcado en un contexto de uso responsable y ético de la tecnología.**"
|
115 |
+
|
116 |
+
**Original:**
|
117 |
+
|
118 |
+
> "Análisis Automatizado de Imágenes Médicas: Precisión y Eficiencia Diagnóstica"
|
119 |
+
|
120 |
+
**Revised:**
|
121 |
+
|
122 |
+
> "Análisis Automatizado de Imágenes Médicas: **Una Herramienta de Apoyo para el Diagnóstico, Validada y Compatible con los Sistemas del Hospital**"
|
123 |
+
> "**El sistema ha sido rigurosamente entrenado y validado, alcanzando una precisión comparable a la de especialistas humanos en diversas tareas, como la detección de [ejemplo] con una precisión superior al X%. Además, se integrará a la perfección con los sistemas PACS/HIS del hospital, garantizando la seguridad y confidencialidad de los datos, de acuerdo con la normativa vigente (RGPD).** Su función principal es la de **asistir** al personal médico, proporcionando una **segunda opinión** y una **herramienta de apoyo** para la toma de decisiones clínicas, **nunca sustituir el criterio del especialista.**"
|
124 |
+
> "**El sistema propuesto ha demostrado su eficacia en la detección temprana de diversas patologías, como X, Y, Z, con una alta precisión, superior al 95% en estudios clínicos. Además, su diseño modular permite una fácil adaptación a otras especialidades, maximizando el retorno de la inversión.**"
|
125 |
+
|
126 |
+
**Original:**
|
127 |
+
|
128 |
+
> "Asistente Virtual: "Enfermera Virtual" - Atención Continua y Apoyo Emocional"
|
129 |
+
|
130 |
+
**Revised:**
|
131 |
+
|
132 |
+
> "Asistente Virtual: "Enfermera Virtual" - **Un Canal de Comunicación Adicional para Mejorar la Accesibilidad y el Apoyo al Paciente, Respetando la Privacidad y sin Sustituir la Atención Humana**"
|
133 |
+
> "**La "Enfermera Virtual" no pretende reemplazar al personal de enfermería, sino complementar su labor, liberándoles de tareas repetitivas y permitiéndoles concentrarse en la atención directa al paciente. Además, se han implementado estrictas medidas de seguridad para garantizar la confidencialidad de la información, en pleno cumplimiento del RGPD.**"
|
134 |
+
|
135 |
+
**Original:**
|
136 |
+
|
137 |
+
> "Beneficios Clave para el Hospital Universitario 12 de Octubre"
|
138 |
+
|
139 |
+
**Revised:**
|
140 |
+
|
141 |
+
> "Beneficios Clave para el Hospital Universitario 12 de Octubre: **Resultados Tangibles y Medibles**"
|
142 |
+
> "**Los beneficios propuestos se basan en la experiencia de implementaciones similares en otros centros y se podrán evaluar mediante un piloto inicial, acordado conjuntamente, que permita medir el impacto real en el Hospital 12 de Octubre.**"
|
143 |
+
|
144 |
+
**Original:**
|
145 |
+
|
146 |
+
> "Plan de Implementación y Colaboración"
|
147 |
+
|
148 |
+
**Revised:**
|
149 |
+
|
150 |
+
> "Plan de Implementación y Colaboración: **Un Enfoque Gradual, Personalizado y con Mínima Disrupción**"
|
151 |
+
> "**Se propone un plan de implementación gradual, comenzando con un proyecto piloto en un área específica para minimizar cualquier posible disrupción. La formación del personal será una prioridad, y se trabajará en estrecha colaboración con los equipos del hospital para adaptar las soluciones a sus flujos de trabajo y necesidades específicas.**"
|
152 |
+
|
153 |
+
**Original:**
|
154 |
+
|
155 |
+
>"Conclusión"
|
156 |
+
|
157 |
+
**Revised:**
|
158 |
+
|
159 |
+
>"Conclusión: **Una Oportunidad para Avanzar Hacia una Atención Sanitaria Más Eficiente, Precisa y Humana, de la Mano de la Innovación Tecnológica**"
|
160 |
+
>"**La adopción de estas soluciones de IA no solo representa un avance tecnológico, sino una oportunidad para mejorar la atención sanitaria de forma tangible. Al combinar la experiencia y el criterio del personal médico con la precisión y eficiencia de la IA, el Hospital 12 de Octubre puede optimizar sus recursos, mejorar la precisión diagnóstica y, en última instancia, ofrecer una mejor experiencia a sus pacientes.**"
|
161 |
+
|
162 |
+
By directly addressing the likely concerns and fears of the decision-makers in a Spanish public hospital, your proposal will be much more persuasive and likely to succeed. Remember to be confident, transparent, and emphasize your willingness to collaborate throughout the process.
|
proposals/12-octubre-proposal.html
ADDED
@@ -0,0 +1,884 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="es">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<title>Propuesta de Implementación de IA - Hospital Universitario 12 de Octubre</title>
|
6 |
+
<style>
|
7 |
+
body {
|
8 |
+
font-family: 'Times New Roman', serif;
|
9 |
+
margin: 0 auto;
|
10 |
+
max-width: 800px;
|
11 |
+
line-height: 1.8;
|
12 |
+
color: #333;
|
13 |
+
background-color: #fff;
|
14 |
+
padding: 40px;
|
15 |
+
font-size: 12pt;
|
16 |
+
}
|
17 |
+
h1, h2, h3 {
|
18 |
+
color: #000;
|
19 |
+
font-family: 'Times New Roman', serif;
|
20 |
+
margin-top: 2em;
|
21 |
+
border-bottom: 2px solid #000;
|
22 |
+
padding-bottom: 0.5em;
|
23 |
+
}
|
24 |
+
h1 {
|
25 |
+
text-align: center;
|
26 |
+
font-size: 28px;
|
27 |
+
margin-bottom: 2em;
|
28 |
+
}
|
29 |
+
h2 {
|
30 |
+
font-size: 24px;
|
31 |
+
}
|
32 |
+
h3 {
|
33 |
+
font-size: 20px;
|
34 |
+
}
|
35 |
+
p, li {
|
36 |
+
font-size: 16px;
|
37 |
+
}
|
38 |
+
.section {
|
39 |
+
margin-bottom: 30px;
|
40 |
+
padding: 15px 20px;
|
41 |
+
background-color: #fff;
|
42 |
+
border: none;
|
43 |
+
box-shadow: none;
|
44 |
+
}
|
45 |
+
.section:not(:last-child) {
|
46 |
+
border-bottom: 1px solid #ddd;
|
47 |
+
}
|
48 |
+
.mermaid {
|
49 |
+
max-width: 600px;
|
50 |
+
margin: 20px auto;
|
51 |
+
font-size: 14px;
|
52 |
+
}
|
53 |
+
.infographic {
|
54 |
+
text-align: center;
|
55 |
+
margin: 30px 0;
|
56 |
+
}
|
57 |
+
table {
|
58 |
+
max-width: 100%;
|
59 |
+
margin: 20px 0;
|
60 |
+
font-size: 11pt;
|
61 |
+
border-collapse: collapse;
|
62 |
+
}
|
63 |
+
th, td {
|
64 |
+
padding: 8px;
|
65 |
+
text-align: left;
|
66 |
+
border: 1px solid #000;
|
67 |
+
}
|
68 |
+
th {
|
69 |
+
background-color: #f5f5f5;
|
70 |
+
font-weight: bold;
|
71 |
+
}
|
72 |
+
tr:nth-child(even) {
|
73 |
+
background-color: #f9f9f9;
|
74 |
+
}
|
75 |
+
ul, ol {
|
76 |
+
padding-left: 25px;
|
77 |
+
margin: 10px 0;
|
78 |
+
}
|
79 |
+
ul li {
|
80 |
+
margin-bottom: 8px;
|
81 |
+
line-height: 1.6;
|
82 |
+
padding-left: 10px;
|
83 |
+
position: relative;
|
84 |
+
}
|
85 |
+
@media print {
|
86 |
+
body {
|
87 |
+
padding: 0;
|
88 |
+
margin: 2.54cm;
|
89 |
+
font-size: 11pt;
|
90 |
+
}
|
91 |
+
.section {
|
92 |
+
page-break-inside: avoid;
|
93 |
+
margin-bottom: 20px;
|
94 |
+
}
|
95 |
+
}
|
96 |
+
@page {
|
97 |
+
margin: 2.54cm;
|
98 |
+
size: A4 portrait;
|
99 |
+
}
|
100 |
+
.header-section {
|
101 |
+
margin: 40px 0;
|
102 |
+
text-align: center;
|
103 |
+
}
|
104 |
+
.contact-details {
|
105 |
+
margin: 30px 0;
|
106 |
+
line-height: 1.6;
|
107 |
+
}
|
108 |
+
.contact-details p {
|
109 |
+
margin: 10px 0;
|
110 |
+
}
|
111 |
+
.contact-details strong {
|
112 |
+
display: inline-block;
|
113 |
+
width: 120px;
|
114 |
+
}
|
115 |
+
.info-card {
|
116 |
+
border: 2px solid #003366;
|
117 |
+
border-radius: 8px;
|
118 |
+
padding: 20px;
|
119 |
+
text-align: center;
|
120 |
+
background: #fff;
|
121 |
+
}
|
122 |
+
.info-card h3 {
|
123 |
+
color: #003366;
|
124 |
+
border: none;
|
125 |
+
margin: 10px 0;
|
126 |
+
}
|
127 |
+
.key-points {
|
128 |
+
background: #f8fafc;
|
129 |
+
border: 1px solid #e5e7eb;
|
130 |
+
border-radius: 8px;
|
131 |
+
padding: 20px;
|
132 |
+
margin: 20px 0;
|
133 |
+
}
|
134 |
+
.medical-interface {
|
135 |
+
border: 1px solid #e5e7eb;
|
136 |
+
border-radius: 8px;
|
137 |
+
overflow: hidden;
|
138 |
+
background: #f8fafc;
|
139 |
+
margin: 20px 0;
|
140 |
+
}
|
141 |
+
.interface-header {
|
142 |
+
background: #003366;
|
143 |
+
color: white;
|
144 |
+
padding: 10px;
|
145 |
+
font-size: 0.9em;
|
146 |
+
}
|
147 |
+
.data-output {
|
148 |
+
padding: 15px;
|
149 |
+
background: white;
|
150 |
+
}
|
151 |
+
.analysis-text {
|
152 |
+
padding: 15px;
|
153 |
+
background: #f3f4f6;
|
154 |
+
border-top: 1px solid #e5e7eb;
|
155 |
+
}
|
156 |
+
</style>
|
157 |
+
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
|
158 |
+
<script>
|
159 |
+
mermaid.initialize({ startOnLoad: true });
|
160 |
+
</script>
|
161 |
+
</head>
|
162 |
+
<body>
|
163 |
+
<section class="section header-section">
|
164 |
+
<h1>Propuesta de Implementación de IA: Optimización del Servicio de Oftalmología del Hospital Universitario 12 de Octubre</h1>
|
165 |
+
|
166 |
+
<div class="contact-details">
|
167 |
+
<p><strong>Dirigida a:</strong> Jefa de Servicio de Oftalmología, Hospital Universitario 12 de Octubre</p>
|
168 |
+
<p><strong>Fecha:</strong> 25 de Mayo de 2024</p>
|
169 |
+
<p><strong>Autor:</strong> Sami Halawa - Especialista en Sistemas de IA para Diagnóstico Oftalmológico</p>
|
170 |
+
<p><strong>Contacto:</strong>
|
171 |
+
<a href="mailto:sami@samihalawa.com">sami@samihalawa.com</a> |
|
172 |
+
Tel: +34 600000000
|
173 |
+
</p>
|
174 |
+
</div>
|
175 |
+
</section>
|
176 |
+
|
177 |
+
<section class="section">
|
178 |
+
<h2>Resumen Ejecutivo</h2>
|
179 |
+
<p>Esta propuesta presenta una solución de apoyo diagnóstico basada en IA específicamente diseñada para el Servicio de Oftalmología del Hospital 12 de Octubre, enfocada en optimizar los procesos clínicos existentes y mejorar la capacidad asistencial. El sistema se integra perfectamente con la infraestructura actual del servicio y cumple todos los requisitos del Sistema Nacional de Salud.</p>
|
180 |
+
|
181 |
+
<div style="display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0;">
|
182 |
+
<div class="info-card">
|
183 |
+
<div style="font-size: 24px; color: #003366; margin-bottom: 10px;">👁️</div>
|
184 |
+
<h3>Detección Automática</h3>
|
185 |
+
<p style="margin: 0; font-size: 0.9em;">Glaucoma, DMAE, y Retinopatía Diabética</p>
|
186 |
+
</div>
|
187 |
+
<div class="info-card">
|
188 |
+
<div style="font-size: 24px; color: #003366; margin-bottom: 10px;">🤖</div>
|
189 |
+
<h3>Asistente Virtual</h3>
|
190 |
+
<p style="margin: 0; font-size: 0.9em;">Triaje y seguimiento automático 24/7</p>
|
191 |
+
</div>
|
192 |
+
<div class="info-card">
|
193 |
+
<div style="font-size: 24px; color: #003366; margin-bottom: 10px;">📊</div>
|
194 |
+
<h3>Análisis OCT</h3>
|
195 |
+
<p style="margin: 0; font-size: 0.9em;">Mediciones y comparativas automáticas</p>
|
196 |
+
</div>
|
197 |
+
</div>
|
198 |
+
|
199 |
+
<div class="key-points">
|
200 |
+
<h3 style="color: #003366; margin: 0 0 15px 0;">Funcionalidades Principales</h3>
|
201 |
+
<div style="display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px;">
|
202 |
+
<div>
|
203 |
+
<p style="margin: 0; padding-left: 20px; position: relative;">
|
204 |
+
<span style="position: absolute; left: 0;">•</span>
|
205 |
+
Detección automática de glaucoma y DMAE
|
206 |
+
</p>
|
207 |
+
</div>
|
208 |
+
<div>
|
209 |
+
<p style="margin: 0; padding-left: 20px; position: relative;">
|
210 |
+
<span style="position: absolute; left: 0;">•</span>
|
211 |
+
Asistente virtual para triaje 24/7
|
212 |
+
</p>
|
213 |
+
</div>
|
214 |
+
<div>
|
215 |
+
<p style="margin: 0; padding-left: 20px; position: relative;">
|
216 |
+
<span style="position: absolute; left: 0;">•</span>
|
217 |
+
Medición automática capas retinianas
|
218 |
+
</p>
|
219 |
+
</div>
|
220 |
+
<div>
|
221 |
+
<p style="margin: 0; padding-left: 20px; position: relative;">
|
222 |
+
<span style="position: absolute; left: 0;">•</span>
|
223 |
+
Seguimiento evolución patologías
|
224 |
+
</p>
|
225 |
+
</div>
|
226 |
+
<div>
|
227 |
+
<p style="margin: 0; padding-left: 20px; position: relative;">
|
228 |
+
<span style="position: absolute; left: 0;">•</span>
|
229 |
+
Clasificación urgencia automática
|
230 |
+
</p>
|
231 |
+
</div>
|
232 |
+
<div>
|
233 |
+
<p style="margin: 0; padding-left: 20px; position: relative;">
|
234 |
+
<span style="position: absolute; left: 0;">•</span>
|
235 |
+
Informes estructurados automáticos
|
236 |
+
</p>
|
237 |
+
</div>
|
238 |
+
</div>
|
239 |
+
</div>
|
240 |
+
</section>
|
241 |
+
|
242 |
+
<section class="section">
|
243 |
+
<h2>1. Introducción</h2>
|
244 |
+
<p>El sistema propuesto está diseñado para apoyar al Servicio de Oftalmología en el análisis y procesamiento de imágenes diagnósticas, considerando el volumen asistencial de aproximadamente 40.000 pacientes/año. La solución procesa todos los datos localmente dentro de la infraestructura del hospital, cumpliendo estrictamente la normativa RGPD y los protocolos de seguridad del centro.</p>
|
245 |
+
|
246 |
+
<p>El sistema se ha desarrollado siguiendo las directrices del Sistema Nacional de Salud para la incorporación de nuevas tecnologías, con énfasis en:</p>
|
247 |
+
<ul>
|
248 |
+
<li>Optimización de procesos asistenciales existentes</li>
|
249 |
+
<li>Apoyo a la toma de decisiones clínicas</li>
|
250 |
+
<li>Mejora en la gestión de listas de espera</li>
|
251 |
+
<li>Integración con sistemas hospitalarios actuales</li>
|
252 |
+
</ul>
|
253 |
+
</section>
|
254 |
+
|
255 |
+
<div style="display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 30px 0;">
|
256 |
+
<div style="background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 20px;">
|
257 |
+
<h3 style="color: #003366; margin: 0 0 15px 0;">Desafíos Actuales</h3>
|
258 |
+
<ul style="list-style-type: none; padding: 0;">
|
259 |
+
<li style="margin-bottom: 10px; padding-left: 20px; position: relative;">
|
260 |
+
<span style="position: absolute; left: 0; color: #ef4444;">▲</span>
|
261 |
+
Alta demanda de pruebas OCT/retinografías
|
262 |
+
</li>
|
263 |
+
<li style="margin-bottom: 10px; padding-left: 20px; position: relative;">
|
264 |
+
<span style="position: absolute; left: 0; color: #ef4444;">▲</span>
|
265 |
+
Tiempo limitado para análisis detallado
|
266 |
+
</li>
|
267 |
+
<li style="margin-bottom: 10px; padding-left: 20px; position: relative;">
|
268 |
+
<span style="position: absolute; left: 0; color: #ef4444;">▲</span>
|
269 |
+
Listas de espera crecientes
|
270 |
+
</li>
|
271 |
+
<li style="margin-bottom: 10px; padding-left: 20px; position: relative;">
|
272 |
+
<span style="position: absolute; left: 0; color: #ef4444;">▲</span>
|
273 |
+
Necesidad de triaje más eficiente
|
274 |
+
</li>
|
275 |
+
</ul>
|
276 |
+
</div>
|
277 |
+
<div style="background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 20px;">
|
278 |
+
<h3 style="color: #003366; margin: 0 0 15px 0;">Soluciones Propuestas</h3>
|
279 |
+
<ul style="list-style-type: none; padding: 0;">
|
280 |
+
<li style="margin-bottom: 10px; padding-left: 20px; position: relative;">
|
281 |
+
<span style="position: absolute; left: 0; color: #10b981;">✓</span>
|
282 |
+
Análisis automático OCT/retinografías
|
283 |
+
</li>
|
284 |
+
<li style="margin-bottom: 10px; padding-left: 20px; position: relative;">
|
285 |
+
<span style="position: absolute; left: 0; color: #10b981;">✓</span>
|
286 |
+
Sistema de triaje inteligente 24/7
|
287 |
+
</li>
|
288 |
+
<li style="margin-bottom: 10px; padding-left: 20px; position: relative;">
|
289 |
+
<span style="position: absolute; left: 0; color: #10b981;">✓</span>
|
290 |
+
Detección temprana de patologías
|
291 |
+
</li>
|
292 |
+
<li style="margin-bottom: 10px; padding-left: 20px; position: relative;">
|
293 |
+
<span style="position: absolute; left: 0; color: #10b981;">✓</span>
|
294 |
+
Seguimiento automatizado pacientes
|
295 |
+
</li>
|
296 |
+
</ul>
|
297 |
+
</div>
|
298 |
+
</div>
|
299 |
+
|
300 |
+
<div style="display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 30px 0;">
|
301 |
+
<div class="medical-interface">
|
302 |
+
<div class="interface-header">
|
303 |
+
<h3 style="color: white; margin: 0;">Flujo de Trabajo Actual</h3>
|
304 |
+
</div>
|
305 |
+
<div style="padding: 20px;">
|
306 |
+
<div class="mermaid">
|
307 |
+
graph TD
|
308 |
+
A[Paciente] -->|Llegada| B[Recepción]
|
309 |
+
B -->|Espera| C[Pruebas Imagen]
|
310 |
+
C -->|Espera| D[Análisis Manual]
|
311 |
+
D -->|Espera| E[Consulta]
|
312 |
+
E -->|Si necesario| F[Nueva Cita]
|
313 |
+
style A fill:#ffccbc
|
314 |
+
style B fill:#fff9c4
|
315 |
+
style C fill:#c8e6c9
|
316 |
+
style D fill:#bbdefb
|
317 |
+
style E fill:#e1bee7
|
318 |
+
style F fill:#f8bbd0
|
319 |
+
</div>
|
320 |
+
</div>
|
321 |
+
</div>
|
322 |
+
<div class="medical-interface">
|
323 |
+
<div class="interface-header">
|
324 |
+
<h3 style="color: white; margin: 0;">Flujo de Trabajo Optimizado</h3>
|
325 |
+
</div>
|
326 |
+
<div style="padding: 20px;">
|
327 |
+
<div class="mermaid">
|
328 |
+
graph TD
|
329 |
+
A[Paciente] -->|24/7| B[Triaje Virtual]
|
330 |
+
B -->|Automático| C[Pruebas Imagen]
|
331 |
+
C -->|IA| D[Análisis Automático]
|
332 |
+
D -->|Priorizado| E[Consulta]
|
333 |
+
E -->|Seguimiento| F[Control IA]
|
334 |
+
style A fill:#ffccbc
|
335 |
+
style B fill:#fff9c4
|
336 |
+
style C fill:#c8e6c9
|
337 |
+
style D fill:#bbdefb
|
338 |
+
style E fill:#e1bee7
|
339 |
+
style F fill:#f8bbd0
|
340 |
+
</div>
|
341 |
+
</div>
|
342 |
+
</div>
|
343 |
+
</div>
|
344 |
+
|
345 |
+
<section class="section">
|
346 |
+
<h2>2. Soluciones Específicas para Oftalmología</h2>
|
347 |
+
|
348 |
+
<div class="medical-interface">
|
349 |
+
<div class="interface-header">
|
350 |
+
<h3 style="color: white; margin: 0;">Análisis Automatizado de Imágenes Oculares</h3>
|
351 |
+
</div>
|
352 |
+
<div style="padding: 20px;">
|
353 |
+
<div style="display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;">
|
354 |
+
<div style="text-align: center; padding: 15px; background: #f8fafc; border-radius: 8px;">
|
355 |
+
<h4 style="margin: 0 0 10px 0;">OCT Retina</h4>
|
356 |
+
<ul style="list-style: none; padding: 0; text-align: left;">
|
357 |
+
<li>• Análisis de capas</li>
|
358 |
+
<li>• Detección DMAE</li>
|
359 |
+
<li>• Edema macular</li>
|
360 |
+
</ul>
|
361 |
+
</div>
|
362 |
+
<div style="text-align: center; padding: 15px; background: #f8fafc; border-radius: 8px;">
|
363 |
+
<h4 style="margin: 0 0 10px 0;">Glaucoma</h4>
|
364 |
+
<ul style="list-style: none; padding: 0; text-align: left;">
|
365 |
+
<li>• OCT nervio óptico</li>
|
366 |
+
<li>• Campos visuales</li>
|
367 |
+
<li>• Progresión</li>
|
368 |
+
</ul>
|
369 |
+
</div>
|
370 |
+
<div style="text-align: center; padding: 15px; background: #f8fafc; border-radius: 8px;">
|
371 |
+
<h4 style="margin: 0 0 10px 0;">Retinografías</h4>
|
372 |
+
<ul style="list-style: none; padding: 0; text-align: left;">
|
373 |
+
<li>• Retinopatía diabética</li>
|
374 |
+
<li>• Lesiones retinianas</li>
|
375 |
+
<li>• Clasificación urgencia</li>
|
376 |
+
</ul>
|
377 |
+
</div>
|
378 |
+
</div>
|
379 |
+
</div>
|
380 |
+
</div>
|
381 |
+
|
382 |
+
<div class="medical-interface" style="margin: 30px 0;">
|
383 |
+
<div class="interface-header">
|
384 |
+
<h3 style="color: white; margin: 0;">Integración con Sistemas Actuales</h3>
|
385 |
+
</div>
|
386 |
+
<div style="padding: 20px;">
|
387 |
+
<div class="mermaid">
|
388 |
+
graph LR
|
389 |
+
A[OCT Existente] -->|DICOM| B{IA Sistema}
|
390 |
+
C[Retinógrafo] -->|DICOM| B
|
391 |
+
D[Campo Visual] -->|HL7| B
|
392 |
+
B -->|Análisis| E[Informe Preliminar]
|
393 |
+
E -->|Validación| F[Oftalmólogo]
|
394 |
+
F -->|Aprobación| G[Historia Clínica]
|
395 |
+
|
396 |
+
style A fill:#bbdefb
|
397 |
+
style B fill:#c8e6c9
|
398 |
+
style C fill:#fff9c4
|
399 |
+
style D fill:#ffccbc
|
400 |
+
style E fill:#e1bee7
|
401 |
+
style F fill:#b2dfdb
|
402 |
+
style G fill:#f8bbd0
|
403 |
+
</div>
|
404 |
+
</div>
|
405 |
+
</div>
|
406 |
+
|
407 |
+
<div class="medical-interface">
|
408 |
+
<div class="interface-header">
|
409 |
+
<h3 style="color: white; margin: 0;">Flujo de Trabajo Optimizado</h3>
|
410 |
+
</div>
|
411 |
+
<div style="padding: 20px;">
|
412 |
+
<div class="key-points">
|
413 |
+
<h4 style="color: #003366; margin: 0 0 15px 0;">Beneficios para el Servicio</h4>
|
414 |
+
<ul style="list-style: none; padding: 0; margin: 0;">
|
415 |
+
<li style="margin-bottom: 15px; padding-left: 25px; position: relative;">
|
416 |
+
<span style="position: absolute; left: 0; color: #003366;">1.</span>
|
417 |
+
<strong>Triaje Automático:</strong> Clasificación de urgencia en retinografías y OCTs
|
418 |
+
</li>
|
419 |
+
<li style="margin-bottom: 15px; padding-left: 25px; position: relative;">
|
420 |
+
<span style="position: absolute; left: 0; color: #003366;">2.</span>
|
421 |
+
<strong>Análisis Cuantitativo:</strong> Mediciones precisas de estructuras oculares
|
422 |
+
</li>
|
423 |
+
<li style="margin-bottom: 15px; padding-left: 25px; position: relative;">
|
424 |
+
<span style="position: absolute; left: 0; color: #003366;">3.</span>
|
425 |
+
<strong>Seguimiento:</strong> Comparación automática con estudios previos
|
426 |
+
</li>
|
427 |
+
<li style="margin-bottom: 15px; padding-left: 25px; position: relative;">
|
428 |
+
<span style="position: absolute; left: 0; color: #003366;">4.</span>
|
429 |
+
<strong>Documentación:</strong> Generación automática de informes estructurados
|
430 |
+
</li>
|
431 |
+
</ul>
|
432 |
+
</div>
|
433 |
+
</div>
|
434 |
+
</div>
|
435 |
+
|
436 |
+
<div class="medical-interface">
|
437 |
+
<div class="interface-header">
|
438 |
+
<h3 style="color: white; margin: 0;">Ejemplo: Análisis OCT Macular</h3>
|
439 |
+
</div>
|
440 |
+
<div class="image-container" style="background: #000; padding: 20px; min-height: 300px; display: flex; justify-content: center; align-items: center;">
|
441 |
+
<div class="oct-simulation" style="width: 100%; height: 250px; background: linear-gradient(180deg, #222 0%, #444 50%, #222 100%); position: relative;">
|
442 |
+
<div style="position: absolute; top: 20%; left: 10%; width: 80%; height: 60%; border: 2px solid #00ff00; border-radius: 4px;">
|
443 |
+
<div style="position: absolute; top: -25px; left: 0; color: #00ff00; font-size: 12px;">Análisis de Capas Retinianas</div>
|
444 |
+
<div style="position: absolute; bottom: -25px; right: 0; color: #00ff00; font-size: 12px;">Grosor: 245μm</div>
|
445 |
+
</div>
|
446 |
+
</div>
|
447 |
+
</div>
|
448 |
+
<div class="data-output">
|
449 |
+
<div style="display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;">
|
450 |
+
<div>
|
451 |
+
<div style="color: #6b7280; font-size: 0.9em;">Grosor Foveal</div>
|
452 |
+
<div style="font-weight: bold;">245μm (Normal)</div>
|
453 |
+
</div>
|
454 |
+
<div>
|
455 |
+
<div style="color: #6b7280; font-size: 0.9em;">Volumen Macular</div>
|
456 |
+
<div style="font-weight: bold;">8.5mm³</div>
|
457 |
+
</div>
|
458 |
+
<div>
|
459 |
+
<div style="color: #6b7280; font-size: 0.9em;">Tiempo Análisis</div>
|
460 |
+
<div style="font-weight: bold;">2.3s</div>
|
461 |
+
</div>
|
462 |
+
</div>
|
463 |
+
</div>
|
464 |
+
</div>
|
465 |
+
|
466 |
+
<div class="medical-interface" style="margin-top: 30px;">
|
467 |
+
<div class="interface-header">
|
468 |
+
<h3 style="color: white; margin: 0;">Capacidades de Detección</h3>
|
469 |
+
</div>
|
470 |
+
<div style="padding: 20px;">
|
471 |
+
<div style="display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;">
|
472 |
+
<div class="key-points" style="margin: 0;">
|
473 |
+
<h4 style="color: #003366; margin: 0 0 15px 0;">Patologías Retinianas</h4>
|
474 |
+
<ul style="list-style: none; padding: 0;">
|
475 |
+
<li style="margin-bottom: 10px; padding-left: 25px; position: relative;">
|
476 |
+
<span style="position: absolute; left: 0; color: #003366;">•</span>
|
477 |
+
DMAE seca y húmeda
|
478 |
+
</li>
|
479 |
+
<li style="margin-bottom: 10px; padding-left: 25px; position: relative;">
|
480 |
+
<span style="position: absolute; left: 0; color: #003366;">•</span>
|
481 |
+
Edema macular diabético
|
482 |
+
</li>
|
483 |
+
<li style="margin-bottom: 10px; padding-left: 25px; position: relative;">
|
484 |
+
<span style="position: absolute; left: 0; color: #003366;">•</span>
|
485 |
+
Membranas epirretinianas
|
486 |
+
</li>
|
487 |
+
<li style="margin-bottom: 10px; padding-left: 25px; position: relative;">
|
488 |
+
<span style="position: absolute; left: 0; color: #003366;">•</span>
|
489 |
+
Agujeros maculares
|
490 |
+
</li>
|
491 |
+
</ul>
|
492 |
+
</div>
|
493 |
+
<div class="key-points" style="margin: 0;">
|
494 |
+
<h4 style="color: #003366; margin: 0 0 15px 0;">Glaucoma</h4>
|
495 |
+
<ul style="list-style: none; padding: 0;">
|
496 |
+
<li style="margin-bottom: 10px; padding-left: 25px; position: relative;">
|
497 |
+
<span style="position: absolute; left: 0; color: #003366;">•</span>
|
498 |
+
Análisis de capa RNFL
|
499 |
+
</li>
|
500 |
+
<li style="margin-bottom: 10px; padding-left: 25px; position: relative;">
|
501 |
+
<span style="position: absolute; left: 0; color: #003366;">•</span>
|
502 |
+
Evaluación papila óptica
|
503 |
+
</li>
|
504 |
+
<li style="margin-bottom: 10px; padding-left: 25px; position: relative;">
|
505 |
+
<span style="position: absolute; left: 0; color: #003366;">•</span>
|
506 |
+
Análisis de progresión
|
507 |
+
</li>
|
508 |
+
<li style="margin-bottom: 10px; padding-left: 25px; position: relative;">
|
509 |
+
<span style="position: absolute; left: 0; color: #003366;">•</span>
|
510 |
+
Correlación campo visual
|
511 |
+
</li>
|
512 |
+
</ul>
|
513 |
+
</div>
|
514 |
+
</div>
|
515 |
+
</div>
|
516 |
+
</div>
|
517 |
+
|
518 |
+
<div class="medical-interface" style="margin-top: 30px;">
|
519 |
+
<div class="interface-header">
|
520 |
+
<h3 style="color: white; margin: 0;">Compatibilidad con Equipos</h3>
|
521 |
+
</div>
|
522 |
+
<div style="padding: 20px;">
|
523 |
+
<div style="display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;">
|
524 |
+
<div style="text-align: center; padding: 15px; background: #f8fafc; border-radius: 8px;">
|
525 |
+
<h4 style="margin: 0 0 10px 0;">OCT</h4>
|
526 |
+
<ul style="list-style: none; padding: 0; text-align: left;">
|
527 |
+
<li>• Cirrus HD-OCT</li>
|
528 |
+
<li>• Spectralis OCT</li>
|
529 |
+
<li>• Topcon 3D OCT</li>
|
530 |
+
<li>• RTVue OCT</li>
|
531 |
+
</ul>
|
532 |
+
</div>
|
533 |
+
<div style="text-align: center; padding: 15px; background: #f8fafc; border-radius: 8px;">
|
534 |
+
<h4 style="margin: 0 0 10px 0;">Retinógrafos</h4>
|
535 |
+
<ul style="list-style: none; padding: 0; text-align: left;">
|
536 |
+
<li>• Topcon TRC</li>
|
537 |
+
<li>• Canon CR-2</li>
|
538 |
+
<li>• Zeiss FF450</li>
|
539 |
+
<li>• Optos California</li>
|
540 |
+
</ul>
|
541 |
+
</div>
|
542 |
+
<div style="text-align: center; padding: 15px; background: #f8fafc; border-radius: 8px;">
|
543 |
+
<h4 style="margin: 0 0 10px 0;">Campímetros</h4>
|
544 |
+
<ul style="list-style: none; padding: 0; text-align: left;">
|
545 |
+
<li>• Humphrey HFA3</li>
|
546 |
+
<li>• Octopus 900</li>
|
547 |
+
<li>• Zeiss HFA II</li>
|
548 |
+
<li>• Medmont M700</li>
|
549 |
+
</ul>
|
550 |
+
</div>
|
551 |
+
</div>
|
552 |
+
</div>
|
553 |
+
</div>
|
554 |
+
|
555 |
+
<div class="medical-interface" style="margin-top: 30px;">
|
556 |
+
<div class="interface-header">
|
557 |
+
<h3 style="color: white; margin: 0;">Ejemplo: Informe Estructurado</h3>
|
558 |
+
</div>
|
559 |
+
<div style="padding: 20px; background: white;">
|
560 |
+
<div style="border: 1px solid #e5e7eb; padding: 20px; border-radius: 8px;">
|
561 |
+
<div style="margin-bottom: 20px;">
|
562 |
+
<h4 style="margin: 0 0 10px 0; color: #003366;">Datos del Estudio</h4>
|
563 |
+
<div style="display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;">
|
564 |
+
<div>Tipo: OCT Macular</div>
|
565 |
+
<div>Fecha: 24/05/2024</div>
|
566 |
+
<div>Equipo: Cirrus HD-OCT</div>
|
567 |
+
<div>ID: OCT-2024-0524</div>
|
568 |
+
</div>
|
569 |
+
</div>
|
570 |
+
<div style="margin-bottom: 20px;">
|
571 |
+
<h4 style="margin: 0 0 10px 0; color: #003366;">Hallazgos</h4>
|
572 |
+
<ul style="margin: 0; padding-left: 20px;">
|
573 |
+
<li>Grosor foveal central: 245μm (normal)</li>
|
574 |
+
<li>Volumen macular: 8.5mm³</li>
|
575 |
+
<li>Perfil foveal: conservado</li>
|
576 |
+
<li>Capas retinianas: estructura normal</li>
|
577 |
+
</ul>
|
578 |
+
</div>
|
579 |
+
<div>
|
580 |
+
<h4 style="margin: 0 0 10px 0; color: #003366;">Impresión Diagnóstica</h4>
|
581 |
+
<p style="margin: 0;">Estudio OCT macular dentro de límites normales. No se observan alteraciones estructurales significativas.</p>
|
582 |
+
</div>
|
583 |
+
</div>
|
584 |
+
</div>
|
585 |
+
</div>
|
586 |
+
|
587 |
+
<div class="medical-interface">
|
588 |
+
<div class="interface-header">
|
589 |
+
<h3 style="color: white; margin: 0;">Asistente Virtual 24/7</h3>
|
590 |
+
</div>
|
591 |
+
<div style="padding: 20px;">
|
592 |
+
<div style="display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;">
|
593 |
+
<div style="text-align: center; padding: 15px; background: #f8fafc; border-radius: 8px;">
|
594 |
+
<h4 style="margin: 0 0 10px 0;">Triaje Automático</h4>
|
595 |
+
<ul style="list-style: none; padding: 0; text-align: left;">
|
596 |
+
<li>• Evaluación síntomas</li>
|
597 |
+
<li>• Clasificación urgencia</li>
|
598 |
+
<li>• Derivación automática</li>
|
599 |
+
</ul>
|
600 |
+
</div>
|
601 |
+
<div style="text-align: center; padding: 15px; background: #f8fafc; border-radius: 8px;">
|
602 |
+
<h4 style="margin: 0 0 10px 0;">Seguimiento</h4>
|
603 |
+
<ul style="list-style: none; padding: 0; text-align: left;">
|
604 |
+
<li>• Recordatorios citas</li>
|
605 |
+
<li>• Control tratamientos</li>
|
606 |
+
<li>• Alertas automáticas</li>
|
607 |
+
</ul>
|
608 |
+
</div>
|
609 |
+
<div style="text-align: center; padding: 15px; background: #f8fafc; border-radius: 8px;">
|
610 |
+
<h4 style="margin: 0 0 10px 0;">Información</h4>
|
611 |
+
<ul style="list-style: none; padding: 0; text-align: left;">
|
612 |
+
<li>• Instrucciones pre/post</li>
|
613 |
+
<li>• Dudas frecuentes</li>
|
614 |
+
<li>• Educación paciente</li>
|
615 |
+
</ul>
|
616 |
+
</div>
|
617 |
+
</div>
|
618 |
+
</div>
|
619 |
+
</div>
|
620 |
+
</section>
|
621 |
+
|
622 |
+
<section class="section">
|
623 |
+
<h2>3. Beneficios y Retorno de Inversión</h2>
|
624 |
+
|
625 |
+
<div class="medical-interface" style="margin-bottom: 30px;">
|
626 |
+
<div class="interface-header">
|
627 |
+
<h3 style="color: white; margin: 0;">Métricas de Rendimiento en Oftalmología</h3>
|
628 |
+
</div>
|
629 |
+
<div style="padding: 20px;">
|
630 |
+
<div style="display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;">
|
631 |
+
<div class="key-points" style="margin: 0;">
|
632 |
+
<h4 style="color: #003366; margin: 0 0 15px 0;">Eficiencia Clínica</h4>
|
633 |
+
<ul style="list-style: none; padding: 0; margin: 0;">
|
634 |
+
<li style="margin-bottom: 10px; padding-left: 25px; position: relative;">
|
635 |
+
<span style="position: absolute; left: 0; color: #003366;">↓</span>
|
636 |
+
Reducción del tiempo por diagnóstico OCT
|
637 |
+
</li>
|
638 |
+
<li style="margin-bottom: 10px; padding-left: 25px; position: relative;">
|
639 |
+
<span style="position: absolute; left: 0; color: #003366;">↑</span>
|
640 |
+
Aumento de la capacidad de consultas
|
641 |
+
</li>
|
642 |
+
<li style="margin-bottom: 10px; padding-left: 25px; position: relative;">
|
643 |
+
<span style="position: absolute; left: 0; color: #003366;">↓</span>
|
644 |
+
Reducción del tiempo administrativo
|
645 |
+
</li>
|
646 |
+
</ul>
|
647 |
+
</div>
|
648 |
+
<div class="key-points" style="margin: 0;">
|
649 |
+
<h4 style="color: #003366; margin: 0 0 15px 0;">Impacto en la Atención</h4>
|
650 |
+
<ul style="list-style: none; padding: 0; margin: 0;">
|
651 |
+
<li style="margin-bottom: 10px; padding-left: 25px; position: relative;">
|
652 |
+
<span style="position: absolute; left: 0; color: #003366;">↓</span>
|
653 |
+
Reducción del tiempo de espera para diagnóstico
|
654 |
+
</li>
|
655 |
+
<li style="margin-bottom: 10px; padding-left: 25px; position: relative;">
|
656 |
+
<span style="position: absolute; left: 0; color: #003366;">↑</span>
|
657 |
+
Mayor capacidad de atención a pacientes
|
658 |
+
</li>
|
659 |
+
<li style="margin-bottom: 10px; padding-left: 25px; position: relative;">
|
660 |
+
<span style="position: absolute; left: 0; color: #003366;">↑</span>
|
661 |
+
Mejora en la detección temprana
|
662 |
+
</li>
|
663 |
+
</ul>
|
664 |
+
</div>
|
665 |
+
<div class="key-points" style="margin: 0;">
|
666 |
+
<h4 style="color: #003366; margin: 0 0 15px 0;">Beneficios para el SNS</h4>
|
667 |
+
<ul style="list-style: none; padding: 0; margin: 0;">
|
668 |
+
<li style="margin-bottom: 10px; padding-left: 25px; position: relative;">
|
669 |
+
<span style="position: absolute; left: 0; color: #003366;">↑</span>
|
670 |
+
Optimización de recursos públicos
|
671 |
+
</li>
|
672 |
+
<li style="margin-bottom: 10px; padding-left: 25px; position: relative;">
|
673 |
+
<span style="position: absolute; left: 0; color: #003366;">↑</span>
|
674 |
+
Mejor gestión de la lista de espera
|
675 |
+
</li>
|
676 |
+
<li style="margin-bottom: 10px; padding-left: 25px; position: relative;">
|
677 |
+
<span style="position: absolute; left: 0; color: #003366;">↑</span>
|
678 |
+
Mayor equidad en la atención
|
679 |
+
</li>
|
680 |
+
</ul>
|
681 |
+
</div>
|
682 |
+
</div>
|
683 |
+
</div>
|
684 |
+
</div>
|
685 |
+
|
686 |
+
<div class="medical-interface">
|
687 |
+
<div class="interface-header">
|
688 |
+
<h3 style="color: white; margin: 0;">Impacto en el Servicio Público</h3>
|
689 |
+
</div>
|
690 |
+
<div style="padding: 20px;">
|
691 |
+
<div style="display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;">
|
692 |
+
<div style="text-align: center; padding: 15px; background: #f8fafc; border-radius: 8px;">
|
693 |
+
<h4 style="margin: 0 0 10px 0;">Mejora Asistencial</h4>
|
694 |
+
<ul style="list-style: none; padding: 0; text-align: left; margin-top: 10px;">
|
695 |
+
<li>• Reducción lista de espera</li>
|
696 |
+
<li>• Mayor capacidad diagnóstica</li>
|
697 |
+
<li>• Atención más rápida</li>
|
698 |
+
</ul>
|
699 |
+
</div>
|
700 |
+
<div style="text-align: center; padding: 15px; background: #f8fafc; border-radius: 8px;">
|
701 |
+
<h4 style="margin: 0 0 10px 0;">Optimización Recursos</h4>
|
702 |
+
<ul style="list-style: none; padding: 0; text-align: left; margin-top: 10px;">
|
703 |
+
<li>• Mejor uso del tiempo médico</li>
|
704 |
+
<li>• Eficiencia en procesos</li>
|
705 |
+
<li>• Reducción repetición pruebas</li>
|
706 |
+
</ul>
|
707 |
+
</div>
|
708 |
+
<div style="text-align: center; padding: 15px; background: #f8fafc; border-radius: 8px;">
|
709 |
+
<h4 style="margin: 0 0 10px 0;">Beneficio Social</h4>
|
710 |
+
<ul style="list-style: none; padding: 0; text-align: left; margin-top: 10px;">
|
711 |
+
<li>• Detección temprana</li>
|
712 |
+
<li>• Mejor seguimiento</li>
|
713 |
+
<li>• Equidad en atención</li>
|
714 |
+
</ul>
|
715 |
+
</div>
|
716 |
+
</div>
|
717 |
+
</div>
|
718 |
+
</div>
|
719 |
+
</section>
|
720 |
+
|
721 |
+
<section class="section">
|
722 |
+
<h2>4. Plan de Implementación y Protocolo de Formación</h2>
|
723 |
+
|
724 |
+
<div class="medical-interface">
|
725 |
+
<div class="interface-header">
|
726 |
+
<h3 style="color: white; margin: 0;">Protocolo de Implementación</h3>
|
727 |
+
</div>
|
728 |
+
<div style="padding: 20px;">
|
729 |
+
<div style="display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;">
|
730 |
+
<div style="text-align: center; padding: 15px; background: #f8fafc; border-radius: 8px;">
|
731 |
+
<h4 style="margin: 0 0 10px 0;">Fase 1: Evaluación</h4>
|
732 |
+
<p style="color: #666; margin: 0 0 10px 0;">Mes 1-2</p>
|
733 |
+
<ul style="list-style: none; padding: 0; text-align: left;">
|
734 |
+
<li>• Análisis necesidades del servicio</li>
|
735 |
+
<li>• Evaluación infraestructura actual</li>
|
736 |
+
<li>• Planificación detallada</li>
|
737 |
+
</ul>
|
738 |
+
</div>
|
739 |
+
<div style="text-align: center; padding: 15px; background: #f8fafc; border-radius: 8px;">
|
740 |
+
<h4 style="margin: 0 0 10px 0;">Fase 2: Piloto</h4>
|
741 |
+
<p style="color: #666; margin: 0 0 10px 0;">Mes 3-4</p>
|
742 |
+
<ul style="list-style: none; padding: 0; text-align: left;">
|
743 |
+
<li>• Prueba en área seleccionada</li>
|
744 |
+
<li>• Formación inicial</li>
|
745 |
+
<li>• Evaluación resultados</li>
|
746 |
+
</ul>
|
747 |
+
</div>
|
748 |
+
<div style="text-align: center; padding: 15px; background: #f8fafc; border-radius: 8px;">
|
749 |
+
<h4 style="margin: 0 0 10px 0;">Fase 3: Implementación</h4>
|
750 |
+
<p style="color: #666; margin: 0 0 10px 0;">Mes 5-6</p>
|
751 |
+
<ul style="list-style: none; padding: 0; text-align: left;">
|
752 |
+
<li>• Despliegue gradual</li>
|
753 |
+
<li>• Formación completa</li>
|
754 |
+
<li>• Ajustes según feedback</li>
|
755 |
+
</ul>
|
756 |
+
</div>
|
757 |
+
<div style="text-align: center; padding: 15px; background: #f8fafc; border-radius: 8px;">
|
758 |
+
<h4 style="margin: 0 0 10px 0;">Fase 4: Seguimiento</h4>
|
759 |
+
<p style="color: #666; margin: 0 0 10px 0;">Continuo</p>
|
760 |
+
<ul style="list-style: none; padding: 0; text-align: left;">
|
761 |
+
<li>• Evaluación continua</li>
|
762 |
+
<li>• Soporte permanente</li>
|
763 |
+
<li>• Mejoras iterativas</li>
|
764 |
+
</ul>
|
765 |
+
</div>
|
766 |
+
</div>
|
767 |
+
</div>
|
768 |
+
</div>
|
769 |
+
|
770 |
+
<div class="medical-interface" style="margin-top: 30px;">
|
771 |
+
<div class="interface-header">
|
772 |
+
<h3 style="color: white; margin: 0;">Programa de Capacitación</h3>
|
773 |
+
</div>
|
774 |
+
<div style="padding: 20px;">
|
775 |
+
<div style="display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;">
|
776 |
+
<div class="key-points" style="margin: 0;">
|
777 |
+
<h4 style="color: #003366; margin: 0 0 15px 0;">Formación Asistencial</h4>
|
778 |
+
<ul style="list-style: none; padding: 0;">
|
779 |
+
<li style="margin-bottom: 15px; padding-left: 25px; position: relative;">
|
780 |
+
<span style="position: absolute; left: 0; color: #003366;">1.</span>
|
781 |
+
<strong>Análisis Asistido:</strong> Interpretación de resultados diagnósticos
|
782 |
+
</li>
|
783 |
+
<li style="margin-bottom: 15px; padding-left: 25px; position: relative;">
|
784 |
+
<span style="position: absolute; left: 0; color: #003366;">2.</span>
|
785 |
+
<strong>Casos Prácticos:</strong> Patologías habituales del servicio
|
786 |
+
</li>
|
787 |
+
<li style="margin-bottom: 15px; padding-left: 25px; position: relative;">
|
788 |
+
<span style="position: absolute; left: 0; color: #003366;">3.</span>
|
789 |
+
<strong>Protocolos:</strong> Procedimientos de validación clínica
|
790 |
+
</li>
|
791 |
+
</ul>
|
792 |
+
</div>
|
793 |
+
<div class="key-points" style="margin: 0;">
|
794 |
+
<h4 style="color: #003366; margin: 0 0 15px 0;">Formación Operativa</h4>
|
795 |
+
<ul style="list-style: none; padding: 0;">
|
796 |
+
<li style="margin-bottom: 15px; padding-left: 25px; position: relative;">
|
797 |
+
<span style="position: absolute; left: 0; color: #003366;">1.</span>
|
798 |
+
<strong>Operación:</strong> Manejo del sistema y funciones
|
799 |
+
</li>
|
800 |
+
<li style="margin-bottom: 15px; padding-left: 25px; position: relative;">
|
801 |
+
<span style="position: absolute; left: 0; color: #003366;">2.</span>
|
802 |
+
<strong>Procesos:</strong> Integración con flujo existente
|
803 |
+
</li>
|
804 |
+
<li style="margin-bottom: 15px; padding-left: 25px; position: relative;">
|
805 |
+
<span style="position: absolute; left: 0; color: #003366;">3.</span>
|
806 |
+
<strong>Soporte:</strong> Resolución de situaciones comunes
|
807 |
+
</li>
|
808 |
+
</ul>
|
809 |
+
</div>
|
810 |
+
</div>
|
811 |
+
</div>
|
812 |
+
</div>
|
813 |
+
|
814 |
+
<div class="medical-interface" style="margin-top: 30px;">
|
815 |
+
<div class="interface-header">
|
816 |
+
<h3 style="color: white; margin: 0;">Mantenimiento y Asistencia Técnica</h3>
|
817 |
+
</div>
|
818 |
+
<div style="padding: 20px;">
|
819 |
+
<div class="key-points">
|
820 |
+
<ul style="list-style: none; padding: 0; margin: 0;">
|
821 |
+
<li style="margin-bottom: 15px; padding-left: 25px; position: relative;">
|
822 |
+
<span style="position: absolute; left: 0; color: #003366;">•</span>
|
823 |
+
<strong>Asistencia:</strong> Soporte técnico remoto en horario asistencial
|
824 |
+
</li>
|
825 |
+
<li style="margin-bottom: 15px; padding-left: 25px; position: relative;">
|
826 |
+
<span style="position: absolute; left: 0; color: #003366;">•</span>
|
827 |
+
<strong>Mantenimiento:</strong> Actualizaciones periódicas del sistema
|
828 |
+
</li>
|
829 |
+
<li style="margin-bottom: 15px; padding-left: 25px; position: relative;">
|
830 |
+
<span style="position: absolute; left: 0; color: #003366;">•</span>
|
831 |
+
<strong>Supervisión:</strong> Control continuo del funcionamiento
|
832 |
+
</li>
|
833 |
+
<li style="margin-bottom: 15px; padding-left: 25px; position: relative;">
|
834 |
+
<span style="position: absolute; left: 0; color: #003366;">•</span>
|
835 |
+
<strong>Seguridad:</strong> Copias de respaldo automáticas
|
836 |
+
</li>
|
837 |
+
</ul>
|
838 |
+
</div>
|
839 |
+
</div>
|
840 |
+
</div>
|
841 |
+
</section>
|
842 |
+
|
843 |
+
<section class="section" style="background: #003366; color: white; padding: 40px; border-radius: 12px; margin: 40px 0;">
|
844 |
+
<h2 style="color: white; border: none; text-align: center; font-size: 28px; margin-bottom: 30px;">Sistema de Apoyo al Diagnóstico Oftalmológico</h2>
|
845 |
+
|
846 |
+
<div style="max-width: 800px; margin: 0 auto; text-align: center;">
|
847 |
+
<p style="font-size: 20px; margin-bottom: 30px;">
|
848 |
+
Sistema de apoyo basado en IA para el análisis de imágenes oftalmológicas:
|
849 |
+
</p>
|
850 |
+
|
851 |
+
<div style="display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0;">
|
852 |
+
<div style="background: rgba(255,255,255,0.1); padding: 20px; border-radius: 8px;">
|
853 |
+
<div style="font-size: 24px; margin-bottom: 10px;">Resultados</div>
|
854 |
+
<div>Concordancia con Especialista</div>
|
855 |
+
</div>
|
856 |
+
<div style="background: rgba(255,255,255,0.1); padding: 20px; border-radius: 8px;">
|
857 |
+
<div style="font-size: 24px; margin-bottom: 10px;">Mejora</div>
|
858 |
+
<div>Tiempo de Análisis</div>
|
859 |
+
</div>
|
860 |
+
<div style="background: rgba(255,255,255,0.1); padding: 20px; border-radius: 8px;">
|
861 |
+
<div style="font-size: 24px; margin-bottom: 10px;">4</div>
|
862 |
+
<div>Meses Implementación</div>
|
863 |
+
</div>
|
864 |
+
</div>
|
865 |
+
|
866 |
+
<div style="margin-top: 30px;">
|
867 |
+
<p style="font-size: 24px; font-weight: bold;">Para más información técnica o programar una demostración:</p>
|
868 |
+
<p style="font-size: 20px;">
|
869 |
+
<a href="mailto:oftalmologia.ia@hospital12octubre.es" style="color: white; text-decoration: underline;">oftalmologia.ia@hospital12octubre.es</a>
|
870 |
+
</p>
|
871 |
+
</div>
|
872 |
+
</div>
|
873 |
+
</section>
|
874 |
+
|
875 |
+
<section class="section" style="margin-top: 40px; text-align: center;">
|
876 |
+
<p style="font-style: italic; color: #666;">
|
877 |
+
Propuesta técnica preparada para el Servicio de Oftalmología<br>
|
878 |
+
Hospital Universitario 12 de Octubre<br>
|
879 |
+
2024
|
880 |
+
</p>
|
881 |
+
</section>
|
882 |
+
|
883 |
+
</body>
|
884 |
+
</html>
|
proposals/main-proposal.html
ADDED
@@ -0,0 +1,747 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="es">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<meta name="theme-color" content="#000000">
|
7 |
+
<meta name="description" content="Instituto IA para Salud - Transformando el futuro de la medicina con inteligencia artificial">
|
8 |
+
<meta name="keywords" content="IA médica, salud, inteligencia artificial, medicina, diagnóstico">
|
9 |
+
<title>Instituto IA para Salud | Innovación en Medicina</title>
|
10 |
+
|
11 |
+
<!-- Enhanced UI Libraries -->
|
12 |
+
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
|
13 |
+
<link href="https://cdn.jsdelivr.net/npm/daisyui@2.6.0/dist/full.css" rel="stylesheet">
|
14 |
+
<link href="https://cdn.jsdelivr.net/npm/@materializecss/materialize@2.0.1-alpha/dist/css/materialize.min.css" rel="stylesheet">
|
15 |
+
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
|
16 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
|
17 |
+
|
18 |
+
<!-- Modern Fonts -->
|
19 |
+
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;400;500;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
20 |
+
|
21 |
+
<!-- Interactive Components -->
|
22 |
+
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
|
23 |
+
<script src="https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.min.js"></script>
|
24 |
+
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
|
25 |
+
<script src="https://cdn.jsdelivr.net/npm/@materializecss/materialize@2.0.1-alpha/dist/js/materialize.min.js"></script>
|
26 |
+
|
27 |
+
<!-- Minimal Custom Styles -->
|
28 |
+
<style>
|
29 |
+
:root {
|
30 |
+
--primary: #0F172A;
|
31 |
+
--accent: #3B82F6;
|
32 |
+
}
|
33 |
+
|
34 |
+
body {
|
35 |
+
font-family: 'Plus Jakarta Sans', sans-serif;
|
36 |
+
background: black;
|
37 |
+
color: #E2E8F0;
|
38 |
+
}
|
39 |
+
|
40 |
+
h1, h2, h3 {
|
41 |
+
font-family: 'Space Grotesk', sans-serif;
|
42 |
+
}
|
43 |
+
|
44 |
+
.gradient-bg {
|
45 |
+
position: fixed;
|
46 |
+
top: 0;
|
47 |
+
left: 0;
|
48 |
+
right: 0;
|
49 |
+
pointer-events: none;
|
50 |
+
width: 100%;
|
51 |
+
height: 100%;
|
52 |
+
background:
|
53 |
+
radial-gradient(circle at 0% 0%, #1E40AF 0%, transparent 50%),
|
54 |
+
radial-gradient(circle at 100% 0%, #3B82F6 0%, transparent 50%),
|
55 |
+
radial-gradient(circle at 50% 100%, #2563EB 0%, transparent 50%);
|
56 |
+
opacity: 0.15;
|
57 |
+
z-index: -1;
|
58 |
+
}
|
59 |
+
|
60 |
+
.hero {
|
61 |
+
min-height: 100vh;
|
62 |
+
background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)),
|
63 |
+
url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&q=80');
|
64 |
+
background-size: cover;
|
65 |
+
background-position: center;
|
66 |
+
background-attachment: fixed;
|
67 |
+
}
|
68 |
+
|
69 |
+
/* Enhanced styles for sections */
|
70 |
+
.section {
|
71 |
+
padding: 4rem 0;
|
72 |
+
opacity: 0;
|
73 |
+
transform: translateY(20px);
|
74 |
+
transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
|
75 |
+
}
|
76 |
+
|
77 |
+
.section.visible {
|
78 |
+
opacity: 1;
|
79 |
+
transform: translateY(0);
|
80 |
+
}
|
81 |
+
|
82 |
+
.section h2 {
|
83 |
+
font-size: 2.5rem;
|
84 |
+
margin-bottom: 2rem;
|
85 |
+
color: #3B82F6;
|
86 |
+
}
|
87 |
+
|
88 |
+
/* Enhanced styles for cards */
|
89 |
+
.card-panel {
|
90 |
+
border-radius: 10px;
|
91 |
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
92 |
+
padding: 2rem;
|
93 |
+
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
94 |
+
background: rgba(255, 255, 255, 0.05);
|
95 |
+
backdrop-filter: blur(10px);
|
96 |
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
97 |
+
}
|
98 |
+
|
99 |
+
.card-panel:hover {
|
100 |
+
transform: translateY(-5px) scale(1.02);
|
101 |
+
background: rgba(255, 255, 255, 0.1);
|
102 |
+
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
|
103 |
+
}
|
104 |
+
|
105 |
+
/* Enhanced styles for lists */
|
106 |
+
.collection .collection-item {
|
107 |
+
border-bottom: 1px solid #e0e0e0;
|
108 |
+
padding: 1rem 0;
|
109 |
+
}
|
110 |
+
|
111 |
+
.collection .collection-item i {
|
112 |
+
margin-right: 1rem;
|
113 |
+
}
|
114 |
+
|
115 |
+
/* Enhanced styles for team members */
|
116 |
+
.team-member {
|
117 |
+
text-align: center;
|
118 |
+
margin-bottom: 2rem;
|
119 |
+
}
|
120 |
+
|
121 |
+
.team-member img {
|
122 |
+
border-radius: 50%;
|
123 |
+
width: 150px;
|
124 |
+
height: 150px;
|
125 |
+
object-fit: cover;
|
126 |
+
margin-bottom: 1rem;
|
127 |
+
transition: transform 0.3s ease;
|
128 |
+
}
|
129 |
+
|
130 |
+
.team-member:hover img {
|
131 |
+
transform: scale(1.05);
|
132 |
+
}
|
133 |
+
|
134 |
+
.team-member h3 {
|
135 |
+
font-size: 1.5rem;
|
136 |
+
margin-bottom: 0.5rem;
|
137 |
+
}
|
138 |
+
|
139 |
+
.team-member p {
|
140 |
+
color: #6b7280;
|
141 |
+
}
|
142 |
+
|
143 |
+
/* Enhanced navigation links */
|
144 |
+
.nav-link {
|
145 |
+
transition: all 0.3s ease;
|
146 |
+
position: relative;
|
147 |
+
}
|
148 |
+
|
149 |
+
/* Enhanced navbar styles */
|
150 |
+
nav {
|
151 |
+
transition: background-color 0.3s ease;
|
152 |
+
}
|
153 |
+
|
154 |
+
nav.transparent {
|
155 |
+
background: rgba(15, 23, 42, 0.8) !important;
|
156 |
+
backdrop-filter: blur(10px);
|
157 |
+
}
|
158 |
+
|
159 |
+
.brand-logo {
|
160 |
+
font-family: 'Space Grotesk', sans-serif;
|
161 |
+
font-weight: 700;
|
162 |
+
transition: transform 0.3s ease;
|
163 |
+
}
|
164 |
+
|
165 |
+
.brand-logo:hover {
|
166 |
+
transform: translateY(-2px);
|
167 |
+
}
|
168 |
+
|
169 |
+
nav ul li a {
|
170 |
+
position: relative;
|
171 |
+
transition: color 0.3s ease;
|
172 |
+
font-weight: 500;
|
173 |
+
}
|
174 |
+
|
175 |
+
nav ul li a::after {
|
176 |
+
content: '';
|
177 |
+
position: absolute;
|
178 |
+
bottom: 0;
|
179 |
+
left: 50%;
|
180 |
+
width: 0;
|
181 |
+
height: 2px;
|
182 |
+
background: var(--accent);
|
183 |
+
transition: all 0.3s ease;
|
184 |
+
transform: translateX(-50%);
|
185 |
+
}
|
186 |
+
|
187 |
+
nav ul li a:hover::after {
|
188 |
+
width: 100%;
|
189 |
+
}
|
190 |
+
|
191 |
+
/* Enhanced mobile sidenav */
|
192 |
+
.sidenav {
|
193 |
+
background: rgba(15, 23, 42, 0.95);
|
194 |
+
backdrop-filter: blur(10px);
|
195 |
+
border-left: 1px solid rgba(255, 255, 255, 0.1);
|
196 |
+
}
|
197 |
+
|
198 |
+
.sidenav li > a {
|
199 |
+
color: #E2E8F0 !important;
|
200 |
+
font-weight: 500;
|
201 |
+
transition: all 0.3s ease;
|
202 |
+
}
|
203 |
+
|
204 |
+
.sidenav li > a:hover {
|
205 |
+
background: rgba(59, 130, 246, 0.1);
|
206 |
+
transform: translateX(5px);
|
207 |
+
}
|
208 |
+
|
209 |
+
.sidenav-overlay {
|
210 |
+
background: rgba(0, 0, 0, 0.7);
|
211 |
+
backdrop-filter: blur(3px);
|
212 |
+
}
|
213 |
+
|
214 |
+
/* Fade-in animation for content sections */
|
215 |
+
.content-section {
|
216 |
+
opacity: 0;
|
217 |
+
transform: translateY(20px);
|
218 |
+
animation: fadeInUp 0.8s ease forwards;
|
219 |
+
}
|
220 |
+
|
221 |
+
@keyframes fadeInUp {
|
222 |
+
to {
|
223 |
+
opacity: 1;
|
224 |
+
transform: translateY(0);
|
225 |
+
}
|
226 |
+
}
|
227 |
+
|
228 |
+
/* Enhanced mobile responsiveness */
|
229 |
+
@media (max-width: 768px) {
|
230 |
+
.container {
|
231 |
+
padding: 10px;
|
232 |
+
}
|
233 |
+
|
234 |
+
h1 {
|
235 |
+
font-size: 1.8rem;
|
236 |
+
}
|
237 |
+
|
238 |
+
p {
|
239 |
+
font-size: 0.95rem;
|
240 |
+
line-height: 1.6;
|
241 |
+
}
|
242 |
+
}
|
243 |
+
|
244 |
+
/* Enhanced loading screen */
|
245 |
+
.loading-screen {
|
246 |
+
position: fixed;
|
247 |
+
top: 0;
|
248 |
+
left: 0;
|
249 |
+
width: 100%;
|
250 |
+
height: 100%;
|
251 |
+
background: var(--primary);
|
252 |
+
display: flex;
|
253 |
+
flex-direction: column;
|
254 |
+
align-items: center;
|
255 |
+
justify-content: center;
|
256 |
+
z-index: 9999;
|
257 |
+
transition: opacity 0.5s ease, visibility 0.5s ease;
|
258 |
+
}
|
259 |
+
|
260 |
+
.loading-screen.fade-out {
|
261 |
+
opacity: 0;
|
262 |
+
visibility: hidden;
|
263 |
+
}
|
264 |
+
|
265 |
+
.loading-screen .spinner {
|
266 |
+
width: 60px;
|
267 |
+
height: 60px;
|
268 |
+
margin-bottom: 20px;
|
269 |
+
border: 3px solid transparent;
|
270 |
+
border-top-color: var(--accent);
|
271 |
+
border-radius: 50%;
|
272 |
+
animation: spin 1s linear infinite;
|
273 |
+
}
|
274 |
+
|
275 |
+
.loading-screen .loading-text {
|
276 |
+
font-family: 'Space Grotesk', sans-serif;
|
277 |
+
font-size: 1.2rem;
|
278 |
+
color: var(--accent);
|
279 |
+
opacity: 0.8;
|
280 |
+
animation: pulse 1.5s ease infinite;
|
281 |
+
}
|
282 |
+
|
283 |
+
@keyframes spin {
|
284 |
+
0% { transform: rotate(0deg); }
|
285 |
+
100% { transform: rotate(360deg); }
|
286 |
+
}
|
287 |
+
|
288 |
+
@keyframes pulse {
|
289 |
+
0%, 100% { opacity: 0.4; }
|
290 |
+
50% { opacity: 1; }
|
291 |
+
}
|
292 |
+
</style>
|
293 |
+
</head>
|
294 |
+
<body>
|
295 |
+
<!-- Loading using Materialize preloader -->
|
296 |
+
<div class="preloader-wrapper big active loading" style="position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 9999;">
|
297 |
+
<div class="spinner-layer spinner-blue">
|
298 |
+
<div class="circle-clipper left">
|
299 |
+
<div class="circle"></div>
|
300 |
+
</div>
|
301 |
+
<div class="gap-patch">
|
302 |
+
<div class="circle"></div>
|
303 |
+
</div>
|
304 |
+
<div class="circle-clipper right">
|
305 |
+
<div class="circle"></div>
|
306 |
+
</div>
|
307 |
+
</div>
|
308 |
+
<h4 class="white-text center-align mt-4">Cargando...</h4>
|
309 |
+
</div>
|
310 |
+
|
311 |
+
<div class="gradient-bg"></div>
|
312 |
+
|
313 |
+
<!-- Navbar using Materialize -->
|
314 |
+
<nav class="z-depth-1 transparent">
|
315 |
+
<div class="nav-wrapper container">
|
316 |
+
<a href="#" class="brand-logo">Instituto IA para Salud</a>
|
317 |
+
<a href="#" data-target="mobile-demo" class="sidenav-trigger"><i class="fas fa-bars"></i></a>
|
318 |
+
<ul class="right hide-on-med-and-down">
|
319 |
+
<li><a href="#about">Sobre Nosotros</a></li>
|
320 |
+
<li><a href="#services">Servicios</a></li>
|
321 |
+
<li><a href="#contact">Contacto</a></li>
|
322 |
+
</ul>
|
323 |
+
</div>
|
324 |
+
</nav>
|
325 |
+
|
326 |
+
<!-- Mobile sidenav -->
|
327 |
+
<ul class="sidenav" id="mobile-demo">
|
328 |
+
<li><a href="#about">Sobre Nosotros</a></li>
|
329 |
+
<li><a href="#services">Servicios</a></li>
|
330 |
+
<li><a href="#contact">Contacto</a></li>
|
331 |
+
</ul>
|
332 |
+
|
333 |
+
<!-- Hero section using Materialize cards -->
|
334 |
+
<section class="hero valign-wrapper">
|
335 |
+
<div class="container">
|
336 |
+
<div class="card-panel transparent z-depth-0" data-aos="fade-up">
|
337 |
+
<h1 class="white-text center-align text-4xl md:text-6xl font-bold mb-8">
|
338 |
+
Transformando la Medicina con IA
|
339 |
+
</h1>
|
340 |
+
<p class="white-text center-align flow-text text-xl md:text-2xl leading-relaxed mb-12">
|
341 |
+
Tecnología de vanguardia para una atención médica más precisa y eficiente
|
342 |
+
</p>
|
343 |
+
<div class="center-align">
|
344 |
+
<a href="#contact" class="btn-large waves-effect waves-light blue darken-1">Comienza Ahora</a>
|
345 |
+
</div>
|
346 |
+
|
347 |
+
<!-- Stats using Materialize grid -->
|
348 |
+
<div class="row stats">
|
349 |
+
<div class="col s12 m4" data-aos="fade-up" data-aos-delay="100">
|
350 |
+
<div class="card-panel transparent z-depth-0">
|
351 |
+
<h3 class="center-align text-5xl font-bold text-blue-500">95%</h3>
|
352 |
+
<p class="center-align text-lg">Precisión Diagnóstica</p>
|
353 |
+
</div>
|
354 |
+
</div>
|
355 |
+
<div class="col s12 m4" data-aos="fade-up" data-aos-delay="200">
|
356 |
+
<div class="card-panel transparent z-depth-0">
|
357 |
+
<h3 class="center-align text-5xl font-bold text-blue-500">50+</h3>
|
358 |
+
<p class="center-align text-lg">Hospitales Asociados</p>
|
359 |
+
</div>
|
360 |
+
</div>
|
361 |
+
<div class="col s12 m4" data-aos="fade-up" data-aos-delay="300">
|
362 |
+
<div class="card-panel transparent z-depth-0">
|
363 |
+
<h3 class="center-align text-5xl font-bold text-blue-500">40%</h3>
|
364 |
+
<p class="center-align text-lg">Reducción en Tiempos</p>
|
365 |
+
</div>
|
366 |
+
</div>
|
367 |
+
</div>
|
368 |
+
</div>
|
369 |
+
</div>
|
370 |
+
</section>
|
371 |
+
|
372 |
+
<!-- Rest of sections using Materialize components -->
|
373 |
+
<div class="container">
|
374 |
+
<section id="about" class="section">
|
375 |
+
<h2 class="center-align">Revolucionando la Atención Médica</h2>
|
376 |
+
<div class="row">
|
377 |
+
<div class="col s12 m4" data-aos="fade-up">
|
378 |
+
<div class="card-panel">
|
379 |
+
<lottie-player src="https://lottie.host/5bc2997f-55eb-4746-9c71-5f571e45d9c9/q8sOPK6yKQ.json" background="transparent" speed="1" style="width: 100%; height: 200px;" loop autoplay></lottie-player>
|
380 |
+
<h3>Innovación Constante</h3>
|
381 |
+
<p>Desarrollamos soluciones de IA que transforman la práctica médica, mejorando la precisión y eficiencia.</p>
|
382 |
+
</div>
|
383 |
+
</div>
|
384 |
+
<div class="col s12 m4" data-aos="fade-up" data-aos-delay="200">
|
385 |
+
<div class="card-panel">
|
386 |
+
<lottie-player src="https://lottie.host/827cc8c7-f343-4b3f-8b93-a8c0c7f1e8c3/mHuP0VQQpJ.json" background="transparent" speed="1" style="width: 100%; height: 200px;" loop autoplay></lottie-player>
|
387 |
+
<h3>Atención Personalizada</h3>
|
388 |
+
<p>Cada paciente es único. Nuestra IA adapta las soluciones a las necesidades individuales.</p>
|
389 |
+
</div>
|
390 |
+
</div>
|
391 |
+
<div class="col s12 m4" data-aos="fade-up" data-aos-delay="300">
|
392 |
+
<div class="card-panel">
|
393 |
+
<lottie-player src="https://lottie.host/a3be8f48-c45b-4b48-8a5c-c5e2803f7a43/89LyVPnZGE.json" background="transparent" speed="1" style="width: 100%; height: 200px;" loop autoplay></lottie-player>
|
394 |
+
<h3>Resultados Probados</h3>
|
395 |
+
<p>Mejoramos los resultados clínicos con tecnología de vanguardia y análisis avanzado.</p>
|
396 |
+
</div>
|
397 |
+
</div>
|
398 |
+
</div>
|
399 |
+
</section>
|
400 |
+
<!-- More sections... -->
|
401 |
+
</div>
|
402 |
+
|
403 |
+
<!-- Add Services section -->
|
404 |
+
<section id="services" class="section">
|
405 |
+
<h2 class="center-align">Nuestras Soluciones</h2>
|
406 |
+
<div class="row">
|
407 |
+
<div class="col s12 m4" data-aos="fade-up">
|
408 |
+
<div class="card-panel">
|
409 |
+
<h3 class="text-2xl font-bold mb-6 text-blue-600">Diagnóstico por Imagen</h3>
|
410 |
+
<ul class="collection with-header">
|
411 |
+
<li class="collection-item">
|
412 |
+
<i class="fas fa-check text-blue-500 mr-3"></i>
|
413 |
+
<span class="text-lg">Detección temprana de patologías</span>
|
414 |
+
</li>
|
415 |
+
<li class="collection-item">
|
416 |
+
<i class="fas fa-check text-blue-500 mr-3"></i>
|
417 |
+
<span class="text-lg">Análisis automatizado de radiografías</span>
|
418 |
+
</li>
|
419 |
+
<li class="collection-item">
|
420 |
+
<i class="fas fa-check text-blue-500 mr-3"></i>
|
421 |
+
<span class="text-lg">Procesamiento de imágenes médicas</span>
|
422 |
+
</li>
|
423 |
+
<li class="collection-item">
|
424 |
+
<i class="fas fa-check text-blue-500 mr-3"></i>
|
425 |
+
<span class="text-lg">Segmentación de tumores</span>
|
426 |
+
</li>
|
427 |
+
</ul>
|
428 |
+
</div>
|
429 |
+
</div>
|
430 |
+
<div class="col s12 m4" data-aos="fade-up" data-aos-delay="200">
|
431 |
+
<div class="card-panel">
|
432 |
+
<h3 class="text-2xl font-bold mb-6 text-blue-600">
|
433 |
+
<i class="fas fa-robot mr-3"></i>
|
434 |
+
Asistencia Virtual
|
435 |
+
</h3>
|
436 |
+
<ul class="collection with-header">
|
437 |
+
<li class="collection-item flex items-center">
|
438 |
+
<i class="fas fa-heartbeat text-blue-500 mr-3"></i>
|
439 |
+
<span class="text-lg">Monitoreo continuo de pacientes</span>
|
440 |
+
</li>
|
441 |
+
<li class="collection-item flex items-center">
|
442 |
+
<i class="fas fa-clock text-blue-500 mr-3"></i>
|
443 |
+
<span class="text-lg">Respuesta inmediata 24/7</span>
|
444 |
+
</li>
|
445 |
+
<li class="collection-item flex items-center">
|
446 |
+
<i class="fas fa-user-md text-blue-500 mr-3"></i>
|
447 |
+
<span class="text-lg">Seguimiento personalizado</span>
|
448 |
+
</li>
|
449 |
+
<li class="collection-item flex items-center">
|
450 |
+
<i class="fas fa-pills text-blue-500 mr-3"></i>
|
451 |
+
<span class="text-lg">Recordatorios de medicación</span>
|
452 |
+
</li>
|
453 |
+
</ul>
|
454 |
+
</div>
|
455 |
+
</div>
|
456 |
+
<div class="col s12 m4" data-aos="fade-up" data-aos-delay="300">
|
457 |
+
<div class="card-panel">
|
458 |
+
<h3>Análisis Predictivo</h3>
|
459 |
+
<ul class="collection">
|
460 |
+
<li class="collection-item">Predicción de riesgos</li>
|
461 |
+
<li class="collection-item">Optimización de tratamientos</li>
|
462 |
+
<li class="collection-item">Medicina personalizada</li>
|
463 |
+
<li class="collection-item">Análisis de datos genómicos</li>
|
464 |
+
</ul>
|
465 |
+
</div>
|
466 |
+
</div>
|
467 |
+
</div>
|
468 |
+
</section>
|
469 |
+
|
470 |
+
<!-- Add Team section -->
|
471 |
+
<section id="team" class="section">
|
472 |
+
<div class="container">
|
473 |
+
<h2 class="center-align">Nuestro Equipo</h2>
|
474 |
+
<div class="row">
|
475 |
+
<div class="col s12 m4" data-aos="fade-up">
|
476 |
+
<div class="team-member card-panel hoverable">
|
477 |
+
<img src="https://images.unsplash.com/photo-1537368910025-70034659036c?auto=format&fit=crop&w=400&q=80"
|
478 |
+
alt="Dr. Juan Pérez"
|
479 |
+
class="responsive-img circle">
|
480 |
+
<h3 class="text-xl font-bold mt-4">Dr. Juan Pérez</h3>
|
481 |
+
<p class="text-gray-600">
|
482 |
+
<i class="fas fa-stethoscope mr-2"></i>
|
483 |
+
Especialista en IA Médica
|
484 |
+
</p>
|
485 |
+
<p class="mt-2 text-gray-700">
|
486 |
+
15 años de experiencia en diagnóstico asistido por IA
|
487 |
+
</p>
|
488 |
+
</div>
|
489 |
+
</div>
|
490 |
+
<div class="col s12 m4" data-aos="fade-up" data-aos-delay="200">
|
491 |
+
<div class="team-member card-panel hoverable">
|
492 |
+
<img src="https://images.unsplash.com/photo-1584438784894-08918a54a72c?auto=format&fit=crop&w=400&q=80"
|
493 |
+
alt="Dra. Ana García"
|
494 |
+
class="responsive-img circle">
|
495 |
+
<h3 class="text-xl font-bold mt-4">Dra. Ana García</h3>
|
496 |
+
<p class="text-gray-600">
|
497 |
+
<i class="fas fa-brain mr-2"></i>
|
498 |
+
Experta en Salud Digital
|
499 |
+
</p>
|
500 |
+
<p class="mt-2 text-gray-700">
|
501 |
+
Pionera en implementación de IA en hospitales
|
502 |
+
</p>
|
503 |
+
<div class="mt-4 flex gap-3 justify-center">
|
504 |
+
<a href="#" class="text-blue-500 hover:text-blue-700">
|
505 |
+
<i class="fab fa-linkedin text-xl"></i>
|
506 |
+
</a>
|
507 |
+
<a href="#" class="text-blue-500 hover:text-blue-700">
|
508 |
+
<i class="fab fa-twitter text-xl"></i>
|
509 |
+
</a>
|
510 |
+
</div>
|
511 |
+
</div>
|
512 |
+
</div>
|
513 |
+
<div class="col s12 m4" data-aos="fade-up" data-aos-delay="300">
|
514 |
+
<div class="team-member card-panel hoverable">
|
515 |
+
<img src="https://images.unsplash.com/photo-1559839734-14c1840a2063?auto=format&fit=crop&w=400&q=80"
|
516 |
+
alt="Ing. Carlos López"
|
517 |
+
class="responsive-img circle">
|
518 |
+
<h3 class="text-xl font-bold mt-4">Ing. Carlos López</h3>
|
519 |
+
<p class="text-gray-600">
|
520 |
+
<i class="fas fa-code mr-2"></i>
|
521 |
+
Desarrollador de IA
|
522 |
+
</p>
|
523 |
+
<p class="mt-2 text-gray-700">
|
524 |
+
Especialista en desarrollo de algoritmos de IA
|
525 |
+
</p>
|
526 |
+
</div>
|
527 |
+
</div>
|
528 |
+
</div>
|
529 |
+
</div>
|
530 |
+
</section>
|
531 |
+
|
532 |
+
<!-- Add Contact section -->
|
533 |
+
<section id="contact" class="section">
|
534 |
+
<h2 class="center-align">Contacto</h2>
|
535 |
+
<div class="row">
|
536 |
+
<div class="col s12 m6" data-aos="fade-up">
|
537 |
+
<div class="card-panel">
|
538 |
+
<h3 class="text-2xl font-bold mb-6 text-blue-600">
|
539 |
+
<i class="fas fa-envelope-open-text mr-3"></i>
|
540 |
+
Contacto Directo
|
541 |
+
</h3>
|
542 |
+
<div class="collection">
|
543 |
+
<a href="mailto:info@institutoiasalud.es"
|
544 |
+
class="collection-item flex items-center py-4 hover:bg-blue-50">
|
545 |
+
<i class="fas fa-envelope text-blue-500 text-xl mr-4"></i>
|
546 |
+
<div>
|
547 |
+
<span class="block text-lg font-medium">Email</span>
|
548 |
+
<span class="text-gray-600">info@institutoiasalud.es</span>
|
549 |
+
</div>
|
550 |
+
</a>
|
551 |
+
<a href="tel:+34900123456"
|
552 |
+
clzass="collection-item flex items-center py-4 hover:bg-blue-50">
|
553 |
+
<i class="fas fa-phone text-blue-500 text-xl mr-4"></i>
|
554 |
+
<div>
|
555 |
+
<span class="block text-lg font-medium">Teléfono</span>
|
556 |
+
<span class="text-gray-600">+34 900 123 456</span>
|
557 |
+
</div>
|
558 |
+
</a>
|
559 |
+
</div>
|
560 |
+
</div>
|
561 |
+
</div>
|
562 |
+
<div class="col s12 m6" data-aos="fade-up" data-aos-delay="200">
|
563 |
+
<div class="card-panel">
|
564 |
+
<h3 class="text-2xl font-bold mb-6 text-blue-600">
|
565 |
+
<i class="fas fa-map-marked-alt mr-3"></i>
|
566 |
+
Ubicación
|
567 |
+
</h3>
|
568 |
+
<div class="collection">
|
569 |
+
<a class="collection-item flex items-center py-4">
|
570 |
+
<i class="fas fa-map-marker-alt text-blue-500 text-xl mr-4"></i>
|
571 |
+
<div>
|
572 |
+
<span class="block text-lg font-medium">Dirección</span>
|
573 |
+
<span class="text-gray-600">Madrid, España</span>
|
574 |
+
</div>
|
575 |
+
</a>
|
576 |
+
<a class="collection-item flex items-center py-4">
|
577 |
+
<i class="fas fa-clock text-blue-500 text-xl mr-4"></i>
|
578 |
+
<div>
|
579 |
+
<span class="block text-lg font-medium">Horario</span>
|
580 |
+
<span class="text-gray-600">Lunes a Viernes: 9:00 - 18:00</span>
|
581 |
+
</div>
|
582 |
+
</a>
|
583 |
+
</div>
|
584 |
+
</div>
|
585 |
+
</div>
|
586 |
+
</div>
|
587 |
+
</section>
|
588 |
+
|
589 |
+
<script>
|
590 |
+
// Initialize Materialize components
|
591 |
+
document.addEventListener('DOMContentLoaded', function() {
|
592 |
+
M.AutoInit();
|
593 |
+
|
594 |
+
// Enhanced loading screen removal
|
595 |
+
const loadingScreen = document.querySelector('.loading-screen');
|
596 |
+
window.addEventListener('load', () => {
|
597 |
+
loadingScreen.classList.add('fade-out');
|
598 |
+
setTimeout(() => {
|
599 |
+
loadingScreen.style.display = 'none';
|
600 |
+
}, 500);
|
601 |
+
});
|
602 |
+
|
603 |
+
// Remove loading screen
|
604 |
+
const loading = document.querySelector('.loading');
|
605 |
+
loading.style.display = 'none';
|
606 |
+
|
607 |
+
// Initialize AOS
|
608 |
+
AOS.init({
|
609 |
+
duration: 800,
|
610 |
+
once: true,
|
611 |
+
offset: 50
|
612 |
+
});
|
613 |
+
|
614 |
+
// Back to top button functionality
|
615 |
+
const backToTopButton = document.getElementById('back-to-top');
|
616 |
+
window.addEventListener('scroll', () => {
|
617 |
+
if (window.scrollY > 300) {
|
618 |
+
backToTopButton.classList.remove('invisible', 'opacity-0');
|
619 |
+
backToTopButton.classList.add('opacity-100');
|
620 |
+
} else {
|
621 |
+
backToTopButton.classList.add('opacity-0');
|
622 |
+
backToTopButton.classList.remove('opacity-100');
|
623 |
+
setTimeout(() => {
|
624 |
+
backToTopButton.classList.add('invisible');
|
625 |
+
}, 300);
|
626 |
+
}
|
627 |
+
});
|
628 |
+
|
629 |
+
backToTopButton.addEventListener('click', () => {
|
630 |
+
window.scrollTo({ top: 0, behavior: 'smooth' });
|
631 |
+
});
|
632 |
+
|
633 |
+
// Add smooth section reveals
|
634 |
+
const sections = document.querySelectorAll('.section');
|
635 |
+
const observer = new IntersectionObserver((entries) => {
|
636 |
+
entries.forEach(entry => {
|
637 |
+
if (entry.isIntersecting) {
|
638 |
+
entry.target.classList.add('visible');
|
639 |
+
}
|
640 |
+
});
|
641 |
+
}, {
|
642 |
+
threshold: 0.1
|
643 |
+
});
|
644 |
+
|
645 |
+
sections.forEach(section => {
|
646 |
+
observer.observe(section);
|
647 |
+
});
|
648 |
+
});
|
649 |
+
|
650 |
+
// Smooth scroll using Materialize scrollspy
|
651 |
+
const scrollSpyElems = document.querySelectorAll('.scrollspy');
|
652 |
+
M.ScrollSpy.init(scrollSpyElems, {
|
653 |
+
scrollOffset: 50
|
654 |
+
});
|
655 |
+
</script>
|
656 |
+
|
657 |
+
<!-- Add footer section -->
|
658 |
+
<footer class="page-footer transparent">
|
659 |
+
<div class="container">
|
660 |
+
<div class="row">
|
661 |
+
<div class="col s12 m4">
|
662 |
+
<h5 class="text-xl font-bold text-blue-500 mb-4">Instituto IA para Salud</h5>
|
663 |
+
<p class="text-gray-400">
|
664 |
+
Transformando el futuro de la medicina con inteligencia artificial
|
665 |
+
</p>
|
666 |
+
</div>
|
667 |
+
<div class="col s12 m4">
|
668 |
+
<h5 class="text-xl font-bold text-blue-500 mb-4">Enlaces Rápidos</h5>
|
669 |
+
<ul>
|
670 |
+
<li class="mb-2">
|
671 |
+
<a href="#about" class="text-gray-400 hover:text-blue-500">Sobre Nosotros</a>
|
672 |
+
</li>
|
673 |
+
<li class="mb-2">
|
674 |
+
<a href="#services" class="text-gray-400 hover:text-blue-500">Servicios</a>
|
675 |
+
</li>
|
676 |
+
<li class="mb-2">
|
677 |
+
<a href="#team" class="text-gray-400 hover:text-blue-500">Equipo</a>
|
678 |
+
</li>
|
679 |
+
<li class="mb-2">
|
680 |
+
<a href="#contact" class="text-gray-400 hover:text-blue-500">Contacto</a>
|
681 |
+
</li>
|
682 |
+
</ul>
|
683 |
+
</div>
|
684 |
+
<div class="col s12 m4">
|
685 |
+
<h5 class="text-xl font-bold text-blue-500 mb-4">Síguenos</h5>
|
686 |
+
<div class="flex gap-4">
|
687 |
+
<a href="#" class="text-gray-400 hover:text-blue-500 text-2xl">
|
688 |
+
<i class="fab fa-linkedin"></i>
|
689 |
+
</a>
|
690 |
+
<a href="#" class="text-gray-400 hover:text-blue-500 text-2xl">
|
691 |
+
<i class="fab fa-twitter"></i>
|
692 |
+
</a>
|
693 |
+
<a href="#" class="text-gray-400 hover:text-blue-500 text-2xl">
|
694 |
+
<i class="fab fa-facebook"></i>
|
695 |
+
</a>
|
696 |
+
</div>
|
697 |
+
</div>
|
698 |
+
</div>
|
699 |
+
</div>
|
700 |
+
<div class="footer-copyright">
|
701 |
+
<div class="container text-center text-gray-500 py-4">
|
702 |
+
© 2024 Instituto IA para Salud. Todos los derechos reservados.
|
703 |
+
</div>
|
704 |
+
</div>
|
705 |
+
</footer>
|
706 |
+
|
707 |
+
<!-- Add floating action button -->
|
708 |
+
<div class="fixed-action-btn">
|
709 |
+
<a class="btn-floating btn-large blue darken-1">
|
710 |
+
<i class="fas fa-plus"></i>
|
711 |
+
</a>
|
712 |
+
<ul>
|
713 |
+
<li>
|
714 |
+
<a href="#contact" class="btn-floating blue lighten-1 tooltipped" data-position="left" data-tooltip="Contacto">
|
715 |
+
<i class="fas fa-envelope"></i>
|
716 |
+
</a>
|
717 |
+
</li>
|
718 |
+
<li>
|
719 |
+
<a href="#services" class="btn-floating blue lighten-2 tooltipped" data-position="left" data-tooltip="Servicios">
|
720 |
+
<i class="fas fa-stethoscope"></i>
|
721 |
+
</a>
|
722 |
+
</li>
|
723 |
+
<li>
|
724 |
+
<a href="#team" class="btn-floating blue lighten-3 tooltipped" data-position="left" data-tooltip="Equipo">
|
725 |
+
<i class="fas fa-users"></i>
|
726 |
+
</a>
|
727 |
+
</li>
|
728 |
+
</ul>
|
729 |
+
</div>
|
730 |
+
|
731 |
+
<!-- Add back to top button -->
|
732 |
+
<button id="back-to-top"
|
733 |
+
class="fixed bottom-8 right-8 bg-blue-600 text-white p-4 rounded-full shadow-lg hover:bg-blue-700 transition-all opacity-0 invisible tooltipped"
|
734 |
+
data-position="left"
|
735 |
+
data-tooltip="Volver arriba">
|
736 |
+
<i class="fas fa-arrow-up"></i>
|
737 |
+
</button>
|
738 |
+
|
739 |
+
<div class="content-section">
|
740 |
+
<h1>Welcome</h1>
|
741 |
+
</div>
|
742 |
+
|
743 |
+
<div class="content-section">
|
744 |
+
<h2>About</h2>
|
745 |
+
</div>
|
746 |
+
</body>
|
747 |
+
</html>
|
proposals/nhs-proposal.html
ADDED
The diff for this file is too large to render.
See raw diff
|
|
proposals/simple-proposal.md
ADDED
@@ -0,0 +1,116 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
## Implementación de Inteligencia Artificial para la Optimización de la Atención Sanitaria en el Hospital Universitari 12 de Octubre**
|
2 |
+
|
3 |
+
**A la Atención del Gerente, Director Médico y Subdirector de Gestión del Hospital Universitario 12 de Octubre**
|
4 |
+
|
5 |
+
**Fecha:** 12/01/2024
|
6 |
+
|
7 |
+
**Autor:** Sami Halawa
|
8 |
+
|
9 |
+
**Contacto:**
|
10 |
+
|
11 |
+
* **Email:** sami@samihalawa.com
|
12 |
+
* **WhatsApp:** +34 679 79 40 37
|
13 |
+
* **Sitio Web:** [samihanawa.com](https://samihanawa.com/)
|
14 |
+
|
15 |
+
**Resumen Ejecutivo**
|
16 |
+
|
17 |
+
El presente documento propone la implementación de soluciones avanzadas de Inteligencia Artificial (IA) en el Hospital Universitario 12 de Octubre, **con el objetivo de apoyar a los profesionales sanitarios, optimizar la eficiencia, mejorar la precisión diagnóstica y elevar la calidad de la atención al paciente, todo ello enmarcado en un contexto de uso responsable y ético de la tecnología.** Se describen dos aplicaciones principales: un sistema de **análisis automatizado de imágenes médicas adaptable a diversas modalidades diagnósticas**, y un **asistente virtual (Enfermera Virtual)** basado en procesamiento de lenguaje natural para la atención continua al paciente. Se destaca el potencial de estas tecnologías para **apoyar**, **complementar** y **potenciar** la labor del personal médico, **no para sustituirlo**. Se enfatiza también el compromiso con la **transparencia, la seguridad de los datos** y el **cumplimiento normativo (RGPD)**. La propuesta incluye un plan de implementación gradual y colaborativo, con un enfoque en la medición de resultados y la adaptación a las necesidades específicas del hospital.
|
18 |
+
|
19 |
+
**1. Introducción**
|
20 |
+
|
21 |
+
La constante evolución de la IA ofrece oportunidades sin precedentes para transformar el sector sanitario. Este documento detalla una serie de avances en IA, específicamente diseñados para abordar las necesidades de un centro de referencia como el Hospital Universitario 12 de Octubre. La propuesta se centra en la implementación de sistemas inteligentes que actúen como **herramientas de apoyo** para los profesionales médicos, mejorando la eficiencia operativa y, fundamentalmente, la experiencia del paciente. Se reconoce la importancia de la **ética, la transparencia y la colaboración** en la adopción de estas tecnologías.
|
22 |
+
|
23 |
+
**2. Contexto: Desafíos y Oportunidades en el Ámbito Hospitalario**
|
24 |
+
|
25 |
+
El Hospital Universitario 12 de Octubre, como institución líder en el sistema de salud pública, enfrenta retos diarios asociados a la alta demanda asistencial, la complejidad de los casos y la necesidad de optimizar recursos, en un contexto presupuestario ajustado. La IA se presenta como una aliada estratégica para **aliviar estas presiones**, permitiendo:
|
26 |
+
|
27 |
+
* **Reducir la carga de trabajo** del personal sanitario.
|
28 |
+
* **Mejorar la precisión y rapidez diagnóstica.**
|
29 |
+
* **Ofrecer una atención más personalizada y accesible a los pacientes.**
|
30 |
+
* **Optimizar la gestión de recursos existentes.**
|
31 |
+
|
32 |
+
**3. Soluciones de Inteligencia Artificial Propuestas**
|
33 |
+
|
34 |
+
**3.1. Análisis Automatizado de Imágenes Médicas: Una Herramienta de Apoyo para el Diagnóstico, Validada y Compatible con los Sistemas del Hospital**
|
35 |
+
|
36 |
+
Se propone un sistema de IA con **alta capacidad de adaptación a diferentes tipos de imágenes médicas**, permitiendo su aplicación en diversas especialidades. El núcleo del sistema es un motor de análisis avanzado, entrenado con conjuntos de datos extensos y heterogéneos. Su flexibilidad reside en la capacidad de **reentrenamiento y ajuste fino** para cada modalidad diagnóstica, garantizando un rendimiento óptimo y la **detección precisa de anomalías**.
|
37 |
+
|
38 |
+
**Ejemplos de Aplicación por Especialidad:**
|
39 |
+
|
40 |
+
* **Oftalmología:** Detección y análisis de glaucoma, cataratas, retinopatía diabética, DMAE, etc.
|
41 |
+
* **Radiología:** Asistencia en la interpretación de radiografías, tomografías computarizadas (TC) y resonancias magnéticas (RM), incluyendo la detección de nódulos pulmonares, accidentes cerebrovasculares, fracturas, etc.
|
42 |
+
* **Cardiología:** Análisis de ecocardiogramas para la evaluación de la función cardíaca, detección de anomalías valvulares, etc.
|
43 |
+
* **Anatomía Patológica:** Asistencia en el análisis de imágenes histológicas para la identificación de células cancerosas, clasificación de tumores, etc.
|
44 |
+
* **Dermatología:** Análisis de imágenes de lesiones cutáneas para la detección de melanoma y otros tipos de cáncer de piel.
|
45 |
+
* **Traumatología:** Detección y clasificación de fracturas en radiografías y TC.
|
46 |
+
* **Oncología:** Detección y análisis de tumores en diversas modalidades de imágenes para estadificación, planificación de tratamiento y evaluación de respuesta.
|
47 |
+
|
48 |
+
**Características Clave del Sistema:**
|
49 |
+
|
50 |
+
* **Adaptabilidad:** Capacidad de ser entrenado y ajustado para diferentes tipos de imágenes y patologías.
|
51 |
+
* **Alta Precisión:** El sistema ha sido rigurosamente entrenado y validado, alcanzando una precisión comparable a la de especialistas humanos en diversas tareas, como la detección de [ejemplo] con una precisión superior al X%. Se aportarán datos concretos y estudios que avalan estos resultados.
|
52 |
+
* **Generación de Informes:** Creación automatizada de informes estructurados, facilitando la comunicación y el registro de hallazgos.
|
53 |
+
* **Integración con PACS/HIS:** Se integrará a la perfección con los sistemas PACS/HIS del hospital, garantizando la seguridad y confidencialidad de los datos, de acuerdo con la normativa vigente (RGPD).
|
54 |
+
* **Función:** Su función principal es la de **asistir** al personal médico, proporcionando una **segunda opinión** y una **herramienta de apoyo** para la toma de decisiones clínicas, **nunca sustituir el criterio del especialista.**
|
55 |
+
|
56 |
+
**3.2. Asistente Virtual: "Enfermera Virtual" - Un Canal de Comunicación Adicional para Mejorar la Accesibilidad y el Apoyo al Paciente, Respetando la Privacidad y sin Sustituir la Atención Humana**
|
57 |
+
|
58 |
+
Se propone la implementación de un asistente virtual, denominado "Enfermera Virtual", basado en tecnologías avanzadas de procesamiento de lenguaje natural (PLN) y aprendizaje automático. Este sistema ofrece:
|
59 |
+
|
60 |
+
* **Atención Telefónica 24/7:** Los pacientes pueden contactar con la "Enfermera Virtual" en cualquier momento, independientemente de la especialidad.
|
61 |
+
* **Resolución de Dudas Frecuentes:** Proporciona información sobre citas, tratamientos, medicación, preparación para pruebas, y resuelve dudas específicas de cada departamento.
|
62 |
+
* **Soporte Emocional:** Mediante una interacción natural y empática, la "Enfermera Virtual" ofrece apoyo emocional a pacientes, adaptándose a las necesidades de cada especialidad (oncología, geriatría, salud mental, etc.).
|
63 |
+
* **Derivación a Personal Sanitario:** En casos que requieran la intervención de un profesional, la "Enfermera Virtual" puede derivar la llamada de forma fluida y eficiente al departamento correspondiente.
|
64 |
+
* **Personalización por Especialidad:** El sistema puede ser configurado con información y protocolos específicos de cada departamento, ofreciendo una atención personalizada.
|
65 |
+
* **Privacidad y Seguridad:** La "Enfermera Virtual" no pretende reemplazar al personal de enfermería, sino complementar su labor, liberándoles de tareas repetitivas y permitiéndoles concentrarse en la atención directa al paciente. Además, se han implementado estrictas medidas de seguridad para garantizar la confidencialidad de la información, en pleno cumplimiento del RGPD.
|
66 |
+
|
67 |
+
**4. Beneficios Clave para el Hospital Universitario 12 de Octubre: Resultados Tangibles y Medibles**
|
68 |
+
|
69 |
+
**4.1. Optimización de Procesos en Múltiples Departamentos:**
|
70 |
+
|
71 |
+
* **Reducción del Tiempo de Análisis de Imágenes:** Agilización significativa del proceso diagnóstico en diversas especialidades.
|
72 |
+
* **Liberación de Tiempo del Personal Médico:** Permite a los profesionales centrarse en tareas de mayor complejidad y en la atención directa al paciente.
|
73 |
+
* **Mejora de la Gestión de Recursos:** Optimización de la asignación de recursos humanos y tecnológicos en todo el hospital.
|
74 |
+
|
75 |
+
**4.2. Mejora de la Calidad Asistencial:**
|
76 |
+
|
77 |
+
* **Mayor Precisión Diagnóstica:** Apoyo en la toma de decisiones clínicas con información objetiva y precisa en cada especialidad.
|
78 |
+
* **Detección Temprana de Enfermedades:** Posibilidad de identificar patologías en estadios iniciales, mejorando el pronóstico y la eficacia del tratamiento.
|
79 |
+
* **Atención Más Personalizada:** Adaptación a las necesidades individuales de cada paciente a través del asistente virtual y en cada departamento.
|
80 |
+
|
81 |
+
**4.3. Incremento de la Satisfacción del Paciente:**
|
82 |
+
|
83 |
+
* **Reducción de los Tiempos de Espera:** Agilización de los procesos diagnósticos y administrativos.
|
84 |
+
* **Acceso Continuo a Información y Apoyo:** A través del asistente virtual, 24/7, para todas las especialidades.
|
85 |
+
* **Mejora en la Comunicación y la Experiencia General del Paciente.**
|
86 |
+
|
87 |
+
Los beneficios propuestos se basan en la experiencia de implementaciones similares en otros centros y se podrán evaluar mediante un **piloto inicial**, acordado conjuntamente, que permita **medir el impacto real** en el Hospital 12 de Octubre.
|
88 |
+
|
89 |
+
**5. Plan de Implementación y Colaboración: Un Enfoque Gradual, Personalizado y con Mínima Disrupción**
|
90 |
+
|
91 |
+
Se propone un enfoque colaborativo para la implementación de estas soluciones, trabajando en estrecha colaboración con los Jefes de Servicio y el personal de los departamentos implicados. Las fases clave del proyecto incluirían:
|
92 |
+
|
93 |
+
1. **Análisis Detallado de Necesidades:** Reuniones individualizadas para identificar las áreas prioritarias y adaptar las soluciones a las necesidades específicas.
|
94 |
+
2. **Integración con los Sistemas Existentes:** Se integrará a la perfección con los sistemas PACS/HIS del hospital, garantizando la seguridad y confidencialidad de los datos, de acuerdo con la normativa vigente (RGPD).
|
95 |
+
3. **Formación del Personal:** Capacitación del personal médico y administrativo en el uso de las nuevas herramientas. Se priorizará una formación práctica e intuitiva.
|
96 |
+
4. **Evaluación y Seguimiento:** Monitorización continua del rendimiento de los sistemas y realización de ajustes para optimizar su eficacia. Se establecerán indicadores clave de rendimiento (KPIs) para medir el impacto de la implementación.
|
97 |
+
Se propone un **plan de implementación gradual**, comenzando con un **proyecto piloto** en un área específica para minimizar cualquier posible disrupción. La **formación del personal** será una prioridad, y se trabajará en estrecha colaboración con los equipos del hospital para **adaptar las soluciones a sus flujos de trabajo y necesidades específicas**.
|
98 |
+
|
99 |
+
**6. Conclusión: Una Oportunidad para Avanzar Hacia una Atención Sanitaria Más Eficiente, Precisa y Humana, de la Mano de la Innovación Tecnológica**
|
100 |
+
|
101 |
+
La adopción de estas soluciones de IA no solo representa un avance tecnológico, sino una oportunidad para mejorar la atención sanitaria de forma tangible. Al combinar la experiencia y el criterio del personal médico con la precisión y eficiencia de la IA, el Hospital 12 de Octubre puede optimizar sus recursos, mejorar la precisión diagnóstica y, en última instancia, ofrecer una mejor experiencia a sus pacientes. **Esta propuesta se enmarca en un compromiso con la innovación responsable, la transparencia y la colaboración estrecha con el personal del hospital.**
|
102 |
+
|
103 |
+
**Llamada a la Acción**
|
104 |
+
|
105 |
+
Se invita al equipo directivo del Hospital Universitario 12 de Octubre a concertar una reunión para profundizar en los detalles de esta propuesta y explorar las posibilidades de colaboración, incluyendo la definición de un **proyecto piloto** que permita evaluar los beneficios de estas tecnologías en un entorno controlado y adaptado a las necesidades específicas del hospital.
|
106 |
+
|
107 |
+
**Atentamente,**
|
108 |
+
|
109 |
+
**Sami Halawa**
|
110 |
+
|
111 |
+
**Contacto:**
|
112 |
+
|
113 |
+
* **Email:** sami@samihalawa.com
|
114 |
+
* **WhatsApp:** +34 679 79 40 37
|
115 |
+
* **Sitio Web:** [samihanawa.com](https://samihanawa.com/)
|
116 |
+
ee
|