-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2726 lines (2540 loc) · 210 KB
/
index.html
File metadata and controls
2726 lines (2540 loc) · 210 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
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Primary Meta Tags -->
<title>PHPeste - A Maior Conferência de PHP do Nordeste Brasileiro</title>
<meta name="title" content="PHPeste - A Maior Conferência de PHP do Nordeste Brasileiro">
<meta name="description" content="Evento anual, comunitário e itinerante que reúne desenvolvedores PHP de todo o Nordeste. Promovendo inclusão, tecnologia e valorização da cultura nordestina desde 2015.">
<meta name="keywords" content="PHPeste, PHP, Nordeste, Conferência, Tecnologia, Desenvolvimento, Programação, PHP Nordeste, Evento Tech, Comunidade PHP, PHP Brasil">
<meta name="author" content="Comunidade PHP Nordeste">
<meta name="robots" content="index, follow">
<meta name="language" content="Portuguese">
<meta name="revisit-after" content="7 days">
<!-- Canonical URL -->
<link rel="canonical" href="https://phpeste.org/">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://phpeste.org/">
<meta property="og:title" content="PHPeste - A Maior Conferência de PHP do Nordeste Brasileiro">
<meta property="og:description" content="Evento anual, comunitário e itinerante que reúne desenvolvedores PHP de todo o Nordeste. Promovendo inclusão, tecnologia e valorização da cultura nordestina desde 2015.">
<meta property="og:image" content="https://phpeste.org/images/phpeste-social-share.jpg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:locale" content="pt_BR">
<meta property="og:site_name" content="PHPeste">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://phpeste.org/">
<meta property="twitter:title" content="PHPeste - A Maior Conferência de PHP do Nordeste Brasileiro">
<meta property="twitter:description" content="Evento anual, comunitário e itinerante que reúne desenvolvedores PHP de todo o Nordeste. Promovendo inclusão, tecnologia e valorização da cultura nordestina desde 2015.">
<meta property="twitter:image" content="https://phpeste.org/images/phpeste-social-share.jpg">
<meta property="twitter:site" content="@phpeste">
<meta property="twitter:creator" content="@phpeste">
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<!-- Theme Color -->
<meta name="theme-color" content="#ecc050">
<meta name="msapplication-TileColor" content="#ecc050">
<!-- Google Fonts - Lexend -->
<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=Lexend:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'phpeste-text': '#795548',
'phpeste-title': '#5B1E00',
'phpeste-bg': '#ecc050',
'phpeste-light': '#f5d78e',
'phpeste-dark': '#3d1300',
},
fontFamily: {
'lexend': ['Lexend', 'sans-serif'],
}
}
}
}
</script>
<!-- Structured Data (JSON-LD) - Event Series -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "EventSeries",
"name": "PHPeste",
"description": "Conferência anual, comunitária e itinerante de PHP do Nordeste Brasileiro desde 2015. A maior série de eventos de PHP da região, promovendo inclusão, tecnologia e valorização da cultura nordestina.",
"image": "https://phpeste.org/images/phpeste-social-share.jpg",
"startDate": "2015-10-08",
"url": "https://phpeste.org",
"eventSchedule": {
"@type": "Schedule",
"repeatFrequency": "P1Y",
"byMonth": 10,
"byMonthDay": 8,
"duration": "P3D"
},
"organizer": {
"@type": "Organization",
"name": "Comunidade PHP Nordeste",
"url": "https://phpeste.org",
"foundingDate": "2015",
"sameAs": [
"https://instagram.com/phpeste",
"https://t.me/phpeste",
"https://x.com/phpestene",
"https://www.facebook.com/PeAgaPeste"
]
},
"subEvent": [
{
"@type": "Event",
"name": "PHPeste 2026",
"startDate": "2026-10-08",
"endDate": "2026-10-10",
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"location": {
"@type": "Place",
"name": "São Luís, MA",
"address": {
"@type": "PostalAddress",
"addressLocality": "São Luís",
"addressRegion": "MA",
"addressCountry": "BR"
}
}
}
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "PHPeste",
"alternateName": "PHP Nordeste",
"url": "https://phpeste.org",
"logo": "https://phpeste.org/images/logo-phpeste.png",
"description": "Conferência anual, comunitária e itinerante de PHP do Nordeste Brasileiro",
"foundingDate": "2015",
"foundingLocation": {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"addressLocality": "João Pessoa",
"addressRegion": "PB",
"addressCountry": "BR"
}
},
"sameAs": [
"https://instagram.com/phpeste",
"https://t.me/phpeste",
"https://x.com/phpestene",
"https://www.facebook.com/PeAgaPeste"
],
"contactPoint": {
"@type": "ContactPoint",
"contactType": "Community",
"availableLanguage": "Portuguese"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "PHPeste",
"url": "https://phpeste.org",
"description": "Site oficial da PHPeste - A maior conferência de PHP do Nordeste",
"inLanguage": "pt-BR",
"publisher": {
"@type": "Organization",
"name": "Comunidade PHP Nordeste"
}
}
</script>
</head>
<body class="bg-phpeste-bg text-phpeste-text font-lexend">
<!-- Navigation Menu -->
<nav class="shadow-lg fixed w-full top-0 z-50 bg-cover bg-center bg-no-repeat" style="background-image: url('images/assets/background-menu-1.webp');">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-16">
<!-- Logo -->
<div class="flex-shrink-0">
<a href="#" class="flex items-center">
<img src="images/assets/phpeste_marrom.png" alt="PHPeste" class="h-10 w-auto">
</a>
</div>
<!-- Desktop Menu -->
<div class="hidden md:flex items-center space-x-4">
<div class="flex items-baseline space-x-8">
<a href="#sobre" class="text-phpeste-text hover:text-phpeste-title transition duration-300 font-medium" data-i18n="nav.about">Sobre</a>
<a href="#impacto" class="text-phpeste-text hover:text-phpeste-title transition duration-300 font-medium" data-i18n="nav.impact">Impacto</a>
<a href="#comunidades" class="text-phpeste-text hover:text-phpeste-title transition duration-300 font-medium" data-i18n="nav.communities">Comunidades</a>
<a href="#porque-apoiar" class="text-phpeste-text hover:text-phpeste-title transition duration-300 font-medium" data-i18n="nav.support">Por que apoiar?</a>
<a href="#edicoes" class="text-phpeste-text hover:text-phpeste-title transition duration-300 font-medium" data-i18n="nav.editions">Edições</a>
<a href="#galeria" class="text-phpeste-text hover:text-phpeste-title transition duration-300 font-medium" data-i18n="nav.gallery">Galeria</a>
<a href="#estatuto" class="text-phpeste-text hover:text-phpeste-title transition duration-300 font-medium" data-i18n="nav.statute">Estatuto</a>
</div>
<!-- Language Toggle Button -->
<button id="lang-toggle" class="flex items-center gap-2 px-3 py-2 rounded-lg bg-phpeste-light hover:bg-phpeste-bg transition-colors border border-phpeste-text" title="Mudar idioma / Change language">
<span id="flag-icon" class="text-xl">🇧🇷</span>
<span id="lang-code" class="font-semibold text-phpeste-title text-sm">PT</span>
</button>
</div>
<!-- Mobile menu button and language toggle -->
<div class="md:hidden flex items-center gap-2">
<!-- Language Toggle Button (Mobile) -->
<button id="lang-toggle-mobile" class="flex items-center gap-1 px-2 py-1 rounded-lg bg-phpeste-light hover:bg-phpeste-bg transition-colors border border-phpeste-text" title="Mudar idioma / Change language">
<span id="flag-icon-mobile" class="text-base">🇧🇷</span>
<span id="lang-code-mobile" class="font-semibold text-phpeste-title text-xs">PT</span>
</button>
<button id="mobile-menu-button" class="text-phpeste-text hover:text-phpeste-title focus:outline-none focus:text-phpeste-title">
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path id="menu-icon" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
</div>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden border-t border-phpeste-light bg-cover bg-center bg-no-repeat" style="background-image: url('images/assets/background-menu-1.webp');">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#sobre" class="block px-3 py-2 rounded-md text-phpeste-text hover:text-phpeste-title hover:bg-phpeste-light transition duration-300 font-medium" data-i18n="nav.about">Sobre</a>
<a href="#impacto" class="block px-3 py-2 rounded-md text-phpeste-text hover:text-phpeste-title hover:bg-phpeste-light transition duration-300 font-medium" data-i18n="nav.impact">Impacto</a>
<a href="#comunidades" class="block px-3 py-2 rounded-md text-phpeste-text hover:text-phpeste-title hover:bg-phpeste-light transition duration-300 font-medium" data-i18n="nav.communities">Comunidades</a>
<a href="#porque-apoiar" class="block px-3 py-2 rounded-md text-phpeste-text hover:text-phpeste-title hover:bg-phpeste-light transition duration-300 font-medium" data-i18n="nav.support">Por que apoiar?</a>
<a href="#edicoes" class="block px-3 py-2 rounded-md text-phpeste-text hover:text-phpeste-title hover:bg-phpeste-light transition duration-300 font-medium" data-i18n="nav.editions">Edições</a>
<a href="#galeria" class="block px-3 py-2 rounded-md text-phpeste-text hover:text-phpeste-title hover:bg-phpeste-light transition duration-300 font-medium" data-i18n="nav.gallery">Galeria</a>
<a href="#estatuto" class="block px-3 py-2 rounded-md text-phpeste-text hover:text-phpeste-title hover:bg-phpeste-light transition duration-300 font-medium" data-i18n="nav.statute">Estatuto</a>
</div>
</div>
</nav>
<!-- Header/Hero Section -->
<header class="pt-16 min-h-screen flex items-center justify-center bg-cover bg-center bg-no-repeat relative" style="background-image: url('images/assets/background-slide1.webp');" role="banner">
<!-- Overlay para melhorar legibilidade do texto -->
<div class="absolute inset-0 bg-phpeste-bg bg-opacity-40" aria-hidden="true"></div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 text-center relative z-10">
<div class="space-y-8">
<h1 class="absolute w-px h-px p-0 -m-px overflow-hidden whitespace-nowrap border-0" data-i18n="meta.title">PHPeste - A maior conferência de PHP do Nordeste Brasileiro</h1>
<div class="flex flex-col items-center gap-4">
<img
src="images/assets/phpeste_marrom.png"
alt="PHPeste - A maior conferência de PHP do Nordeste"
data-i18n-alt="hero.logoAlt"
class="w-64 sm:w-80 md:w-96 lg:w-[28rem] xl:w-[32rem] h-auto"
>
<div class="inline-flex items-center gap-2 bg-phpeste-title text-white px-6 py-2 rounded-full shadow-lg">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
<span class="font-semibold" data-i18n="hero.since">Desde 2015</span>
</div>
</div>
<p class="text-xl sm:text-2xl lg:text-3xl text-phpeste-text font-medium max-w-3xl mx-auto" data-i18n="hero.subtitle">
A maior conferência de comunidades PHP do Nordeste Brasileiro
</p>
<p class="text-lg sm:text-xl text-phpeste-text max-w-2xl mx-auto" data-i18n="hero.description">
Conectando desenvolvedores, compartilhando conhecimento e celebrando a comunidade PHP nordestina
</p>
<div class="pt-8">
<a href="#sobre" class="inline-flex items-center justify-center bg-phpeste-title text-white w-16 h-16 rounded-full hover:bg-phpeste-dark transition duration-300 shadow-lg hover:shadow-xl transform hover:-translate-y-1 animate-bounce" data-i18n-aria-label="hero.ctaAriaLabel" aria-label="Saiba mais">
<svg class="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3"/>
</svg>
</a>
</div>
</div>
</div>
</header>
<!-- Seção Sobre -->
<section id="sobre" class="py-20 bg-white" aria-labelledby="sobre-heading">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 id="sobre-heading" class="text-4xl sm:text-5xl font-bold text-phpeste-title mb-4" data-i18n="about.heading">
Sobre a Conferência
</h2>
<div class="w-24 h-1 bg-phpeste-bg mx-auto"></div>
</div>
<div class="max-w-4xl mx-auto space-y-6 text-lg leading-relaxed">
<p data-i18n-html="about.paragraph1">
A PHPeste é um <strong class="text-phpeste-title">arretado encontro de tecnologia e desenvolvimento</strong> que reúne as comunidades "cabra da peste" de todo o Nordeste!
</p>
<p data-i18n="about.paragraph2">
Antes da PHPeste, a maioria dos grandes eventos de tecnologia acontecia lá pelo Sul e Sudeste do país, o que deixava muita gente daqui sem acesso a esse tipo de vivência. Foi daí que surgiu a ideia de fazer uma conferência itinerante, pra levar tecnologia, conhecimento e oportunidade pra perto do povo nordestino, fortalecendo nossas comunidades locais.
</p>
<p data-i18n-html="about.paragraph3">
Desde então, a PHPeste conferência já passou por um bocado de canto bom — <strong class="text-phpeste-title">João Pessoa (PB), Salvador (BA), Fortaleza (CE), São Luís (MA), Recife (PE), Natal (RN) e Parnaíba (PI)</strong> — espalhando aprendizado, prática e muito networking entre profissionais, estudantes e entusiastas da tecnologia.
</p>
<p data-i18n-html="about.paragraph4">
São <strong class="text-phpeste-title">três dias de pura imersão</strong>, cheios de palestras que inspiram, minicursos de botar a mão na massa e atividades pra trocar ideia e fazer amizade com gente "arretada da peste", que vem de todo canto pra compartilhar experiências e fortalecer nossa comunidade.
</p>
<p data-i18n-html="about.paragraph5">
A PHPeste conferência é feita de forma <strong class="text-phpeste-title">colaborativa e sem fins lucrativos</strong>, organizada por voluntários dos nove estados nordestinos — Alagoas, Bahia, Ceará, Maranhão, Paraíba, Pernambuco, Piauí, Rio Grande do Norte e Sergipe. Tudo isso pra diminuir os custos, baratear os ingressos e garantir que mais gente possa participar, aprender e crescer junto.
</p>
<p class="text-xl font-semibold text-phpeste-title text-center pt-8" data-i18n="about.paragraph6">
Aqui, o que não falta é paixão, amizade e vontade de fazer o Nordeste brilhar ainda mais no cenário da tecnologia!
</p>
</div>
</div>
</section>
<!-- Seção Impacto em Números -->
<section id="impacto" class="py-20 bg-phpeste-bg" aria-labelledby="impacto-heading">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 id="impacto-heading" class="text-4xl sm:text-5xl font-bold text-phpeste-title mb-4" data-i18n="impact.heading">
Nosso Impacto
</h2>
<div class="w-24 h-1 bg-phpeste-title mx-auto mb-6"></div>
<p class="text-xl text-phpeste-text max-w-3xl mx-auto" data-i18n="impact.subtitle">
Uma década conectando desenvolvedores e fortalecendo o ecossistema PHP do Nordeste
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Card: Participantes -->
<div class="bg-white rounded-lg p-8 shadow-lg hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<div class="flex items-center justify-center w-16 h-16 bg-phpeste-light rounded-full mb-4 mx-auto">
<svg class="w-8 h-8 text-phpeste-title" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
</div>
<div class="text-center">
<div class="text-4xl font-bold text-phpeste-title mb-2">+2.000</div>
<div class="text-phpeste-text font-medium" data-i18n="impact.participants">Participantes</div>
<div class="text-sm text-gray-500 mt-2" data-i18n="impact.participantsDetail">Ao longo de 9 edições</div>
</div>
</div>
<!-- Card: Edições -->
<div class="bg-white rounded-lg p-8 shadow-lg hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<div class="flex items-center justify-center w-16 h-16 bg-phpeste-light rounded-full mb-4 mx-auto">
<svg class="w-8 h-8 text-phpeste-title" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"/>
</svg>
</div>
<div class="text-center">
<div class="text-4xl font-bold text-phpeste-title mb-2">9</div>
<div class="text-phpeste-text font-medium" data-i18n="impact.editions">Edições Realizadas</div>
<div class="text-sm text-gray-500 mt-2" data-i18n="impact.editionsDetail">De 2015 a 2025</div>
</div>
</div>
<!-- Card: Estados -->
<div class="bg-white rounded-lg p-8 shadow-lg hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<div class="flex items-center justify-center w-16 h-16 bg-phpeste-light rounded-full mb-4 mx-auto">
<svg class="w-8 h-8 text-phpeste-title" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"/>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 11a3 3 0 11-6 0 3 3 0 016 0z"/>
</svg>
</div>
<div class="text-center">
<div class="text-4xl font-bold text-phpeste-title mb-2">7</div>
<div class="text-phpeste-text font-medium" data-i18n="impact.states">Estados Nordestinos</div>
<div class="text-sm text-gray-500 mt-2" data-i18n="impact.statesDetail">PB, BA, CE, MA, PE, RN, PI</div>
</div>
</div>
<!-- Card: Alcance -->
<div class="bg-white rounded-lg p-8 shadow-lg hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<div class="flex items-center justify-center w-16 h-16 bg-phpeste-light rounded-full mb-4 mx-auto">
<svg class="w-8 h-8 text-phpeste-title" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9"/>
</svg>
</div>
<div class="text-center">
<div class="text-4xl font-bold text-phpeste-title mb-2">+200k</div>
<div class="text-phpeste-text font-medium" data-i18n="impact.reach">Alcance nas Redes</div>
<div class="text-sm text-gray-500 mt-2" data-i18n="impact.reachDetail">Audiência tech estimada</div>
</div>
</div>
<!-- Card: Anos de História -->
<div class="bg-white rounded-lg p-8 shadow-lg hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<div class="flex items-center justify-center w-16 h-16 bg-phpeste-light rounded-full mb-4 mx-auto">
<svg class="w-8 h-8 text-phpeste-title" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
</div>
<div class="text-center">
<div class="text-4xl font-bold text-phpeste-title mb-2">10</div>
<div class="text-phpeste-text font-medium" data-i18n="impact.years">Anos de História</div>
<div class="text-sm text-gray-500 mt-2" data-i18n="impact.yearsDetail">2015 - 2025</div>
</div>
</div>
<!-- Card: Comunidades -->
<div class="bg-white rounded-lg p-8 shadow-lg hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<div class="flex items-center justify-center w-16 h-16 bg-phpeste-light rounded-full mb-4 mx-auto">
<svg class="w-8 h-8 text-phpeste-title" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3.055 11H5a2 2 0 012 2v1a2 2 0 002 2 2 2 0 012 2v2.945M8 3.935V5.5A2.5 2.5 0 0010.5 8h.5a2 2 0 012 2 2 2 0 104 0 2 2 0 012-2h1.064M15 20.488V18a2 2 0 012-2h3.064M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
</div>
<div class="text-center">
<div class="text-4xl font-bold text-phpeste-title mb-2">13+</div>
<div class="text-phpeste-text font-medium" data-i18n="impact.communities">Comunidades Parceiras</div>
<div class="text-sm text-gray-500 mt-2" data-i18n="impact.communitiesDetail">De todo o Brasil</div>
</div>
</div>
<!-- Card: Dias de Imersão -->
<div class="bg-white rounded-lg p-8 shadow-lg hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<div class="flex items-center justify-center w-16 h-16 bg-phpeste-light rounded-full mb-4 mx-auto">
<svg class="w-8 h-8 text-phpeste-title" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
</div>
<div class="text-center">
<div class="text-4xl font-bold text-phpeste-title mb-2">3</div>
<div class="text-phpeste-text font-medium" data-i18n="impact.days">Dias de Imersão</div>
<div class="text-sm text-gray-500 mt-2" data-i18n="impact.daysDetail">Por edição</div>
</div>
</div>
<!-- Card: Sem Fins Lucrativos -->
<div class="bg-white rounded-lg p-8 shadow-lg hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<div class="flex items-center justify-center w-16 h-16 bg-phpeste-light rounded-full mb-4 mx-auto">
<svg class="w-8 h-8 text-phpeste-title" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z"/>
</svg>
</div>
<div class="text-center">
<div class="text-4xl font-bold text-phpeste-title mb-2">100%</div>
<div class="text-phpeste-text font-medium" data-i18n="impact.nonprofit">Sem Fins Lucrativos</div>
<div class="text-sm text-gray-500 mt-2" data-i18n="impact.nonprofitDetail">Organização voluntária</div>
</div>
</div>
</div>
</div>
</section>
<!-- Seção Comunidades Parceiras -->
<section id="comunidades" class="py-20 bg-phpeste-light" aria-labelledby="comunidades-heading">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 id="comunidades-heading" class="text-4xl sm:text-5xl font-bold text-phpeste-title mb-4" data-i18n="communities.heading">
Comunidades Parceiras
</h2>
<div class="w-24 h-1 bg-phpeste-title mx-auto"></div>
</div>
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 items-center">
<!-- PHP Com Rapadura -->
<div class="flex items-center justify-center p-6 bg-white rounded-lg shadow-md hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<img src="images/communities/php-com-rapadura.webp" alt="PHP Com Rapadura" class="max-w-full h-auto object-contain">
</div>
<!-- PHP Paraíba -->
<div class="flex items-center justify-center p-6 bg-white rounded-lg shadow-md hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<img src="images/communities/php-pb.webp" alt="PHP Paraíba" class="max-w-full h-auto object-contain">
</div>
<!-- PHP Bahia -->
<div class="flex items-center justify-center p-6 bg-white rounded-lg shadow-md hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<img src="images/communities/php-ba.webp" alt="PHP Bahia" class="max-w-full h-auto object-contain">
</div>
<!-- PHP Pernambuco -->
<div class="flex items-center justify-center p-6 bg-white rounded-lg shadow-md hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<img src="images/communities/PHP-PE.png" alt="PHP Pernambuco" class="max-w-full h-auto object-contain">
</div>
<!-- PHP Maranhão -->
<div class="flex items-center justify-center p-6 bg-white rounded-lg shadow-md hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<img src="images/communities/php-ma.webp" alt="PHP Maranhão" class="max-w-full h-auto object-contain">
</div>
<!-- Arretadas PHP -->
<div class="flex items-center justify-center p-6 bg-white rounded-lg shadow-md hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<img src="images/communities/arretadas-php.webp" alt="Arretadas PHP" class="max-w-full h-auto object-contain">
</div>
<!-- PHP Women -->
<div class="flex items-center justify-center p-6 bg-white rounded-lg shadow-md hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<img src="images/communities/php-women.webp" alt="PHP Women" class="max-w-full h-auto object-contain">
</div>
<!-- PHP Rio Grande do Norte -->
<div class="flex items-center justify-center p-6 bg-white rounded-lg shadow-md hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<img src="images/communities/php-rn.webp" alt="PHP Rio Grande do Norte" class="max-w-full h-auto object-contain">
</div>
<!-- PHP Rio -->
<div class="flex items-center justify-center p-6 bg-white rounded-lg shadow-md hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<img src="images/communities/php-rio.webp" alt="PHP Rio" class="max-w-full h-auto object-contain">
</div>
<!-- PHP São Paulo -->
<div class="flex items-center justify-center p-6 bg-white rounded-lg shadow-md hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<img src="images/communities/php-sp.webp" alt="PHP São Paulo" class="max-w-full h-auto object-contain">
</div>
<!-- Vale Livre -->
<div class="flex items-center justify-center p-6 bg-white rounded-lg shadow-md hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<img src="images/communities/vale-livre.webp" alt="Vale Livre" class="max-w-full h-auto object-contain">
</div>
<!-- PHP Rio Grande do Sul -->
<div class="flex items-center justify-center p-6 bg-white rounded-lg shadow-md hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<img src="images/communities/php-rs.webp" alt="PHP Rio Grande do Sul" class="max-w-full h-auto object-contain">
</div>
<!-- PHP Minas Gerais -->
<div class="flex items-center justify-center p-6 bg-white rounded-lg shadow-md hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<img src="images/communities/php-mg.webp" alt="PHP Minas Gerais" class="max-w-full h-auto object-contain">
</div>
<!-- PHP Piauí -->
<div class="flex items-center justify-center p-6 bg-white rounded-lg shadow-md hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<img src="images/communities/php-pi.png" alt="PHP Piauí" class="max-w-full h-auto object-contain">
</div>
<!-- PHP Manaus -->
<div class="flex items-center justify-center p-6 bg-white rounded-lg shadow-md hover:shadow-xl transition duration-300 transform hover:-translate-y-2">
<img src="images/communities/php-ma.png" alt="PHP Manaus" class="max-w-full h-auto object-contain">
</div>
</div>
</div>
</section>
<!-- Seção Porque Apoiar -->
<section id="porque-apoiar" class="py-20 bg-white" aria-labelledby="apoiar-heading">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 id="apoiar-heading" class="text-4xl sm:text-5xl font-bold text-phpeste-title mb-4" data-i18n="support.heading">
Por que apoiar?
</h2>
<div class="w-24 h-1 bg-phpeste-bg mx-auto"></div>
</div>
<div class="max-w-4xl mx-auto space-y-6 text-lg leading-relaxed mb-16">
<p data-i18n-html="support.paragraph1">
A PHPeste conferência reúne um <strong class="text-phpeste-title">público diverso e engajado</strong>, formado por pessoas desenvolvedoras, arquitetas, engenheiras de software, gerentes de TI, entusiastas e empresárias de todo o Nordeste.
</p>
<p data-i18n-html="support.paragraph2">
Apoiar a PHPeste é <strong class="text-phpeste-title">associar sua marca a uma iniciativa colaborativa</strong>, que promove aprendizado, inovação e o desenvolvimento tecnológico do país. Além de ampla visibilidade, a conferência oferece uma excelente oportunidade para capacitar equipes, apresentar soluções, recrutar talentos e estabelecer novas parcerias de negócio.
</p>
<p data-i18n-html="support.paragraph3">
Com edições que já trouxeram <strong class="text-phpeste-title">nomes de destaque nacionais e internacionais</strong>, a PHPeste envolve uma comunidade vibrante e ativa em todo o Brasil. Hoje, a conferência alcança mais de <strong class="text-phpeste-title">7 mil pessoas diretamente</strong> em grupos de Telegram, Instagram, X (Twitter) e Facebook, além de impactar uma audiência tech estimada em mais de <strong class="text-phpeste-title">200 mil usuários</strong> nas redes sociais, um público altamente qualificado e conectado com o universo da tecnologia.
</p>
</div>
<!-- Benefícios de Apoiar -->
<div class="mt-20 mb-16">
<h3 class="text-3xl font-bold text-phpeste-title text-center mb-12" data-i18n="support.benefitsHeading">
Benefícios de Apoiar a PHPeste
</h3>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 max-w-6xl mx-auto">
<!-- Benefício: Visibilidade Regional -->
<div class="bg-phpeste-light rounded-lg p-6 hover:shadow-xl transition duration-300">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-phpeste-title rounded-lg flex items-center justify-center mr-4">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"/>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 11a3 3 0 11-6 0 3 3 0 016 0z"/>
</svg>
</div>
<h4 class="text-xl font-bold text-phpeste-title" data-i18n="support.benefitVisibility">Visibilidade Regional</h4>
</div>
<p class="text-phpeste-text" data-i18n="support.benefitVisibilityDesc">
Presença em 7 estados do Nordeste, atingindo desenvolvedores de toda a região.
</p>
</div>
<!-- Benefício: Público Qualificado -->
<div class="bg-phpeste-light rounded-lg p-6 hover:shadow-xl transition duration-300">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-phpeste-title rounded-lg flex items-center justify-center mr-4">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z"/>
</svg>
</div>
<h4 class="text-xl font-bold text-phpeste-title" data-i18n="support.benefitAudience">Público Qualificado</h4>
</div>
<p class="text-phpeste-text" data-i18n="support.benefitAudienceDesc">
Desenvolvedores, arquitetos de software, gestores de TI e entusiastas de tecnologia.
</p>
</div>
<!-- Benefício: Networking -->
<div class="bg-phpeste-light rounded-lg p-6 hover:shadow-xl transition duration-300">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-phpeste-title rounded-lg flex items-center justify-center mr-4">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
</div>
<h4 class="text-xl font-bold text-phpeste-title" data-i18n="support.benefitNetworking">Networking</h4>
</div>
<p class="text-phpeste-text" data-i18n="support.benefitNetworkingDesc">
Conexão direta com talentos tech nordestinos e líderes de comunidades.
</p>
</div>
<!-- Benefício: Branding -->
<div class="bg-phpeste-light rounded-lg p-6 hover:shadow-xl transition duration-300">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-phpeste-title rounded-lg flex items-center justify-center mr-4">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z"/>
</svg>
</div>
<h4 class="text-xl font-bold text-phpeste-title" data-i18n="support.benefitSocial">Responsabilidade Social</h4>
</div>
<p class="text-phpeste-text" data-i18n="support.benefitSocialDesc">
Associe sua marca à inclusão, desenvolvimento regional e valorização da diversidade.
</p>
</div>
<!-- Benefício: Recrutamento -->
<div class="bg-phpeste-light rounded-lg p-6 hover:shadow-xl transition duration-300">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-phpeste-title rounded-lg flex items-center justify-center mr-4">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 13.255A23.931 23.931 0 0112 15c-3.183 0-6.22-.62-9-1.745M16 6V4a2 2 0 00-2-2h-4a2 2 0 00-2 2v2m4 6h.01M5 20h14a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/>
</svg>
</div>
<h4 class="text-xl font-bold text-phpeste-title" data-i18n="support.benefitRecruitment">Recrutamento</h4>
</div>
<p class="text-phpeste-text" data-i18n="support.benefitRecruitmentDesc">
Acesso direto a profissionais qualificados em busca de oportunidades.
</p>
</div>
<!-- Benefício: Alcance Digital -->
<div class="bg-phpeste-light rounded-lg p-6 hover:shadow-xl transition duration-300">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-phpeste-title rounded-lg flex items-center justify-center mr-4">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 8v8m-4-5v5m-4-2v2m-2 4h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z"/>
</svg>
</div>
<h4 class="text-xl font-bold text-phpeste-title" data-i18n="support.benefitDigitalReach">Alcance Digital</h4>
</div>
<p class="text-phpeste-text" data-i18n="support.benefitDigitalReachDesc">
Divulgação em redes sociais com alcance de +200 mil profissionais de tecnologia.
</p>
</div>
</div>
</div>
<!-- Call to Actions -->
<div class="mt-16 mb-20 text-center bg-phpeste-light rounded-2xl p-12 max-w-4xl mx-auto">
<h3 class="text-3xl font-bold text-phpeste-title mb-6" data-i18n="support.ctaHeading">
Quer Apoiar a PHPeste?
</h3>
<p class="text-xl text-phpeste-text mb-8 max-w-2xl mx-auto" data-i18n="support.ctaDescription">
Entre em contato para conhecer nossos planos de patrocínio e fazer parte dessa história de transformação tecnológica no Nordeste.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<a href="https://t.me/phpeste" target="_blank" rel="noopener noreferrer" class="inline-block bg-phpeste-title text-white px-8 py-4 rounded-lg text-lg font-semibold hover:bg-phpeste-dark transition duration-300 shadow-lg hover:shadow-xl transform hover:-translate-y-1" data-i18n="support.ctaButton">
Quero Ser um Apoiador
</a>
</div>
</div>
<!-- Gráfico de Público ao Longo dos Anos -->
<div class="mt-16">
<h3 class="text-3xl font-bold text-phpeste-title text-center mb-12" data-i18n="support.audienceChartHeading">
Público ao Longo dos Anos
</h3>
<div class="bg-phpeste-light rounded-lg p-8 shadow-lg">
<!-- Labels dos Estados -->
<div class="space-y-4">
<!-- PB 2015 -->
<div class="flex items-center gap-4">
<div class="w-32 text-right font-semibold text-phpeste-title">
<span class="block">PB</span>
<span class="text-sm text-phpeste-text">2015</span>
</div>
<div class="flex-1 bg-white rounded-lg overflow-hidden">
<div class="bg-phpeste-title h-12 flex items-center justify-end pr-4 text-white font-bold transition-all duration-500 hover:opacity-90" style="width: 46.8%;">
193
</div>
</div>
</div>
<!-- BA 2016 -->
<div class="flex items-center gap-4">
<div class="w-32 text-right font-semibold text-phpeste-title">
<span class="block">BA</span>
<span class="text-sm text-phpeste-text">2016</span>
</div>
<div class="flex-1 bg-white rounded-lg overflow-hidden">
<div class="bg-phpeste-title h-12 flex items-center justify-end pr-4 text-white font-bold transition-all duration-500 hover:opacity-90" style="width: 51.2%;">
211
</div>
</div>
</div>
<!-- CE 2017 -->
<div class="flex items-center gap-4">
<div class="w-32 text-right font-semibold text-phpeste-title">
<span class="block">CE</span>
<span class="text-sm text-phpeste-text">2017</span>
</div>
<div class="flex-1 bg-white rounded-lg overflow-hidden">
<div class="bg-phpeste-title h-12 flex items-center justify-end pr-4 text-white font-bold transition-all duration-500 hover:opacity-90" style="width: 71.8%;">
296
</div>
</div>
</div>
<!-- MA 2018 -->
<div class="flex items-center gap-4">
<div class="w-32 text-right font-semibold text-phpeste-title">
<span class="block">MA</span>
<span class="text-sm text-phpeste-text">2018</span>
</div>
<div class="flex-1 bg-white rounded-lg overflow-hidden">
<div class="bg-phpeste-title h-12 flex items-center justify-end pr-4 text-white font-bold transition-all duration-500 hover:opacity-90" style="width: 49.8%;">
205
</div>
</div>
</div>
<!-- PE 2019 -->
<div class="flex items-center gap-4">
<div class="w-32 text-right font-semibold text-phpeste-title">
<span class="block">PE</span>
<span class="text-sm text-phpeste-text">2019</span>
</div>
<div class="flex-1 bg-white rounded-lg overflow-hidden">
<div class="bg-phpeste-title h-12 flex items-center justify-end pr-4 text-white font-bold transition-all duration-500 hover:opacity-90" style="width: 52.7%;">
217
</div>
</div>
</div>
<!-- RN 2022 -->
<div class="flex items-center gap-4">
<div class="w-32 text-right font-semibold text-phpeste-title">
<span class="block">RN</span>
<span class="text-sm text-phpeste-text">2022</span>
</div>
<div class="flex-1 bg-white rounded-lg overflow-hidden">
<div class="bg-phpeste-title h-12 flex items-center justify-end pr-4 text-white font-bold transition-all duration-500 hover:opacity-90" style="width: 35.4%;">
146
</div>
</div>
</div>
<!-- CE 2023 -->
<div class="flex items-center gap-4">
<div class="w-32 text-right font-semibold text-phpeste-title">
<span class="block">CE</span>
<span class="text-sm text-phpeste-text">2023</span>
</div>
<div class="flex-1 bg-white rounded-lg overflow-hidden">
<div class="bg-phpeste-title h-12 flex items-center justify-end pr-4 text-white font-bold transition-all duration-500 hover:opacity-90" style="width: 100%;">
412
</div>
</div>
</div>
<!-- PE 2024 -->
<div class="flex items-center gap-4">
<div class="w-32 text-right font-semibold text-phpeste-title">
<span class="block">PE</span>
<span class="text-sm text-phpeste-text">2024</span>
</div>
<div class="flex-1 bg-white rounded-lg overflow-hidden">
<div class="bg-phpeste-title h-12 flex items-center justify-end pr-4 text-white font-bold transition-all duration-500 hover:opacity-90" style="width: 78.9%;">
325
</div>
</div>
</div>
<!-- PI 2025 -->
<div class="flex items-center gap-4">
<div class="w-32 text-right font-semibold text-phpeste-title">
<span class="block">PI</span>
<span class="text-sm text-phpeste-text">2025</span>
</div>
<div class="flex-1 bg-white rounded-lg overflow-hidden">
<div class="bg-phpeste-title h-12 flex items-center justify-end pr-4 text-white font-bold transition-all duration-500 hover:opacity-90" style="width: 37.9%;">
156
</div>
</div>
</div>
</div>
<!-- Legenda -->
<div class="mt-8 text-center text-phpeste-text">
<p class="text-sm" data-i18n="support.audienceChartLabel">Número de inscritos por edição</p>
</div>
</div>
</div>
</div>
</section>
<!-- Seção Contato para Patrocínio -->
<section id="contato-patrocinio" class="py-20 bg-phpeste-light" aria-labelledby="contato-patrocinio-heading">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 id="contato-patrocinio-heading" class="text-4xl sm:text-5xl font-bold text-phpeste-title mb-4" data-i18n="contact.heading">
Faça Parte da PHPeste
</h2>
<div class="w-24 h-1 bg-phpeste-title mx-auto mb-6"></div>
<p class="text-xl text-phpeste-text max-w-3xl mx-auto" data-i18n="contact.subtitle">
Junte-se às empresas que apoiam o desenvolvimento tecnológico do Nordeste
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 max-w-6xl mx-auto">
<!-- Lado Esquerdo: Informações -->
<div class="bg-white rounded-2xl p-8 shadow-lg">
<h3 class="text-2xl font-bold text-phpeste-title mb-6" data-i18n="contact.leftHeading">Entre em Contato</h3>
<p class="text-phpeste-text mb-8 leading-relaxed" data-i18n="contact.leftDescription">
Estamos sempre abertos a novas parcerias que compartilhem nossa visão de democratizar o acesso à tecnologia e fortalecer o ecossistema de desenvolvimento no Nordeste.
</p>
<div class="space-y-6">
<div class="flex items-start gap-4">
<div class="w-12 h-12 bg-phpeste-light rounded-lg flex items-center justify-center flex-shrink-0">
<svg class="w-6 h-6 text-phpeste-title" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z"/>
</svg>
</div>
<div>
<h4 class="font-semibold text-phpeste-title mb-1" data-i18n="contact.telegram">Telegram</h4>
<a href="https://t.me/phpeste" target="_blank" rel="noopener noreferrer" class="text-phpeste-text hover:text-phpeste-title transition duration-300">
@phpeste
</a>
</div>
</div>
<div class="flex items-start gap-4">
<div class="w-12 h-12 bg-phpeste-light rounded-lg flex items-center justify-center flex-shrink-0">
<svg class="w-6 h-6 text-phpeste-title" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8h2a2 2 0 012 2v6a2 2 0 01-2 2h-2v4l-4-4H9a1.994 1.994 0 01-1.414-.586m0 0L11 14h4a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2v4l.586-.586z"/>
</svg>
</div>
<div>
<h4 class="font-semibold text-phpeste-title mb-1" data-i18n="contact.socialMedia">Redes Sociais</h4>
<div class="flex gap-3 mt-2">
<a href="https://instagram.com/phpeste" target="_blank" rel="noopener noreferrer" class="text-phpeste-text hover:text-phpeste-title transition duration-300">
Instagram
</a>
<span class="text-phpeste-text">•</span>
<a href="https://x.com/phpestene" target="_blank" rel="noopener noreferrer" class="text-phpeste-text hover:text-phpeste-title transition duration-300">
X (Twitter)
</a>
</div>
</div>
</div>
</div>
<div class="mt-8 pt-8 border-t border-phpeste-light">
<h4 class="font-semibold text-phpeste-title mb-4" data-i18n="contact.sponsorshipPlans">Planos de Patrocínio</h4>
<p class="text-phpeste-text mb-4" data-i18n="contact.sponsorshipDescription">
Oferecemos diferentes níveis de patrocínio para atender às necessidades de cada empresa:
</p>
<ul class="space-y-2 text-phpeste-text">
<li class="flex items-center gap-2">
<svg class="w-5 h-5 text-phpeste-title flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
<span data-i18n="contact.diamondSponsorship">Patrocínio Diamante</span>
</li>
<li class="flex items-center gap-2">
<svg class="w-5 h-5 text-phpeste-title flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
<span data-i18n="contact.goldSponsorship">Patrocínio Ouro</span>
</li>
<li class="flex items-center gap-2">
<svg class="w-5 h-5 text-phpeste-title flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
<span data-i18n="contact.silverSponsorship">Patrocínio Prata</span>
</li>
<li class="flex items-center gap-2">
<svg class="w-5 h-5 text-phpeste-title flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
<span data-i18n="contact.specificSupport">Apoio Específico (Coffee break, Credenciamento, etc.)</span>
</li>
</ul>
</div>
</div>
<!-- Lado Direito: Por que entrar em contato -->
<div class="space-y-6">
<div class="bg-white rounded-2xl p-8 shadow-lg">
<div class="flex items-center gap-4 mb-4">
<div class="w-12 h-12 bg-phpeste-title rounded-lg flex items-center justify-center flex-shrink-0">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"/>
</svg>
</div>
<h3 class="text-xl font-bold text-phpeste-title" data-i18n="contact.nextEditionHeading">Próxima Edição</h3>
</div>
<p class="text-phpeste-text mb-2">
<strong data-i18n="contact.nextEdition">PHPeste 2026 - São Luís, MA</strong>
</p>
<p class="text-sm text-gray-600" data-i18n="contact.nextEditionDate">
Previsão: Outubro de 2026
</p>
</div>
<div class="bg-white rounded-2xl p-8 shadow-lg">
<div class="flex items-center gap-4 mb-4">
<div class="w-12 h-12 bg-phpeste-title rounded-lg flex items-center justify-center flex-shrink-0">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7h8m0 0v8m0-8l-8 8-4-4-6 6"/>
</svg>
</div>
<h3 class="text-xl font-bold text-phpeste-title" data-i18n="contact.whySponsorHeading">Por que patrocinar agora?</h3>
</div>
<ul class="space-y-3 text-phpeste-text">
<li class="flex items-start gap-2">
<svg class="w-5 h-5 text-phpeste-title flex-shrink-0 mt-0.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
<span data-i18n="contact.whySponsor1">Garanta as melhores cotas de patrocínio</span>
</li>
<li class="flex items-start gap-2">
<svg class="w-5 h-5 text-phpeste-title flex-shrink-0 mt-0.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
<span data-i18n="contact.whySponsor2">Maior tempo de divulgação da sua marca</span>
</li>
<li class="flex items-start gap-2">
<svg class="w-5 h-5 text-phpeste-title flex-shrink-0 mt-0.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
<span data-i18n="contact.whySponsor3">Acesso prioritário para ações customizadas</span>
</li>
<li class="flex items-start gap-2">
<svg class="w-5 h-5 text-phpeste-title flex-shrink-0 mt-0.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/>
</svg>
<span data-i18n="contact.whySponsor4">Participe do planejamento da edição</span>
</li>
</ul>
</div>
<div class="bg-phpeste-title rounded-2xl p-8 shadow-lg text-white">
<h3 class="text-2xl font-bold mb-4" data-i18n="contact.statsHeading">Estatísticas que Importam</h3>
<div class="space-y-4">
<div>
<div class="text-3xl font-bold">+2.000</div>
<div class="text-phpeste-light" data-i18n="contact.statsParticipants">Participantes históricos</div>
</div>
<div>
<div class="text-3xl font-bold">+200k</div>
<div class="text-phpeste-light" data-i18n="contact.statsReach">Alcance nas redes sociais</div>
</div>
<div>
<div class="text-3xl font-bold">10 anos</div>
<div class="text-phpeste-light" data-i18n="contact.statsHistory">De história e tradição</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Seção FAQ para Patrocinadores -->
<section id="faq-patrocinadores" class="py-20 bg-white" aria-labelledby="faq-heading">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 id="faq-heading" class="text-4xl sm:text-5xl font-bold text-phpeste-title mb-4" data-i18n="faq.heading">
Perguntas Frequentes
</h2>
<div class="w-24 h-1 bg-phpeste-title mx-auto mb-6"></div>
<p class="text-xl text-phpeste-text" data-i18n="faq.subtitle">
Tudo o que você precisa saber sobre patrocínio da PHPeste
</p>
</div>
<div class="space-y-4">
<!-- FAQ 1 -->
<details class="bg-phpeste-light rounded-lg overflow-hidden group">
<summary class="cursor-pointer p-6 flex justify-between items-center hover:bg-phpeste-bg transition duration-300">
<h3 class="text-lg font-semibold text-phpeste-title pr-8" data-i18n="faq.q1">
Como funciona o patrocínio da PHPeste?
</h3>
<svg class="w-6 h-6 text-phpeste-title transform transition-transform group-open:rotate-180 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"/>
</svg>
</summary>
<div class="px-6 pb-6 text-phpeste-text leading-relaxed">
<p data-i18n="faq.a1">
Cada edição da PHPeste é organizada pela comunidade local do estado sede. O patrocínio é direcionado para a edição específica do ano e os valores são geridos de forma transparente pela comunidade organizadora. Oferecemos diferentes níveis de patrocínio (Diamante, Ouro, Prata) e apoios específicos para coffee break, credenciamento, brindes e outras ações personalizadas.