File size: 9,456 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
<!DOCTYPE html>
<html lang="es">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Correlación Educación vs. Desarrollo</title>
  <style>
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

    body {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100vw;
      height: 100vh;
      margin: 0;
      background-color: #f0f2f5;
      font-family: 'Poppins', sans-serif;
      overflow: hidden;
    }

    .slide {
      width: 1280px;
      height: 720px;
      background: linear-gradient(135deg, #023a6d 0%, #00529b 30%, #0077b6 60%, #009688 100%);
      color: #ffffff;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto 1fr auto;
      gap: 20px 40px;
      padding: 40px;
      box-sizing: border-box;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
      animation: fadeIn 1s ease-in-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }

    .header {
      grid-column: 1 / -1;
      text-align: left;
      border-bottom: 2px solid rgba(255, 255, 255, 0.3);
      padding-bottom: 15px;
    }

    .header h1 {
      font-size: 48px;
      margin: 0;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .header h2 {
      font-size: 22px;
      margin: 5px 0 0;
      font-weight: 300;
      opacity: 0.9;
    }

    .section {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      padding: 20px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      backdrop-filter: blur(5px);
    }

    .section-title {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #a7d8ff;
      display: flex;
      align-items: center;
    }
    
    .section-title svg {
        margin-right: 10px;
    }

    .bar-chart-container {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
    }

    .bar-item {
      display: flex;
      align-items: center;
      margin-bottom: 8px;
      font-size: 14px;
    }

    .bar-label {
      width: 100px;
      text-align: right;
      padding-right: 10px;
      white-space: nowrap;
    }

    .bar-wrapper {
      flex-grow: 1;
      height: 20px;
      background: rgba(0, 0, 0, 0.2);
      border-radius: 10px;
    }

    .bar {
      height: 100%;
      background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
      border-radius: 10px;
      animation: growBar 1.5s cubic-bezier(0.25, 1, 0.5, 1);
      transform-origin: left;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      color: #003366;
      font-weight: 600;
      font-size: 12px;
      padding-right: 8px;
      box-sizing: border-box;
    }

    @keyframes growBar {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }
    
    .list ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

    .list li {
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
        font-size: 14px;
        line-height: 1.5;
    }

    .list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #4CAF50;
        font-weight: bold;
        font-size: 18px;
    }

    .comparison-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 12px;
    }
    .comparison-list li::before {
        content: '•';
        color: #4facfe;
        font-size: 24px;
        line-height: 1;
        margin-right: 10px;
    }
    .comparison-list strong {
        color: #a7d8ff;
        display: block;
    }

    .flowchart {
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        margin-top: 15px;
    }

    .flow-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .flow-icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 8px;
        border: 2px solid #4facfe;
    }

    .flow-arrow {
        font-size: 32px;
        font-weight: bold;
        color: #a7d8ff;
        transform: translateY(-15px);
    }
    
    .conclusion {
        grid-column: 1 / -1;
        background: rgba(0, 0, 0, 0.2);
        border-left: 5px solid #4CAF50;
        padding: 20px;
        border-radius: 0 8px 8px 0;
        font-size: 20px;
        font-style: italic;
        text-align: center;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

  </style>
</head>
<body>
  <div class="slide">
    <div class="header">
      <h1>Correlación Educación vs. Desarrollo</h1>
      <h2>Análisis de la relación entre oferta académica e innovación</h2>
    </div>

    <div class="section">
      <h3 class="section-title">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="fill: #a7d8ff;"><path d="M12 20V10"></path><path d="M18 20V4"></path><path d="M6 20v-4"></path></svg>
        Productividad Académica (Patentes PCT / Programas)
      </h3>
      <div class="bar-chart-container">
        <div class="bar-item">
          <div class="bar-label">Corea del Sur</div>
          <div class="bar-wrapper"><div class="bar" style="width: 100%;">400</div></div>
        </div>
        <div class="bar-item">
          <div class="bar-label">Estados Unidos</div>
          <div class="bar-wrapper"><div class="bar" style="width: 68.5%;">274</div></div>
        </div>
        <div class="bar-item">
          <div class="bar-label">Alemania</div>
          <div class="bar-wrapper"><div class="bar" style="width: 60.5%;">242</div></div>
        </div>
        <div class="bar-item">
          <div class="bar-label">Francia</div>
          <div class="bar-wrapper"><div class="bar" style="width: 35%;">140</div></div>
        </div>
        <div class="bar-item">
          <div class="bar-label">España</div>
          <div class="bar-wrapper"><div class="bar" style="width: 6%;">24</div></div>
        </div>
      </div>
       <div class="flowchart">
          <div class="flow-item">
              <div class="flow-icon"><svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 10v6M2 10l10-5 10 5-10 5z"></path><path d="M6 12v5c3 3 9 3 12 0v-5"></path></svg></div>
              <span>Academia</span>
          </div>
          <div class="flow-arrow"></div>
          <div class="flow-item">
              <div class="flow-icon"><svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12 19-7-7 7-7"></path><path d="M19 12H5"></path></svg></div>
              <span>Transferencia</span>
          </div>
          <div class="flow-arrow"></div>
           <div class="flow-item">
              <div class="flow-icon"><svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 20a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z"></path><path d="M12 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"></path><path d="M12 2v2"></path><path d="M12 20v2"></path><path d="m4.93 4.93 1.41 1.41"></path><path d="m17.66 17.66 1.41 1.41"></path><path d="M2 12h2"></path><path d="M20 12h2"></path><path d="m4.93 19.07 1.41-1.41"></path><path d="m17.66 6.34 1.41-1.41"></path></svg></div>
              <span>Industria</span>
          </div>
      </div>
    </div>
    
    <div class="section list">
      <h3 class="section-title">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="fill: #a7d8ff;"><path d="M14 9a2 2 0 0 1-2 2H6l-4 4V4c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v5Z"></path><path d="M18 9h2a2 2 0 0 1 2 2v9l-4-4h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2Z"></path></svg>
        Factores Determinantes
      </h3>
      <strong>Variables Críticas:</strong>
      <ul>
        <li>Calidad académica > Cantidad de programas</li>
        <li>Integración universidad-industria sistemática</li>
        <li>Disponibilidad de capital de riesgo especializado</li>
        <li>Marcos regulatorios para spin-offs universitarios</li>
        <li>Protección de propiedad intelectual</li>
      </ul>
      <br>
      <strong>Modelos de Transferencia Exitosos:</strong>
      <ul>
        <li>Alemania: BioRegions descentralizadas</li>
        <li>Estados Unidos: Clusters como Boston/Cambridge</li>
        <li>Suiza: ETH Zurich - industria de alta eficiencia</li>
      </ul>
    </div>

    <div class="conclusion">
      "La academia es condición necesaria pero no suficiente. Se requiere un ecosistema integral de innovación."
    </div>
  </div>
</body>
</html>