File size: 7,165 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
<!DOCTYPE html>
<html lang="es">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Caso de Estudio: Ecuador y COBIEC</title>
  <style>
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

    body, html {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #333;
    }

    .slide {
      width: 1280px;
      height: 720px;
      background-color: #0d1a26;
      color: #e0e0e0;
      font-family: 'Poppins', sans-serif;
      display: flex;
      flex-direction: column;
      padding: 40px;
      box-sizing: border-box;
      overflow: hidden;
    }

    .header {
      flex-shrink: 0;
      padding-bottom: 20px;
    }

    .title {
      font-size: 48px;
      font-weight: 700;
      color: #ffffff;
      margin: 0;
      animation: fadeInDown 0.8s ease-out;
    }

    .title .highlight {
      color: #FBCB0A;
    }

    .subtitle {
      font-size: 20px;
      font-weight: 400;
      color: #9cb3c9;
      margin: 5px 0 0 0;
      animation: fadeInDown 0.8s ease-out 0.2s;
      animation-fill-mode: backwards;
    }

    .content-grid {
      flex-grow: 1;
      display: grid;
      grid-template-columns: 4fr 5fr;
      grid-template-rows: minmax(0, 1fr) auto;
      gap: 20px;
      height: 100%;
    }

    .info-box {
      background-color: rgba(23, 42, 58, 0.7);
      border: 1px solid #29c7ac;
      border-radius: 16px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 0 20px rgba(41, 199, 172, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: fadeInUp 0.6s ease-out;
      animation-fill-mode: backwards;
    }
    
    .info-box:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 30px rgba(41, 199, 172, 0.25);
    }

    .box-title {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 20px;
      font-weight: 600;
      color: #33d6b8;
      margin-bottom: 12px;
      flex-shrink: 0;
    }

    .box-title .icon {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }
    
    .box-content {
      flex-grow: 1;
      overflow: hidden;
    }

    .box-content ul {
      list-style: none;
      padding-left: 10px;
      margin: 0;
    }

    .box-content li {
      font-size: 15px;
      line-height: 1.6;
      padding-left: 20px;
      position: relative;
    }

    .box-content li:not(:last-child) {
      margin-bottom: 8px;
    }

    .box-content li::before {
      content: '■';
      position: absolute;
      left: 0;
      color: #FBCB0A;
      font-size: 14px;
    }

    .top-left { 
      grid-area: 1 / 1 / 2 / 2;
      animation-delay: 0.3s;
      padding: 0;
      align-items: center;
      justify-content: center;
    }

    .top-right {
      grid-area: 1 / 2 / 2 / 3;
      display: flex;
      flex-direction: column;
      gap: 20px;
      min-height: 0;
    }
    
    .top-right .info-box {
      flex: 1;
      min-height: 0;
    }
    
    .top-right .info-box:nth-child(1) { animation-delay: 0.5s; }
    .top-right .info-box:nth-child(2) { animation-delay: 0.6s; }

    .bottom-row {
      grid-area: 2 / 1 / 3 / 3;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    
    .bottom-row .info-box:nth-child(1) { animation-delay: 0.7s; }
    .bottom-row .info-box:nth-child(2) { animation-delay: 0.8s; }
    .bottom-row .info-box:nth-child(3) { animation-delay: 0.9s; }
    
    .bottom-row .box-content li {
        font-size: 13px;
    }

    .fish-container {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      filter: drop-shadow(0 0 15px rgba(51, 214, 184, 0.6));
    }

    .fish-svg {
      width: 80%;
      stroke-width: 4;
      stroke: #33d6b8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    
    .fish-glow-dot {
        fill: #FBCB0A;
        stroke: none;
        filter: drop-shadow(0 0 8px #FBCB0A);
    }

    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

  </style>
</head>
<body>

  <div class="slide">
    <header class="header">
      <h1 class="title">Caso de Estudio: <span class="highlight">Ecuador y COBIEC</span></h1>
      <p class="subtitle">El ejemplo más reciente de colegiación profesional en biotecnología</p>
    </header>

    <main class="content-grid">
      <div class="info-box top-left">
        <div class="fish-container">
          <svg viewBox="0 0 200 120" class="fish-svg">
            <g>
              <path d="M178.4,56.7c0,27.1-41,49-91.7,49S-5,83.8-5,56.7S36,7.7,86.7,7.7S178.4,29.6,178.4,56.7z M125.1,19.3 c-7.4,1.8-14.1,4.7-20.1,8.3 M125.1,19.3l21.6-13.6l10.8,17.2L146.7,30 M146.7,30l10.8,17.2l-21.6-13.6"/>
              <circle class="fish-glow-dot" cx="130" cy="45" r="5" />
              <circle class="fish-glow-dot" cx="145" cy="70" r="4" />
              <circle class="fish-glow-dot" cx="110" cy="85" r="4" />
            </g>
          </svg>
        </div>
      </div>

      <div class="top-right">
        <div class="info-box">
          <h2 class="box-title">
            <svg class="icon" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-12h2v4h-2zm0 6h2v2h-2zm-5-2h2v2H6zm10 0h2v2h-2zM12 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"/></svg>
            <span>Objetivo Principal</span>
          </h2>
          <div class="box-content">
            <ul>
              <li>Agrupar y representar a los biotecnólogos del país.</li>
              <li>Regular la práctica profesional en salud y biomedicina.</li>
              <li>Establecer estándares éticos y profesionales de alto nivel.</li>
            </ul>
          </div>
        </div>
        <div class="info-box">
          <h2 class="box-title">
            <svg class="icon" viewBox="0 0 24 24"><path d="M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82zM12 3L1 9l11 6 9-4.91V17h2V9L12 3z"/></svg>
            <span>Contexto Académico</span>
          </h2>
          <div class="box-content">
            <ul>
              <li>Base robusta con más de 11 universidades ofertando la carrera.</li>
              <li>Graduados calificados sin una estructura gremial previa.</li>
              <li>Alto potencial de transferencia tecnológica universidad-industria.</li>
            </ul>
          </div>
        </div>
      </div>

      <div class="bottom-row">
        <div class="info-box">
          <h2 class="box-title">
            <svg class="icon" viewBox="0 0 24 24"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l