-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
608 lines (577 loc) · 24.8 KB
/
Copy pathindex.html
File metadata and controls
608 lines (577 loc) · 24.8 KB
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PyDay Boyacá 2026 — ¡Donde la comunidad Python se encuentra!</title>
<meta name="description" content="PyDay Boyacá 2026: evento gratuito de la comunidad Python. 12 de septiembre de 2026 en Sogamoso, Boyacá. Charlas, conocimiento y comunidad.">
<meta property="og:title" content="PyDay Boyacá 2026">
<meta property="og:description" content="Evento gratuito · Sogamoso · 12 Sept 2026 · ¡Regístrate!">
<meta property="og:type" content="website">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Google+Sans+Flex:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" href="img/colibri.ico" sizes="32x32">
<style>
:root {
--olive: #6f7433;
--olive-dark: #565b24;
--olive-deep: #33370f;
--gold: #e3aa2e;
--gold-soft: #ecc95e;
--cream: #f7f3e3;
--green-soft: #b9cf8e;
--ink: #23260c;
--white: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
font-family: 'Google Sans Flex', system-ui, sans-serif;
background: var(--cream);
color: var(--ink);
line-height: 1.6;
}
a { color: inherit; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 4.5rem 0; }
.btn {
display: inline-block;
background: var(--gold);
color: var(--olive-deep);
font-weight: 700;
font-size: 1rem;
padding: 0.8rem 1.8rem;
border-radius: 999px;
text-decoration: none;
transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.22); }
.btn.ghost {
background: transparent;
color: var(--cream);
border: 1.5px solid rgba(255,255,255,.5);
box-shadow: none;
}
.btn.ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.btn.secondary { background: var(--green-soft); }
/* ---------- NAV ---------- */
nav {
background: var(--olive-deep);
color: var(--cream);
position: sticky;
top: 0;
z-index: 10;
}
.nav-inner {
max-width: 1080px;
margin: 0 auto;
padding: .9rem 1.5rem;
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
}
.wordmark { font-weight: 800; font-size: 1.15rem; text-decoration: none; letter-spacing: -.02em; }
.wordmark span { color: var(--gold-soft); }
.nav-links { display: flex; gap: 1.6rem; align-items: center; }
.nav-links a { text-decoration: none; font-weight: 500; font-size: .95rem; opacity: .9; }
.nav-links a:hover { opacity: 1; color: var(--gold-soft); }
.nav-links .btn { padding: .5rem 1.2rem; font-size: .9rem; }
@media (max-width: 720px) { .nav-links a:not(.btn) { display: none; } }
/* ---------- HERO ---------- */
.hero {
background:
radial-gradient(ellipse 80% 60% at 85% 10%, rgba(236,201,94,.14), transparent 60%),
linear-gradient(150deg, #4c5120 0%, var(--olive-deep) 70%);
color: var(--white);
padding: 5.5rem 0 5rem;
overflow: hidden;
}
.hero-inner {
max-width: 1080px;
margin: 0 auto;
padding: 0 1.5rem;
display: grid;
grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
gap: 2.5rem;
align-items: center;
}
.hero-bird { text-align: center; }
.hero-bird img {
width: 100%;
max-width: 380px;
height: auto;
filter: drop-shadow(0 18px 34px rgba(0,0,0,.35));
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) { .hero-bird img { animation: none; } }
.eyebrow {
display: inline-flex;
align-items: center;
gap: .5rem;
background: rgba(255,255,255,.08);
border: 1px solid rgba(255,255,255,.18);
border-radius: 999px;
padding: .35rem 1rem;
font-size: .88rem;
font-weight: 600;
letter-spacing: .02em;
color: var(--green-soft);
margin-bottom: 1.6rem;
}
.eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); display: inline-block; }
.hero h1 {
font-size: clamp(2.6rem, 6vw, 4.2rem);
font-weight: 800;
letter-spacing: -.03em;
line-height: 1.06;
max-width: 15ch;
margin-bottom: 1.2rem;
}
.hero h1 em { font-style: normal; color: var(--gold-soft); }
.hero .sub {
font-size: 1.15rem;
font-weight: 400;
max-width: 48ch;
opacity: .88;
margin-bottom: 2.2rem;
}
.hero .cta-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 3.5rem; }
.hero .btn { font-size: 1.05rem; padding: .9rem 2rem; }
.meta-row {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
max-width: 640px;
}
/* ---------- HERO MOBILE ---------- */
@media (max-width: 820px) {
.hero { padding: 3.5rem 0 3.5rem; }
.hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
.hero h1 { max-width: none; margin-left: auto; margin-right: auto; }
.hero .sub { margin-left: auto; margin-right: auto; }
.hero .cta-row { justify-content: center; margin-bottom: 2.5rem; }
.meta-row { margin: 0 auto; }
.hero-bird { order: -1; }
.hero-bird img { max-width: 240px; }
}
@media (max-width: 640px) {
.meta-row { grid-template-columns: 1fr; max-width: 380px; }
.meta-card { display: flex; align-items: baseline; justify-content: space-between; padding: .85rem 1.2rem; }
.meta-card .label { margin-bottom: 0; }
.hero .cta-row { flex-direction: column; align-items: stretch; max-width: 380px; margin-left: auto; margin-right: auto; }
.hero .btn { text-align: center; }
section { padding: 3.5rem 0; }
.section-title { font-size: 1.6rem; }
.logo-card { width: 160px; height: 95px; font-size: .9rem; }
}
.meta-card {
background: rgba(255,255,255,.06);
border: 1px solid rgba(255,255,255,.14);
border-radius: 14px;
padding: 1rem 1.2rem;
transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
a.meta-card:hover {
border-color: var(--gold-soft);
background: rgba(255,255,255,.12);
transform: translateY(-2px);
}
.meta-card .label {
font-size: .78rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .08em;
color: var(--green-soft);
display: block;
margin-bottom: .15rem;
}
.meta-card .value { font-size: 1.1rem; font-weight: 700; }
/* ---------- SECTION HEADERS ---------- */
.section-title { font-size: 2rem; font-weight: 800; letter-spacing: -.02em; text-align: center; margin-bottom: .6rem; }
.section-sub { text-align: center; max-width: 620px; margin: 0 auto 2.2rem; font-size: 1.08rem; }
.center { text-align: center; }
/* ---------- AGENDA ---------- */
.agenda-section { background: var(--white); }
.agenda-date {
display: inline-block;
background: var(--cream);
border: 1px solid var(--green-soft);
border-radius: 999px;
padding: .35rem 1.1rem;
font-weight: 600;
font-size: .9rem;
color: var(--olive-dark);
margin: 0 auto 2rem;
}
.timeline { max-width: 760px; margin: 0 auto; }
.timeline-row {
display: grid;
grid-template-columns: 108px 1fr;
gap: 1.2rem;
align-items: center;
padding: 1.1rem 0;
border-bottom: 1px solid rgba(111,116,51,.15);
}
.timeline-row:last-child { border-bottom: none; }
.timeline-time {
font-weight: 700;
font-size: .92rem;
color: var(--olive-dark);
line-height: 1.3;
}
.timeline-main { display: flex; align-items: center; gap: 1rem; min-width: 0; }
.timeline-photos { display: flex; flex-shrink: 0; }
.timeline-photo {
width: 54px;
height: 54px;
border-radius: 50%;
object-fit: cover;
border: 2px solid var(--white);
background: var(--green-soft);
box-shadow: 0 0 0 1.5px var(--gold-soft);
}
.timeline-photo-fallback {
width: 54px;
height: 54px;
border-radius: 50%;
background: var(--green-soft);
color: var(--olive-deep);
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: .85rem;
border: 2px solid var(--white);
box-shadow: 0 0 0 1.5px var(--gold-soft);
}
.timeline-photos img + img,
.timeline-photos img + span,
.timeline-photos span + img,
.timeline-photos span + span { margin-left: -16px; }
.timeline-info .name { font-weight: 700; font-size: 1rem; }
.timeline-info .talk { font-size: .92rem; opacity: .85; }
.timeline-row.is-pause { padding: .7rem 0; }
.timeline-row.is-pause .timeline-time { color: var(--olive); opacity: .7; }
.timeline-row.is-pause .timeline-info .talk {
font-style: italic;
opacity: .6;
font-size: .9rem;
}
@media (max-width: 640px) {
.timeline-row { grid-template-columns: 1fr; gap: .4rem; padding: 1.2rem 0; }
.timeline-time {
order: -1;
font-size: .78rem;
text-transform: uppercase;
letter-spacing: .06em;
opacity: .75;
}
}
/* ---------- DJANGO GIRLS ---------- */
.djangogirls { background: var(--olive-deep); color: var(--cream); }
.djangogirls .section-title { color: var(--gold-soft); }
.djangogirls .date-badge {
display: inline-block;
background: rgba(255,255,255,.1);
border: 1px solid rgba(255,255,255,.25);
border-radius: 999px;
padding: .4rem 1.2rem;
font-weight: 600;
font-size: .95rem;
margin-bottom: 1.4rem;
}
.djangogirls .deadline-note {
max-width: 560px;
margin: 0 auto 1.8rem;
background: rgba(255,255,255,.06);
border: 1px solid var(--gold-soft);
border-radius: 14px;
padding: 1rem 1.3rem;
font-size: .95rem;
}
.djangogirls .deadline-note strong { color: var(--gold-soft); }
/* ---------- LOGOS ---------- */
.logos-section { background: var(--white); }
.logo-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.logo-card {
display: flex;
align-items: center;
justify-content: center;
width: 200px;
height: 110px;
background: var(--cream);
border: 2px dashed var(--olive);
border-radius: 16px;
text-decoration: none;
font-weight: 700;
font-size: 1rem;
color: var(--olive-dark);
text-align: center;
padding: .5rem 1rem;
transition: transform .15s ease, border-color .15s ease;
}
.logo-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.logo-card img { max-width: 100%; max-height: 100%; object-fit: contain; }
/* ---------- FOOTER ---------- */
footer {
background: var(--olive-dark);
color: var(--cream);
text-align: center;
padding: 2rem 1.5rem;
font-size: .95rem;
}
footer a { color: var(--gold-soft); }
footer .code-hint { font-family: monospace; font-size: .85rem; opacity: .7; display: block; margin-top: .8rem; }
</style>
</head>
<body>
<!-- ============ NAV ============ -->
<nav>
<div class="nav-inner">
<a class="wordmark" href="#">PyDay <span>Boyacá 2026</span></a>
<div class="nav-links">
<a href="#agenda">Agenda</a>
<a href="#djangogirls">Django Girls</a>
<a href="#sponsors">Sponsors</a>
<a href="#organizan">Comunidades</a>
</div>
</div>
</nav>
<!-- ============ HERO ============ -->
<header class="hero">
<div class="hero-inner">
<div class="hero-text">
<span class="eyebrow"><i></i> Evento gratuito · Comunidad Python</span>
<h1>Donde la comunidad <em>Python</em> se encuentra</h1>
<p class="sub">Un día de charlas, conocimiento y conexión con la comunidad Python en el corazón de Boyacá. Ven a aprender, compartir y conocer gente increíble.</p>
<div class="cta-row">
<a class="btn" href="https://luma.com/clrwws8a" target="_blank" rel="noopener">Registro PyDay</a>
<a class="btn ghost" href="#djangogirls">Workshop Django Girls</a>
</div>
<div class="meta-row">
<a class="meta-card" href="https://calendar.google.com/calendar/render?action=TEMPLATE&text=PyDay+Boyac%C3%A1+2026&dates=20260912T130000Z/20260912T230000Z&details=Un+d%C3%ADa+de+charlas%2C+conocimiento+y+conexi%C3%B3n+con+la+comunidad+Python+en+el+coraz%C3%B3n+de+Boyac%C3%A1.&location=Sogamoso%2C+Boyac%C3%A1%2C+Colombia" target="_blank" rel="noopener" style="text-decoration: none;" title="Añadir a Google Calendar">
<span class="label">Fecha 📅</span>
<span class="value">12 Sept 2026</span>
</a>
<a class="meta-card" href="https://www.google.com/maps/search/?api=1&query=Sogamoso,+Boyac%C3%A1,+Colombia" target="_blank" rel="noopener" style="text-decoration: none;" title="Ver en Google Maps">
<span class="label">Lugar 📍</span>
<span class="value">Sogamoso</span>
</a>
<div class="meta-card">
<span class="label">Entrada</span>
<span class="value">Gratuita</span>
</div>
</div>
</div>
<div class="hero-bird">
<!-- Guarda tu export del colibrí como img/colibri.png en el repo -->
<img src="img/colibri.png" alt="Colibrí barbudito paramuno, mascota del PyDay Boyacá 2026" onerror="this.parentElement.style.display='none'">
</div>
</div>
</header>
<!-- ============ AGENDA ============ -->
<section class="agenda-section" id="agenda">
<div class="container center">
<h2 class="section-title">Agenda</h2>
<p class="section-sub">Así se ve el sábado del PyDay: una sola sala, charlas cortas, gente increíble.</p>
<span class="agenda-date">🗓️ Sábado 12 de septiembre de 2026</span>
</div>
<div class="container">
<div class="timeline">
<div class="timeline-row">
<div class="timeline-time">8:15 – 8:45 a.m.</div>
<div class="timeline-main">
<div class="timeline-photos">
<img class="timeline-photo" src="img/speakers/lina-figueredo.jpg" alt="Lina Fernanda Figueredo" loading="lazy" onerror="this.outerHTML='<span class=\'timeline-photo-fallback\'>LF</span>'">
</div>
<div class="timeline-info">
<div class="name">Lina Fernanda Figueredo</div>
<div class="talk">Construye tu propio ejército: Claude en tu proyecto Python</div>
</div>
</div>
</div>
<div class="timeline-row">
<div class="timeline-time">8:45 – 9:15 a.m.</div>
<div class="timeline-main">
<div class="timeline-photos">
<img class="timeline-photo" src="img/speakers/sary-libreros.jpg" alt="Sary Libreros" loading="lazy" onerror="this.outerHTML='<span class=\'timeline-photo-fallback\'>SL</span>'">
</div>
<div class="timeline-info">
<div class="name">Sary Libreros</div>
<div class="talk">Del prompt al grafo semántico: la capa de contexto de tus agentes en AWS</div>
</div>
</div>
</div>
<div class="timeline-row">
<div class="timeline-time">9:15 – 9:45 a.m.</div>
<div class="timeline-main">
<div class="timeline-photos">
<img class="timeline-photo" src="img/speakers/melissa-castaneda.png" alt="Melissa Castañeda" loading="lazy" onerror="this.outerHTML='<span class=\'timeline-photo-fallback\'>MC</span>'">
<img class="timeline-photo" src="img/speakers/nicolas-aldana.jpg" alt="Nicolás Aldana" loading="lazy" onerror="this.outerHTML='<span class=\'timeline-photo-fallback\'>NA</span>'">
</div>
<div class="timeline-info">
<div class="name">Melissa Castañeda y Nicolás Aldana</div>
<div class="talk">Clearpath Data: De datos crudos a insights con IA: construyendo un pipeline end-to-end en Python</div>
</div>
</div>
</div>
<div class="timeline-row is-pause">
<div class="timeline-time">9:45 – 10:15 a.m.</div>
<div class="timeline-main">
<div class="timeline-info">
<div class="talk">Break y Cafecito</div>
</div>
</div>
</div>
<div class="timeline-row">
<div class="timeline-time">10:15 – 10:45 a.m.</div>
<div class="timeline-main">
<div class="timeline-photos">
<img class="timeline-photo" src="img/speakers/juanfe-martinez.jpg" alt="Juanfe Martínez" loading="lazy" onerror="this.outerHTML='<span class=\'timeline-photo-fallback\'>JM</span>'">
</div>
<div class="timeline-info">
<div class="name">Juanfe Martínez</div>
<div class="talk">Más allá del notebook: construyendo proyectos de Machine Learning que evolucionan</div>
</div>
</div>
</div>
<div class="timeline-row">
<div class="timeline-time">10:45 – 11:15 a.m.</div>
<div class="timeline-main">
<div class="timeline-photos">
<img class="timeline-photo" src="img/speakers/carlos-riveros.jpg" alt="Carlos Riveros" loading="lazy" onerror="this.outerHTML='<span class=\'timeline-photo-fallback\'>CR</span>'">
</div>
<div class="timeline-info">
<div class="name">Carlos Riveros</div>
<div class="talk">¿Y quién revisa mis tests? Elevando la calidad de tus pruebas con Mutation Testing</div>
</div>
</div>
</div>
<div class="timeline-row">
<div class="timeline-time">11:15 – 11:45 a.m.</div>
<div class="timeline-main">
<div class="timeline-photos">
<img class="timeline-photo" src="img/speakers/catalina-cruz.jpg" alt="Catalina Cruz" loading="lazy" onerror="this.outerHTML='<span class=\'timeline-photo-fallback\'>CC</span>'">
</div>
<div class="timeline-info">
<div class="name">Catalina Cruz</div>
<div class="talk">Una habitación propia en la era de la inteligencia artificial</div>
</div>
</div>
</div>
<div class="timeline-row is-pause">
<div class="timeline-time">11:45 a.m. – 1:00 p.m.</div>
<div class="timeline-main">
<div class="timeline-info">
<div class="talk">Almuerzo y Juguito</div>
</div>
</div>
</div>
<div class="timeline-row">
<div class="timeline-time">1:00 – 1:30 p.m.</div>
<div class="timeline-main">
<div class="timeline-photos">
<img class="timeline-photo" src="img/speakers/adriana-moya.jpg" alt="Adriana Fernanda Moya" loading="lazy" onerror="this.outerHTML='<span class=\'timeline-photo-fallback\'>AM</span>'">
</div>
<div class="timeline-info">
<div class="name">Adriana Fernanda Moya</div>
<div class="talk">Python + ADK: La Fórmula para Crear Agentes con Contexto Real</div>
</div>
</div>
</div>
<div class="timeline-row">
<div class="timeline-time">1:30 – 2:00 p.m.</div>
<div class="timeline-main">
<div class="timeline-photos">
<img class="timeline-photo" src="img/speakers/laura-moreno.jpg" alt="Laura Moreno" loading="lazy" onerror="this.outerHTML='<span class=\'timeline-photo-fallback\'>LM</span>'">
<img class="timeline-photo" src="img/speakers/angela-ramirez.jpg" alt="Angela Ramírez" loading="lazy" onerror="this.outerHTML='<span class=\'timeline-photo-fallback\'>AR</span>'">
</div>
<div class="timeline-info">
<div class="name">Laura Moreno y Angela Ramírez</div>
<div class="talk">Estación Biológica Andes: IA para la conservación de especies colombianas</div>
</div>
</div>
</div>
<div class="timeline-row">
<div class="timeline-time">2:00 – 2:30 p.m.</div>
<div class="timeline-main">
<div class="timeline-photos">
<img class="timeline-photo" src="img/speakers/edward-burgos.jpg" alt="Edward Burgos" loading="lazy" onerror="this.outerHTML='<span class=\'timeline-photo-fallback\'>EB</span>'">
</div>
<div class="timeline-info">
<div class="name">Edward Burgos</div>
<div class="talk">Strands Agents: el SDK open source para agentes en Python</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ============ DJANGO GIRLS WORKSHOP ============ -->
<section class="djangogirls" id="djangogirls">
<div class="container center">
<h2 class="section-title">Taller Django Girls Colombia</h2>
<span class="date-badge">🗓️ Viernes 11 de septiembre de 2026 — un día antes del PyDay</span>
<p class="section-sub">
Junto al PyDay tendremos un taller gratuito de Django Girls Colombia:
una introducción a la programación y al desarrollo web con Python y Django,
pensado especialmente para mujeres que quieren dar sus primeros pasos en tecnología.
</p>
<p class="deadline-note">
<strong>Las inscripciones cierran hoy.</strong> Enviaremos los correos a las personas
aceptadas mañana 28 de agosto, y esperamos su confirmación a más tardar el 31 de agosto.
</p>
<a class="btn" href="https://djangogirls.org/es/boyaca/" target="_blank" rel="noopener">Inscríbete al taller →</a>
</div>
</section>
<!-- ============ SPONSORS ============ -->
<section class="sponsors" id="sponsors">
<div class="container center">
<h2 class="section-title">¿Quieres ser sponsor? 💛</h2>
<p class="section-sub">
Estamos buscando patrocinadores que quieran apoyar a la comunidad Python en Boyacá.
Tu marca estará presente en un evento gratuito y comunitario que reúne a
desarrolladores, estudiantes y entusiastas de la tecnología.
</p>
<a class="btn secondary" href="mailto:colombiapython@gmail.com?subject=Sponsor%20PyDay%20Boyac%C3%A1%202026">Escríbenos →</a>
</div>
</section>
<!-- ============ ORGANIZAN ============ -->
<section class="logos-section" id="organizan">
<div class="container">
<h2 class="section-title">Organizan</h2>
<div class="logo-grid">
<!-- Guarda cada logo en img/ con estos nombres. Si el archivo no existe,
se muestra el nombre de la organización como fallback. -->
<a class="logo-card" href="https://www.instagram.com/pyladiesboyaca/" target="_blank" rel="noopener"><img src="img/pyladies-boyaca.png" alt="PyLadies Boyacá" onerror="this.replaceWith(this.alt)"></a>
<a class="logo-card" href="https://www.python.org.co/" target="_blank" rel="noopener"><img src="img/python-colombia.png" alt="Python Colombia" onerror="this.replaceWith(this.alt)"></a>
<a class="logo-card" href="https://www.pyladies.co/" target="_blank" rel="noopener"><img src="img/pyladies-colombia.png" alt="PyLadies Colombia" onerror="this.replaceWith(this.alt)"></a>
<a class="logo-card" href="https://djangogirls.org/es/" target="_blank" rel="noopener"><img src="img/django-girls-colombia.png" alt="Django Girls Colombia" onerror="this.replaceWith(this.alt)"></a>
</div>
</div>
</section>
<!-- ============ APOYAN ============ -->
<section class="logos-section" style="padding-top:0;">
<div class="container">
<h2 class="section-title">Apoyan</h2>
<div class="logo-grid">
<a class="logo-card" href="https://fundacionatoma.org/" target="_blank" rel="noopener"><img src="img/fundacion-atoma.png" alt="Fundación Átoma" onerror="this.replaceWith(this.alt)"></a>
<a class="logo-card" href="https://www.uptc.edu.co/" target="_blank" rel="noopener"><img src="img/uptc.png" alt="Universidad UPTC" onerror="this.replaceWith(this.alt)"></a>
</div>
</div>
</section>
<!-- ============ FOOTER ============ -->
<footer>
<p><strong>PyDay Boyacá 2026</strong> · Sogamoso, Boyacá · 12 de septiembre de 2026</p>
<a href="mailto:colombiapython@gmail.com">colombiapython@gmail.com</a></p>
<span class="code-hint">print('Hola, sumercé')</span>
</footer>
</body>
</html>