-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmascaras.html
1033 lines (1028 loc) · 64.6 KB
/
mascaras.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 data-oe-company-name="Respirando - Venda e Aluguel de CPAP" lang="pt-BR" data-website-id="1">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<title>Máscaras | Respirando - Aluguel e Venda de CPAP</title>
<link type="image/x-icon" rel="shortcut icon"
href="/static/images/website/1/favicon/fav.ico" />
<meta name="generator" content="Odoo" />
<meta property="og:title" content="Máscaras" />
<meta property="og:site_name" content="Respirando - Venda e Aluguel de CPAP" />
<link rel="alternate" hreflang="pt" href="mascaras" />
<script type="text/javascript">
odoo.session_info = {
is_superuser: false,
is_system: false,
is_frontend: true,
translationURL: '/website/translations',
is_website_user: true,
user_id: 4
};
</script>
<link type="text/css" rel="stylesheet"
href="/static/css/web.assets_common.0.css" />
<link type="text/css" rel="stylesheet"
href="/static/css/web.assets_frontend.0.css" />
<link type="text/css" rel="stylesheet"
href="/static/css/web.assets_frontend.1.css" />
<script type="text/javascript"
src="/static/js/web.assets_common.js"></script>
<script type="text/javascript"
src="/static/js/web.assets_frontend.js"></script>
</head>
<body>
<div id="wrapwrap" class>
<header>
<div class="navbar navbar-default navbar-static-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-top-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="index.html" class="navbar-brand logo">
<span alt="Logo of Respirando - Venda e Aluguel de CPAP" title="Respirando - Venda e Aluguel de CPAP"><img
src="/static/images/res.company/1/logo.png"
class="img img-responsive" /></span>
</a>
</div>
<div class="collapse navbar-collapse navbar-top-collapse">
<ul class="nav navbar-nav navbar-right" id="top_menu">
<li>
<a href="index.html">
<span>Home</span>
</a>
</li>
<li>
<a href="quem-somos">
<span>Quem somos</span>
</a>
</li>
<li class="dropdown ">
<a class="dropdown-toggle" data-toggle="dropdown" href="index.html#">
<span>Produtos</span> <span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="cpap-bipap">
<span>CPAP e BIPAP</span>
</a>
</li>
<li class="active">
<a href="mascaras">
<span>Máscaras</span>
</a>
</li>
<li>
<a href="oxigenoterapia">
<span>Oxigenoterapia</span>
</a>
</li>
<li>
<a href="acessorios">
<span>Acessórios</span>
</a>
</li>
<li>
<a href="terapia-respiratoria.html">
<span>Terapia respiratória</span>
</a>
</li>
</ul>
</li>
<li>
<a href="aluguel">
<span>Aluguel</span>
</a>
</li>
<li>
<a href="blog/blog-respirando-3">
<span>Blog</span>
</a>
</li>
<li>
<a href="contacus">
<span>Contato</span>
</a>
</li>
<li id="my_cart" class="hidden">
<a href="shop/cart">
<i class="fa fa-shopping-cart"></i>
My Cart <sup class="my_cart_quantity label label-primary"></sup>
</a>
</li>
</ul>
</div>
</div>
</div>
</header>
<main>
<div id="wrap" class="oe_structure oe_empty">
<section class="parallax s_parallax_slider oe_custom_bg oe_img_bg" style="background-image: none;"
data-scroll-background-ratio="1.6">
<span class="s_parallax_bg oe_img_bg oe_custom_bg"
style="background-image: url(/static/images/873/pulmo%CC%83es.jpg); background-position: 0% 17.19%; top: -104.64px; bottom: -104.64px; transform: translateY(-102px);"></span>
<div>
<div>
<div class="oe_structure">
<div id="myCarousel1580225440107" class="carousel quotecarousel slide mb0 mt32"
data-interval="5000" style="height: 184px; overflow: hidden;">
<ol class="carousel-indicators mb0">
<li data-target="#myCarousel1580225440107" data-slide-to="0"></li>
<li data-target="#myCarousel1580225440107" data-slide-to="1" class="active">
</li>
</ol>
<div class="carousel-inner">
<div class="item text_only">
<div class="container">
<div class="content">
<div class="row">
<blockquote class="col-md-offset-2 col-md-8 mt0 mb32">
<h1 style="color: rgb(51, 51, 51); text-align: center;">
<font class="bg-black-50 text-white">Conheça nossa linha
de máscaras para CPAP e BiPAP</font>
</h1>
</blockquote>
</div>
</div>
</div>
</div>
<div class="item text_only active">
<div class="container">
<div class="content">
<div class="row">
<blockquote class="col-md-offset-2 col-md-8 mb16 mt0" style>
<h1 style="color: rgb(51, 51, 51); text-align: center;">
<font class="bg-black-50 text-white">Trabalhamos com os
melhores fornecedores do mercado</font>
</h1>
</blockquote>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="s_title bg-primary">
<div class="container">
<div class="row">
<div class="mt8 col-md-12 mb8">
<h2 class="text-center">
<font class="text-white" style>MÁSCARAS FACIAIS</font>
</h2>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter" style>
<div class="container">
<div class="row">
<div class="mt32 mb0 col-md-3 col-md-offset-1">
<img class="img img-responsive center-block mb16"
src="/static/images/555/mask-amara-view.jpg"
alt="Imagem e bloco de texto Odoo" data-original-title title />
</div>
<div class="col-md-6 mt32 mb0">
<h3>
<font class="text-beta" style>Máscara Amara View<br /></font>
<font class="text-beta" style="font-size: 18px;">Philips Respironics</font>
<br />
</h3>
<h5>
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">O design inovador do Amara View
evita marcas vermelhas, desconforto e irritação no dorso nasal. Esse design
oferece ao Amara View amplo campo de visão de todas as melhores máscaras
faciais fechadas, possibilita o uso de óculos, leitura ou assistir à TV.
Esta máscara não possui uma armação nem acolchoado volumoso para face e
olhos. Contém tiras em tecido confortáveis e macias, além de presilhas de
encaixe rápido para facilitar a remoção. </font>
</span>
<span style="font-weight: normal;"> </span>
<span
style="color: rgb(60, 60, 60); font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px;">
<br />
</span>
</h5>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter" style>
<div class="container">
<div class="row">
<div class="mt32 mb0 col-md-3 col-md-offset-1">
<img class="img img-responsive center-block mb16"
src="/static/images/1097/dreamwear-full.jpg"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateY(59.5%) scaleX(1.83) scaleY(1.82);" />
</div>
<div class="col-md-6 mt32 mb32">
<h3>
<font class="text-beta" style>Máscara DreamWear Full<br /></font>
<font color="#076ea8">
<span style="font-size: 18px;">Philips Respironics</span>
</font>
</h3>
<h5>
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">Ao mover o local do tubo para o
topo da cabeça, a a DreamWear Full oferece mais liberdade de movimento
durante a noite. Os usuários declararam que não precisam escolher uma
posição para dormir ao usar essa máscara. </font>
</span>
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">
<br />
</font>
</span>
</h5>
<h5>
<br />
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">
<br />
<br />
</font>
</span>
<span style="font-weight: normal;"> </span>
<span
style="color: rgb(60, 60, 60); font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px;">
<br />
</span>
</h5>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter" style>
<div class="container">
<div class="row">
<div class="mb0 col-md-3 col-md-offset-1 mt32">
<img class="img img-responsive center-block mb16"
src="/static/images/1007.jpeg"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateX(-2.4%) translateY(61.7%) scaleX(1.74) scaleY(1.94);" />
</div>
<div class="col-md-6 mt32 mb64">
<h3>
<font class="text-beta" style>Máscara AirFit F10<br /></font>
<font class="text-beta" style="font-size: 18px;">ResMed</font>
<br />
</h3>
<h5>
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">A máscara facial AirFit F10 é a
primeira da geracnao de máscaras da popular família AirFit. Cobre a boca e o
nariz e sua almofada é de silicone.</font>
</span>
</h5>
<h5>
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">
<br />
</font>
</span>
<span style="font-weight: normal;"> </span>
<span
style="color: rgb(60, 60, 60); font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px;">
<br />
</span>
</h5>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter" style>
<div class="container">
<div class="row">
<div class="mb0 col-md-3 col-md-offset-1 mt48">
<img class="img img-responsive center-block mb16"
src="/static/images/1009.jpeg"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateX(-2.9%) translateY(50.1%) scaleX(1.74) scaleY(1.94);" />
</div>
<div class="col-md-6 mt32 mb48">
<h3>
<font class="text-beta" style>Máscara Wizard 310<br /></font>
<font class="text-beta" style="font-size: 18px;">Apex</font>
<br />
</h3>
<h5>
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">A máscara facial Wizard 310 é
feita com material que permite que sua estrutura seja flexível. Seu design
de contorno oferece mais conforto e ajuda o paciente a ter uma boa noite de
sono.</font>
</span>
</h5>
<h5>
<span style="font-weight: normal;"> </span>
<span style="font-weight: normal;"> </span>
<span
style="color: rgb(60, 60, 60); font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px;">
<br />
</span>
</h5>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter" style="height: 328px; overflow: hidden;">
<div class="container">
<div class="row">
<div class="col-md-3 col-md-offset-1 mb128 mt16">
<img class="img img-responsive center-block mb16"
src="/static/images/1010.jpeg"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateX(-2.5%) translateY(62.1%) scaleX(1.59) scaleY(1.91);" />
</div>
<div class="col-md-6 mb92 mt32">
<h3>
<font class="text-beta" style>Máscara Acare CPAP<br /></font>
<font class="text-beta" style="font-size: 18px;">Acare Technology</font> <br />
</h3>
<h5>
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">A máscara facial Acare CPAP
apresenta a tecnologia patenteada de almofada de várias camadas,
proporcionando alta compatibilidade e baixo nível de ruído quando usada com
a máquina CPAP.</font>
<font style="font-size: 18px;" class="text-beta">
<br />
</font>
</span>
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">
<br />
</font>
</span>
</h5>
<h5>
<span style="font-weight: normal;"> </span>
<span style="font-weight: normal;"> </span>
<span
style="color: rgb(60, 60, 60); font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px;">
<br />
</span>
</h5>
</div>
</div>
</div>
</section>
<section class="s_title bg-primary">
<div class="container">
<div class="row">
<div class="col-md-12 mb8">
<h2 class="text-center" style="color: rgb(51, 51, 51);">
<font class="text-white" style>MÁSCARAS NASAIS</font>
</h2>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter" style>
<div class="container">
<div class="row">
<div class="mt32 mb0 col-md-3 col-md-offset-1">
<img class="img img-responsive center-block mb16"
src="/static/images/556/mascara-pico-phillips.jpg"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateX(-0.8%) translateY(-5.3%) scaleX(0.92) scaleY(0.95);" />
</div>
<div class="col-md-6 mb32 mt32">
<h3>
<font class="text-beta" style>Máscara PICO<br /></font>
<font class="text-beta" style="font-size: 18px;">Philips Respironics</font>
<br />
</h3>
<h5>
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">A Pico é uma alternativa
prática, confortável e fácil de usar e ajustar, proporcionando uma terapia
de qualidade. Na verdade, os médicos classificam a Pico como mais fácil de
usar do que as principais máscaras nasais do mercado e ideal para otimizar a
base instalada e adequar a novos pacientes. </font>
</span>
<font style="font-weight: normal; font-size: 18px;" class="text-beta">
<br />
</font>
<span style="font-weight: normal;"> </span>
<span
style="color: rgb(60, 60, 60); font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px;">
<br />
</span>
</h5>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter" style>
<div class="container">
<div class="row">
<div class="mt32 mb0 col-md-3 col-md-offset-1">
<img class="img img-responsive center-block mb16"
src="/static/images/1099.jpeg"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateX(-0.8%) translateY(-5.3%) scaleX(0.92) scaleY(0.95);" />
</div>
<div class="col-md-6 mb32 mt32">
<h3>
<font class="text-beta" style>Máscara DreamWisp<br /></font>
<font class="text-beta" style="font-size: 18px;">Philips Respironics</font>
<br />
</h3>
<h5>
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">A DreamWisp combina a liberdade
proporcionada pelo revolucionário tubo DreamWear com design no topo da
cabeça à vedação da almofada Wisp de contato nasal mínimo. Essa máscara
oferece a liberdade de dormir em qualquer posição durante a noite.</font>
</span>
<span
style="color: rgb(60, 60, 60); font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 14px; font-weight: 400;"> </span>
<br />
<span style="font-weight: normal;"> </span>
<span
style="color: rgb(60, 60, 60); font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px;">
<br />
</span>
</h5>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter" style>
<div class="container">
<div class="row">
<div class="mt32 mb0 col-md-3 col-md-offset-1">
<img class="img img-responsive center-block mb16"
src="/static/images/1103.jpeg"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateX(-0.8%) translateY(-5.3%) scaleX(0.92) scaleY(0.95);" />
</div>
<div class="col-md-6 mb32 mt8">
<h3>
<font class="text-beta" style>Máscara Wisp<br /></font>
<font class="text-beta" style="font-size: 18px;">Philips Respironics</font>
<br />
</h3>
<h5>
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">A máscara Wisp possui um design
único e compacto criado para o máximo conforto. A almofada de colocação na
ponta do nariz foi desenvolvida para assentar por baixo da ponte do nariz,
proporcionando um contato mínimo com o rosto, criando simultaneamente uma
vedação superior. O design fino da Wisp elimina a necessidade de um apoio
para a testa, oferecendo um melhor campo de visão.</font>
<font style="font-size: 18px;" class="text-beta">
<br />
</font>
</span>
<span style="font-weight: normal;"> </span>
<span
style="color: rgb(60, 60, 60); font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px;">
<br />
</span>
</h5>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter" style>
<div class="container">
<div class="row">
<div class="mt32 mb0 col-md-3 col-md-offset-1">
<img class="img img-responsive center-block mb16"
src="/static/images/971.jpeg"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateY(59.5%) scaleX(1.83) scaleY(1.82);" />
</div>
<div class="col-md-6 mb32 mt32">
<h3>
<font class="text-beta" style>Máscara AirFit N10<br /></font>
<font class="text-beta" style="font-size: 18px;">ResMed </font>
<br />
</h3>
<h5>
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">A ResMed AirFit N10 eleva o
padrão das máscaras nasais compactas, proporcionando desempenho sem esforço,
conforto e liberdade visual em um design de fácil utilização. Conta com
suporte discreto, composto de armação exclusiva sob os olhos que oferece aos
pacientes uma linha de visão mais clara. </font>
<font style="font-size: 18px;" class="text-beta">
<br />
<br />
</font>
</span>
<span style="font-weight: normal;"> </span>
<span
style="color: rgb(60, 60, 60); font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px;">
<br />
</span>
</h5>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter" style>
<div class="container">
<div class="row">
<div class="mt32 mb0 col-md-3 col-md-offset-1">
<img class="img img-responsive center-block mb16"
src="/static/images/1006.jpeg"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateY(59.5%) scaleX(1.83) scaleY(1.82);" />
</div>
<div class="col-md-6 mb32 mt32">
<h3>
<font class="text-beta" style>Máscara AirFit N20<br /></font>
<font class="text-beta" style="font-size: 18px;">ResMed </font>
<br />
</h3>
<h5>
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">O rosto de cada um é único e
com tantos modelos de máscaras para escolher, pode ser difícil saber quais
se adaptam no seu. É iso que torna a AirFit N20 e sua faixa de ajuste de 99%
tão incríveis. Ela foi testada em usuários de CPAP em todo o mundo, com uma
ampla variedade de características faciais, e provou se adaptar bem em
praticamente todo mundo.</font>
<font style="font-size: 18px;" class="text-beta">
<br />
</font>
</span>
</h5>
<h5>
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">
<br />
</font>
</span>
<span style="font-weight: normal;"> </span>
<span
style="color: rgb(60, 60, 60); font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px;">
<br />
</span>
</h5>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter" style>
<div class="container">
<div class="row">
<div class="mt32 mb0 col-md-3 col-md-offset-1">
<img class="img img-responsive center-block mb16"
src="/static/images/1005.jpeg"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateY(59.5%) scaleX(1.83) scaleY(1.82);" />
</div>
<div class="col-md-6 mb32 mt32">
<h3>
<font class="text-beta" style>Máscara AirFit N30<br /></font>
<font class="text-beta" style="font-size: 18px;">ResMed </font>
<br />
</h3>
<h5>
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">A AirFit N30 é uma máscara em
formato de berço, projetada para manter o tubo do sistema fora do campo de
visão, proporcionando liberdade para se movimentar confortavelmente à noite
e dormir na posição que você deseja. </font>
</span>
</h5>
<h5>
<br />
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">
<br />
</font>
</span>
<span style="font-weight: normal;"> </span>
<span
style="color: rgb(60, 60, 60); font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px;">
<br />
</span>
</h5>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter" style>
<div class="container">
<div class="row">
<div class="mt32 mb0 col-md-3 col-md-offset-1">
<img class="img img-responsive center-block mb16"
src="/static/images/1001/Mirage_FX.jpg.jpeg"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateY(53.3%) scaleX(1.64) scaleY(1.67); animation-play-state: paused; transition: none 0s ease 0s;" />
</div>
<div class="col-md-6 mt32 mb64">
<h3>
<font class="text-beta" style>Máscara Mirage FX<br /></font>
<font class="text-beta" style="font-size: 18px;">ResMed </font>
<br />
</h3>
<h5>
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">A Mirage FX é uma máscara de
CPAP nasal com um design de suporte da testa que é precursora da série
AirFit, atualmente popular. </font>
</span>
<br />
<br />
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">
<br />
<br />
</font>
</span>
<span style="font-weight: normal;"> </span>
<span
style="color: rgb(60, 60, 60); font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px;">
<br />
</span>
</h5>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter" style>
<div class="container">
<div class="row">
<div class="mt32 mb0 col-md-3 col-md-offset-1">
<img class="img img-responsive center-block mb16"
src="/static/images/1082/eson%202.jpg.jpeg"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateY(46.1%) scaleX(1.6) scaleY(1.59);" />
</div>
<div class="col-md-6 mt32 mb64">
<h3>
<font class="text-beta" style>Máscara Eson 2<br /></font>
<font class="text-beta" style="font-size: 18px;">Fisher & Paykel </font>
<br />
</h3>
<h5>
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">Para aprimorar um máscara
desenhada para oferecer desempenho e conforto, a Fisher & Paykel
desenvolveu a máscara nasal Eson 2 com foco na facilidade de utilização.
Recursos como a touca de fixacnao intuitiva, por exemplo, fornece opções de
ajustes para os pacientes, incluindo a possibilidade de colocar a máscara
diretamente sobre a cabeça.</font>
</span>
<br />
<br />
<span style="font-weight: normal;"> </span>
<span
style="color: rgb(60, 60, 60); font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px;">
<br />
</span>
</h5>
</div>
</div>
</div>
</section>
<section class="s_title bg-primary">
<div class="container">
<div class="row">
<div class="col-md-12 mb8">
<h2 class="text-center" style="color: rgb(51, 51, 51);">
<font class="text-white" style>MÁSCARAS PRONGS</font>
</h2>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter mb0">
<div class="container">
<div class="row">
<div class="mt32 col-md-3 col-md-offset-1 mb32">
<img class="img img-responsive center-block mb16"
src="/static/images/947/pillow_swift.png.jpeg"
alt="Imagem e bloco de texto Odoo" data-original-title title />
</div>
<div class="col-md-6 mt32 mb64">
<h3 style="color: rgb(51, 51, 51);">
<font class="text-beta">Máscara Swift FX<br /></font>
<font class="text-beta" style="font-size: 18px;">ResMed</font>
<br />
</h3>
<h5 style="color: rgb(51, 51, 51);">
<font class="text-beta" style="font-weight: normal; font-size: 18px;">A Swift FX é
uma máscara nasal tipo pillow que combina ajuste suave com um volume mínimo.
</font>
</h5>
<h5 style="color: rgb(51, 51, 51);">
<font class="text-beta" style="font-weight: normal; font-size: 18px;">
<br />
</font>
</h5>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter mb0">
<div class="container">
<div class="row">
<div class="col-md-3 col-md-offset-1 mb32 mt8">
<img class="img img-responsive center-block mb16"
src="/static/images/997.jpeg"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateY(56%) scaleX(1.66) scaleY(2.03);" />
</div>
<div class="col-md-6 mb64 mt0">
<h3 style="color: rgb(51, 51, 51);">
<font class="text-beta">Máscara AirFit P10<br /></font>
<font class="text-beta" style="font-size: 18px;">ResMed</font>
<br />
</h3>
<h5 style="color: rgb(51, 51, 51);">
<font class="text-beta" style="font-weight: normal; font-size: 18px;">Pesando só 45g
e composta de apenas 3 partes, a AirFit P10 é uma opção de máscara pequena e
simples. Com uma almofada nasal tipo pillow e arnês que desliza, é fácil de usar
e cobre muito pouco do seu rosto. Para uma noite de sono mais confortável, ela
possui os respiradouros QuiteAir que dispersam suavemente o ar expirado em
várias direções, longe de você e de seu parceiro.<br /></font>
</h5>
<h5 style="color: rgb(51, 51, 51);">
<font class="text-beta" style="font-weight: normal; font-size: 18px;">
<br />
</font>
</h5>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter" style>
<div class="container">
<div class="row">
<div class="mt32 mb0 col-md-3 col-md-offset-1">
<img class="img img-responsive center-block mb16"
src="/static/images/1083.jpeg"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateY(59.5%) scaleX(1.83) scaleY(1.82);" />
</div>
<div class="col-md-6 mt32 mb64">
<h3>
<font class="text-beta" style>Máscara Brevida<br /></font>
<font class="text-beta" style="font-size: 18px;">Fisher & Paykel </font>
<br />
</h3>
<h5><span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">A máscara nasal Brevida da
Fisher & Paykel foi projetada para promover o conforto e a confiança do
paciente durante a terapia com CPAP ou BiPAP. A máscara se ajusta ao rosto e
a inovadora almofada com vedação AirPillow se infla ao iniciar a terapia.
Sua touca de fixação ajustável foi projetada para se manter estável durante
o sono.</font>
</span> <br /><br /><span style="font-weight: normal;"></span><span
style="font-weight: normal;"> </span><span
style="color: rgb(60, 60, 60); font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px;"><br /></span>
</h5>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter" style="height: 360px; overflow: hidden;">
<div class="container">
<div class="row">
<div class="mt32 mb0 col-md-3 col-md-offset-1">
<img class="img img-responsive center-block mb16"
src="/static/images/1102.jpeg"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateX(-1.2%) translateY(-12.4%) scaleX(0.73) scaleY(0.63); animation-play-state: paused; transition: none 0s ease 0s;" />
</div>
<div class="col-md-6 mt32 mb64">
<h3>
<font class="text-beta" style>Máscara Nuance<br /></font>
<font class="text-beta" style="font-size: 18px;">Philips Respironics</font>
<br />
</h3>
<h5>
<span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">A Philips Respironics está
trazendo o conforto e o desempenho de vedação do gel para os almofadados
nasais. A Nuance proporciona mais conforto e vedação através do almofadado
em gel e oferece duas opções de estrutura (em tecido ou gel). Por isso, ela
é uma máscara única, que introduz um conceito totalmente novo às máscaras
nasais de mínimo contato.</font>
</span>
<br />
<br />
<span style="font-weight: normal;"> </span>
<span
style="color: rgb(60, 60, 60); font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px;">
<br />
</span>
</h5>
</div>
</div>
</div>
</section>
<section class="s_image_text bg-gray-lighter" style>
<div class="container">
<div class="row">
<div class="mb0 col-md-3 col-md-offset-1 mt0">
<img class="img img-responsive center-block mb16"
src="/static/images/1100/undernose.png.jpeg"
alt="Imagem e bloco de texto Odoo" data-original-title title
style="transform: translateX(-3.4%) translateY(-5.1%) scaleX(0.8) scaleY(0.74); animation-play-state: paused; transition: none 0s ease 0s;" />
</div>
<div class="col-md-6 mb64 mt0">
<h3>
<font class="text-beta" style>Máscara DreamWear Prong<br /></font>
<font class="text-beta" style="font-size: 18px;">Philips Respironics</font>
<br />
</h3>
<h5><span style="font-weight: normal;">
<font style="font-size: 18px;" class="text-beta">A Philips Respironics Dreamwear
Prong, agora com nova armação de cabeça, ofere um novo nível de estabilidade
e desempenho à máscara. O Protetor DreamWear, com um design exclusivo
antiderrapante da haste, ajuda manter a máscara no lugar a noite toda.
</font>
</span><br /><span style="font-weight: normal;"> </span>
<br /><span style="font-weight: normal;"> </span><span
style="color: rgb(60, 60, 60); font-family: centrale_sans, tahoma, arial, helvetica, sans-serif; font-size: 18px;"><br /></span>
</h5>
</div>
</div>
</div>
</section>
<section class="jumbotron s_button bg-white mb0" style="height: 184px; overflow: hidden;">
<div class="container">
<div class="row">
<div class="mb0 col-md-9">
<h3 class="mb0" style="color: rgb(51, 51, 51);">
<strong>
<font class="text-beta" style="font-size: 24px;">Está na dúvida sobre qual é a
melhor máscara para você? </font>
</strong>
</h3>
<h4 class="mb0" style="color: rgb(51, 51, 51);">
<font class="text-beta" style="font-size: 18px; font-weight: normal;">Clique no
link, veja nossas dicas e descubra como escolher o melhor equipamento.</font>
</h4>
</div>
<div class="col-md-2 mt16">
<a href="/como-escolher-mascara"
class="mt8 pull-right btn btn-primary btn-lg" data-original-title title> Descobrir
> </a>
</div>
</div>
</div>
</section>
</div>
</main>
<footer>
<div class="oe_structure" id="footer">
<section>
<div class="container">
<div class="row">
<div class="col-md-2">
<h4 class="mt16">
<font class="text-beta" style>MENU</font>
</h4>
<p>
<font class="text-beta" style="font-size: 14px;">
<span
style="background-color: rgb(248, 249, 250); font-family: Arial, sans-serif; font-size: 14px; text-align: justify;"
data-original-title title class="text-beta">
<a href="/"
data-original-title title>Página Inicial</a>
<br />
</span>
<a href="/quem-somos.html"
data-original-title title><span
style="background-color: rgb(248, 249, 250); font-family: Arial, sans-serif; text-align: justify;"
data-original-title title class="text-primary">Quem
somos</span> </a>
<br />
<a href="/cpap-bipap.html"
data-original-title title>
<span
style="background-color: rgb(248, 249, 250); font-family: Arial, sans-serif; text-align: justify;"
data-original-title title class="text-primary">CPAP e BIPAP</span>
<br data-original-title title />
</a>
<span
style="background-color: rgb(248, 249, 250); font-family: Arial, sans-serif; text-align: justify;">
<a href="mascaras">Máscaras</a>
</span>
<a href="/shop"
data-original-title title> </a>
<br />
</font>
<span
style="background-color: rgb(248, 249, 250); color: rgb(7, 110, 168); font-family: Arial, sans-serif; font-size: 14px; text-align: justify;">
<a
href="/oxigenoterapia.html">Oxigenoterapia</a>
<br />
<a
href="/acessorios.html">Acessórios</a>
</span>
<span style="color: rgb(7, 110, 168); font-size: 14px;"> <br /></span>
<span
style="color: rgb(7, 110, 168); font-family: Arial, sans-serif; font-size: 14px; text-align: justify; background-color: rgb(248, 249, 250);">
<a href="/terapia-respiratoria"
data-original-title title>Terapia respiratória</a>
</span>
<span style="color: rgb(7, 110, 168); font-size: 14px;">
<br />
</span>
<font class="text-beta" style="font-size: 14px;">
<span
style="background-color: rgb(248, 249, 250); font-family: Arial, sans-serif; text-align: justify;">
<a
href="/blog/blog-respirando-3.html">Blog</a>
</span>
<a href="/blog/blog-respirando-3.html"
data-original-title title> </a>
<br />
</font>
<span data-original-title title
style="background-color: rgb(248, 249, 250); color: rgb(7, 110, 168); outline: 0px; font-size: 14px; font-family: Arial, sans-serif; text-align: justify;">
<a
href="/contacus.html">Contato</a>
</span>
</p>
</div>
<div class="col-md-3 col-md-offset-1">
<h4 class="mt16">
<font class="text-beta" style>Contato</font>
</h4>
<p>
<span class="fa fa-1x fa-phone text-beta" style data-original-title title></span>
<font class="text-beta" style> +55 11 97601-7575<br /></font>
<span class="fa fa-1x fa-envelope-o text-beta" style data-original-title
title></span>
<font class="text-beta" style> </font>
<span
style="background-color: rgb(248, 249, 250); color: rgb(7, 110, 168); font-family: Arial, sans-serif; text-align: justify;"><a
href="/cdn-cgi/l/email-protection"
class="__cf_email__"
data-cfemail="45262a2b3124312a05372036352c37242b212a6b2b20316b2737">[email protected]</a></span>
<span style="color: rgb(7, 110, 168);"> </span>
</p>
<p>
<font class="text-beta" style>
<b>
<span
style="background-color: rgb(248, 249, 250); font-family: Arial, sans-serif; text-align: justify;">Siga
a Respirando:</span>
</b>
</font>
</p>
<p><span class="fa fa-2x fa-facebook-official text-beta" style data-original-title
title></span> <span class="fa fa-2x fa-instagram text-beta" style
data-original-title title></span>
<font class="text-beta" style> </font><span
class="fa fa-2x fa-linkedin-square text-beta" style data-original-title
title></span>
<font class="text-beta" style> </font><span
class="fa fa-2x fa-pinterest-square text-beta" style data-original-title
title></span>
<font class="text-beta" style><br /></font>
</p>