Spaces:
Running
Running
File size: 7,180 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 |
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modelo 1: Asociación Industrial/Gremial</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
body {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
background-color: #1a1a1a;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.slide {
width: 1280px;
height: 720px;
background: linear-gradient(135deg, #023e8a 0%, #0077b6 50%, #0096c7 100%);
color: #ffffff;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
position: relative;
overflow: hidden;
padding: 40px 60px;
box-sizing: border-box;
animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: scale(0.95); }
to { opacity: 1; transform: scale(1); }
}
.map-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.08;
z-index: 0;
pointer-events: none;
}
.continent {
position: absolute;
background: #ffffff;
}
.north-america { top: 15%; left: 10%; width: 250px; height: 200px; border-radius: 60% 40% 30% 70% / 70% 50% 50% 30%; transform: rotate(-15deg); }
.europe { top: 20%; left: 45%; width: 150px; height: 120px; border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%; }
.asia-pacific { top: 25%; left: 65%; width: 300px; height: 250px; border-radius: 30% 70% 50% 50% / 50% 60% 40% 50%; transform: rotate(10deg); }
.header {
width: 100%;
text-align: center;
margin-bottom: 30px;
z-index: 1;
}
.header h1 {
font-size: 48px;
font-weight: 700;
margin: 0;
text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}
.header h2 {
font-size: 22px;
font-weight: 300;
margin: 5px 0 0 0;
opacity: 0.9;
}
.content-grid {
display: grid;
grid-template-columns: 1.1fr 1fr;
gap: 30px;
width: 100%;
flex-grow: 1;
z-index: 1;
}
.column {
display: flex;
flex-direction: column;
gap: 30px;
}
.card {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 12px;
padding: 25px;
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
height: 100%;
box-sizing: border-box;
animation: popIn 0.5s ease-out forwards;
opacity: 0;
}
.column:nth-child(1) .card { animation-delay: 0.2s; }
.column:nth-child(2) .card:nth-child(1) { animation-delay: 0.4s; }
.column:nth-child(2) .card:nth-child(2) { animation-delay: 0.6s; }
@keyframes popIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.card h3 {
font-size: 24px;
font-weight: 600;
color: #ade8f4;
margin: 0 0 20px 0;
padding-bottom: 10px;
border-bottom: 2px solid rgba(173, 232, 244, 0.5);
display: flex;
align-items: center;
gap: 12px;
}
.card ul {
list-style: none;
padding: 0;
margin: 0;
}
.card ul li {
font-size: 16px;
line-height: 1.6;
margin-bottom: 15px;
display: flex;
align-items: flex-start;
}
.card ul li::before {
content: '■';
color: #ade8f4;
font-size: 12px;
margin-right: 12px;
margin-top: 5px;
}
.card ul li strong {
font-weight: 600;
color: #ffffff;
}
.card ul li span {
opacity: 0.85;
display: block;
margin-left: 0;
}
/* CSS Icons */
.css-icon { display: inline-block; position: relative; width: 24px; height: 24px; }
.icon-building::before {
content: '';
position: absolute;
width: 18px;
height: 22px;
background: #ade8f4;
bottom: 0;
left: 3px;
}
.icon-building::after {
content: '';
position: absolute;
width: 24px;
height: 4px;
background: #ade8f4;
bottom: 0;
left: 0;
}
.icon-goals::before {
content: '';
position: absolute;
width: 20px;
height: 20px;
border: 3px solid #ade8f4;
border-radius: 50%;
top: 0;
left: 0;
}
.icon-goals::after {
content: '';
position: absolute;
width: 10px;
height: 10px;
background: #ade8f4;
border-radius: 50%;
top: 5px;
left: 5px;
}
.icon-features::before {
content: '';
position: absolute;
width: 0;
height: 0;
border-left: 12px solid transparent;
border-right: 12px solid transparent;
border-bottom: 20px solid #ade8f4;
top: 2px;
}
</style>
</head>
<body>
<div class="slide">
<div class="map-background">
<div class="continent north-america"></div>
<div class="continent europe"></div>
<div class="continent asia-pacific"></div>
</div>
<div class="header">
<h1>Modelo 1: Asociación Industrial/Gremial</h1>
<h2>Dominante en Norteamérica, Europa y Asia-Pacífico</h2>
</div>
<div class="content-grid">
<div class="column">
<div class="card">
<h3><div class="css-icon icon-building"></div>Actores Clave</h3>
<ul>
<li><strong>BIO (Estados Unidos)</strong><span>Biotechnology Innovation Organization</span></li>
<li><strong>EuropaBio (Unión Europea)</strong><span>European Association for Bioindustries</span></li>
<li><strong>AseBio (España)</strong><span>Asociación Española de Bioempresas</span></li>
<li><strong>AusBiotech (Australia)</strong><span>Australia's Biotechnology Organization</span></li>
</ul>
</div>
</div>
<div class="column">
<div class="card">
<h3><div class="css-icon icon-goals"></div>Objetivos Principales</h3>
<ul>
<li>Lobby y desarrollo de políticas públicas favorables</li>
<li>Promoción del desarrollo de negocios y networking</li>
<li>Impulso a la innovación y atracción de inversión</li>
<li>Creación de ecosistemas empresariales robustos</li>
</ul>
</div>
<div class="card">
<h3><div class="css-icon icon-features"></div>Características</h3>
<ul>
<li>Foco en las empresas y el ecosistema, no en el profesional individual</li>
<li>Orientación hacia mercados y comercialización</li>
<li>Representación de intereses industriales</li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html> |