-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1937 lines (1937 loc) · 79.9 KB
/
index.html
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>
<title>Estatística</title>
<meta charset="UTF-8" />
<meta name="topic" content="Estatística" />
<meta name="robots" content="index,follow" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
http-equiv="Content-Security-Policy"
content="img-src 'self' https://www.estatistica.pro/; script-src 'self' https://www.estatistica.pro/ac/"
/>
<link
rel="alternate"
hreflang="pt-br"
href="https://www.estatistica.pro/"
/>
<link
rel="shortcut icon"
href="/images/favicons/estatistica.svg"
type="image/x-icon"
/>
<link
rel="stylesheet"
href="/ac/globalpattern/1/pt_BR/styles/globalpattern.css"
/>
<link
rel="stylesheet"
href="/ac/globalheader/1/pt_BR/styles/globalheader.css"
/>
<link
rel="stylesheet"
href="/ac/globalnavbar/1/pt_BR/styles/globalnavbar.css"
/>
<link
rel="stylesheet"
href="/ac/globalribbon/1/pt_BR/styles/globalribbon.css"
/>
<link
rel="stylesheet"
href="/ac/globaltipografia/1/pt_BR/style/globaltipografia.css"
/>
<link
rel="stylesheet"
href="/ac/globalmain/1/pt_BR/styles/globalmain.css"
/>
<link
rel="stylesheet"
href="/ac/globalnoticias/1/pt_BR/style/globalnoticias.css"
/>
<link
rel="stylesheet"
href="/ac/globalfooter/1/pt_BR/styles/globalfooter.css"
/>
<link
rel="stylesheet"
href="/wss/fonts.css?families=SF+Pro,v3|SF+Pro+Icons,v3"
type="text/css"
media="all"
/>
<script
defer
src="/ac/globalnoticias/1/pt_BR/scripts/globalnoticias.js"
></script>
<script
defer
src="/ac/globalfooter/1/pt_BR/scripts/globalfooter.js"
></script>
</head>
<body>
<div id="globaltop">
<header id="globalheader">
<div class="globalheader-content">
<div class="globalheader-list globalheader-list-unbt-gov">
<li class="globalheader-item globalheader-item-govbr">
<a
href="https://www.gov.br/pt-br"
target="_blank"
class="globalheader-link globalheader-link-govbr"
>
<span class="globalheader-image-regular globalnav-link-image">
</span>
<span class="globalheader-link-text">gov.br</span>
</a>
</li>
<li class="globalheader-item globalheader-item-unbtv">
<a
href="https://unbtv.unb.br/"
target="_blank"
class="globalheader-link globalheader-link-unbtv"
>
<span class="globalheader-image-regular globalnav-link-image">
</span>
<span class="globalheader-link-text">eduplayUnBTV</span>
</a>
</li>
</div>
<ul class="globalheader-list" id="globalheader-list-gov">
<li class="globalheader-item globalheader-item-coronavarius">
<a
href="https://www.gov.br/saude/pt-br/vacinacao"
target="_blank"
class="globalheader-link globalheader-link-coronavarius"
>
<span
class="globalheader-image-regular globalheader-link-image"
>
</span>
<span
class="globalheader-link-text globalheader-link-text-vacinacao"
>VACINAÇÃO</span
>
<span class="globalheader-link-text-alternativo">VACINAS</span>
</a>
</li>
<span class="globalheader-espacador"></span>
<li class="globalheader-item globalheader-item-moreinfo">
<a
href="https://www.gov.br/acessoainformacao/pt-br"
target="_blank"
class="globalheader-link globalheader-link-moreinfo"
>
<span
class="globalheader-image-regular globalheader-link-image"
>
</span>
<span class="globalheader-link-text">Acesso à informação</span>
</a>
</li>
<span class="globalheader-espacador"></span>
<li class="globalheader-item globalheader-item-participe">
<a
href="http://gov.br/pt-br/participacao-social/"
target="_blank"
class="globalheader-link globalheader-link-participe"
>
<span
class="globalheader-image-regular globalheader-link-image"
>
</span>
<span class="globalheader-link-text">Participe</span>
</a>
</li>
<span class="globalheader-espacador"></span>
<li class="globalheader-item globalheader-item-legislacao">
<a
href="http://planalto.gov.br/legislacao"
target="_blank"
class="globalheader-link globalheader-link-legislacao"
>
<span
class="globalheader-image-regular globalheader-link-image"
>
</span>
<span class="globalheader-link-text">Legislação</span>
</a>
</li>
<span class="globalheader-espacador"></span>
<li class="globalheader-item globalheader-item-orggovbr">
<a
href="https://www.gov.br/pt-br/orgaos-do-governo"
target="_blank"
class="globalheader-link globalheader-link-orggovbr"
>
<span
class="globalheader-image-regular globalheader-link-image"
>
</span>
<span class="globalheader-link-text">Orgão do Governo</span>
</a>
</li>
<span class="globalheader-espacador"></span>
<li class="globalheader-item globalheader-item-acessibilidade">
<a
href="https://www.gov.br/governodigital/pt-br/acessibilidade-e-usuario/acessibilidade-digital"
target="_blank"
class="globalheader-link globalheader-link-acessibilidade"
>
<span
class="globalheader-image-regular globalheader-link-image"
>
</span>
<span class="globalheader-link-text">Acessibilidade</span>
</a>
</li>
</ul>
</div>
</header>
<nav id="globalnavbar" class="globalnavbar">
<div class="globalnavbar-content">
<ul class="globalnavbar-list">
<li class="globalnavbar-item globalnavbar-item-estatistica">
<a
href="/"
class="globalnavbar-link globalnavbar-link-estatistica"
>
<span class="globalnavbar-link-estatistica-container">
<span
class="globalnavbar-link-text globalnavbar-link-text-estatistica"
>Estatística</span
>
<span
class="globalnavbar-estatistica-regular globalnavbar-link-estatistica"
>
<svg
width="15"
height="44"
viewBox="0 0 15 14"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M5.55554 0.14135C2.8274 0.724643 0.706755 2.86846 0.142622 5.61333C-0.631706 9.38086 1.82483 13.0771 5.62171 13.8574C9.38923 14.6317 13.0854 12.1752 13.8658 8.37829C14.6401 4.61077 12.1835 0.914557 8.38667 0.134247C7.50365 -0.0472552 6.42473 -0.0445449 5.55554 0.14135ZM8.68229 0.840815C9.79943 1.13485 10.5888 1.6029 11.493 2.50705C12.8059 3.8199 13.3659 5.16201 13.3659 6.99581C13.3659 8.82962 12.8059 10.1717 11.493 11.4846C10.1984 12.7792 8.7893 13.3715 7.00419 13.3715C5.21907 13.3715 3.80996 12.7792 2.51542 11.4846C1.22079 10.19 0.628528 8.78093 0.628528 6.99581C0.628528 5.2107 1.22079 3.80158 2.51542 2.50705C4.21782 0.804552 6.35304 0.227708 8.68229 0.840815ZM7.96282 1.89628C7.69365 2.12273 7.44159 2.60425 7.33672 3.09193L7.28196 3.34708L5.32992 3.37231L3.37788 3.39755L4.62812 4.78853C5.31571 5.55361 5.86415 6.2055 5.84676 6.23719C5.82938 6.26887 5.2416 7.2933 4.54045 8.51363C3.8394 9.73395 3.26573 10.7539 3.26573 10.7801C3.26573 10.8063 3.89659 10.8277 4.66765 10.8277C5.43871 10.8277 6.06957 10.8516 6.06957 10.8806C6.06957 10.9097 6.02256 11.0253 5.96518 11.1376C5.78068 11.4984 5.48684 11.6646 5.02953 11.6668C4.56998 11.669 4.34399 11.8214 4.47821 12.0386C4.58634 12.2136 5.41254 12.1908 5.77592 12.0028C6.09658 11.837 6.40267 11.4433 6.49408 11.079L6.55716 10.8277H8.65163H10.7462L10.6934 10.6174C10.6643 10.5018 10.5662 10.1128 10.4753 9.75292C10.2819 8.98691 10.0891 8.88897 9.96907 9.49591L9.89046 9.89312H8.30713C6.78801 9.89312 6.7238 9.88555 6.7238 9.70685C6.7238 9.52965 7.50224 4.7089 7.61814 4.1686C7.67262 3.91448 7.6816 3.91158 8.41349 3.91158C9.11857 3.91158 9.15389 3.92158 9.15511 4.12187C9.15941 4.83424 9.47559 4.97761 9.56727 4.3088C9.60083 4.06467 9.65092 3.74924 9.67877 3.60783L9.72943 3.35082H8.78734H7.84534V3.10819C7.84534 2.78472 8.10414 2.36255 8.37938 2.23722C8.60219 2.13563 8.79799 2.20059 9.26801 2.53209C9.39484 2.62154 9.454 2.6207 9.54634 2.52836C9.69859 2.37611 9.56886 2.16086 9.15455 1.8788C8.74715 1.6014 8.30564 1.60785 7.96282 1.89628ZM7.15055 4.1686C7.12008 4.31001 7.03344 4.77872 6.95821 5.21032C6.88288 5.64184 6.80633 6.00979 6.7882 6.02793C6.74932 6.06681 4.85457 4.04654 4.85457 3.96626C4.85457 3.93616 5.38366 3.91158 6.03023 3.91158H7.20597L7.15055 4.1686ZM6.41678 8.58466L6.20397 9.84639L5.58114 9.87386L4.95832 9.90143L5.77096 8.50241C6.2179 7.73294 6.59399 7.15283 6.6066 7.21311C6.61922 7.27349 6.5338 7.89071 6.41678 8.58466Z"
/>
</svg>
</span>
</span>
</a>
</li>
<li class="globalnavbar-item globalnavbar-item-graduacao">
<a
href="graduacao/"
class="globalnavbar-link globalnavbar-link-graduacao"
>
<span class="globalnavbar-link-graduacao-container">
<span class="globalnavbar-link-text">Graduação</span>
<span
class="globalnavbar-graduacao-regular globalnavbar-link-graduacao"
>
<svg height="44" viewBox="0 0 15 44" width="15"></svg>
</span>
</span>
</a>
</li>
<li class="globalnavbar-item globalnavbar-item-posgraduacao">
<a
href="posgraduacao/"
class="globalnavbar-link globalnavbar-link-posgraduacao"
>
<span class="globalnavbar-link-posgraduacao-container">
<span class="globalnavbar-link-text">Pós-Graduação</span>
<span
class="globalnavbar-posgraduacao-regular globalnavbar-link-posgraduacao"
>
<svg height="44" viewBox="0 0 15 44">
<!-- <path d="COLOQUE-CÓDIGO site-https://yqnn.github.io/svg-path-editor/ " /> -->
</svg>
</span>
</span>
</a>
</li>
<li class="globalnavbar-item globalnavbar-item-extensao">
<a
href="extensao/"
class="globalnavbar-link globalnavbar-link-extensao"
>
<span class="globalnavbar-link-extensao-container">
<span class="globalnavbar-link-text">Extensão</span>
<span
class="globalnavbar-extensao-regular globalnavbar-link-extensao"
>
<svg height="44" viewBox="0 0 15 44">
<!-- <path d="COLOQUE-CÓDIGO site-https://yqnn.github.io/svg-path-editor/ " /> -->
</svg>
</span>
</span>
</a>
</li>
<li class="globalnavbar-item globalnavbar-item-docentes">
<a
href="/docente/"
class="globalnavbar-link globalnavbar-link-docentes"
>
<span class="globalnavbar-link-docentes-container">
<span class="globalnavbar-link-text">Docentes</span>
<span
class="globalnavbar-docentes-regular globalnavbar-link-docentes"
>
<svg height="44" viewBox="0 0 15 44">
<!-- <path d="COLOQUE-CÓDIGO site-https://yqnn.github.io/svg-path-editor/ " /> -->
</svg>
</span>
</span>
</a>
</li>
<li class="globalnavbar-item globalnavbar-item-pesquisa">
<a
href="/pesquisa/"
class="globalnavbar-link globalnavbar-link-pesquisa"
>
<span class="globalnavbar-link-pesquisa-container">
<span class="globalnavbar-link-text">Pesquisa</span>
<span
class="globalnavbar-pesquisa-regular globalnavbar-link-pesquisa"
>
<svg height="44" viewBox="0 0 15 44">
<!-- <path d="COLOQUE-CÓDIGO site-https://yqnn.github.io/svg-path-editor/ " /> -->
</svg>
</span>
</span>
</a>
</li>
<li class="globalnavbar-item globalnavbar-item-eventos">
<a
href="/eventos/"
class="globalnavbar-link globalnavbar-link-eventos"
>
<span class="globalnavbar-link-eventos-container">
<span class="globalnavbar-link-text">Eventos</span>
<span
class="globalnavbar-eventos-regular globalnavbar-link-eventos"
>
<svg height="44" viewBox="0 0 15 44">
<!-- <path d="COLOQUE-CÓDIGO site-https://yqnn.github.io/svg-path-editor/ " /> -->
</svg>
</span>
</span>
</a>
</li>
<li class="globalnavbar-item globalnavbar-item-noticias">
<a
href="/noticias/"
class="globalnavbar-link globalnavbar-link-noticias"
>
<span class="globalnavbar-link-noticias-container">
<span class="globalnavbar-link-text">Notícias</span>
<span
class="globalnavbar-noticias-regular globalnavbar-link-noticias"
>
<svg height="44" viewBox="0 0 15 44">
<!-- <path d="COLOQUE-CÓDIGO site-https://yqnn.github.io/svg-path-editor/ " /> -->
</svg>
</span>
</span>
</a>
</li>
<li class="globalnavbar-item globalnavbar-item-ouvidoria">
<a
target="_blank"
href="https://www.ouvidoria.unb.br/"
class="globalnavbar-link globalnavbar-link-ouvidoria"
>
<span class="globalnavbar-link-ouvidoria-container">
<span class="globalnavbar-link-text">Ouvidoria</span>
<span
class="globalnavbar-ouvidoria-regular globalnavbar-link-ouvidoria"
>
<svg height="44" viewBox="0 0 15 44">
<!-- <path d="COLOQUE-CÓDIGO site-https://yqnn.github.io/svg-path-editor/ " /> -->
</svg>
</span>
</span>
</a>
</li>
<li class="globalnavbar-item globalnavbar-item-instalacoes">
<a
href="/instalacoes/"
class="globalnavbar-link globalnavbar-link-instalacoes"
>
<span class="globalnavbar-link-instalacoes-container">
<span class="globalnavbar-link-text">Instalações</span>
<span
class="globalnavbar-instalacoes-regular globalnavbar-link-instalacoes"
>
<svg height="44" viewBox="0 0 15 44">
<!-- <path d="COLOQUE-CÓDIGO site-https://yqnn.github.io/svg-path-editor/ " /> -->
</svg>
</span>
</span>
</a>
</li>
<li class="globalnavbar-item globalnavbar-item-contato">
<a
href="/contato/"
class="globalnavbar-link globalnavbar-link-contato"
>
<span class="globalnavbar-link-contato-container">
<span class="globalnavbar-link-text">Contato</span>
<span
class="globalnavbar-contato-regular globalnavbar-link-contato"
>
<svg height="44" viewBox="0 0 15 44">
<!-- <path d="COLOQUE-CÓDIGO site-https://yqnn.github.io/svg-path-editor/ " /> -->
</svg>
</span>
</span>
</a>
</li>
<li
style="display: none"
class="globalnavbar-item globalnavbar-search"
>
<a
role="button"
class="globalnavbar-link globalnavbar-link-search"
href=""
aria-label="Search estatistica.pro"
>
<span class="globalnavbar-image-regular">
<svg
xmlns="http://www.w3.org/2000/svg"
width="15px"
height="44px"
viewBox="0 0 15 44"
>
<path
d="M14.298,27.202l-3.87-3.87c0.701-0.929,1.122-2.081,1.122-3.332c0-3.06-2.489-5.55-5.55-5.55c-3.06,0-5.55,2.49-5.55,5.55 c0,3.061,2.49,5.55,5.55,5.55c1.251,0,2.403-0.421,3.332-1.122l3.87,3.87c0.151,0.151,0.35,0.228,0.548,0.228 s0.396-0.076,0.548-0.228C14.601,27.995,14.601,27.505,14.298,27.202z M1.55,20c0-2.454,1.997-4.45,4.45-4.45 c2.454,0,4.45,1.997,4.45,4.45S8.454,24.45,6,24.45C3.546,24.45,1.55,22.454,1.55,20z"
></path>
</svg>
</span>
<span class="globalnavbar-image-compact">
<svg
height="48"
viewBox="0 0 17 48"
width="17"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="m16.2294 29.9556-4.1755-4.0821a6.4711 6.4711 0 1 0 -1.2839 1.2625l4.2005 4.1066a.9.9 0 1 0 1.2588-1.287zm-14.5294-8.0017a5.2455 5.2455 0 1 1 5.2455 5.2527 5.2549 5.2549 0 0 1 -5.2455-5.2527z"
></path>
</svg>
</span>
</a>
</li>
</ul>
</div>
</nav>
<section id="globalribbon">
<div id="globalribbon-content">
<div class="globalribbon-item">
<div id="news-ribbon" class="ribbon-tipo-de-noticia">
<div class="news-ribbon-content">
<span
id="news-content"
class="saa-calendario cepe-aprova-calendario-academico"
>
Cepe aprova calendário acadêmico para 2025.
</span>
<a
target="_blank"
href="https://www.saa.unb.br/graduacao/calendario-academico#periodos-letivos-de-2025"
>Saiba mais
<span class="icon-chevronright"> </span>
</a>
</div>
</div>
</div>
</div>
</section>
</div>
<main class="main" role="main">
<section
class="homepage-section collection-module"
data-module-template="heroes"
>
<div data-unit-id="calouro" id="calouro" style="display: none">
<div id="modulo-content">
<div class="unit-wrapper h-mc-testo">
<a
href="/calouro/"
class="unit-link"
target="_self"
rel="follow"
tabindex="-1"
aria-hidden="true"
>
</a>
<div class="unit-copy-warpper">
<h2 class="headline-large-regular-text">Calouros</h2>
<h3 class="subhead">
Tudo que você precisa para começar seu curso.
</h3>
<div class="cta-links">
<a
href="/calouro/saibamais"
class="icon icon-after icon-chevronright"
target="_self"
rel="follow"
>
Saiba mais
</a>
</div>
</div>
<div class="unit-image-warpper">
<figure
id="unit-image-calouro"
class="unit-image unit-image-calouro"
></figure>
</div>
</div>
</div>
</div>
<div data-unit-id="graduacao" id="graduacao">
<div id="modulo-content">
<div class="unit-wrapper">
<a
class="unit-link"
href="/graduacao/"
target="_self"
rel="follow"
tabindex="-1"
aria-hidden="true"
>
</a>
<div class="unit-copy-warpper">
<h2 class="headline-large-regular-text">Graduação</h2>
<h3 class="subhead">
Não perca a oportunidade de transformar seu futuro!
</h3>
<div class="cta-links">
<a
href="/graduacao/"
class="icon icon-after icon-chevronright"
target="_self"
rel="follow"
>
Saiba mais
</a>
</div>
</div>
<div class="unit-image-warpper">
<figure
id="unit-image-graduacao"
class="unit-image unit-image-graduacao"
></figure>
</div>
</div>
</div>
</div>
<div data-unit-id="posgraduacao" id="posgraduacao">
<div id="modulo-content">
<div class="unit-wrapper">
<a
href="/posgraduacao/"
class="unit-link"
target="_self"
rel="follow"
tabindex="-1"
aria-hidden="true"
>
</a>
<div class="unit-copy-warpper">
<h2 class="headline-large-regular-text">Pós-Graduação</h2>
<h3 class="subhead">
Eleve sua expertise em Estatística a novos patamares!
</h3>
<div class="cta-links">
<a
href="/posgraduacao/"
class="icon icon-after icon-chevronright"
target="_self"
rel="follow"
>
Saiba mais
</a>
</div>
</div>
<div class="unit-image-warpper">
<figure
id="unit-image-posgraduacao"
class="unit-image unit-image-posgraduacao"
></figure>
</div>
</div>
</div>
</div>
<div data-unit-id="docentes" id="docentes">
<div id="modulo-content">
<div class="unit-wrapper">
<a
href="/docentes/"
class="unit-link"
target="_self"
rel="follow"
tabindex="-1"
aria-hidden="true"
>
</a>
<div class="unit-copy-warpper">
<h2 class="headline-large-regular-text">Docentes</h2>
<h3 class="subhead">Aprenda com uma equipe de excelência.</h3>
<div class="cta-links">
<a
href="/docentes/"
class="icon icon-after icon-chevronright"
target="_self"
rel="follow"
>
Saiba mais
</a>
</div>
</div>
<div class="unit-image-warpper">
<figure
id="unit-image-docentes"
class="unit-image unit-image-docentes"
></figure>
</div>
</div>
</div>
</div>
</section>
<section
class="homepage-section collection-module"
data-module-template="promos"
>
<div data-unit-id="instalacoes" id="instalacoes">
<div id="modulo-content">
<div class="unit-wrapper">
<a
href="/instalacoes/"
class="unit-link"
target="_self"
rel="follow"
tabindex="-1"
aria-hidden="true"
>
</a>
<div class="unit-copy-warpper">
<h2 class="headline">instalaões</h2>
<h3 class="subhead">
Descubra um ambiente de aprendizado excepcional em nossas
instalações.
</h3>
<div class="cta-links">
<a
href="/instalacoes/"
class="icon icon-after icon-chevronright"
target="_self"
rel="follow"
>
Saiba mais
</a>
</div>
</div>
<div class="unit-image-warpper">
<figure
id="unit-image-instalacoes"
class="unit-image unit-image-instalacoes"
></figure>
</div>
</div>
</div>
</div>
<div data-unit-id="pesquisa" id="pesquisa">
<div id="modulo-content">
<div class="unit-wrapper">
<a
href="/pesquisa/"
class="unit-link"
target="_self"
rel="follow"
tabindex="-1"
aria-hidden="true"
>
</a>
<div class="unit-copy-warpper">
<h2 class="headline">Pesquisa</h2>
<h3 class="subhead">
Se você é apaixonado por descobertas que podem moldar o futuro
da Estatística, junte-se a nós.
</h3>
<div class="cta-links">
<a
href="/pesquisa/"
class="icon icon-after icon-chevronright"
target="_self"
rel="follow"
>
Saiba mais
</a>
</div>
</div>
<div class="unit-image-warpper">
<figure
id="unit-image-pesquisa"
class="unit-image unit-image-pesquisa"
></figure>
</div>
</div>
</div>
</div>
<div data-unit-id="extencao" id="extencao">
<div id="modulo-content">
<div class="unit-wrapper">
<a
href="/extencao/"
class="unit-link"
target="_self"
rel="follow"
tabindex="-1"
aria-hidden="true"
>
</a>
<div class="unit-copy-warpper">
<h2 class="headline">Extenção</h2>
<h3 class="subhead">
Explore oportunidades de extensão que vão além das salas de
aula!
</h3>
<div class="cta-links">
<a
href="/extencao/"
class="icon icon-after icon-chevronright"
target="_self"
rel="follow"
>
Saiba mais
</a>
</div>
</div>
<div class="unit-image-warpper">
<figure
id="unit-image-extencao"
class="unit-image unit-image-extencao"
></figure>
</div>
</div>
</div>
</div>
<div data-unit-id="eventos" id="eventos">
<div id="modulo-content">
<div class="unit-wrapper">
<a
href="/eventos/"
class="unit-link"
target="_self"
rel="follow"
tabindex="-1"
aria-hidden="true"
>
</a>
<div class="unit-copy-warpper">
<h2 class="headline">Eventos</h2>
<h3 class="subhead">
Participe de eventos para se desenvolver mais.
</h3>
<div class="cta-links">
<a
href="/eventos/"
class="icon icon-after icon-chevronright"
target="_self"
rel="follow"
>
Saiba mais
</a>
</div>
</div>
<div class="unit-image-warpper">
<figure
id="unit-image-eventos"
class="unit-image unit-image-eventos"
></figure>
</div>
</div>
</div>
</div>
<div data-unit-id="formularios" id="formularios">
<div id="modulo-content">
<div class="unit-wrapper">
<a
href="/formularios/"
class="unit-link"
target="_self"
rel="follow"
tabindex="-1"
aria-hidden="true"
>
</a>
<div class="unit-copy-warpper">
<h2 class="headline">Formulários</h2>
<h3 class="subhead">
Encontre todos os formulários que precese aqui.
</h3>
<div class="cta-links">
<a
href="/formularios/"
class="icon icon-after icon-chevronright"
target="_self"
rel="follow"
>
Saiba mais
</a>
</div>
</div>
<div class="unit-image-warpper">
<figure
id="unit-image-formularios"
class="unit-image unit-image-formularios"
></figure>
</div>
</div>
</div>
</div>
<div data-unit-id="contato" id="contato">
<div id="modulo-content">
<div class="unit-wrapper">
<a
href="/contato/"
class="unit-link"
target="_self"
rel="follow"
tabindex="-1"
aria-hidden="true"
>
</a>
<div class="unit-copy-warpper">
<h2 class="headline">Contato</h2>
<h3 class="subhead">
Se você possui alguma dúvida, sugestão, elogio ou reclamação,
a entre em contato com a Secretária.
</h3>
<div class="cta-links">
<a
href="/contato/"
class="icon icon-after icon-chevronright"
target="_self"
rel="follow"
>
Saiba mais
</a>
</div>
</div>
<div class="unit-image-warpper">
<figure
id="unit-image-contato"
class="unit-image unit-image-contato"
></figure>
</div>
</div>
</div>
</div>
</section>
<section
data-module-template="noticias"
class="homepage-section standalone-module"
>
<div class="module-content">
<div id="noticias" class="gallery">
<div
class="item-container"
style="
transform: translate3d(0px, 0px, 0px);
transition: none 0s ease 0s;
"
>
<div
id="noticias-01"
id="tv-plus-gallery-item-1"
class="gallery-item"
data-ac-gallery-item=""
role="tabpanel"
aria-labelledby="tv-plus-gallery-item-2-trigger"
data-original-aria-hidden=""
aria-hidden="true"
>
<a
id="noticias-link-01 show"
href="https://noticias.unb.br/institucional/7154-ministerio-da-saude-garante-finalizacao-do-predio-do-centro-de-desenvolvimento-sustentavel-e-do-centro-internacional-de-bioetica-e-humanidades"
>
<div class="inner">
<div class="info-top">
<figure class="atv-plus-icon noticias-icon"></figure>
<figure class="logo"></figure>
</div>
<div class="info-bottom">
<div class="custom-button play">Saiba mais</div>
<p class="typography-shows-genre">
<span class="genre">Infraestrutura</span>
<span class="m-dot">·</span> Ministério da Saúde garante
finalização do prédio do CDS e do Centro Internacional
de Bioética e Humanidades
</p>
</div>
</div>
</a>
</div>
<div
id="noticias-02"
id="tv-plus-gallery-item-2"
class="gallery-item"
data-analytics-gallery-item-id="Tv Plus Gallery item 2"
data-ac-gallery-item=""
role="tabpanel"
aria-labelledby="tv-plus-gallery-item-2-trigger"
data-original-aria-hidden=""
aria-hidden="true"
>
<a
href="https://noticias.unb.br/informes/7153-reitora-pede-a-cldf-atuacao-junto-ao-gdf-para-melhorar-a-drenagem-de-agua-da-chuva-nas-proximidades-da-unb"
data-analytics-title="preview now"
data-rid-relay='{"289":"itsct"}'
data-analytics-exit-link=""
data-analytics-activitymap-region-id="tv-plus-gallery-argylle"
data-original-tabindex=""
tabindex="-1"
>
<div class="inner">
<div class="info-top">
<figure class="atv-plus-icon"></figure>
<figure class="logo"></figure>
</div>
<div class="info-bottom">
<div
class="custom-button play"
aria-label="Preview now, Argylle"
>
Leia agora
</div>
<p class="typography-shows-genre">
<span class="genre">Infraestrutura</span>
<span class="m-dot" aria-hidden="true">·</span> Reitora
pede à CLDF atuação junto ao GDF para melhorar a
drenagem de água da chuva nas proximidades da UnB
</p>
</div>
</div>
</a>
</div>
<div
id="noticias-03"
id="tv-plus-gallery-item-3"
data-analytics-gallery-item-id="Tv Plus Gallery item 3"
data-ac-gallery-item=""
class="gallery-item"
role="tabpanel"
aria-labelledby="tv-plus-gallery-item-3-trigger"
data-original-aria-hidden=""
aria-hidden="true"
>
<a
href="https://noticias.unb.br/informes/7158-cad-aprova-ampliacao-do-orcamento-das-unidades-academicas-e-administrativas"
data-analytics-title="stream now"
data-rid-relay='{"289":"itsct"}'
data-analytics-exit-link=""
data-analytics-activitymap-region-id="tv-plus-gallery-the super models"
data-original-tabindex=""
tabindex="-1"
>
<div class="inner">
<div class="info-top">
<figure class="atv-plus-icon"></figure>
<figure class="logo"></figure>
</div>
<div class="info-bottom">
<div
class="custom-button play"
aria-label="Stream now, The Super Models"
>
Saiba mais
</div>
<p class="typography-shows-genre">
<span class="genre">Administração</span>
<span class="m-dot" aria-hidden="true">·</span> CAD
aprova ampliação do orçamento das unidades acadêmicas e
administrativas
</p>
</div>
</div>
</a>
</div>
<div
id="noticias-04"
id="tv-plus-gallery-item-4"
data-analytics-gallery-item-id="Tv Plus Gallery item 3"
data-ac-gallery-item=""
class="gallery-item"
role="tabpanel"
aria-labelledby="tv-plus-gallery-item-3-trigger"
data-original-aria-hidden=""
aria-hidden="true"
>
<a
href="https://noticias.unb.br/institucional/7161-unb-se-consolida-como-referencia-em-pesquisa-inovacao-e-empreendedorismo"
data-analytics-title="stream now"
data-rid-relay='{"289":"itsct"}'
data-analytics-exit-link=""
data-analytics-activitymap-region-id="tv-plus-gallery-the super models"
data-original-tabindex=""
tabindex="-1"
>
<div class="inner">
<div class="info-top">
<figure class="atv-plus-icon"></figure>
<figure class="logo"></figure>
</div>
<div class="info-bottom">
<div
class="custom-button play"
aria-label="Stream now, The Super Models"
>
Leia agora
</div>
<p class="typography-shows-genre">
<span class="genre">Avaliação</span>
<span class="m-dot" aria-hidden="true">·</span> UnB se
consolida como referência em pesquisa, inovação e
empreendedorismo