-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1053 lines (999 loc) · 61.6 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>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Projeto Front End - OAK - Saúde</title>
<link rel="stylesheet" href="./css/style.css" />
<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=DM+Sans:wght@400;700&display=swap"
rel="stylesheet"
/>
<link rel="shortcut icon" href="./assets/icon.png" type="image/x-icon" />
</head>
<body>
<nav id="navigation">
<div class="wrapper">
<a class="logo" href="index.html">
<svg
xmlns="http://www.w3.org/2000/svg"
xml:space="preserve"
width="165.261mm"
height="86.1944mm"
version="1.1"
style="
shape-rendering: geometricPrecision;
text-rendering: geometricPrecision;
image-rendering: optimizeQuality;
fill-rule: evenodd;
clip-rule: evenodd;
"
viewBox="0 0 16411.95 8559.92"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xodm="http://www.corel.com/coreldraw/odm/2003"
>
<defs>
<style type="text/css">
.fil0 {
fill: #606062;
fill-rule: nonzero;
}
.fil1 {
fill: hwb(228 21% 51%);
fill-rule: nonzero;
}
.fil2 {
fill: url(#id0);
}
</style>
<linearGradient
id="id0"
gradientUnits="userSpaceOnUse"
x1="3886.46"
y1="6514.43"
x2="3886.46"
y2="1015.89"
>
<stop offset="0" style="stop-opacity: 1; stop-color: #28a942" />
<stop offset="1" style="stop-opacity: 1; stop-color: #96c71e" />
</linearGradient>
</defs>
<g id="Camada_x0020_1">
<metadata id="CorelCorpID_0Corel-Layer" />
<g id="_2931752569536">
<path
class="fil0"
d="M5367.52 8523.01c172.05,41.97 342.02,47.03 480.74,13.1 138.42,-33.34 229.21,-125.02 229.21,-261.05 0,-139.01 -91.68,-231.29 -273.86,-277.73l-186.94 -47.03c-33.34,-8.03 -49.7,-23.52 -49.7,-45.54 0,-32.15 47.03,-48.82 117.87,-48.82 70.55,0 152.71,7.75 239.03,24.41 62.81,13.1 101.22,-16.66 101.22,-79.48l0 -25.29c-0.89,-53.89 -27.09,-87.22 -79.48,-100.32 -324.46,-77.39 -669.76,-19.94 -669.76,240.82 0,130.09 85.44,217.6 270.89,263.74l174.73 44.65c44.65,11.31 67.27,30.36 67.27,56.56 0,37.51 -47.92,55.96 -127.39,55.96 -79.48,0.89 -167.59,-7.74 -271.18,-26.2 -63.7,-10.42 -100.31,18.46 -100.31,81.26l0 29.48c0.3,55.07 26.5,88.41 77.69,101.5zm1529.59 -879.32c-81.55,0 -174.43,9.52 -278.91,29.77 -63.4,11.9 -94.96,45.83 -94.96,102.4l0 43.46c0,62.51 37.51,93.76 100.31,80.37 87.82,-16.97 161.93,-25.6 220.87,-25.6 124.42,0 186.94,41.67 186.94,124.13l0 4.47 -193.19 0c-119.97,0 -201.53,15.77 -269.69,55.07 -67.87,39.29 -101.8,111.62 -101.8,216.41 0,104.77 33.93,176.81 101.21,214.92 66.98,38.99 148.84,54.77 270.29,54.77l219.97 0c98.53,0 170.27,-19.05 215.51,-58.34 45.25,-38.99 67.87,-105.68 67.87,-200.92l0 -286.36c0,-123.23 -46.14,-217.3 -126.21,-272.66 -80.36,-54.77 -185.74,-81.86 -318.21,-81.86zm-35.12 709.05c-44.66,0 -74.72,-5.96 -89.61,-17.27 -14.88,-11.61 -21.73,-31.55 -21.73,-61.31 0,-29.77 6.85,-50.61 21.73,-62.22 14.89,-11.31 44.95,-16.37 90.49,-16.37l168.49 0 0 74.11c0,62.22 -14.29,83.05 -76.51,83.05l-92.86 0zm1483.75 -1091.25c-49.7,-0.89 -85.72,21.13 -108.35,64.59l-61.03 121.15c-32.44,61.62 -5.35,107.16 64.6,107.16l43.76 0c47.93,0.89 84.53,-19.35 109.84,-59.24l78.58 -124.72c38.4,-62.8 13.1,-108.94 -60.12,-108.94l-67.28 0zm42.87 890.62c0,62.22 -11.61,103.89 -33.34,126.81 -21.73,23.52 -60.13,34.83 -114.31,34.83 -55.07,0 -93.47,-11.31 -115.2,-34.83 -22.62,-23.81 -34.23,-65.48 -34.23,-126.81l0 -400.65c0,-58.34 -31.25,-91.68 -90.49,-91.68l-130.09 0c-60.13,0 -91.38,33.34 -91.38,91.68l0 393.81c0,158.06 39,267.01 120.26,328.92 80.97,61.92 185.74,85.44 340.23,85.44 154.49,0 260.16,-23.52 341.13,-85.44 80.37,-61.91 119.36,-170.86 119.36,-328.92l0 -393.81c0,-58.34 -33.04,-91.68 -91.38,-91.68l-129.18 0c-59.24,0 -91.38,33.34 -91.38,91.68l0 400.65zm1336.72 -506.63c-29.77,-0.89 -58.64,-1.79 -86.63,-1.79 -167.29,0 -286.66,28.88 -377.15,97.64 -91.38,69.65 -138.41,189.02 -138.41,359.58 0,171.76 47.02,290.52 138.41,360.18 90.49,69.66 210.75,98.53 377.15,98.53 137.23,0 237.24,-22.62 301.84,-67.27 64.59,-44.36 96.74,-120.26 96.74,-225.94l0 -882.58c0,-59.24 -31.25,-91.38 -90.49,-91.38l-130.97 0c-59.24,0 -90.49,32.15 -90.49,91.38l0 261.65zm-108.36 668.26c-67.27,0 -115.2,-15.77 -142.28,-47.33 -26.79,-31.55 -40.79,-86.62 -40.79,-165.5 0,-79.48 13.99,-134.84 41.68,-166.39 27.98,-30.37 76.8,-46.14 145.86,-46.14 29.47,0.89 64.59,3.27 103.89,8.63l0 319.4c0,37.8 -6.26,64 -19.36,77.09 -13.1,13.1 -42.86,20.24 -89,20.24zm1736.48 -314.33c0,-236.94 -151.52,-355.42 -420.31,-355.42 -313.44,0 -474.48,163.13 -474.48,458.11 0,152.4 41.97,266.71 125.32,342.62 83.64,76.8 197.65,115.2 343.8,115.2 89.31,0 185.15,-13.1 288.74,-39.3 51.5,-13.1 77.69,-46.14 77.69,-101.21l0 -33.04c0,-65.48 -39.29,-92.58 -101.8,-78.58 -77.69,16.66 -143.77,25.3 -198.24,25.3 -111.93,0 -176.82,-26.2 -207.18,-104.19l359.28 -36.62c76.5,-8.03 130.38,-26.5 161.04,-55.37 30.36,-28.88 46.14,-74.42 46.14,-137.52zm-582.24 35.13c10.42,-135.74 59.54,-185.75 161.93,-185.75 91.68,0 134.54,39.59 134.54,120.85 0,27.99 -9.52,37.81 -47.93,41.38l-248.55 23.52z"
/>
<path
class="fil1"
d="M9184.52 1815.4c-421.9,0 -902.32,49.28 -1442.78,153.98 -327.97,61.59 -491.18,237.13 -491.18,529.69l0 224.81c0,323.35 194.01,485.03 518.9,415.74 454.24,-87.77 837.65,-132.42 1142.52,-132.42 643.63,0 966.99,215.57 966.99,642.09l0 23.1 -999.32 0c-620.53,0 -1042.43,81.6 -1395.04,284.86 -351.07,203.25 -526.6,577.42 -526.6,1119.42 0,542 175.53,914.63 523.52,1111.72 346.45,201.71 769.89,283.32 1398.12,283.32l1137.9 0c509.67,0 880.76,-98.54 1114.8,-301.8 234.05,-201.71 351.07,-546.62 351.07,-1039.34l0 -1481.27c0,-637.47 -238.66,-1124.03 -652.86,-1410.43 -415.74,-283.32 -960.83,-423.45 -1646.02,-423.45zm-181.7 3667.76c-230.96,0 -386.48,-30.8 -463.47,-89.31 -76.99,-60.05 -112.41,-163.22 -112.41,-317.19 0,-153.98 35.41,-261.76 112.41,-321.81 76.98,-58.51 232.5,-84.69 468.09,-84.69l871.52 0 0 383.4c0,321.81 -73.92,429.6 -395.73,429.6l-480.41 0zm5829.96 -1435.07l1444.32 -1638.33c215.57,-275.62 58.51,-511.21 -343.37,-511.21l-680.58 0c-275.62,4.62 -474.25,95.47 -591.28,271l-1385.8 1661.43 0 -3356.72c0,-307.96 -161.68,-474.25 -468.09,-474.25l-672.89 0c-311.03,0 -472.7,166.29 -472.7,474.25l0 5527.8c0,306.42 166.29,469.63 472.7,469.63l672.89 0c306.41,0 468.09,-163.22 468.09,-469.63l0 -1701.45 1390.42 1890.84c121.64,184.78 320.27,280.24 594.36,280.24l708.3 0c397.27,0 555.86,-226.35 357.23,-511.21l-1493.58 -1912.4z"
/>
<path
class="fil2"
d="M4210.23 5217.88c691.04,0 1167.04,-542.81 1167.04,-1217.88l0 -12.84c0,-675.32 -488.63,-1230.73 -1179.7,-1230.73 -690.51,0 -1167.03,542.98 -1167.03,1218.04l0 12.69c0,675.21 489.15,1230.72 1179.69,1230.72l0 0zm-3355.74 -3445.02c199.06,0 360.48,161.5 360.48,360.65 0,199.08 -161.43,360.55 -360.48,360.55 -199.43,0 -360.88,-161.48 -360.88,-360.55 0,-199.16 161.45,-360.65 360.88,-360.65zm-493.61 1084.75c199.07,0 360.48,161.5 360.48,360.65 0,199.08 -161.42,360.55 -360.48,360.55 -199.43,0 -360.88,-161.48 -360.88,-360.55 0,-199.16 161.45,-360.65 360.88,-360.65zm784.7 2015.69c281.46,0 509.72,228.35 509.72,509.94 0,281.47 -228.25,509.82 -509.72,509.82 -282.01,0 -510.28,-228.34 -510.28,-509.82 0,-281.59 228.27,-509.94 510.28,-509.94zm-626.24 -947.7c182.37,0 329.98,147.91 329.98,330.55 0,182.48 -147.6,330.4 -329.98,330.4 -182.92,0 -330.52,-147.92 -330.52,-330.4 0,-182.64 147.6,-330.55 330.52,-330.55zm803.85 -1228.48c182.37,0 330.5,147.9 330.5,330.27 0,182.59 -148.13,330.48 -330.5,330.48 -182.39,0 -330.52,-147.89 -330.52,-330.48 0,-182.37 148.13,-330.27 330.52,-330.27zm2874.36 3769.4c-459.62,0 -904.51,-109.81 -1292.47,-325.82 -72.74,193.36 -258.81,330.99 -477.57,330.99 -281.5,0 -509.74,-228.45 -509.74,-509.92 0,-190.19 103.85,-356.12 258.27,-443.73 129.71,-92.48 214.55,-244.06 214.55,-415.26 0,-281.6 -228.76,-509.93 -510.22,-509.93 -24.81,0 -49.03,1.78 -72.75,5.19 -23.19,6.86 -46.93,12.04 -71.18,15.47l-0.51 0.08c-23.73,3.33 -48,5.23 -72.22,5.23 -282.03,0 -510.24,-228.24 -510.24,-509.83 0,-281.67 228.21,-509.92 510.24,-509.92 8.96,0 17.91,0.2 26.88,0.68l0.52 0c36.89,1.97 73.26,8.16 108.07,17.57 9.47,0.57 18.44,0.9 27.94,0.9 281.46,0 509.2,-228.35 509.2,-509.93 0,-196.62 -110.71,-367.11 -273.58,-452.27l-10.56 -5.19 -2.63 -1.29c-161.29,-85.68 -271.47,-255.45 -271.47,-450.76 0,-281.58 228.26,-509.93 510.25,-509.93 190.32,0 356.87,104.85 444.36,260.1 428.55,-290.58 943.01,-441.01 1477.52,-441.01 797.01,0 1548.14,329.52 2036.8,967.79 330.48,431.6 500.23,956.36 500.23,1498.81l0 12.77c0,532.75 -165.53,1048.43 -484.43,1476.3 -488.64,656.52 -1252.98,1003.14 -2065.26,1003.14l0 -0.21zm-2021.5 -948.49l0 0zm-440.11 -904.45l0 0zm313.62 -1964.06l0 0z"
/>
</g>
</g>
</svg>
</a>
<div class="menu">
<ul>
<li><a onclick="closeMenu()" href="#home">Início</a></li>
<li><a onclick="closeMenu()" href="#about">Sobre</a></li>
<li><a onclick="closeMenu()" href="#beneficios">Beneficios</a></li>
<li><a onclick="closeMenu()" href="#consulta">Consultas</a></li>
<li><a onclick="closeMenu()" href="#compliance">Compliance</a></li>
<li><a onclick="closeMenu()" href="#address">Contato</a></li>
</ul>
<a
class="button"
onclick="closeMenu()"
target="_blank"
href=" https://oak-telemedicina.vithadoc.com/medicos/index.php"
>Acessar Teleconsulta</a
>
<ul class="social-links">
<li>
<a target="_blank" href="https://www.instagram.com/">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M17 1.99997H7C4.23858 1.99997 2 4.23855 2 6.99997V17C2 19.7614 4.23858 22 7 22H17C19.7614 22 22 19.7614 22 17V6.99997C22 4.23855 19.7614 1.99997 17 1.99997Z"
stroke="#FFFAF1"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M15.9997 11.3701C16.1231 12.2023 15.981 13.0523 15.5935 13.7991C15.206 14.5459 14.5929 15.1515 13.8413 15.5297C13.0898 15.908 12.2382 16.0397 11.4075 15.906C10.5768 15.7723 9.80947 15.3801 9.21455 14.7852C8.61962 14.1903 8.22744 13.4229 8.09377 12.5923C7.96011 11.7616 8.09177 10.91 8.47003 10.1584C8.84829 9.40691 9.45389 8.7938 10.2007 8.4063C10.9475 8.0188 11.7975 7.87665 12.6297 8.00006C13.4786 8.12594 14.2646 8.52152 14.8714 9.12836C15.4782 9.73521 15.8738 10.5211 15.9997 11.3701Z"
stroke="#FFFAF1"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M17.5 6.49997H17.51"
stroke="#FFFAF1"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</a>
</li>
<li>
<a target="_blank" href="https://www.facebook.com/">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M18 1.99997H15C13.6739 1.99997 12.4021 2.52675 11.4645 3.46444C10.5268 4.40212 10 5.67389 10 6.99997V9.99997H7V14H10V22H14V14H17L18 9.99997H14V6.99997C14 6.73475 14.1054 6.4804 14.2929 6.29286C14.4804 6.10533 14.7348 5.99997 15 5.99997H18V1.99997Z"
stroke="#FFFAF1"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</a>
</li>
<li>
<a target="_blank" href="https://www.youtube.com/">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M22.5396 6.42C22.4208 5.94541 22.1789 5.51057 21.8382 5.15941C21.4976 4.80824 21.0703 4.55318 20.5996 4.42C18.8796 4 11.9996 4 11.9996 4C11.9996 4 5.1196 4 3.3996 4.46C2.92884 4.59318 2.50157 4.84824 2.16094 5.19941C1.82031 5.55057 1.57838 5.98541 1.4596 6.46C1.14481 8.20556 0.990831 9.97631 0.999595 11.75C0.988374 13.537 1.14236 15.3213 1.4596 17.08C1.59055 17.5398 1.8379 17.9581 2.17774 18.2945C2.51758 18.6308 2.93842 18.8738 3.3996 19C5.1196 19.46 11.9996 19.46 11.9996 19.46C11.9996 19.46 18.8796 19.46 20.5996 19C21.0703 18.8668 21.4976 18.6118 21.8382 18.2606C22.1789 17.9094 22.4208 17.4746 22.5396 17C22.852 15.2676 23.0059 13.5103 22.9996 11.75C23.0108 9.96295 22.8568 8.1787 22.5396 6.42Z"
stroke="#FFFAF1"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M9.75 15.02L15.5 11.75L9.75 8.48001V15.02Z"
stroke="#FFFAF1"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</a>
</li>
</ul>
</div>
<button
arial-expanded="false"
aria-label="Abrir menu"
onclick="openMenu()"
class="open-menu"
>
<svg
width="40"
height="40"
viewBox="0 0 40 40"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M10 20H30"
stroke="#00856F"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M10 12H30"
stroke="#00856F"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M18 28L30 28"
stroke="#00856F"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</button>
<button
arial-expanded="true"
aria-label="Fechar menu"
onclick="closeMenu()"
class="close-menu"
>
<svg
width="40"
height="40"
viewBox="0 0 40 40"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M30 10L10 30M10 10L30 30"
stroke="#FFFAF1"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</button>
</div>
</nav>
<section id="home">
<div class="wrapper">
<div class="col-a">
<header>
<h1>Assistência médica simplificada para todos</h1>
</header>
<div class="content">
<p>
Os médicos da OAK - Saúde vão além dos sintomas para tratar a
causa raiz de sua doença e proporcionar uma cura a longo prazo.
</p>
<a class="button" href="contacts.html"> SAIBA COMO... </a>
</div>
</div>
<div class="col-b">
<img
src="./assets/online.png"
alt="Duas mulheres em uma consulta online"
/>
</div>
<div class="stats">
<div class="stat">
<h3>Missão</h3>
<p>
Atendimento de médico especialista com qualidade , vencendo
barreiras geográficas, através da telemedicina.
</p>
</div>
<div class="stat">
<h3>Visão</h3>
<p>
Sermos reconhecidos no ecossistema da saúde por oferecer
atendimento de qualidade, em todas as especialidades médicas, com
assertividade e resolutividade.
</p>
</div>
<div class="stat">
<h3>Valores</h3>
<p>Ética, Resolutividade, Humanização, Qualidade.</p>
</div>
</div>
</div>
</section>
<section id="about">
<div class="wrapper">
<div class="col-a">
<header>
<h4>Sobre nós</h4>
<h2>Entenda quem somos e porque existimos</h2>
</header>
<div class="content">
<p>
Empresa médica de especialistas experientes, que trabalham juntos
em telemedicina desde 2020, com o início da pandemia de covid-19.
</p>
</div>
</div>
<div class="col-b">
<img
src="./assets/doutora-feliz-segurando-prancheta.png"
alt="Doutora feliz segurando uma prancheta"
/>
</div>
</div>
</section>
<section id="beneficios">
<div class="wrapper">
<div class="col-a">
<header>
<h2>Por que a telemedicina reduz custos?</h2>
</header>
<div class="content">
<ul>
<li>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="12" cy="12" r="12" fill="#DCE9E2" />
<path
d="M17.091 8.18182L10.091 15.1818L6.90918 12"
stroke="#00856F"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p>Aumento da resolutividade com acesso ao especialista;</p>
</li>
<li>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="12" cy="12" r="12" fill="#DCE9E2" />
<path
d="M17.091 8.18182L10.091 15.1818L6.90918 12"
stroke="#00856F"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p>Melhor controle do doente crônico;</p>
</li>
<li>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="12" cy="12" r="12" fill="#DCE9E2" />
<path
d="M17.091 8.18182L10.091 15.1818L6.90918 12"
stroke="#00856F"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p>
Possibilidade de atendimento de acamados em domicílio e
hospitais;
</p>
</li>
<li>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="12" cy="12" r="12" fill="#DCE9E2" />
<path
d="M17.091 8.18182L10.091 15.1818L6.90918 12"
stroke="#00856F"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p>Redução de custos com transporte de pacientes;</p>
</li>
<li>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="12" cy="12" r="12" fill="#DCE9E2" />
<path
d="M17.091 8.18182L10.091 15.1818L6.90918 12"
stroke="#00856F"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p>Possibilidade de educação continuada de equipes;</p>
</li>
</ul>
</div>
</div>
<div class="col-b">
<img
src="./assets/mulher-com-blusa-branca-mexendo-no-celular.png"
alt="Mulher com blusa branca mexendo no celular e sorrindo"
/>
</div>
</div>
</section>
<section id="consulta">
<div class="wrapper">
<div class="col-a">
<header>
<h2>Consulta especializada</h2>
</header>
<div class="content">
<ul>
<li>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="12" cy="12" r="12" fill="#DCE9E2" />
<path
d="M17.091 8.18182L10.091 15.1818L6.90918 12"
stroke="#00856F"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p>
Decisões clínicas sendo tomadas de modo mais seguro, no tempo
adequado;
</p>
</li>
<li>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="12" cy="12" r="12" fill="#DCE9E2" />
<path
d="M17.091 8.18182L10.091 15.1818L6.90918 12"
stroke="#00856F"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p>Garantia de equidade no cuidado;</p>
</li>
<li>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="12" cy="12" r="12" fill="#DCE9E2" />
<path
d="M17.091 8.18182L10.091 15.1818L6.90918 12"
stroke="#00856F"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p>Melhoria dos resultados assistenciais;</p>
</li>
<li>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="12" cy="12" r="12" fill="#DCE9E2" />
<path
d="M17.091 8.18182L10.091 15.1818L6.90918 12"
stroke="#00856F"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<p>
Melhor controle dos pacientes crônicos com redução de
mortalidade evitável;
</p>
</li>
</ul>
</div>
</div>
<div class="col-b">
<img
src="./assets/consulta.png"
alt="Medico com brancheta na mão atentendo dois pacientes"
/>
</div>
</div>
</section>
<section id="compliance">
<div class="wrapper">
<header>
<h4>Compliance</h4>
<h2>Mas o que é Compliance?</h2>
<p>
É um sistema de controle que permite à empresa estar em conformidade
com atos, normas e leis. Ele possibilita a criação de boas práticas
para adequação dentro da empresa.
</p>
</header>
<div class="content">
<div class="cards">
<div class="card">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="12" cy="12" r="12" fill="#DCE9E2" />
<path
d="M17.091 8.18182L10.091 15.1818L6.90918 12"
stroke="#00856F"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<h3>Oferecemos</h3>
<p>Implementação de práticas de Compliance.</p>
</div>
<div class="card">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="12" cy="12" r="12" fill="#DCE9E2" />
<path
d="M17.091 8.18182L10.091 15.1818L6.90918 12"
stroke="#00856F"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<h3>Nós temos</h3>
<p>
Equipe multidisciplinar com especialistas nas áreas do direito,
conformidade e TI.
</p>
</div>
<div class="card">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="12" cy="12" r="12" fill="#DCE9E2" />
<path
d="M17.091 8.18182L10.091 15.1818L6.90918 12"
stroke="#00856F"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<h3>Desenvolvemos</h3>
<p>
Documentos necessários, para deixar sua empresa em conformidade
com a LGPD.
</p>
</div>
<div class="card">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="12" cy="12" r="12" fill="#DCE9E2" />
<path
d="M17.091 8.18182L10.091 15.1818L6.90918 12"
stroke="#00856F"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<h3>Expertise</h3>
<p>
Implementação da Lei Geral de Proteção de Dados voltada à área
trabalhista.
</p>
</div>
</div>
</div>
</div>
<div class="line"></div>
</section>
<section id="address">
<div class="wrapper">
<div class="col-a">
<ul>
<li>
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="56"
zoomAndPan="magnify"
viewBox="0 0 810 809.999993"
height="56"
preserveAspectRatio="xMidYMid meet"
version="1.0"
>
<defs>
<clipPath id="2627574b2c">
<path
d="M 0 0 L 809.351562 0 L 809.351562 809.351562 L 0 809.351562 Z M 0 0 "
clip-rule="nonzero"
/>
</clipPath>
<clipPath id="0459f06d34">
<path
d="M 268.128906 210.957031 L 541.878906 210.957031 L 541.878906 598.707031 L 268.128906 598.707031 Z M 268.128906 210.957031 "
clip-rule="nonzero"
/>
</clipPath>
</defs>
<g clip-path="url(#2627574b2c)">
<path
fill="#36447c"
d="M 404.675781 809.351562 C 296.632812 809.351562 194.898438 767.300781 118.554688 690.796875 C 42.050781 614.453125 0 512.71875 0 404.675781 C 0 296.632812 42.050781 194.898438 118.554688 118.554688 C 194.898438 42.050781 296.632812 0 404.675781 0 C 512.71875 0 614.453125 42.050781 690.796875 118.554688 C 767.300781 195.058594 809.351562 296.632812 809.351562 404.675781 C 809.351562 512.71875 767.300781 614.453125 690.796875 690.796875 C 614.453125 767.300781 512.71875 809.351562 404.675781 809.351562 Z M 404.675781 24.261719 C 303.101562 24.261719 207.515625 63.886719 135.699219 135.699219 C 63.886719 207.515625 24.261719 303.101562 24.261719 404.675781 C 24.261719 506.25 63.886719 601.839844 135.699219 673.652344 C 207.515625 745.464844 303.101562 785.089844 404.675781 785.089844 C 506.25 785.089844 601.839844 745.464844 673.652344 673.652344 C 745.464844 601.839844 785.089844 506.25 785.089844 404.675781 C 785.089844 303.101562 745.464844 207.515625 673.652344 135.699219 C 601.839844 63.886719 506.25 24.261719 404.675781 24.261719 Z M 404.675781 24.261719 "
fill-opacity="1"
fill-rule="nonzero"
/>
</g>
<g clip-path="url(#0459f06d34)">
<path
fill="#36447c"
d="M 501.988281 251.972656 C 476.578125 226.28125 442.722656 211.714844 406.59375 210.996094 C 406.066406 210.957031 405.535156 210.957031 405.003906 210.957031 C 404.472656 210.957031 403.945312 210.957031 403.414062 210.996094 C 367.285156 211.714844 333.429688 226.242188 307.980469 251.972656 C 282.304688 277.964844 268.179688 312.359375 268.179688 348.871094 C 268.179688 351.21875 268.253906 353.679688 268.367188 356.136719 C 268.367188 356.25 268.367188 356.363281 268.40625 356.476562 C 268.859375 364.800781 270.109375 373.164062 272.078125 381.335938 C 281.28125 427.761719 308.398438 464.804688 337.101562 504.039062 C 355.734375 529.503906 375.011719 555.839844 391.332031 586.980469 C 391.976562 592.425781 395.992188 597.003906 401.445312 598.292969 C 402.46875 598.519531 403.527344 598.671875 404.550781 598.671875 C 404.703125 598.671875 404.851562 598.671875 405.042969 598.671875 C 406.214844 598.707031 407.429688 598.59375 408.601562 598.328125 C 414.054688 597.003906 418.03125 592.464844 418.714844 587.015625 C 435.035156 555.875 454.273438 529.582031 472.945312 504.078125 C 501.574219 464.804688 528.6875 427.761719 537.929688 381.375 C 539.9375 373.125 541.148438 364.726562 541.601562 356.363281 C 541.601562 356.289062 541.601562 356.25 541.601562 356.175781 C 541.714844 353.714844 541.792969 351.257812 541.792969 348.871094 C 541.828125 312.359375 527.667969 277.964844 501.988281 251.972656 Z M 515.09375 354.546875 C 515.09375 354.660156 515.09375 354.738281 515.09375 354.851562 C 514.714844 361.699219 513.730469 368.585938 512.0625 375.359375 C 512.027344 375.546875 511.988281 375.738281 511.949219 375.925781 C 503.921875 416.675781 479.609375 449.894531 451.472656 488.339844 C 435.832031 509.714844 419.773438 531.660156 405.042969 556.824219 C 390.3125 531.660156 374.253906 509.714844 358.613281 488.339844 C 330.4375 449.894531 306.125 416.675781 298.097656 375.925781 C 298.058594 375.738281 298.019531 375.546875 297.984375 375.359375 C 296.316406 368.585938 295.292969 361.699219 294.953125 354.851562 C 294.953125 354.773438 294.953125 354.699219 294.953125 354.625 C 294.839844 352.65625 294.800781 350.726562 294.800781 348.871094 C 294.800781 288.296875 344.109375 238.351562 404.738281 237.519531 C 404.851562 237.519531 404.929688 237.519531 405.042969 237.519531 C 405.15625 237.519531 405.230469 237.519531 405.34375 237.519531 C 465.976562 238.351562 515.28125 288.296875 515.28125 348.871094 C 515.246094 350.6875 515.167969 352.617188 515.09375 354.546875 Z M 515.09375 354.546875 "
fill-opacity="1"
fill-rule="nonzero"
/>
</g>
<path
fill="#36447c"
d="M 405.003906 290.074219 C 367.703125 290.074219 337.332031 320.417969 337.332031 357.6875 C 337.332031 394.957031 367.703125 425.300781 405.003906 425.300781 C 442.304688 425.300781 472.679688 394.957031 472.679688 357.6875 C 472.679688 320.417969 442.304688 290.074219 405.003906 290.074219 Z M 405.003906 398.703125 C 382.359375 398.703125 363.914062 380.277344 363.914062 357.652344 C 363.914062 335.023438 382.359375 316.597656 405.003906 316.597656 C 427.652344 316.597656 446.09375 335.023438 446.09375 357.652344 C 446.09375 380.277344 427.652344 398.703125 405.003906 398.703125 Z M 405.003906 398.703125 "
fill-opacity="1"
fill-rule="nonzero"
/>
</svg>
Av. Ipiranga, 40, Praia de Belas, 90160-090, Porto <br />
Alegre, RS
</li>
<li>
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="56"
zoomAndPan="magnify"
viewBox="0 0 810 809.999993"
height="56"
preserveAspectRatio="xMidYMid meet"
version="1.0"
>
<defs>
<clipPath id="b691c51610">
<path
d="M 0 0 L 809.351562 0 L 809.351562 809.351562 L 0 809.351562 Z M 0 0 "
clip-rule="nonzero"
/>
</clipPath>
<clipPath id="a06b78f2c8">
<path
d="M 197 224 L 561 224 L 561 598.890625 L 197 598.890625 Z M 197 224 "
clip-rule="nonzero"
/>
</clipPath>
</defs>
<g clip-path="url(#b691c51610)">
<path
fill="#36447c"
d="M 404.675781 809.351562 C 296.632812 809.351562 194.898438 767.300781 118.554688 690.796875 C 42.050781 614.453125 0 512.71875 0 404.675781 C 0 296.632812 42.050781 194.898438 118.554688 118.554688 C 194.898438 42.054688 296.632812 0 404.675781 0 C 512.71875 0 614.453125 42.054688 690.796875 118.554688 C 767.300781 195.058594 809.351562 296.632812 809.351562 404.675781 C 809.351562 512.71875 767.300781 614.453125 690.796875 690.796875 C 614.453125 767.300781 512.71875 809.351562 404.675781 809.351562 Z M 404.675781 24.261719 C 303.101562 24.261719 207.515625 63.886719 135.699219 135.699219 C 63.886719 207.515625 24.261719 303.101562 24.261719 404.675781 C 24.261719 506.25 63.886719 601.839844 135.699219 673.652344 C 207.515625 745.464844 303.101562 785.089844 404.675781 785.089844 C 506.25 785.089844 601.839844 745.464844 673.652344 673.652344 C 745.464844 601.839844 785.089844 506.25 785.089844 404.675781 C 785.089844 303.101562 745.464844 207.515625 673.652344 135.699219 C 601.839844 63.886719 506.25 24.261719 404.675781 24.261719 Z M 404.675781 24.261719 "
fill-opacity="1"
fill-rule="nonzero"
/>
</g>
<g clip-path="url(#a06b78f2c8)">
<path
fill="#36447c"
d="M 214.121094 557.386719 L 214.039062 557.386719 Z M 498.265625 242.167969 C 501.859375 242.167969 505.257812 243.792969 508.949219 247.027344 C 509.355469 247.40625 514.636719 252.417969 518.074219 255.6875 L 521.074219 258.519531 C 538.601562 274.898438 546.550781 304.371094 541.320312 333.628906 C 539.640625 343.078125 536.921875 352.871094 533.246094 362.722656 C 514.71875 412.445312 479.550781 455.671875 453.304688 483.191406 C 427.179688 510.890625 385.859375 548.296875 337.175781 569.445312 C 327.519531 573.636719 317.882812 576.875 308.535156 579.0625 C 279.578125 585.84375 249.695312 579.492188 232.40625 562.882812 L 229.523438 560.144531 C 226.179688 556.988281 220.957031 552.046875 220.199219 551.320312 C 209.429688 540.253906 214.8125 531.050781 236.40625 509.105469 L 241.808594 503.5625 C 255.488281 489.378906 278.4375 465.621094 297.84375 467.941406 C 303.117188 468.5625 308.625 472.410156 314.457031 476.472656 C 320.242188 480.507812 326.222656 484.675781 333.394531 486.949219 C 352.65625 493.050781 372.1875 489.039062 388.417969 475.675781 C 398.117188 467.683594 407.992188 458.335938 416.957031 448.660156 C 426.03125 439.320312 434.839844 428.972656 442.296875 418.871094 C 454.777344 401.96875 457.730469 382.265625 450.613281 363.367188 C 447.957031 356.328125 443.46875 350.585938 439.125 345.027344 C 434.75 339.425781 430.613281 334.140625 429.714844 328.90625 C 426.375 309.621094 448.871094 285.5 462.316406 271.082031 L 467.554688 265.394531 C 481.804688 249.824219 490.46875 242.167969 498.265625 242.167969 Z M 285.167969 598.890625 C 294.847656 598.890625 304.152344 597.710938 312.453125 595.769531 C 322.800781 593.355469 333.425781 589.785156 344.027344 585.183594 C 395.378906 562.882812 438.574219 523.832031 465.769531 495 C 493.09375 466.355469 529.800781 421.15625 549.339844 368.714844 C 553.378906 357.894531 556.363281 347.105469 558.230469 336.644531 C 563.183594 308.925781 559.109375 270.546875 532.804688 245.992188 L 529.898438 243.230469 C 526.238281 239.761719 520.542969 234.355469 520.308594 234.152344 C 493.996094 211.0625 470.449219 236.789062 454.882812 253.820312 L 449.75 259.382812 C 434.132812 276.125 408 304.15625 412.785156 331.832031 C 414.429688 341.300781 420.359375 348.898438 425.585938 355.59375 C 429.300781 360.339844 432.8125 364.832031 434.539062 369.417969 C 439.613281 382.871094 437.511719 396.449219 428.476562 408.679688 C 421.46875 418.164062 413.175781 427.90625 404.496094 436.851562 C 395.90625 446.121094 386.609375 454.914062 377.492188 462.4375 C 365.75 472.109375 352.296875 474.921875 338.578125 470.59375 C 333.902344 469.101562 329.238281 465.847656 324.292969 462.398438 C 317.3125 457.539062 309.421875 452.019531 299.863281 450.894531 C 271.867188 447.597656 245.335938 475.175781 229.441406 491.65625 L 224.152344 497.070312 C 207.976562 513.519531 183.523438 538.386719 207.976562 563.386719 C 208.359375 563.753906 214.097656 569.195312 217.722656 572.613281 L 220.511719 575.261719 C 238.605469 592.644531 262.847656 598.890625 285.167969 598.890625 "
fill-opacity="1"
fill-rule="nonzero"
/>
</g>
</svg>
+55 51 3517-2217
</li>
<li>
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="56"
zoomAndPan="magnify"
viewBox="0 0 810 809.999993"
height="56"
preserveAspectRatio="xMidYMid meet"
version="1.0"
>
<defs>
<clipPath id="3915700cb6">
<path
d="M 0 0 L 809.351562 0 L 809.351562 809.351562 L 0 809.351562 Z M 0 0 "
clip-rule="nonzero"
/>
</clipPath>
<clipPath id="2e2c0c3d54">
<path
d="M 243 289.371094 L 567 289.371094 L 567 520.371094 L 243 520.371094 Z M 243 289.371094 "
clip-rule="nonzero"
/>
</clipPath>
</defs>
<g clip-path="url(#3915700cb6)">
<path
fill="#36447c"
d="M 404.675781 809.351562 C 296.632812 809.351562 194.898438 767.300781 118.554688 690.796875 C 42.050781 614.453125 0 512.71875 0 404.675781 C 0 296.632812 42.050781 194.898438 118.554688 118.554688 C 194.898438 42.054688 296.632812 0 404.675781 0 C 512.71875 0 614.453125 42.054688 690.796875 118.554688 C 767.300781 195.058594 809.351562 296.632812 809.351562 404.675781 C 809.351562 512.71875 767.300781 614.453125 690.796875 690.796875 C 614.453125 767.300781 512.71875 809.351562 404.675781 809.351562 Z M 404.675781 24.261719 C 303.101562 24.261719 207.515625 63.886719 135.699219 135.699219 C 63.886719 207.515625 24.261719 303.101562 24.261719 404.675781 C 24.261719 506.25 63.886719 601.839844 135.699219 673.652344 C 207.515625 745.464844 303.101562 785.089844 404.675781 785.089844 C 506.25 785.089844 601.839844 745.464844 673.652344 673.652344 C 745.464844 601.839844 785.089844 506.25 785.089844 404.675781 C 785.089844 303.101562 745.464844 207.515625 673.652344 135.699219 C 601.839844 63.886719 506.25 24.261719 404.675781 24.261719 Z M 404.675781 24.261719 "
fill-opacity="1"
fill-rule="nonzero"
/>
</g>
<g clip-path="url(#2e2c0c3d54)">
<path
fill="#36447c"
d="M 277.816406 289.371094 C 258.65625 289.371094 243.128906 304.863281 243.128906 324.023438 C 243.558594 376.566406 243.128906 432.175781 243.128906 485.722656 C 243.128906 504.164062 257.488281 519.089844 275.648438 520.191406 L 533.628906 520.371094 C 552.125 519.625 566.871094 504.40625 566.871094 485.722656 L 566.871094 318.070312 C 564.066406 301.734375 549.867188 289.375 532.726562 289.375 C 447.800781 289.414062 362.773438 289.375 277.8125 289.375 Z M 277.273438 307.601562 L 533.8125 307.601562 L 409.695312 431.582031 C 407.429688 433.84375 403.832031 433.84375 401.566406 431.582031 Z M 549.53125 316.441406 L 549.53125 484.460938 C 549.53125 494.46875 545.917969 500.125 538.691406 502.144531 L 451.25 414.621094 L 549.53125 316.445312 Z M 262.460938 317.164062 L 359.117188 413.714844 L 270.773438 501.964844 C 264.726562 499.925781 262.621094 495.0625 262.464844 488.429688 L 262.464844 317.164062 Z M 371.402344 425.804688 L 401.570312 456.121094 C 403.835938 458.382812 407.4375 458.382812 409.703125 456.121094 L 438.96875 426.886719 L 515.210938 503.046875 L 294.082031 503.046875 Z M 371.402344 425.804688 "
fill-opacity="1"
fill-rule="nonzero"
/>
</g>
</svg>
</li>
</ul>
</div>
<div class="col-b">
<form action="" form="my-form">
<div class="col-3">
<div class="input-wrapper">
<input type="text" id="name" required placeholder="Nome" />
</div>
<div class="input-wrapper">
<input type="email" id="email" required placeholder=" E-mail" />
</div>
<div class="input-wrapper">
<input type="tel" id="phone" required placeholder=" Telefone" />
</div>
<div class="input-wrapper">
<textarea
placeholder="Mensagem"
name=""
id="contact-text"
cols="30"
rows="5"
required
></textarea>
</div>
<input
class="button"
type="submit"
form="my-form"
value="Enviar"
/>
</div>
</form>
</div>
</div>
</section>
<footer>
<div class="wrapper">
<div class="col-a">
<a class="logo-footer" href="#home">
<svg
xmlns="http://www.w3.org/2000/svg"
xml:space="preserve"
width="165.261mm"
height="86.1944mm"
version="1.1"
style="
shape-rendering: geometricPrecision;
text-rendering: geometricPrecision;
image-rendering: optimizeQuality;
fill-rule: evenodd;
clip-rule: evenodd;
"
viewBox="0 0 16411.95 8559.92"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xodm="http://www.corel.com/coreldraw/odm/2003"
>
<defs>
<style type="text/css">
.fil0 {
fill: #606062;
fill-rule: nonzero;
}
.fil1 {
fill: hwb(228 21% 51%);
fill-rule: nonzero;
}
.fil2 {
fill: url(#id0);
}
</style>
<linearGradient
id="id0"
gradientUnits="userSpaceOnUse"
x1="3886.46"
y1="6514.43"
x2="3886.46"
y2="1015.89"
>
<stop
offset="0"
style="stop-opacity: 1; stop-color: #28a942"
/>
<stop
offset="1"
style="stop-opacity: 1; stop-color: #96c71e"
/>
</linearGradient>
</defs>
<g id="Camada_x0020_1">
<metadata id="CorelCorpID_0Corel-Layer" />
<g id="_2931752569536">
<path
class="fil0"
d="M5367.52 8523.01c172.05,41.97 342.02,47.03 480.74,13.1 138.42,-33.34 229.21,-125.02 229.21,-261.05 0,-139.01 -91.68,-231.29 -273.86,-277.73l-186.94 -47.03c-33.34,-8.03 -49.7,-23.52 -49.7,-45.54 0,-32.15 47.03,-48.82 117.87,-48.82 70.55,0 152.71,7.75 239.03,24.41 62.81,13.1 101.22,-16.66 101.22,-79.48l0 -25.29c-0.89,-53.89 -27.09,-87.22 -79.48,-100.32 -324.46,-77.39 -669.76,-19.94 -669.76,240.82 0,130.09 85.44,217.6 270.89,263.74l174.73 44.65c44.65,11.31 67.27,30.36 67.27,56.56 0,37.51 -47.92,55.96 -127.39,55.96 -79.48,0.89 -167.59,-7.74 -271.18,-26.2 -63.7,-10.42 -100.31,18.46 -100.31,81.26l0 29.48c0.3,55.07 26.5,88.41 77.69,101.5zm1529.59 -879.32c-81.55,0 -174.43,9.52 -278.91,29.77 -63.4,11.9 -94.96,45.83 -94.96,102.4l0 43.46c0,62.51 37.51,93.76 100.31,80.37 87.82,-16.97 161.93,-25.6 220.87,-25.6 124.42,0 186.94,41.67 186.94,124.13l0 4.47 -193.19 0c-119.97,0 -201.53,15.77 -269.69,55.07 -67.87,39.29 -101.8,111.62 -101.8,216.41 0,104.77 33.93,176.81 101.21,214.92 66.98,38.99 148.84,54.77 270.29,54.77l219.97 0c98.53,0 170.27,-19.05 215.51,-58.34 45.25,-38.99 67.87,-105.68 67.87,-200.92l0 -286.36c0,-123.23 -46.14,-217.3 -126.21,-272.66 -80.36,-54.77 -185.74,-81.86 -318.21,-81.86zm-35.12 709.05c-44.66,0 -74.72,-5.96 -89.61,-17.27 -14.88,-11.61 -21.73,-31.55 -21.73,-61.31 0,-29.77 6.85,-50.61 21.73,-62.22 14.89,-11.31 44.95,-16.37 90.49,-16.37l168.49 0 0 74.11c0,62.22 -14.29,83.05 -76.51,83.05l-92.86 0zm1483.75 -1091.25c-49.7,-0.89 -85.72,21.13 -108.35,64.59l-61.03 121.15c-32.44,61.62 -5.35,107.16 64.6,107.16l43.76 0c47.93,0.89 84.53,-19.35 109.84,-59.24l78.58 -124.72c38.4,-62.8 13.1,-108.94 -60.12,-108.94l-67.28 0zm42.87 890.62c0,62.22 -11.61,103.89 -33.34,126.81 -21.73,23.52 -60.13,34.83 -114.31,34.83 -55.07,0 -93.47,-11.31 -115.2,-34.83 -22.62,-23.81 -34.23,-65.48 -34.23,-126.81l0 -400.65c0,-58.34 -31.25,-91.68 -90.49,-91.68l-130.09 0c-60.13,0 -91.38,33.34 -91.38,91.68l0 393.81c0,158.06 39,267.01 120.26,328.92 80.97,61.92 185.74,85.44 340.23,85.44 154.49,0 260.16,-23.52 341.13,-85.44 80.37,-61.91 119.36,-170.86 119.36,-328.92l0 -393.81c0,-58.34 -33.04,-91.68 -91.38,-91.68l-129.18 0c-59.24,0 -91.38,33.34 -91.38,91.68l0 400.65zm1336.72 -506.63c-29.77,-0.89 -58.64,-1.79 -86.63,-1.79 -167.29,0 -286.66,28.88 -377.15,97.64 -91.38,69.65 -138.41,189.02 -138.41,359.58 0,171.76 47.02,290.52 138.41,360.18 90.49,69.66 210.75,98.53 377.15,98.53 137.23,0 237.24,-22.62 301.84,-67.27 64.59,-44.36 96.74,-120.26 96.74,-225.94l0 -882.58c0,-59.24 -31.25,-91.38 -90.49,-91.38l-130.97 0c-59.24,0 -90.49,32.15 -90.49,91.38l0 261.65zm-108.36 668.26c-67.27,0 -115.2,-15.77 -142.28,-47.33 -26.79,-31.55 -40.79,-86.62 -40.79,-165.5 0,-79.48 13.99,-134.84 41.68,-166.39 27.98,-30.37 76.8,-46.14 145.86,-46.14 29.47,0.89 64.59,3.27 103.89,8.63l0 319.4c0,37.8 -6.26,64 -19.36,77.09 -13.1,13.1 -42.86,20.24 -89,20.24zm1736.48 -314.33c0,-236.94 -151.52,-355.42 -420.31,-355.42 -313.44,0 -474.48,163.13 -474.48,458.11 0,152.4 41.97,266.71 125.32,342.62 83.64,76.8 197.65,115.2 343.8,115.2 89.31,0 185.15,-13.1 288.74,-39.3 51.5,-13.1 77.69,-46.14 77.69,-101.21l0 -33.04c0,-65.48 -39.29,-92.58 -101.8,-78.58 -77.69,16.66 -143.77,25.3 -198.24,25.3 -111.93,0 -176.82,-26.2 -207.18,-104.19l359.28 -36.62c76.5,-8.03 130.38,-26.5 161.04,-55.37 30.36,-28.88 46.14,-74.42 46.14,-137.52zm-582.24 35.13c10.42,-135.74 59.54,-185.75 161.93,-185.75 91.68,0 134.54,39.59 134.54,120.85 0,27.99 -9.52,37.81 -47.93,41.38l-248.55 23.52z"
/>
<path
class="fil1"
d="M9184.52 1815.4c-421.9,0 -902.32,49.28 -1442.78,153.98 -327.97,61.59 -491.18,237.13 -491.18,529.69l0 224.81c0,323.35 194.01,485.03 518.9,415.74 454.24,-87.77 837.65,-132.42 1142.52,-132.42 643.63,0 966.99,215.57 966.99,642.09l0 23.1 -999.32 0c-620.53,0 -1042.43,81.6 -1395.04,284.86 -351.07,203.25 -526.6,577.42 -526.6,1119.42 0,542 175.53,914.63 523.52,1111.72 346.45,201.71 769.89,283.32 1398.12,283.32l1137.9 0c509.67,0 880.76,-98.54 1114.8,-301.8 234.05,-201.71 351.07,-546.62 351.07,-1039.34l0 -1481.27c0,-637.47 -238.66,-1124.03 -652.86,-1410.43 -415.74,-283.32 -960.83,-423.45 -1646.02,-423.45zm-181.7 3667.76c-230.96,0 -386.48,-30.8 -463.47,-89.31 -76.99,-60.05 -112.41,-163.22 -112.41,-317.19 0,-153.98 35.41,-261.76 112.41,-321.81 76.98,-58.51 232.5,-84.69 468.09,-84.69l871.52 0 0 383.4c0,321.81 -73.92,429.6 -395.73,429.6l-480.41 0zm5829.96 -1435.07l1444.32 -1638.33c215.57,-275.62 58.51,-511.21 -343.37,-511.21l-680.58 0c-275.62,4.62 -474.25,95.47 -591.28,271l-1385.8 1661.43 0 -3356.72c0,-307.96 -161.68,-474.25 -468.09,-474.25l-672.89 0c-311.03,0 -472.7,166.29 -472.7,474.25l0 5527.8c0,306.42 166.29,469.63 472.7,469.63l672.89 0c306.41,0 468.09,-163.22 468.09,-469.63l0 -1701.45 1390.42 1890.84c121.64,184.78 320.27,280.24 594.36,280.24l708.3 0c397.27,0 555.86,-226.35 357.23,-511.21l-1493.58 -1912.4z"
/>
<path
class="fil2"
d="M4210.23 5217.88c691.04,0 1167.04,-542.81 1167.04,-1217.88l0 -12.84c0,-675.32 -488.63,-1230.73 -1179.7,-1230.73 -690.51,0 -1167.03,542.98 -1167.03,1218.04l0 12.69c0,675.21 489.15,1230.72 1179.69,1230.72l0 0zm-3355.74 -3445.02c199.06,0 360.48,161.5 360.48,360.65 0,199.08 -161.43,360.55 -360.48,360.55 -199.43,0 -360.88,-161.48 -360.88,-360.55 0,-199.16 161.45,-360.65 360.88,-360.65zm-493.61 1084.75c199.07,0 360.48,161.5 360.48,360.65 0,199.08 -161.42,360.55 -360.48,360.55 -199.43,0 -360.88,-161.48 -360.88,-360.55 0,-199.16 161.45,-360.65 360.88,-360.65zm784.7 2015.69c281.46,0 509.72,228.35 509.72,509.94 0,281.47 -228.25,509.82 -509.72,509.82 -282.01,0 -510.28,-228.34 -510.28,-509.82 0,-281.59 228.27,-509.94 510.28,-509.94zm-626.24 -947.7c182.37,0 329.98,147.91 329.98,330.55 0,182.48 -147.6,330.4 -329.98,330.4 -182.92,0 -330.52,-147.92 -330.52,-330.4 0,-182.64 147.6,-330.55 330.52,-330.55zm803.85 -1228.48c182.37,0 330.5,147.9 330.5,330.27 0,182.59 -148.13,330.48 -330.5,330.48 -182.39,0 -330.52,-147.89 -330.52,-330.48 0,-182.37 148.13,-330.27 330.52,-330.27zm2874.36 3769.4c-459.62,0 -904.51,-109.81 -1292.47,-325.82 -72.74,193.36 -258.81,330.99 -477.57,330.99 -281.5,0 -509.74,-228.45 -509.74,-509.92 0,-190.19 103.85,-356.12 258.27,-443.73 129.71,-92.48 214.55,-244.06 214.55,-415.26 0,-281.6 -228.76,-509.93 -510.22,-509.93 -24.81,0 -49.03,1.78 -72.75,5.19 -23.19,6.86 -46.93,12.04 -71.18,15.47l-0.51 0.08c-23.73,3.33 -48,5.23 -72.22,5.23 -282.03,0 -510.24,-228.24 -510.24,-509.83 0,-281.67 228.21,-509.92 510.24,-509.92 8.96,0 17.91,0.2 26.88,0.68l0.52 0c36.89,1.97 73.26,8.16 108.07,17.57 9.47,0.57 18.44,0.9 27.94,0.9 281.46,0 509.2,-228.35 509.2,-509.93 0,-196.62 -110.71,-367.11 -273.58,-452.27l-10.56 -5.19 -2.63 -1.29c-161.29,-85.68 -271.47,-255.45 -271.47,-450.76 0,-281.58 228.26,-509.93 510.25,-509.93 190.32,0 356.87,104.85 444.36,260.1 428.55,-290.58 943.01,-441.01 1477.52,-441.01 797.01,0 1548.14,329.52 2036.8,967.79 330.48,431.6 500.23,956.36 500.23,1498.81l0 12.77c0,532.75 -165.53,1048.43 -484.43,1476.3 -488.64,656.52 -1252.98,1003.14 -2065.26,1003.14l0 -0.21zm-2021.5 -948.49l0 0zm-440.11 -904.45l0 0zm313.62 -1964.06l0 0z"
/>
</g>
</g>
</svg>
</a>
<p>
©2022 OAK - Saúde. <br />
<a
href="https://daiaanebarbosaf.github.io/rocketlinks/"
target="_blank"
>Feito por Daiane Farias</a
>
</p>
</div>
<div class="col-b">
<ul class="social-links">
<li>
<a
target="_blank"
href="https://www.instagram.com/daiaanebarbosaf/"
>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M17 1.99997H7C4.23858 1.99997 2 4.23855 2 6.99997V17C2 19.7614 4.23858 22 7 22H17C19.7614 22 22 19.7614 22 17V6.99997C22 4.23855 19.7614 1.99997 17 1.99997Z"
stroke="#FFFAF1"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M15.9997 11.3701C16.1231 12.2023 15.981 13.0523 15.5935 13.7991C15.206 14.5459 14.5929 15.1515 13.8413 15.5297C13.0898 15.908 12.2382 16.0397 11.4075 15.906C10.5768 15.7723 9.80947 15.3801 9.21455 14.7852C8.61962 14.1903 8.22744 13.4229 8.09377 12.5923C7.96011 11.7616 8.09177 10.91 8.47003 10.1584C8.84829 9.40691 9.45389 8.7938 10.2007 8.4063C10.9475 8.0188 11.7975 7.87665 12.6297 8.00006C13.4786 8.12594 14.2646 8.52152 14.8714 9.12836C15.4782 9.73521 15.8738 10.5211 15.9997 11.3701Z"
stroke="#FFFAF1"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M17.5 6.49997H17.51"
stroke="#FFFAF1"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</a>
</li>
<li>
<a target="_blank" href="https://github.com/daiaanebarbosaf">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 29 29"
width="24"
height="24"
fill="none"
>
<path
d="M15,3C8.373,3,3,8.373,3,15c0,5.623,3.872,10.328,9.092,11.63C12.036,26.468,12,26.28,12,26.047v-2.051 c-0.487,0-1.303,0-1.508,0c-0.821,0-1.551-0.353-1.905-1.009c-0.393-0.729-0.461-1.844-1.435-2.526 c-0.289-0.227-0.069-0.486,0.264-0.451c0.615,0.174,1.125,0.596,1.605,1.222c0.478,0.627,0.703,0.769,1.596,0.769 c0.433,0,1.081-0.025,1.691-0.121c0.328-0.833,0.895-1.6,1.588-1.962c-3.996-0.411-5.903-2.399-5.903-5.098 c0-1.162,0.495-2.286,1.336-3.233C9.053,10.647,8.706,8.73,9.435,8c1.798,0,2.885,1.166,3.146,1.481C13.477,9.174,14.461,9,15.495,9 c1.036,0,2.024,0.174,2.922,0.483C18.675,9.17,19.763,8,21.565,8c0.732,0.731,0.381,2.656,0.102,3.594 c0.836,0.945,1.328,2.066,1.328,3.226c0,2.697-1.904,4.684-5.894,5.097C18.199,20.49,19,22.1,19,23.313v2.734 c0,0.104-0.023,0.179-0.035,0.268C23.641,24.676,27,20.236,27,15C27,8.373,21.627,3,15,3z"
stroke="#FFFAF1"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</a>
</li>
<li>
<a
target="_blank"
href="https://www.linkedin.com/in/daiaanebarbosaf/"