File size: 7,505 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
<!DOCTYPE html>
<html lang="es">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Análisis Ecosistema Biotecnología</title>
  <style>
    @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

    body {
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background-color: #f0f0f0;
      font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    }

    .slide {
      width: 1280px;
      height: 720px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #1e3c72, #2a5298, #00c9ff);
      color: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    
    .content {
        position: relative;
        z-index: 10;
        padding: 0 80px;
        max-width: 65%;
        animation: fadeInContent 1.5s ease-out forwards;
    }

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

    .title {
      font-size: 54px;
      font-weight: 700;
      line-height: 1.2;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
      margin: 0;
    }

    .subtitle {
      font-size: 26px;
      font-weight: 300;
      line-height: 1.4;
      margin-top: 25px;
      opacity: 0.9;
      max-width: 90%;
    }

    .footer {
      position: absolute;
      bottom: 60px;
      left: 80px;
      font-size: 18px;
      font-weight: 400;
      opacity: 0.8;
      z-index: 10;
      animation: fadeInContent 1.5s ease-out 0.5s forwards;
      opacity: 0;
    }

    .dna-decoration {
        position: absolute;
        top: 0;
        right: -150px;
        width: 600px;
        height: 100%;
        z-index: 1;
        transform: rotate(15deg);
    }

    .dot {
        position: absolute;
        background-color: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        animation: float 8s ease-in-out infinite;
    }

    .bar {
        position: absolute;
        background-color: rgba(255, 255, 255, 0.1);
        height: 3px;
        border-radius: 2px;
    }

    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0px); }
    }
    
    /* Generación de la hélice de ADN con CSS */
    .dna-helix .rung { position: absolute; width: 100px; height: 30px; }
    .dna-helix .dot1 { position: absolute; top: 0; left: 0; width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.4); }
    .dna-helix .dot2 { position: absolute; top: 0; right: 0; width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.4); }
    .dna-helix .connector { position: absolute; top: 4.5px; left: 12px; right: 12px; height: 3px; background: rgba(255,255,255,0.2); }

    /* Posicionamiento manual de los "peldaños" de la hélice */
    .rung:nth-child(1) { top: 50px; left: 250px; transform: scale(0.6) rotate(-20deg); }
    .rung:nth-child(2) { top: 90px; left: 265px; transform: scale(0.7) rotate(-10deg); }
    .rung:nth-child(3) { top: 130px; left: 275px; transform: scale(0.8) rotate(0deg); }
    .rung:nth-child(4) { top: 170px; left: 270px; transform: scale(0.9) rotate(10deg); }
    .rung:nth-child(5) { top: 210px; left: 255px; transform: scale(1) rotate(20deg); }
    .rung:nth-child(6) { top: 250px; left: 235px; transform: scale(0.95) rotate(10deg); }
    .rung:nth-child(7) { top: 290px; left: 220px; transform: scale(0.85) rotate(0deg); }
    .rung:nth-child(8) { top: 330px; left: 225px; transform: scale(0.75) rotate(-10deg); }
    .rung:nth-child(9) { top: 370px; left: 240px; transform: scale(0.65) rotate(-20deg); }
    .rung:nth-child(10) { top: 410px; left: 260px; transform: scale(0.7) rotate(-10deg); }
    .rung:nth-child(11) { top: 450px; left: 270px; transform: scale(0.8) rotate(0deg); }
    .rung:nth-child(12) { top: 490px; left: 265px; transform: scale(0.9) rotate(10deg); }
    .rung:nth-child(13) { top: 530px; left: 250px; transform: scale(1) rotate(20deg); }
    .rung:nth-child(14) { top: 570px; left: 230px; transform: scale(0.9) rotate(10deg); }
    .rung:nth-child(15) { top: 610px; left: 215px; transform: scale(0.8) rotate(0deg); }
    
    /* Moléculas de fondo */
    .bg-shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.05); animation: float 10s ease-in-out infinite alternate; }
    .bg-shape.s1 { width: 200px; height: 200px; top: -50px; left: 5%; animation-duration: 12s; }
    .bg-shape.s2 { width: 150px; height: 150px; bottom: -40px; right: 35%; animation-duration: 8s; }
    .bg-shape.s3 { width: 80px; height: 80px; top: 40%; left: 45%; animation-duration: 15s; }
    .bg-shape.s4 { width: 120px; height: 120px; top: 15%; right: 5%; animation-duration: 9s; }

  </style>
</head>
<body>

  <div class="slide">
    <div class="bg-shape s1"></div>
    <div class="bg-shape s2"></div>
    <div class="bg-shape s3"></div>
    <div class="bg-shape s4"></div>

    <div class="dna-decoration">
        <div class="dna-helix">
            <div class="rung"><div class="dot1"></div><div class="connector"></div><div class="dot2"></div></div>
            <div class="rung"><div class="dot1"></div><div class="connector"></div><div class="dot2"></div></div>
            <div class="rung"><div class="dot1"></div><div class="connector"></div><div class="dot2"></div></div>
            <div class="rung"><div class="dot1"></div><div class="connector"></div><div class="dot2"></div></div>
            <div class="rung"><div class="dot1"></div><div class="connector"></div><div class="dot2"></div></div>
            <div class="rung"><div class="dot1"></div><div class="connector"></div><div class="dot2"></div></div>
            <div class="rung"><div class="dot1"></div><div class="connector"></div><div class="dot2"></div></div>
            <div class="rung"><div class="dot1"></div><div class="connector"></div><div class="dot2"></div></div>
            <div class="rung"><div class="dot1"></div><div class="connector"></div><div class="dot2"></div></div>
            <div class="rung"><div class="dot1"></div><div class="connector"></div><div class="dot2"></div></div>
            <div class="rung"><div class="dot1"></div><div class="connector"></div><div class="dot2"></div></div>
            <div class="rung"><div class="dot1"></div><div class="connector"></div><div class="dot2"></div></div>
            <div class="rung"><div class="dot1"></div><div class="connector"></div><div class="dot2"></div></div>
            <div class="rung"><div class="dot1"></div><div class="connector"></div><div class="dot2"></div></div>
            <div class="rung"><div class="dot1"></div><div class="connector"></div><div class="dot2"></div></div>
        </div>
    </div>

    <div class="content">
      <h1 class="title">Análisis Exhaustivo del Ecosistema Global de Colegios Profesionales de Biotecnología</h1>
      <p class="subtitle">Un estudio comparativo de modelos organizacionales, desarrollo industrial y tendencias emergentes</p>
    </div>
    
    <div class="footer">
      <p><strong>Autor:</strong> MiniMax Agent</p>
      <p style="margin-top: -10px;"><strong>Fecha:</strong> 25 de junio de 2025</p>
    </div>

  </div>

</body>
</html>