@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
	--cor-1:#03989F;
	--cor-1-hover:#eaf2f2;
}

body,h1,h2,h3,p,a,ul,li,select,option,input,textarea,table,th,td,blockquote,hr,button,div{
	margin:0;
	padding:0;
	font-weight: normal;
}

body{
	padding-top: 160px;
	font-weight: 500;
	background-color: #FFFFFF;
	font-family: "Poppins", sans-serif;
	overflow-x: hidden;
}

a{
	text-decoration: none;
	color: var(--cor-1);
}

a:hover{
	text-decoration:none;
	color: var(--cor-1-hover);
}

img{
	border:none;
	max-width:100%;
}

button{
	border:none;
	cursor:pointer;
	font-family: "Poppins", sans-serif;
}

input.form-control, textarea.form-control, .custom-file-label, select.custom-select{
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	color: var(--cor-1);
	background-color: #FFFFFF;
	border: 2px solid var(--cor-1);
	margin-bottom: 30px;
	font-weight: 500;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.custom-file{
	margin-bottom: 20px;
}

.form-check{
	margin-bottom: 20px;
}

input.form-control:focus, textarea.form-control:focus{
	background-color: transparent;
	border-color: var(--cor-1);
	color: var(--cor-1);
	box-shadow: none;
}

.form-control::-webkit-input-placeholder{color: var(--cor-1); opacity:1}
.form-control::-moz-placeholder{color: var(--cor-1); opacity:1}
.form-control:-ms-input-placeholder{color: var(--cor-1); opacity:1}
.form-control::-ms-input-placeholder{color: var(--cor-1); opacity:1}
.form-control::placeholder{color: var(--cor-1); opacity:1}

input.form-control, .custom-file-label, .custom-file{
	height: 60px;
	padding: 5px 20px;
}

select.custom-select{
	padding: 5px 20px;
	height: 60px;
}

textarea.form-control{
	height: 160px;
	padding: 15px 20px;
}

.custom-file-label::after{
	background-image: url('../img/icone-file-input.png');
	background-repeat: no-repeat;
	background-position: center;
	line-height: 58px;
	height: 68px;
	padding: 5px 20px;
	content: '';
	background-color: transparent;
}

.custom-file-label{
	cursor: pointer;
	background-color: #259066;
	margin: 0;
	line-height: 60px;
	color: #FFFFFF;
	font-weight: 700;
}

.custom-file-input, .custom-file-label::after{
	cursor: pointer;
}

h1, h2, .number-item{
	color: #121a1f;
	font-size: 30px;
	line-height: 44px;
	margin-bottom: 20px;
	text-rendering: optimizeLegibility;
	font-weight: 300;
}

h1 strong, h2 strong{
	font-weight: 600;
}

.subtitle{
	color: #03989e;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 5px;
}

body, p{
	font-family: "Poppins",sans-serif;
	font-weight: normal;
	font-size: 16px;
	line-height: 1.6;
	text-align: left;
	text-rendering: optimizeLegibility;
	color: #8A8A8A;
}

p{
	margin-bottom: 12px;
}

.btn{
	font-size: 16px;
	text-transform: none;
	font-weight: 400;
	line-height: 44px;
	padding: 0 20px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	border: none;
	color: #FFFFFF;
}

.btn svg{
	font-size: 18px;
	vertical-align: middle;
	margin-right: 2px;
}

.btn-primary{
	background-color: var(--cor-1);
	color: #FFFFFF;
}

.btn-primary:hover{
	background-color: var(--cor-1-hover);
	color: var(--cor-1);;
}

.btn-secondary{
	background-color: var(--cor-1-hover);
	color: var(--cor-1);;
}

.btn-secondary:hover{
	background-color: var(--cor-1);
	color: #FFFFFF;
}

.btn-light{
	background-color: #FFFFFF;
	color: var(--cor-1);
}

.btn-light:hover{
	background-color: var(--cor-1-hover);
	color: var(--cor-1);;
}

.text-white p{
	color: #FFFFFF;
}

#topBtn {
    display: none;
    position: fixed;
    bottom: 88px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    width: 40px;
    height: 40px;
    border: 2px solid #FFFFFF;
    background-color: var(--cor-1);
    color: white;
    cursor: pointer;
    border-radius: 50%;
    text-align: center;
}

#topBtn:hover {
    background-color: var(--cor-1-hover);
}

.whats-fixo{
	z-index: 100;
	position: fixed;
	right: 20px;
	bottom: 20px;
	background-color: #25D366;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	height: 48px;
	line-height: 48px;
	padding: 0 20px;
	color: #FFFFFF;
	font-size: 16px;
	text-align: center;
	-webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.35);
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.35);
}

.whats-fixo svg{
	vertical-align: middle;
	font-size: 22px;
	margin-right: 5px;
}

.whats-fixo:hover, .telefone-fixo:hover{
	background-color: #009C3A;
	color: #FFFFFF;
}

.fa-phone{
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

/* header */
.fixed-top{
	background-color: #FFFFFF;
}

.navbar-top{
	background-color: #f7f7f7;
	padding: 10px 0;
}

.navbar-top .nav-left a{
	margin-right: 40px;
	color: #8a8a8a;
	font-size: 14px;
}

.navbar-top .nav-left a svg{
	margin-right: 5px;
}

.navbar-top svg{
	color: var(--cor-1);
	font-size: 16px;
}

.nav-right svg{
	font-size: 22px;
}

.navbar{
	background-color: #FFFFFF;
	padding: 15px 0;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.navbar-nav li{
	list-style: none;
	float: left;
	margin-left: 50px;
}

.navbar-nav li:first-child{
	margin-left: 0;
}

.navbar-nav li a{
	position: relative;
	white-space: nowrap;
	display: block;
	font-size: 15px;
	line-height: 44px;
	color: #333333;
	padding-top: 3px;
	text-transform: none;
}

.navbar-nav li a:hover{
	color: var(--cor-1);
}

.collapse .btn{
	margin-left: 50px;
}

/* Home */
.caixa-banner{
	position: relative;
}

.tp-caption{
	z-index: 5;
}

.tp-caption h2{
  font-size: 36px;
  color: #ffffff;
  line-height: 1.2;
  display: inline-block;
  font-weight: 300;
  text-transform: none;
  margin-bottom: 30px;
}

.tp-caption h2 b{
	font-weight: 700;
}

.tp-caption p{
	margin-bottom: 25px;
	text-indent: 0;
	color: #FFFFFF;
}

.tp-bullets, .owl-dots{
	background-color: #343435;
	height: 32px;
	line-height: 32px;
	padding: 0 10px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
}

.owl-carousel{
	text-align: center;
}

.owl-dots{
	margin-top: 30px;
	display: inline-block;
	vertical-align: top;
}

.tp-bullets .bullet, .owl-dot{
	width: 10px;
	height: 10px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	background-color: transparent;
	border: 1px solid #FFFFFF;
	margin: 0 3px 2px;
	cursor: pointer;
	display: inline-block;
	vertical-align: middle;
}

.tp-bullets .bullet.selected, .owl-dot.active{
	background-color: #FFFFFF;
}

.espaco{
	height: 90px;
}

.espaco-menor{
	height: 40px;
}

.bg-saude{
	padding: 50px 0;
	position: relative;
	background-color: #f7f7f7;
}

.bg-saude .container{
	height: 100%;
}

.fundo-capa{
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 50%;
	object-fit: cover;
}

.separador{
	border-top: solid 1px #f7f7f7;
	margin: 40px 0;
}

.caixa-imagem-artigo{
	width: 100%;
	height: auto;
	padding-bottom: 56%;
	display: block;
	margin-bottom: 30px;
	position: relative;
}

.caixa-imagem-artigo img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.noticia-individual{
	margin-bottom: 50px;
	position: relative;
}

.noticia-individual h3 a, .servico-individual h3{
	display: block;
	font-size: 20px;
	font-weight: 400;
	color: #000000;
	line-height: 30px;
	margin-bottom: 20px;
	text-transform: none;
}

.noticia-individual .data{
	position: absolute;
	left: 20px;
	bottom: 20px;
	background-color: #03989e;
	border-radius: 2px;
	padding: 10px 20px;
	text-transform: uppercase;
	color: #ffffff;
	font-size: 12px;
	margin: 0;
}

.texto-sublinhado{
	border-bottom: 1px solid var(--cor-1);
	padding-bottom: 5px;
	text-transform: uppercase;
	font-size: 14px;
}

.texto-sublinhado svg{
	margin-left: 10px;
}

/* Footer */
footer{
	background-color: var(--cor-1);
}

footer svg, footer a asvg{
	color: #FFF;
}

footer h3{
	position: relative;
	color: #ffffff;
	text-transform: uppercase;
	font-size: 14px;
	margin-bottom: 10px;
	display: block;
	font-weight: 600;
}

footer p, footer a{
	line-height: 32px;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	display: block;
}

footer a.endereco-rodape{
	line-height: 26px;
}

footer a:hover{
	color: var(--cor-1-hover);
}

.redes-sociais-footer{
	text-align: center;
	padding-top: 20px;
}

.redes-sociais-footer, .redes-sociais-footer a{
	color: #FFFFFF;
	font-size: 28px;
}

.email-rodape{
	font-weight: 700;
}

.fone-rodape{
	white-space: nowrap;
	font-size: 32px;
	font-family: "Poppins",sans-serif;
	text-rendering: optimizeLegibility;
	font-weight: 300;
	line-height: 1.2;
	color: #FFFFFF;
	margin-bottom: 10px;
	display: block;
}

.fone-rodape small{
	font-size: 18px;
}

.rodape-baixo{
	text-align: center;
	padding-top: 20px;
	padding-bottom: 10px;
}

footer .rodape-baixo p{
	text-align: center;
	color: #FFFFFF;
	margin-bottom: 20px;
}

footer .rodape-baixo a{
	display: inline;
}

.redes-sociais svg{
	color: var(--cor-1);
	margin-right: 8px;
}

/* Páginas */
.topo-paginas{
	background-color: #F7F7F7;
	padding: 30px 0;
}

.topo-paginas h3{
	margin-bottom: 0;
}

.topo-paginas h2{
	margin: 0;
}

.bg-cinza{
	background-color: #F7F7F7;
}

.icone-mvv h3, .texto-simples h3{
	margin-bottom: 10px;
	font-size: 20px;
	line-height: 26px;
	color: #121A1F;
	font-weight: 600;
}

.texto-simples img{
	height: auto !important;
}

.texto-simples ul{
	list-style-position: inside;
}

.imagem-artigo{
	float: right;
	max-width: 40%;
	margin: 0 0 30px 50px;
}

#owl-galeria-lateral .owl-nav .owl-next, #owl-galeria-lateral .owl-nav .owl-prev{
	width: 30px;
	height: 30px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -15px;
}

#owl-galeria-lateral .owl-nav .owl-next{
	background-image: url(../img/chevron-right-solid.svg);
	right: 0;
}

#owl-galeria-lateral .owl-nav .owl-prev{
	background-image: url(../img/chevron-left-solid.svg);
	left: 0;
}

/* Contato */
.contato-topo{
	padding-bottom: 30px;
	display: flex;
	justify-content: center;
}

.contato-individual{
	text-align: left;
	line-height: 19px;
	white-space: nowrap;
	margin: 0 20px;
}

.contato-individual:after{
	display: block;
	content: '';
	clear: both;
}

.icone-contato{
	float: left;
	width: 65px;
	height: 65px;
	line-height: 61px;
	text-align: center;
	border: 2px solid var(--cor-1);
	color: #000000;
	font-size: 20px;
	margin-right: 15px;
}

.icone-contato-text{
	float: left;
}

.contato-individual span{
	font-size: 12px;
	color: #666666;
	margin: 11px 0 0;
	display: inline-block;
	vertical-align: top;
}

.contato-individual a{
	font-size: 16px;
	line-height: 24px;
	display: inline-block;
	vertical-align: top;
	color: #000000;
	font-weight: 600;
	margin: 0;
}

.contato-individual a:hover{
	color: var(--cor-1-hover);
}

.g-recaptcha{
	display: inline-block;
	vertical-align: top;
	margin-bottom: 20px;
}


/* Modal */
.modal-content{
	padding: 50px 120px 75px;
	position: relative;
}

.modal-dialog{
	max-width: 730px;
}

.modal-content .close{
    right: -40px;
    top: -40px;
    position: absolute;
    margin: 0;
    color: #FFF;
    opacity: 1;
    font-size: 32px;
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 32px;
    border: 1px solid #FFF;
    border-radius: 50%;
}

.modal-content h3{
	font-size: 30px;
	font-weight: 700;
	color: var(--cor-1);
	margin-bottom: 30px;
}


/* Animações */
.anime.animacao-baixo{
	opacity: 0.00;
	filter: alpha(opacity =0);
	-webkit-transition: all 1000ms linear;
	-moz-transition: all 1000ms linear;
	-ms-transition: all 1000ms linear;
	-o-transition: all 1000ms linear;
	transition: all 1000ms linear;
	-moz-transform: translateY(10px);
	-webkit-transform: translateY(10px);
	-o-transform: translateY(10px);
	-ms-transform: translateY(10px);
	transform: translateY(10px);
}

.animacao-baixo.animacaoAtiva{
	opacity: 1;
	filter: alpha(opacity =100);
	-moz-transform: translateY(0px);
	-webkit-transform: translateY(0px);
	-o-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}

.overflow-hidden{
	overflow: hidden;
}

.anime.animacao-esquerda{
	-webkit-transition: all 1000ms linear;
	-moz-transition: all 1000ms linear;
	-ms-transition: all 1000ms linear;
	-o-transition: all 1000ms linear;
	transition: all 1000ms linear;
	-moz-transform: translateX(-600px);
	-webkit-transform: translateX(-600px);
	-o-transform: translateX(-600px);
	-ms-transform: translateX(-600px);
	transform: translateX(-600px);
	opacity: 0.00;
	filter: alpha(opacity =0);
}

.anime.animacao-direita{
	opacity: 0.00;
	filter: alpha(opacity =0);
	-webkit-transition: all 1000ms linear;
	-moz-transition: all 1000ms linear;
	-ms-transition: all 1000ms linear;
	-o-transition: all 1000ms linear;
	transition: all 1000ms linear;
	-moz-transform: translateX(600px);
	-webkit-transform: translateX(600px);
	-o-transform: translateX(600px);
	-ms-transform: translateX(600px);
	transform: translateX(600px);
}

.animacao-esquerda.animacaoAtiva, .animacao-direita.animacaoAtiva{
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	-o-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
	filter: alpha(opacity =100);
}

/* Serviços  */
.servico-individual{
	margin-bottom: 50px;
	text-align: center;
}

.fundo-servico-individual{
	width: 100%;
	padding-bottom: 80%;
	position: relative;
	display: block;
	margin-bottom: 20px;
}

.fundo-servico-individual img{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
}

/* Queries */
@media(min-width: 1320px) {
	.container{max-width: 1280px;}
}

@media(max-width: 1199px) {
	body{padding-top: 120px;}
	.link-location{display: none;}
	.collapse .btn{margin-left: 30px;}
	.btn{font-size: 14px; line-height: 40px; padding: 0 16px;}
	.navbar-nav li{margin-left: 25px;}
	.navbar-brand{max-width: 130px;}
	.tp-caption h2{font-size: 32px; margin-bottom: 20px;}
	.espaco{height: 60px;}
	h1, h2, .number-item{font-size: 26px; line-height: 34px;}
	.noticia-individual h3 a, .servico-individual h3{font-size: 18px; line-height: 26px;}
	.logo-rodape{display: none;}
	.icone-mvv img{max-width: 60px;}

}

@media(max-width: 991px) {
	body{padding-top: 115px;}
	.navbar-brand{max-width: 150px;}
	.navbar-nav li{margin-left: 0;}
	.navbar{padding: 10px 0;}
	.navbar-top .nav-left a{margin-right: 30px; font-size: 13px;}
	.navbar-nav li a{line-height: 36px;}
	.collapse .btn{margin-left: 0;}
	.navbar-collapse{padding-top: 10px; padding-bottom: 10px;}
	.tp-caption h2{font-size: 26px; margin-bottom: 10px;}
	h1, h2, .number-item{font-size: 22px; line-height: 30px;}
	.noticia-individual h3 a, .servico-individual h3{font-size: 16px; line-height: 24px;}
	.icone-mvv{margin-bottom: 30px;}
	.icone-mvv h3, .texto-simples h3{font-size: 18px;}
	.fone-rodape{font-size: 28px;}

}

@media(max-width: 767px){
	.navbar-top{display: none;}
	.navbar-brand{margin-left: 15px;}
	.navbar-toggler{margin-right: 15px;}
	body, p{font-size: 15px;}
	body{padding-top: 75px;}
	.navbar-nav{padding: 10px 15px;}
	.collapse .btn{margin-left: 15px;}
	.tp-banner li:after{position: absolute;left: 0;top: 0;width: 100%;height: 100%;background-color: var(--cor-1);z-index: 2;content: '';display: block;opacity: 0.9;}
	.capa-empresa-esquerda{margin-bottom: 30px;}
	.caixa-imagem-artigo{margin-bottom: 15px;}
	.noticia-individual h3 a, .servico-individual h3{margin-bottom: 10px;}
	.fundo-capa{display: none;}
	.bg-saude{padding: 0;}
	footer{padding-top: 40px;}
	footer .row > div{margin-bottom: 30px;}
	footer .espaco-menor{display: none;}
	.fone-rodape{font-size: 26px;}
	.whats-fixo{right: 10px; bottom: 10px; height: 42px; line-height: 42px; padding: 0 18px; font-size: 14px;}
	.topo-paginas h2{font-size: 18px;}
	.subtitle{font-size: 14px;}
	.produto-esquerda{margin-bottom: 30px;}
	.imagem-artigo{float: none; display: block; margin: 0 auto 30px; max-width: 100%;}
	input.form-control, textarea.form-control, .custom-file-label, select.custom-select{font-size: 14px; margin-bottom: 20px;}
	input.form-control, .custom-file-label, .custom-file, select.custom-select{height: 50px;}
	textarea.form-control{height: 120px;}

}

.caixa-alert{
	position: fixed;
	left: 5px;
	bottom: 5px;
	width: 400px;
	padding: 30px;
	background-color: #FFFFFF;
	z-index: 9999;
	-webkit-box-shadow: 0 0 3px 1px rgba(0,0,0,0.2);
	box-shadow: 0 0 3px 1px rgba(0,0,0,0.2);
}

body .caixa-alert p{
	font-size: 14px;
	color: #999999;
	margin: 0 0 15px;
	line-height: 24px;
}

body .caixa-alert a{
	color: var(--cor-1);
}

.caixa-alert a.botaoCookies{
	cursor: pointer;
	display: inline-block;
	vertical-align: middle;
	padding: 0 20px;
	height: 36px;
	line-height: 36px;
	background-color: var(--cor-1);
	color: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    margin-left: 15px;
}

.caixa-alert a.botaoCookies:hover{
	color: #FFFFFF;
	background-color: #333333;
}

.recusar{
	display: inline-block;
	vertical-align: middle;
	line-height: 36px;
	background-color: transparent;
	border: none;
	color: #999999;
	text-decoration: underline;
}

@media (max-width: 1000px) {
	.caixa-alert{
		padding: 20px;
	}
}

@media (max-width: 767px) {
	.caixa-alert{
		max-width: 90%;
	}

    .caixa-alert p{
        font-size: 12px;
        line-height: 20px;
    }
}