Spaces:
Running
Running
File size: 9,450 Bytes
0615069 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 |
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>América Latina: Regulación Profesional en Biotecnología</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
:root {
--bg-color: #0d2a30;
--card-bg-color: #1a3a40;
--primary-accent-color: #f3c969;
--secondary-accent-color: #4CAF50;
--text-color: #e0e6e8;
--text-light-color: #a8b2b5;
--border-color: #2a525a;
}
body {
margin: 0;
padding: 0;
width: 1280px;
height: 720px;
background-color: var(--bg-color);
font-family: 'Poppins', sans-serif;
color: var(--text-color);
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
overflow: hidden;
box-sizing: border-box;
}
.slide-container {
width: 100%;
height: 100%;
padding: 30px 40px;
box-sizing: border-box;
display: flex;
flex-direction: column;
gap: 20px;
animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
header {
text-align: center;
}
header h1 {
font-size: 44px;
font-weight: 700;
color: var(--primary-accent-color);
margin: 0;
text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
header p {
font-size: 18px;
font-weight: 300;
margin-top: 5px;
color: var(--text-light-color);
}
.main-content {
flex-grow: 1;
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: auto 1fr;
gap: 15px;
width: 100%;
}
.card {
background-color: var(--card-bg-color);
border-radius: 12px;
padding: 20px;
box-sizing: border-box;
display: flex;
flex-direction: column;
border: 1px solid var(--border-color);
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.card h2 {
font-size: 18px;
font-weight: 600;
color: var(--primary-accent-color);
margin: 0 0 15px 0;
display: flex;
align-items: center;
gap: 8px;
}
.card h2 .icon {
font-size: 24px;
}
.card ul {
list-style: none;
padding: 0;
margin: 0;
font-size: 13px;
line-height: 1.6;
}
.card ul li {
display: flex;
align-items: flex-start;
margin-bottom: 10px;
color: var(--text-light-color);
}
.card ul li::before {
content: '►';
color: var(--primary-accent-color);
font-size: 10px;
margin-right: 10px;
padding-top: 4px;
}
.card .detail-list p {
margin: 0 0 8px 0;
font-size: 13px;
line-height: 1.5;
color: var(--text-light-color);
}
.card .detail-list strong {
color: var(--text-color);
font-weight: 600;
}
.panorama {
grid-row: 1 / 3;
}
.country-card {
grid-row: 1 / 2;
}
.bottom-card {
grid-row: 2 / 3;
}
.advantages {
grid-column: 2 / 4;
}
.challenges {
grid-column: 4 / 5;
}
.panorama-footer {
margin-top: auto;
padding-top: 15px;
display: flex;
justify-content: space-around;
align-items: center;
text-align: center;
font-size: 12px;
color: var(--text-light-color);
gap: 10px;
}
.panorama-footer div {
display: flex;
flex-direction: column;
align-items: center;
gap: 5px;
}
.panorama-footer svg {
width: 32px;
height: 32px;
fill: var(--primary-accent-color);
}
.card.advantages ul li::before { content: '+'; font-weight: bold; font-size: 16px; }
.card.challenges ul li::before { content: '−'; font-weight: bold; font-size: 16px; }
.card ul strong {
color: var(--text-color);
font-weight: 600;
}
footer {
width: 100%;
background: linear-gradient(90deg, rgba(76,175,80,0.8), rgba(67,160,71,0.9));
border-radius: 8px;
padding: 12px 20px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 14px;
margin-top: 10px;
}
footer strong {
font-weight: 600;
color: #ffffff;
}
footer span {
display: flex;
align-items: center;
gap: 6px;
color: #e8f5e9;
}
</style>
</head>
<body>
<div class="slide-container">
<header>
<h1>América Latina: Epicentro de la Regulación Profesional</h1>
<p>Única región con esfuerzos sistemáticos hacia la colegiación en biotecnología</p>
</header>
<main class="main-content">
<div class="card panorama">
<h2><span class="icon">🌍</span>Panorama Regional</h2>
<ul>
<li><strong>Única región</strong> con colegios profesionales específicos. Liderazgo en la formalización de la biotecnología.</li>
<li><strong>Tendencia a la regulación individual:</strong> Foco en la habilitación y ética del profesional.</li>
<li><strong>Modelos mixtos:</strong> Convivencia de sistemas de alcance provincial y nacional.</li>
<li><strong>Dualidad estructural:</strong> Base académica sólida en contraste con un desarrollo industrial aún incipiente.</li>
</ul>
<div class="panorama-footer">
<div>
<svg viewBox="0 0 24 24"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>
<span>Capital Humano</span>
</div>
<div>
<svg viewBox="0 0 24 24"><path d="M12 3L2 12h3v8h14v-8h3L12 3zm0 13c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"/></svg>
<span>Academia</span>
</div>
<div>
<svg viewBox="0 0 24 24"><path d="M21 16.42v-2.84c0-1.3-.81-2.48-2-2.86V9.41c0-1.31-.8-2.48-1.97-2.87A4.492 4.492 0 0 0 13 3.5c-2.48 0-4.5 2.02-4.5 4.5v.01C7.52 8.02 2 9.43 2 13.58v2.84C2 17.73 3.27 19 4.58 19H5v2h14v-2h.42c1.31 0 2.58-1.27 2.58-2.58zM11.5 16H9v-2h2.5c.83 0 1.5.67 1.5 1.5S12.33 16 11.5 16zM15 16h-2.5c-.83 0-1.5-.67-1.5-1.5S11.67 13 12.5 13H15v3z"/></svg>
<span>Biodiversidad</span>
</div>
</div>
</div>
<div class="card country-card">
<h2>🇪🇨 ECUADOR - Modelo Nacional Reciente</h2>
<div class="detail-list">
<p><strong>COBIEC:</strong> Colegio de Biotecnólogos del Ecuador</p>
<p><strong>Creado:</strong> Acuerdo Ministerial 00047-2024</p>
<p><strong>Alcance:</strong> Nacional, con enfoque biomédico.</p>
<p><strong>Base académica:</strong> 11+ universidades.</p>
</div>
</div>
<div class="card country-card">
<h2>🇦🇷 ARGENTINA - Modelo Provincial Consolidado</h2>
<div class="detail-list">
<p><strong>CSB:</strong> Colegio Santafesino de Biotecnólogos</p>
<p><strong>Base legal:</strong> Ley Provincial 13.490</p>
<p><strong>Alcance:</strong> Provincial (Santa Fe).</p>
<p><strong>Coexistencia:</strong> Representación Industrial (CAB).</p>
</div>
</div>
<div class="card country-card">
<h2>🇨🇴 COLOMBIA - Regulación por Campo Afín</h2>
<div class="detail-list">
<p><strong>CPBiol:</strong> Consejo Profesional de Biología</p>
<p><strong>Regulación:</strong> Incluye biotecnólogos en "carreras afines".</p>
<p><strong>Modelo:</strong> Regulación indirecta.</p>
<p><strong>Potencial:</strong> Precedente para especialización futura.</p>
</div>
</div>
<div class="card bottom-card advantages">
<h2><span class="icon">✨</span>Ventajas Competitivas</h2>
<ul>
<li><strong>Biodiversidad:</strong> Reservas genéticas únicas y excepcional potencial en biotecnología verde y bioeconomía.</li>
<li><strong>Capital Humano:</strong> Formación académica robusta, costos competitivos y tradición en ciencias biológicas.</li>
</ul>
</div>
<div class="card bottom-card challenges">
<h2><span class="icon">⚠️</span>Desafíos Persistentes</h2>
<ul>
<li><strong>Brecha de Transferencia:</strong> Fuerte academia vs. débil industria. Falta de capital de riesgo y marcos regulatorios.</li>
<li><strong>Fragmentación Regional:</strong> Falta de armonización, mercados pequeños y limitada cooperación sur-sur.</li>
</ul>
</div>
</main>
<footer>
<strong>Oportunidades Emergentes:</strong>
<span>✓ Integración regional</span>
<span>✓ Aprovechamiento de biodiversidad</span>
<span>✓ Desarrollo de bioeconomía</span>
<span>✓ Certificaciones armonizadas</span>
</footer>
</div>
</body>
</html> |