-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-pt.html
1461 lines (1446 loc) · 103 KB
/
index-pt.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
<!-- Change the value of lang="en" attribute if your website's language is not English.
You can find the code of your language here - https://www.w3schools.com/tags/ref_language_codes.asp -->
<!DOCTYPE html>
<html lang='pt'>
<head>
<title>Aplicativo de legendagem ao vivo para conferências, da BeAware</title>
<meta name="description" content="Legendas ao vivo da conferência para surdos da BeAware">
<meta charset="utf-8">
<meta name="author" content="Saamer Mansoor">
<!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="apple-itunes-app" content="app-id=6450253525, app-argument=web">
<meta name="keywords" content="Surdo, HoH, HardofHearing, Hard, Auditivo, Assistente, Android, iPhone, iOS, Aplicativo, Site" />
<link rel="canonical" href="https://transitcaptioning.com/index-pt.html">
<meta property="og:site_name" content="Legendas ao vivo da conferência para surdos da BeAware">
<!-- Twitter Meta Tags -->
<link rel="alternate" hreflang="x-default" href="https://transitcaptioning.com" />
<link rel="alternate" hreflang="en" href="https://transitcaptioning.com" />
<link rel="alternate" hreflang="es" href="https://transitcaptioning.com/index-es.html" />
<link rel="alternate" hreflang="fr" href="https://transitcaptioning.com/index-fr.html" />
<link rel="alternate" hreflang="pt" href="https://transitcaptioning.com/index-pt.html" />
<link rel="alternate" hreflang="ar" href="https://transitcaptioning.com/index-ar.html" />
<link rel="alternate" hreflang="ru" href="https://transitcaptioning.com/index-ru.html" />
<link rel="alternate" hreflang="de" href="https://transitcaptioning.com/index-de.html" />
<link rel="alternate" hreflang="uk" href="https://transitcaptioning.com/index-uk.html" />
<link rel="alternate" hreflang="hi" href="https://transitcaptioning.com/index-hi.html" />
<link rel="alternate" hreflang="ur" href="https://transitcaptioning.com/index-ur.html" />
<link rel="alternate" hreflang="yo" href="https://transitcaptioning.com/index-yo.html" />
<link rel="alternate" hreflang="id" href="https://transitcaptioning.com/index-id.html" />
<link rel="alternate" hreflang="it" href="https://transitcaptioning.com/index-it.html" />
<link rel="alternate" hreflang="ja" href="https://transitcaptioning.com/index-ja.html" />
<link rel="alternate" hreflang="sw" href="https://transitcaptioning.com/index-sw.html" />
<link rel="alternate" hreflang="pl" href="https://transitcaptioning.com/index-pl.html" />
<link rel="alternate" hreflang="vi" href="https://transitcaptioning.com/index-vi.html" />
<link rel="alternate" hreflang="ro" href="https://transitcaptioning.com/index-ro.html" />
<link rel="alternate" hreflang="zh-Hant" href="https://transitcaptioning.com/index-zh-hant.html" />
<link rel="alternate" hreflang="zh" href="https://transitcaptioning.com/index-zh.html" />
<link rel="alternate" hreflang="hr" href="https://transitcaptioning.com/index-hr.html" />
<link rel="alternate" hreflang="fa" href="https://transitcaptioning.com/index-fa.html" />
<link rel="alternate" hreflang="nl" href="https://transitcaptioning.com/index-nl.html" />
<link rel="alternate" hreflang="ko" href="https://transitcaptioning.com/index-ko.html" />
<link rel="alternate" hreflang="sv" href="https://transitcaptioning.com/index-sv.html" />
<link rel="alternate" hreflang="hu" href="https://transitcaptioning.com/index-hu.html" />
<link rel="alternate" hreflang="sq" href="https://transitcaptioning.com/index-sq.html" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Legendas ao vivo da conferência por BeAware">
<meta name="twitter:description" content="Aplicativos de legendagem ao vivo de conferências nativas para atender participantes surdos e com deficiência auditiva">
<meta name="twitter:image" content="https://transitcaptioning.com/images/author.png">
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="Legendas ao vivo da conferência por BeAware">
<meta itemprop="description" content="Aplicativos de legendagem ao vivo de conferências nativas para atender participantes surdos e com deficiência auditiva">
<meta itemprop="image" content="https://transitcaptioning.com/images/author.png">
<!-- Facebook Open Graph -->
<meta property="og:url" content='https://transitcaptioning.com/index-pt.html'>
<meta property="og:type" content="website">
<meta property="og:title" content="Legendas ao vivo da conferência para surdos da BeAware">
<meta property="og:description" content="Aplicativos de legendagem ao vivo de conferências nativas para atender participantes surdos e com deficiência auditiva">
<meta property="og:image" content="https://transitcaptioning.com/images/author.png">
<meta name="robots" content="noodp,noydir">
<!-- Facebook Open Graph end -->
<link rel="apple-touch-icon" sizes="57x57" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
<!-- <link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png"> Need 180x180 icon medium-->
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon.png">
<!-- <link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png"> Need this low-->
<link rel="manifest" href="favicon/site.webmanifest">
<!-- Favicons -->
<link rel="shortcut icon" href="images/favicon.png">
<!-- CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/style-responsive.css">
<link rel="stylesheet" href="css/vertical-rhythm.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/animate.min.css">
<link rel="stylesheet" href="css/splitting.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-0LVRKJGVDT">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-0LVRKJGVDT');
</script>
<!-- Meta Pixel Code -->
<script>!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,document,'script','https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '210485784445970'); fbq('track', 'PageView');</script><noscript> <img height="1" width="1" src="https://www.facebook.com/tr?id=210485784445970&ev=PageView&noscript=1"/></noscript><!-- End Meta Pixel Code -->
</head>
<body class="appear-animate">
<!-- Page Loader -->
<div class="page-loader dark">
<div class="loader">
Carregando...
</div>
</div>
<!-- End Page Loader -->
<!-- Ir para o conteúdo -->
<a href="#main" class="btn skip-to-content">
Ir para o conteúdo
</a>
<!-- End Ir para o conteúdo -->
<!-- Page Wrap -->
<div class="page bg-dark light-content" id="top">
<!-- Navigation panel -->
<nav class="main-nav dark transparent stick-fixed wow-menubar">
<div class="full-wrapper relative clearfix">
<!-- Logo ( * your text or image into link tag *) -->
<div class="nav-logo-wrap local-scroll">
<a href="index.html" class="logo">
<img src="images/logo-white.svg" alt="BeAware Cofnerence Captioning company logo" width="188" height="37" />
</a>
</div>
<!-- Mobile Cardápio Button -->
<div class="mobile-nav" role="button" tabindex="0">
<i class="fa fa-bars">
</i>
<span class="sr-only">
Cardápio
</span>
</div>
<!-- Main Cardápio -->
<div class="inner-nav desktop-nav">
<ul class="clearlist scroll-nav local-scroll">
<li class="active">
<a href="#home">
Lar
</a>
</li>
<li>
<a href="#about">
Sobre
</a>
</li>
<li>
<a href="#features">
Características
</a>
</li>
<li>
<a href="#pricing">
Preços
</a>
</li>
<li>
<a href="#contact">
Contato
</a>
</li>
<!-- Languages -->
<li>
<a href="#" class="mn-has-sub"><i class="fa-solid fa-earth-americas"></i>Portuguese <i class="fa fa-angle-down"></i></a>
<ul class="mn-sub">
<li><a href="index.html">English</a></li>
<li><a href="index-es.html">Español</a></li>
<li><a href="index-fr.html">Français</a></li>
<li><a href="index-pt.html">Português</a></li>
<li><a href="index-ar.html">العربية</a></li>
<li><a href="index-ru.html">Русский</a></li>
<li><a href="index-de.html">Deutsch</a></li>
<li><a href="index-uk.html">Українська</a></li>
<li><a href="index-hi.html">हिन्दी</a></li>
<li><a href="index-ur.html">اردو</a></li>
<li><a href="index-yo.html">Yorùbá</a></li>
<li><a href="index-id.html">Bahasa Indonesia</a></li>
<li><a href="index-it.html">Italiano</a></li>
<li><a href="index-ja.html">日本語</a></li>
<li><a href="index-sw.html">Kiswahili</a></li>
<li><a href="index-pl.html">Polski</a></li>
<li><a href="index-vi.html">Tiếng Việt</a></li>
<li><a href="index-ro.html">Română</a></li>
<li><a href="index-zh-hant.html">繁體中文</a></li>
<li><a href="index-zh.html">简体中文</a></li>
<li><a href="index-hr.html">Hrvatski</a></li>
<li><a href="index-fa.html">فارسی</a></li>
<li><a href="index-nl.html">Nederlands</a></li>
<li><a href="index-ko.html">한국어</a></li>
<li><a href="index-sv.html">Svenska</a></li>
<li><a href="index-hu.html">Magyar</a></li>
<li><a href="index-sq.html">Shqip</a></li>
</ul>
</li>
<li>
<a href="https://app.conferencecaptioning.com">
<span class="btn btn-mod btn-w btn-circle">
<i class="fa fa-download">
</i>
Tente agora
</span>
</a>
</li>
</ul>
</div>
<!-- End Main Cardápio -->
</div>
</nav>
<!-- End Navigation panel -->
<main id="main">
<!-- Lar Section -->
<div class="home-section relative bg-dark light-content" id="home">
<!-- Fullwidth Slider -->
<div class="fullwidth-gallery-wrapper">
<div class="fullwidth-gallery">
<!-- Slide Item -->
<div class="home-section bg-scroll bg-dark-alfa-50" data-background="images/full-width-images/section-bg-22.jpg">
<div class="min-height-100vh">
</div>
</div>
<!-- End Slide Item -->
<!-- Slide Item -->
<div class="home-section bg-scroll bg-dark-alfa-50" data-background="images/full-width-images/section-bg-18.jpg">
<div class="min-height-100vh">
</div>
</div>
<!-- End Slide Item -->
<!-- Slide Item -->
<div class="home-section bg-scroll bg-dark-alfa-50" data-background="images/full-width-images/section-bg-15.jpg">
<div class="min-height-100vh">
</div>
</div>
<!-- End Slide Item -->
</div>
</div>
<!-- End Fullwidth Slider -->
<div class="fullwidth-galley-content">
<div class="container min-height-100vh d-flex align-items-center pt-100 pb-100">
<!-- Hero Content -->
<div class="home-content text-start">
<div class="row">
<div class="col-md-9 col-lg-7">
<h1 class="hs-line-3 mb-30 mb-xs-20 wow fadeInUpShort" data-wow-delay=".1s">
ACESSIBILIDADE PERFEITA PARA TODOS
</h1>
<h2 class="hs-line-5 mb-60 mb-xs-40 wow fadeInUpShort" data-wow-delay=".2s">
Capacite sua vida presencial
<span class="sr-only">
eventos, conferências, sermões
</span>
<span data-period="2800" data-type='[ "eventos", "conferências", "sermões"]' class="typewrite" aria-hidden="true">
<span class="wrap">
</span>
</span>
</h2>
<h3 class="hs-line-6 mb-60 mb-xs-40 wow fadeInUpShort" data-wow-delay=".2s">
Simplifique a comunicação com serviços de transcrição e tradução em tempo real, com um desempenho mais acessível e sem hardware adicional.
</h3>
<div class="local-scroll wow fadeInUpShort" data-wow-delay=".3s">
<a href="https://transitcaptioning.com/portal" class="btn btn-mod btn-w btn-medium btn-round me-md-1">
Obtenha uma demonstração
</a>
<a href="https://app.conferencecaptioning.com" class="btn btn-mod btn-w btn-medium btn-round me-md-1">
Comece gratuitamente
</a>
</div>
<br />
<h3 class="section-more white mb-60 mb-xs-40 wow fadeInUpShort" data-wow-delay=".2s">
Obtenha uma demonstração do nosso software premium ou comece com ferramentas gratuitas
</h3>
</div>
</div>
</div>
<!-- End Hero Content -->
<!-- Hero Content -->
<!-- <div class="home-content">
<h1 class="hs-line-3 mb-40 mb-xs-20 wow fadeInUpShort" data-wow-delay=".1s">Rhythm Template</h1>
<h2 class="hs-line-2 mb-70 mb-xs-40 wow fadeInUpShort" data-wow-delay=".2s">Branding, Design and Engineering</h2>
<div class="local-scroll mb-20 wow fadeInUpShort" data-wow-delay=".3s">
<a href="#about" class="btn btn-mod btn-border-w btn-large btn-round mx-md-1">Learn More</a>
<a href="pages-services-1-dark.html" class="btn btn-mod btn-w btn-large btn-round mx-md-1">Começar Project</a>
</div>
</div> -->
<!-- End Hero Content -->
<!-- Scroll Down -->
<div class="local-scroll scroll-down-wrap wow fadeInUpShort" data-wow-offset="0">
<a href="#about" class="scroll-down">
<i class="scroll-down-icon">
</i>
<span class="sr-only">
Role para a próxima seção
</span>
</a>
</div>
<!-- End Scroll Down -->
</div>
</div>
</div>
<!-- End Lar Section -->
<!-- Process Section -->
<section class="page-section bg-dark light-content">
<div class="container relative">
<!-- Grid -->
<div class="row">
<!-- Text Item -->
<div class="col-md-12 col-lg-3">
<div class="align-left">
<h2 class="work-process-heading mt-0">
Valores
</h2>
<p class="work-process-description">
FUTURO DA ACESSIBILIDADE SURDA
</p>
</div>
</div>
<!-- End Text Item -->
<!-- Item -->
<div class="col-md-4 col-lg-3">
<div class="work-process-item text-center pt-20">
<div class="work-process-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd">
<path d="M15.551 14.703c.474 1.372 2.049 2.459 3.801 1.868l.021-.007c1.565-.544 2.391-2.242 1.854-3.807-.187-.546-.425-1.137-.695-1.757h-5.967c.299 1.366.625 2.647.986 3.703m2.264-9.232l-4.051 1.388c.183 1.037.379 2.103.59 3.141h5.726c-.655-1.404-1.445-2.94-2.265-4.529m.492-1.226c1.524 2.958 3.086 5.915 3.866 8.187.598 1.744-.045 3.895-2.028 4.874l1.211 3.529c.291.812 1.322.926 2.392.808l.252.735-4.728 1.622-.272-.788c.903-.479 1.688-1.215 1.41-2.054l-1.208-3.52c-2.162.439-3.994-.861-4.596-2.61-.791-2.304-1.405-5.566-1.976-8.837l5.677-1.946zm-8.872 6.755h-5.967c-.27.62-.508 1.211-.695 1.757-.536 1.565.289 3.263 1.854 3.807l.021.007c1.753.591 3.328-.496 3.801-1.868.362-1.056.688-2.337.986-3.703m-5.515-1h5.726c.211-1.038.407-2.104.591-3.141l-4.051-1.388c-.821 1.589-1.611 3.125-2.266 4.529m7.45-3.809c-.571 3.271-1.185 6.533-1.976 8.837-.602 1.749-2.434 3.049-4.596 2.61l-1.208 3.52c-.278.839.507 1.575 1.41 2.054l-.271.788-4.729-1.622.252-.735c1.07.118 2.102.004 2.392-.808l1.211-3.529c-1.983-.979-2.625-3.13-2.028-4.874.78-2.272 2.342-5.229 3.867-8.187l5.676 1.946zm7.13 7.811c.414 0 .75.336.75.75 0 .413-.336.75-.75.75s-.75-.337-.75-.75c0-.414.336-.75.75-.75m-14.5.248c0 .414.336.75.75.75s.75-.336.75-.75c0-.413-.336-.75-.75-.75s-.75.337-.75.75m3.25-2.25c.414 0 .75.337.75.75 0 .414-.336.75-.75.75s-.75-.336-.75-.75c0-.413.336-.75.75-.75m10.5-.499c.414 0 .75.336.75.751 0 .413-.336.75-.75.75s-.75-.337-.75-.75c0-.415.336-.751.75-.751m-5.249-7.977v-3.023c0-.277-.223-.5-.5-.5-.275 0-.499.223-.499.5v3.023c0 .276.224.5.499.5.277 0 .5-.224.5-.5m1.932.462l1.641-2.79c.142-.238.062-.545-.176-.685-.239-.139-.544-.062-.684.177l-1.643 2.79c-.14.238-.06.545.176.685.08.047.167.069.254.069.172 0 .339-.088.432-.246m-4.552.246c-.171 0-.337-.088-.432-.246l-1.642-2.79c-.14-.238-.061-.545.177-.685.237-.14.544-.061.685.177l1.643 2.79c.139.238.061.545-.178.685-.08.047-.166.069-.253.069">
</path>
</svg>
</div>
<h3 class="work-process-title">
Garantindo que ninguém fique para trás
</h3>
</div>
</div>
<!-- End Item -->
<!-- Item -->
<div class="col-md-4 col-lg-3">
<div class="work-process-item text-center pt-20">
<div class="work-process-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd">
<path d="M6 3.447h-1v-1.447h19v16h-7.731l2.731 4h-1.311l-2.736-4h-1.953l-2.736 4h-1.264l2.732-4h-2.732v-1h8v-1h3v1h3v-14h-17v.447zm2.242 17.343c-.025.679-.576 1.21-1.256 1.21-.64 0-1.179-.497-1.254-1.156l-.406-4.034-.317 4.019c-.051.656-.604 1.171-1.257 1.171-.681 0-1.235-.531-1.262-1.21l-.262-6.456-.308.555c-.241.437-.8.638-1.265.459-.404-.156-.655-.538-.655-.951 0-.093.012-.188.039-.283l1.134-4.098c.17-.601.725-1.021 1.351-1.021h4.096c.511 0 1.012-.178 1.285-.33.723-.403 2.439-1.369 3.136-1.793.394-.243.949-.147 1.24.217.32.396.286.95-.074 1.297l-3.048 2.906c-.375.359-.595.849-.617 1.381-.061 1.397-.3 8.117-.3 8.117zm-5.718-10.795c-.18 0-.34.121-.389.294-.295 1.04-1.011 3.666-1.134 4.098l1.511-2.593c.172-.295.623-.18.636.158l.341 8.797c.01.278.5.287.523.002 0 0 .269-3.35.308-3.944.041-.599.449-1.017.992-1.017.547.002.968.415 1.029 1.004.036.349.327 3.419.385 3.938.043.378.505.326.517.022 0 0 .239-6.725.3-8.124.033-.791.362-1.523.925-2.061l3.045-2.904c-.661.492-2.393 1.468-3.121 1.873-.396.221-1.07.457-1.772.457h-4.096zm16.476 1.005h-5v-1h5v1zm2-2h-7v-1h7v1zm-15.727-4.994c-1.278 0-2.315 1.038-2.315 2.316 0 1.278 1.037 2.316 2.315 2.316s2.316-1.038 2.316-2.316c0-1.278-1.038-2.316-2.316-2.316zm0 1c.726 0 1.316.59 1.316 1.316 0 .726-.59 1.316-1.316 1.316-.725 0-1.315-.59-1.315-1.316 0-.726.59-1.316 1.315-1.316zm15.727 1.994h-7v-1h7v1z">
</path>
</svg>
</div>
<h3 class="work-process-title">
Promovendo a Inclusividade
</h3>
</div>
</div>
<!-- End Item -->
<!-- Item -->
<div class="col-md-4 col-lg-3">
<div class="work-process-item text-center pt-20">
<div class="work-process-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd">
<path d="M20 15c0 .552-.448 1-1 1s-1-.448-1-1 .448-1 1-1 1 .448 1 1m-3 0c0 .552-.448 1-1 1s-1-.448-1-1 .448-1 1-1 1 .448 1 1m-3 0c0 .552-.448 1-1 1s-1-.448-1-1 .448-1 1-1 1 .448 1 1m5.415 4.946c-1 .256-1.989.482-3.324.482-3.465 0-7.091-2.065-7.091-5.423 0-3.128 3.14-5.672 7-5.672 3.844 0 7 2.542 7 5.672 0 1.591-.646 2.527-1.481 3.527l.839 2.686-2.943-1.272zm-13.373-3.375l-4.389 1.896 1.256-4.012c-1.121-1.341-1.909-2.665-1.909-4.699 0-4.277 4.262-7.756 9.5-7.756 5.018 0 9.128 3.194 9.467 7.222-1.19-.566-2.551-.889-3.967-.889-4.199 0-8 2.797-8 6.672 0 .712.147 1.4.411 2.049-.953-.126-1.546-.272-2.369-.483m17.958-1.566c0-2.172-1.199-4.015-3.002-5.21l.002-.039c0-5.086-4.988-8.756-10.5-8.756-5.546 0-10.5 3.698-10.5 8.756 0 1.794.646 3.556 1.791 4.922l-1.744 5.572 6.078-2.625c.982.253 1.932.407 2.85.489 1.317 1.953 3.876 3.314 7.116 3.314 1.019 0 2.105-.135 3.242-.428l4.631 2-1.328-4.245c.871-1.042 1.364-2.384 1.364-3.75">
</path>
</svg>
</div>
<h3 class="work-process-title">
Quebrando barreiras de comunicação
</h3>
</div>
</div>
<!-- End Item -->
</div>
<!-- End Grid -->
</div>
</section>
<!-- End Process Section -->
<!-- Divider -->
<hr class="mt-0 mb-0 white" />
<!-- End Divider -->
<!-- Sobre Section -->
<section class="page-section bg-dark light-content" id="about">
<div class="container relative">
<div class="mb-140 mb-sm-70">
<div class="row section-text">
<div class="col-md-12 col-lg-4 mb-md-50 mb-xs-30">
<div class="lead-alt wow linesAnimIn" data-splitting="lines">
Eventos presenciais precisam de acessibilidade
</div>
</div>
<div class="col-md-6 col-lg-4 mb-sm-50 mb-xs-30 wow linesAnimIn" data-splitting="lines">
10% das pessoas são surdas ou com deficiência auditiva. Só porque não podem reclamar da falta de acessibilidade não significa que não existam. As exclusões podem levar a sentimentos de frustração e desconexão da conversa.
</div>
<div class="col-md-6 col-lg-4 mb-sm-50 mb-xs-30 wow linesAnimIn" data-splitting="lines">
A legendagem de conferências visa reduzir as desigualdades, tornando a inclusão e o envolvimento fáceis de implementar e acessar. Faça da acessibilidade um acéfalo, não uma reflexão tardia
</div>
</div>
</div>
<!-- <div class="row"> -->
<!-- Team item -->
<!-- <div class="col-md-4 mb-xs-30">
<div class="team-item-wrap wow fadeInUp" data-wow-delay=".1s" data-wow-duration="1.2s">
<div class="team-item-decoration" style="background-image: url(images/team/team-decoration-1.jpg);"></div>
<div class="team-item">
<div class="team-item-image">
<img src="images/team/team-1.jpg" alt="" />
<div class="team-item-detail">
<p class="team-item-detail-title">
Hello & Welcome!
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit lacus, a iaculis diam.
</p>
<div class="team-social-links">
<a href="#" target="_blank"><i class="fab fa-facebook"></i><span class="sr-only">perfil do Facebook</span></a>
<a href="#" target="_blank"><i class="fab fa-twitter"></i><span class="sr-only">Perfil do Twitter</span></a>
<a href="#" target="_blank"><i class="fab fa-pinterest"></i><span class="sr-only">Pinterest profile</span></a>
</div>
</div>
</div>
<div class="team-item-descr">
<div class="team-item-name">
Tomas Maller
</div>
<div class="team-item-role">
Art director
</div>
</div>
</div>
</div>
</div> -->
<!-- End Team item -->
<!-- Team item -->
<!-- <div class="col-md-4 mb-xs-30">
<div class="team-item-wrap wow fadeInUp" data-wow-delay=".2s" data-wow-duration="1.2s">
<div class="team-item-decoration" style="background-image: url(images/team/team-decoration-2.jpg);"></div>
<div class="team-item">
<div class="team-item-image">
<img src="images/team/team-2.jpg" alt="" />
<div class="team-item-detail">
<p class="team-item-detail-title">
Nice to meet!
</p>
<p>
Curabitur augue, nec finibus mauris pretium eu. Duis placerat ex gravida nibh tristique porta.
</p>
<div class="team-social-links">
<a href="#" target="_blank"><i class="fab fa-facebook"></i><span class="sr-only">perfil do Facebook</span></a>
<a href="#" target="_blank"><i class="fab fa-twitter"></i><span class="sr-only">Perfil do Twitter</span></a>
<a href="#" target="_blank"><i class="fab fa-pinterest"></i><span class="sr-only">Pinterest profile</span></a>
</div>
</div>
</div>
<div class="team-item-descr">
<div class="team-item-name">
Steeve Anders
</div>
<div class="team-item-role">
Product designer
</div>
</div>
</div>
</div>
</div> -->
<!-- End Team item -->
<!-- Team item -->
<!-- <div class="col-md-4 mb-xs-30">
<div class="team-item-wrap wow fadeInUp" data-wow-delay=".3s" data-wow-duration="1.2s">
<div class="team-item-decoration" style="background-image: url(images/team/team-decoration-3.jpg);"></div>
<div class="team-item">
<div class="team-item-image">
<img src="images/team/team-3.jpg" alt="" />
<div class="team-item-detail">
<p class="team-item-detail-title">
Whats Up!
</p>
<p>
Adipiscing elit curabitur eu adipiscing lacus eu adipiscing lacus, a iaculis diam.
</p>
<div class="team-social-links">
<a href="#" target="_blank"><i class="fab fa-facebook"></i><span class="sr-only">perfil do Facebook</span></a>
<a href="#" target="_blank"><i class="fab fa-twitter"></i><span class="sr-only">Perfil do Twitter</span></a>
<a href="#" target="_blank"><i class="fab fa-pinterest"></i><span class="sr-only">Pinterest profile</span></a>
</div>
</div>
</div>
<div class="team-item-descr">
<div class="team-item-name">
Adam Johnson
</div>
<div class="team-item-role">
Developer
</div>
</div>
</div>
</div>
</div> -->
<!-- End Team item -->
<!-- </div> -->
</div>
</section>
<!-- End Sobre Section -->
<!-- Divider -->
<hr class="mt-0 mb-0 white" />
<!-- End Divider -->
<!-- Características Section -->
<section class="page-section bg-dark light-content" id="features">
<div class="container relative">
<div class="text-center mb-80 mb-sm-50">
<h2 class="section-title">
Características
</h2>
<p class="section-title-descr">
Oferecemos as melhores soluções de acessibilidade para eventos.
</p>
</div>
<!-- Services Grid -->
<div class="row services-grid">
<!-- Services Item -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="services-item text-center wow fadeIn" data-wow-delay="0" data-wow-duration="1.5s">
<div class="services-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd">
<!-- <path d="M13.5 20c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2zm-10.551 4c-.598 0-2.429-1.754-2.747-4.304-.424-3.414 2.124-5.593 4.413-5.87.587-1.895 2.475-4.684 6.434-4.77.758-1.982 3.409-4.507 6.84-3.186 1.647.634 3.101 2.101 3.705 3.737.231.624-.71.965-.937.347-.51-1.378-1.737-2.615-3.127-3.151-2.577-.99-4.695.731-5.422 2.298 1.107.12 2.092.455 2.755.889.909.594 1.473 1.558 1.508 2.577.031.889-.33 1.687-.991 2.187-.654.496-1.492.643-2.298.404-.966-.286-1.748-1.076-2.143-2.169-.287-.793-.384-1.847-.178-2.921-3.064.185-4.537 2.306-5.075 3.742 1.18.102 2.211.574 2.831 1.012.959.676 1.497 1.6 1.513 2.599.015.859-.363 1.664-1.011 2.155-.608.46-1.535.599-2.363.348-.961-.289-1.7-1.041-2.079-2.118-.255-.723-.375-1.776-.204-2.919-1.631.361-3.512 1.995-3.178 4.685.18 1.448 1.008 2.888 2.015 3.502.43.261.242.926-.261.926zm10.551-1c-.552 0-1-.448-1-1s.448-1 1-1 1 .448 1 1-.448 1-1 1zm8.011-6.801l2.489.459-1.744 1.833.333 2.509-2.283-1.092-2.283 1.092.333-2.509-1.744-1.833 2.489-.459 1.205-2.225 1.205 2.225zm-1.759.897l-1.143.21.801.843-.153 1.152 1.049-.501 1.049.501-.153-1.152.801-.843-1.143-.21-.554-1.022-.554 1.022zm-14.345-2.3c-.202 1.024-.128 1.993.113 2.678.347.984.966 1.355 1.424 1.492.604.183 1.175.036 1.472-.187.388-.294.624-.808.614-1.34-.011-.673-.398-1.313-1.09-1.801-.545-.385-1.479-.803-2.533-.842zm6.373-4.716c-.226 1.018-.11 1.99.099 2.569.287.79.828 1.356 1.486 1.55.501.148 1.014.06 1.411-.242.398-.301.615-.795.596-1.355-.025-.705-.409-1.353-1.056-1.775-.511-.334-1.448-.657-2.536-.747zm-5.812-7.369l3.032.558-2.124 2.234.405 3.057-2.781-1.331-2.781 1.331.405-3.057-2.124-2.234 3.032-.558 1.468-2.711 1.468 2.711zm-2.285.897l-1.686.31 1.182 1.243-.226 1.7 1.547-.74 1.547.74-.226-1.7 1.182-1.243-1.686-.31-.817-1.508-.817 1.508zm17.817-3.608c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5zm0 4c-.828 0-1.5-.672-1.5-1.5s.672-1.5 1.5-1.5 1.5.672 1.5 1.5-.672 1.5-1.5 1.5z"/> -->
<path d="M5 22h4v-3h-9v-18h24v18h-10v3h4v1h-13v-1zm5-3v3h3v-3h-3zm13-17h-22v16h22v-16z">
</path>
</svg>
</div>
<h3 class="services-title">
Legendas
</h3>
<div class="services-descr">
A maneira mais rápida de adicionar legendas ao vivo a qualquer evento. Em 15 segundos, crie seu stream e faça com que os participantes participem do stream de legenda do evento
</div>
<!-- <div class="services-more">
<a href="#" class="text-link">Learn More</a>
</div> -->
</div>
</div>
<!-- End Services Item -->
<!-- Services Item -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="services-item text-center wow fadeIn" data-wow-delay=".1s" data-wow-duration="1.5s">
<div class="services-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd">
<!-- <path d="M5 22h4v-3h-9v-18h24v18h-10v3h4v1h-13v-1zm5-3v3h3v-3h-3zm13-17h-22v16h22v-16z"/> -->
<path d="M15 7h4v5h5v6h-5v5h-19v-21h15v5zm-5 11h-9v4h9v-4zm8 0h-7v4h7v-4zm-11-5h-6v4h6v-4zm9 0h-8v4h8v-4zm7 0h-6v4h6v-4zm-12-5v4h7v-4h-7zm-1 0h-9v4h9v-4zm-3-5h-6v4h6v-4zm7 0h-6v4h6v-4z">
</path>
</svg>
</div>
<h3 class="services-title">
Personalizações
</h3>
<div class="services-descr">
Crie uma página de streaming personalizada na qual os participantes possam participar sem baixar nenhum aplicativo usando apenas seu código QR
</div>
<!-- <div class="services-more">
<a href="#" class="text-link">Learn More</a>
</div> -->
</div>
</div>
<!-- End Services Item -->
<!-- Services Item -->
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="services-item text-center wow fadeIn" data-wow-delay=".2s" data-wow-duration="1.5s">
<div class="services-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd">
<!-- <path d="M24 23h-20c-2.208 0-4-1.792-4-4v-15.694c.313-1.071 1.285-2.306 3-2.306 1.855 0 2.769 1.342 2.995 2.312l.005 1.688h18v18zm-1-17h-17v13s-.665-1-2-1c-1.104 0-2 .896-2 2s.896 2 2 2h19v-16zm-18-2.68c-.427-.971-1.327-1.325-2-1.32-.661.005-1.568.3-2 1.32v16.178c.394-1.993 2.245-2.881 4-2.401v-13.777zm15 15.68h-12v-10h12v10zm-8-9h-3v8h10v-4h-2v3h-1v-3h-3v3h-1v-7zm7 0h-6v3h6v-3z"/> -->
<path d="M9.484 15.696l-.711-.696-2.552 2.607-1.539-1.452-.698.709 2.25 2.136 3.25-3.304zm0-5l-.711-.696-2.552 2.607-1.539-1.452-.698.709 2.25 2.136 3.25-3.304zm0-5l-.711-.696-2.552 2.607-1.539-1.452-.698.709 2.25 2.136 3.25-3.304zm10.516 11.304h-8v1h8v-1zm0-5h-8v1h8v-1zm0-5h-8v1h8v-1zm4-5h-24v20h24v-20zm-1 19h-22v-18h22v18z">
</path>
</svg>
</div>
<h3 class="services-title">
Traduções
</h3>
<div class="services-descr">
Traduza com precisão em tempo real para mais de 25 idiomas, juntamente com amplificação de voz individual para deficientes auditivos
</div>
<!-- <div class="services-more">
<a href="#" class="text-link">Learn More</a>
</div> -->
</div>
</div>
<!-- End Services Item -->
<!-- Services Item -->
<!-- <div class="col-sm-6 col-md-4 col-lg-4">
<div class="services-item text-center wow fadeIn" data-wow-delay=".0s" data-wow-duration="1.5s">
<div class="services-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd">
<path d="M9.484 15.696l-.711-.696-2.552 2.607-1.539-1.452-.698.709 2.25 2.136 3.25-3.304zm0-5l-.711-.696-2.552 2.607-1.539-1.452-.698.709 2.25 2.136 3.25-3.304zm0-5l-.711-.696-2.552 2.607-1.539-1.452-.698.709 2.25 2.136 3.25-3.304zm10.516 11.304h-8v1h8v-1zm0-5h-8v1h8v-1zm0-5h-8v1h8v-1zm4-5h-24v20h24v-20zm-1 19h-22v-18h22v18z"/>
</svg>
</div>
<h3 class="services-title">Research</h3>
<div class="services-descr">
Maecenas volutpat, diam enime volutpa. Cras luctus interdum sodales. Quisque quis odio dui. Sedes amet neque malesuada, lobortis commodo magna tese.
</div>
<div class="services-more">
<a href="#" class="text-link">Learn More</a>
</div>
</div>
</div> -->
<!-- End Services Item -->
<!-- Services Item -->
<!-- <div class="col-sm-6 col-md-4 col-lg-4">
<div class="services-item text-center wow fadeIn" data-wow-delay=".1s" data-wow-duration="1.5s">
<div class="services-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd">
<path d="M15 7h4v5h5v6h-5v5h-19v-21h15v5zm-5 11h-9v4h9v-4zm8 0h-7v4h7v-4zm-11-5h-6v4h6v-4zm9 0h-8v4h8v-4zm7 0h-6v4h6v-4zm-12-5v4h7v-4h-7zm-1 0h-9v4h9v-4zm-3-5h-6v4h6v-4zm7 0h-6v4h6v-4z"/>
</svg>
</div>
<h3 class="services-title">Development</h3>
<div class="services-descr">
Fusce aliquet quam eget neque ultrices elementm. Nullarec posuere felis id arcu blandit sagittis sit amet lorem nectus ultricies ullamcorper vulputate.
</div>
<div class="services-more">
<a href="#" class="text-link">Learn More</a>
</div>
</div>
</div> -->
<!-- End Services Item -->
<!-- Services Item -->
<!-- <div class="col-sm-6 col-md-4 col-lg-4">
<div class="services-item text-center wow fadeIn" data-wow-delay=".2s" data-wow-duration="1.5s">
<div class="services-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd">
<path d="M14.889 23.652c-.923.227-1.888.348-2.881.348-6.627 0-12.008-5.377-12.008-12s5.381-12 12.008-12c6.628 0 12.009 5.377 12.009 12 0 1.027-.13 2.023-.373 2.975l-.965-.34c.21-.847.321-1.732.321-2.643 0-6.066-4.929-10.992-11-10.992s-11 4.926-11 10.992c0 6.067 4.929 10.993 11 10.993.887 0 1.751-.106 2.577-.304l.312.971zm-2.889-13.652c-1.104 0-2 .896-2 2s.896 2 2 2c.28 0 .546-.057.788-.162l3.06 9.525 2.174-3.622 4.116 4.259 1.879-1.828-4.087-4.216 3.671-1.926-9.694-3.426c.06-.19.093-.393.093-.604 0-1.104-.896-2-2-2zm1.768 3.615l7.333 2.597-2.823 1.481 4.324 4.461-.445.431-4.324-4.473-1.716 2.86-2.349-7.357zm.049 6.692c-.583.126-1.188.193-1.809.193-4.691 0-8.5-3.809-8.5-8.5s3.809-8.5 8.5-8.5c4.692 0 8.5 3.809 8.5 8.5 0 .619-.066 1.222-.192 1.803l-.959-.337c.094-.474.143-.964.143-1.466 0-4.139-3.361-7.5-7.5-7.5-4.139 0-7.5 3.361-7.5 7.5 0 4.139 3.361 7.5 7.5 7.5.517 0 1.022-.052 1.51-.152l.307.959zm-1.076-3.36c-.239.035-.484.053-.733.053-2.759 0-5-2.24-5-5s2.241-5 5-5c2.76 0 5 2.24 5 5 0 .212-.013.421-.039.626l-.979-.345.01-.281c0-2.208-1.792-4-4-4s-4 1.792-4 4 1.792 4 4 4l.43-.023.311.97zm-.741-5.947c.552 0 1 .448 1 1s-.448 1-1 1-1-.448-1-1 .448-1 1-1z"/>
</svg>
</div>
<h3 class="services-title">Production</h3>
<div class="services-descr">
Verge maximus ligula semper metusere pellentesque mattis. Integer non dapibus diam, eleifend. Praesent sed nisi eleifend, fermentum orci sit lorem amet.
</div>
<div class="services-more">
<a href="#" class="text-link">Learn More</a>
</div>
</div>
</div> -->
<!-- End Services Item -->
</div>
<!-- End Services Grid -->
</div>
</section>
<!-- End Características Section -->
<!-- Depoimentos Section -->
<section class="page-section bg-dark bg-dark-alfa-50 bg-scroll light-content" data-background="images/full-width-images/section-bg-2.jpg" id="testimonials">
<div class="container relative">
<div class="row">
<div class=" col-lg-8 offset-lg-2 wow fadeInUpShort">
<div class="text-center mb-50 mb-sm-20">
<h2 class="section-title">
O que os clientes dizem
</h2>
</div>
<div class="text-slider">
<!-- Slide Item -->
<div>
<blockquote class="testimonial">
<p>
Fácil de usar e simples de integrar à nossa configuração existente.
</p>
<footer class="testimonial-author mt-50 mt-sm-20">
— Michael Goggins, gerente de TI. Michigan State University
</footer>
</blockquote>
</div>
<!-- End Slide Item -->
<!-- Slide Item -->
<div>
<blockquote class="testimonial">
<p>
Parece óbvio para todas as conferências usar esta tecnologia para tornar o conteúdo auditivo acessível a todos os participantes
</p>
<footer class="testimonial-author mt-50 mt-sm-20">
- Tom Phillips, mentor de programação. Academia de Desenvolvedores Apple Detroit
</footer>
</blockquote>
</div>
<!-- End Slide Item -->
<!-- Slide Item -->
<!-- <div>
<blockquote class="testimonial">
<p>
Phasellus luctus commodo ullamcorper a posuere rhoncus commodo elit aenean congue, risus utaliquam dapibus lorem ipsum dolor. Thanks!
</p>
<footer class="testimonial-author mt-50 mt-sm-20">
— John Doe, doodle inc.
</footer>
</blockquote>
</div> -->
<!-- End Slide Item -->
</div>
</div>
</div>
</div>
</section>
<!-- End Depoimentos Section -->
<!-- Divider -->
<hr class="mt-0 mb-0 white" />
<!-- End Divider -->
<!-- Call Action Section -->
<section class="page-section bg-dark light-content" id="demo">
<div class="container relative">
<div class="row">
<!-- Images -->
<div class="col-lg-7 mb-md-60 mb-xs-30">
<div class="call-action-2-images">
<div class="call-action-2-image-1">
<img src="images/promo-3.png" alt="Screenshot of the app on the speaker or organizer's device, containing the event QR code and transcript" class="wow scaleOutIn" data-wow-duration="1.2s" data-wow-offset="255" />
</div>
<div class="call-action-2-image-2">
<img src="images/promo-4.jpg" alt="Picture of a venue sharing the QR code of the transcript stream, telling Deaf attendees to scan it" class="wow scaleOutIn" data-wow-duration="1.2s" data-wow-offset="134" />
</div>
<div class="call-action-2-image-3">
<img src="images/promo-5.jpg" alt="Picture of an attendee's phone contianing the webpage after they scanned the QR code" class="wow scaleOutIn" data-wow-duration="1.2s" data-wow-offset="0" />
</div>
</div>
</div>
<!-- End Images -->
<!-- Text -->
<div class="col-lg-5 wow fadeInUpShort" data-wow-duration="1.2s" data-wow-offset="255">
<h2 class="section-title mb-50 mb-sm-20">
Veja como é fácil
</h2>
<dl class="call-action-2-text mb-60 mb-sm-30">
<dt>
Passo 1
</dt>
<dd>
Organizadores usam o aplicativo para capturar áudio e gerar um código QR
</dd>
<dt>
Passo 2
</dt>
<dd>
Os participantes escaneiam o código QR e tocam em Obter legendas ao vivo na página da web acessível
</dd>
<dt>
etapa 3
</dt>
<dd>
Beba uma Piña Colada. Sem estresse. Sem problemas
</dd>
</dl>
<div class="local-scroll">
<a href="https://vimeo.com/950909503" class="btn btn-mod btn-w btn-large btn-round">
30 Second Visualização
</a>
</div>
</div>
<!-- End Text -->
</div>
</div>
</section>
<!-- End Call Action Section -->
<!-- Divider -->
<hr class="mt-0 mb-0 white" />
<!-- End Divider -->
<!-- Call Action Section -->
<section class="small-section bg-dark light-content">
<div class="container relative">
<div class="row wow fadeInUpShort">
<div class="col-md-8 offset-md-2 text-center">
<h3 class="call-action-1-heading">
Apoiando surdos em todo o mundo
</h3>
<div class="call-action-1-decription mb-60 mb-sm-30">
As legendas ao vivo da conferência foram criadas pelas mesmas pessoas que criaram o premiado
<a href="https://deafassistant.com">
Aplicativo BeAware Deaf Assistant
</a>
. A ConfCap garante que as conferências sejam mais acessíveis à comunidade surda.
Com o seu apoio, podemos aumentar a conscientização juntos sobre a importância da acessibilidade dos surdos e realmente fazer isso acontecer. Juntos, vamos tornar as nossas conferências comunitárias inclusivas, capacitadoras e verdadeiramente acessíveis para todos os participantes
</div>
<div class="local-scroll">
<a href="https://app.conferencecaptioning.com" class="btn btn-mod btn-w btn-large btn-round">
Tente agora
</a>
</div>
</div>
</div>
</div>
</section>
<!-- End Call Action Section -->
<!-- Divider -->
<hr class="mt-0 mb-0 white" />
<br />
<br />
<!-- End Divider -->
<!-- Preços Section -->
<section class="page-section bg-dark light-content" id="pricing">
<div class="container">
<!-- Nav Tabs -->
<div class="align-center mb-70 mb-xxs-50 wow fadeInUpShort animated" style="visibility: visible; animation-name: fadeInUpShort;">
<ul class="nav nav-tabs tpl-minimal-tabs animate" id="myTab-3" role="tablist">
<li class="nav-item" role="presentation">
<a href="#monthly" class="nav-link" id="monthly-tab" data-bs-toggle="tab" role="tab" aria-controls="monthly" aria-selected="false">
Diário
</a>
</li>
<li class="nav-item" role="presentation">
<a href="#yearly" class="nav-link active" id="yearly-tab" data-bs-toggle="tab" role="tab" aria-controls="yearly" aria-selected="true">
Por mês
</a>
</li>
</ul>
</div>
<!-- End Nav Tabs -->
<!-- Tab panes -->
<div class="tab-content tpl-minimal-tabs-cont section-text align-center wow fadeInUpShort animated" id="myTabContent-1" style="visibility: visible; animation-name: fadeInUpShort;">
<div class="tab-pane fade" id="monthly" role="tabpanel" aria-labelledby="monthly-tab">
<!-- Preços row -->
<div class="row">
<!-- Preços Item -->
<div class="col-md-4">
<div class="pricing-item">
<div class="pricing-item-inner round">
<div class="pricing-wrap">
<!-- Icon -->
<div class="pricing-icon">
<i class="fa fa-paper-plane" aria-hidden="true">
</i>
</div>
<!-- Preços Title -->
<div class="pricing-title">
Começar
</div>
<!-- Preços Características -->
<div class="pricing-features">
<ul class="sf-list pr-list">
<li>
Transcrição ao vivo para eventos
</li>
<li>
Acesso de participante e organizador
</li>
<li>
16 streams disponíveis gratuitamente
</li>
<li>
Limite de 15 minutos por stream
</li>
<li>
Suporta mais de 20 idiomas
</li>
<li>
Configuração e uso com 3 toques em 15 segundos
</li>
</ul>
</div>
<div class="pricing-num">
LIVRE
</div>
<div class="pr-per">
</div>
<!-- Button -->
<!-- <div class="pr-button">
<a href="app/index.html" class="btn btn-mod btn-small round">Tente agora</a>
</div> -->
</div>
</div>
</div>
</div>
<!-- End Preços Item -->
<!-- Preços Item -->
<div class="col-md-4">
<div class="pricing-item main">
<div class="pricing-item-inner round">
<div class="pricing-wrap">
<!-- Icon -->
<div class="pricing-icon">
<i class="fa fa-gift" aria-hidden="true">
</i>
</div>
<!-- Preços Title -->
<div class="pricing-title">
Padrão
</div>
<!-- Preços Características -->
<div class="pricing-features">
<ul class="sf-list pr-list">
<li>
Servidores de streaming premium
</li>
<li>
Forneça um nome de evento exclusivo
</li>
<li>
Os participantes não precisam de um aplicativo
</li>
<li>
Marca personalizada para você
</li>
<li>
Sem limite de tempo de streaming
</li>
<li>
Filtragem de texto obsceno
</li>
<li>
Desconto disponível para organizações sem fins lucrativos
</li>
<li>
Teste de 3 dias e suporte técnico
</li>
</ul>
</div>
<div class="pricing-num">
<sup>
$
</sup>
100
</div>
<div class="pr-per">
por dia
</div>
<!-- Button -->
<div class="pr-button">
<a href="https://app.conferencecaptioning.com" class="btn btn-mod btn-w btn-small round">
Tente agora
</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Preços Item -->
<!-- Preços Item -->
<div class="col-md-4">
<div class="pricing-item">
<div class="pricing-item-inner round">
<div class="pricing-wrap">
<!-- Icon -->
<div class="pricing-icon">
<i class="fa fa-suitcase" aria-hidden="true">
</i>
</div>
<!-- Preços Title -->
<div class="pricing-title">
Empreendimento
</div>
<!-- Preços Características -->
<div class="pricing-features">
<ul class="pr-list">
<li>
Torne os eventos secretos e seguros
</li>
<li>
Relatórios de utilização no final dos eventos
</li>
<li>
Obtenha traduções ao vivo
</li>
<li>
Acesso à API
</li>
<li>
Personalizações adicionais e preços em massa
</li>
<li>
Suporte ao cliente presencial
</li>
</ul>
</div>
<div class="pricing-num">
Contato
</div>
<div class="pr-per">
nossa equipe de vendas para um orçamento
</div>
<!-- Button -->
<div class="pr-button">
<a href="mailto:oi@deafassistant.com" class="btn btn-mod btn-w btn-small round">
Contate-nos
</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Preços Item -->
</div>
<!-- End Preços row -->
</div>
<div class="tab-pane fade show active" id="yearly" role="tabpanel" aria-labelledby="yearly-tab">
<!-- Preços row -->
<div class="row">
<!-- Preços Item -->
<div class="col-md-4">
<div class="pricing-item">
<div class="pricing-item-inner round">
<div class="pricing-wrap">
<!-- Icon -->
<div class="pricing-icon">
<i class="fa fa-paper-plane" aria-hidden="true">
</i>
</div>
<!-- Preços Title -->
<div class="pricing-title">
Começar
</div>
<!-- Preços Características -->
<div class="pricing-features">
<ul class="sf-list pr-list">
<li>
Transcrição ao vivo para eventos
</li>
<li>
Acesso de participante e organizador
</li>
<li>
16 streams disponíveis gratuitamente
</li>
<li>
Limite de 15 minutos por stream
</li>
<li>
Suporta mais de 20 idiomas