Spaces:
Running
Running
File size: 6,677 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 |
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resumen Ejecutivo - Biotecnología</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
font-family: 'Poppins', sans-serif;
}
.slide {
width: 1280px;
height: 720px;
background: linear-gradient(135deg, #e3f2fd, #e0f2f1);
display: flex;
flex-direction: column;
padding: 50px 70px;
box-sizing: border-box;
position: relative;
overflow: hidden;
animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: scale(0.98); }
to { opacity: 1; transform: scale(1); }
}
.slide-header {
text-align: left;
margin-bottom: 30px;
}
.slide-header h1 {
font-size: 48px;
font-weight: 700;
color: #004d40;
margin: 0;
padding-bottom: 10px;
border-bottom: 3px solid #00796b;
display: inline-block;
}
.content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto 1fr;
gap: 30px 40px;
flex-grow: 1;
}
.section-title {
grid-column: 1 / -1;
font-size: 24px;
font-weight: 600;
color: #01579b;
margin: 10px 0 -10px 0;
border-left: 4px solid #0288d1;
padding-left: 15px;
}
.model-column {
background-color: rgba(255, 255, 255, 0.7);
border-radius: 12px;
padding: 25px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
border: 1px solid rgba(0, 121, 107, 0.2);
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.model-column:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.icon {
width: 60px;
height: 60px;
margin-bottom: 20px;
position: relative;
}
/* CSS Icon: Industry/Gear */
.icon-industry::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 30px;
height: 30px;
background: #00796b;
border-radius: 50%;
transform: translate(-50%, -50%);
}
.icon-industry::after {
content: '';
position: absolute;
inset: 0;
background-image:
linear-gradient(#00796b, #00796b),
linear-gradient(#00796b, #00796b),
linear-gradient(#00796b, #00796b),
linear-gradient(#00796b, #00796b);
background-size: 8px 100%, 100% 8px, 8px 100%, 100% 8px;
background-position: center center, center center, center center, center center;
background-repeat: no-repeat;
transform: rotate(45deg);
animation: spin 12s linear infinite;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
/* CSS Icon: Regulation/Shield */
.icon-regulation {
background-color: #0277bd;
clip-path: polygon(50% 0%, 100% 15%, 100% 80%, 50% 100%, 0 80%, 0 15%);
}
.icon-regulation::after {
content: '✓';
font-size: 36px;
color: white;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-weight: bold;
}
.model-column h3 {
font-size: 22px;
font-weight: 600;
color: #004d40;
margin: 0 0 10px 0;
}
.model-column p {
font-size: 16px;
color: #37474f;
margin: 0;
line-height: 1.5;
}
.findings-section {
grid-column: 1 / -1;
display: flex;
gap: 40px;
}
.findings-list, .challenge-section {
flex: 1;
}
.findings-list ul {
list-style: none;
padding: 0;
margin: 0;
}
.findings-list li {
font-size: 17px;
color: #333;
padding-left: 30px;
position: relative;
margin-bottom: 15px;
line-height: 1.6;
}
.findings-list li::before {
content: '';
position: absolute;
left: 0;
top: 8px;
width: 12px;
height: 12px;
background-color: #0288d1;
border-radius: 50%;
box-shadow: 0 0 0 3px rgba(2, 136, 209, 0.2);
}
.findings-list li strong {
font-weight: 600;
color: #004d40;
}
.challenge-section {
background-color: rgba(255, 236, 179, 0.4);
border-left: 4px solid #ffa000;
padding: 20px;
border-radius: 8px;
align-self: flex-start;
}
.challenge-section h3 {
font-size: 22px;
font-weight: 600;
color: #e65100;
margin: 0 0 10px 0;
}
.challenge-section p {
font-size: 17px;
color: #4e342e;
margin: 0;
line-height: 1.6;
}
</style>
</head>
<body>
<div class="slide">
<div class="slide-header">
<h1>Resumen Ejecutivo</h1>
</div>
<div class="content-grid">
<div class="section-title">Dos modelos organizacionales dominan el panorama global:</div>
<div class="model-column">
<div class="icon icon-industry"></div>
<h3>Asociación Industrial/Gremial</h3>
<p>EE.UU., Europa, Asia-Pacífico</p>
</div>
<div class="model-column">
<div class="icon icon-regulation"></div>
<h3>Regulación Profesional</h3>
<p>América Latina (modelo emergente)</p>
</div>
<div class="findings-section">
<div class="findings-list">
<h3 class="section-title" style="margin-top: 0; margin-bottom: 15px;">Hallazgos Clave</h3>
<ul>
<li>El modelo industrial se enfoca en <strong>lobby, desarrollo de negocios e innovación.</strong></li>
<li>El modelo de regulación profesional busca el <strong>control del ejercicio profesional.</strong></li>
<li>Ecuador (<strong>COBIEC 2024</strong>) representa la tendencia más reciente hacia la colegiación obligatoria.</li>
</ul>
</div>
<div class="challenge-section">
<h3>Desafío Principal</h3>
<p>Existe una brecha significativa entre una sólida base académica y un desarrollo industrial incipiente en las regiones emergentes.</p>
</div>
</div>
</div>
</div>
</body>
</html> |