:root {
	--azul: #0B5581;
	--amarelo: #FFCB08;
	--fundo: #F5F5F5;
	--fonte-cinza: #8A8C8F;

	--fonte-light: 'Montserrat-Light';
	--fonte-thin: 'Montserrat-Thin';
	--fonte-regular: 'Montserrat-Regular';
	--fonte-medium: 'Montserrat-Medium';
	--fonte-bold: 'Montserrat-Bold';
	--fonte-semibold: 'Montserrat-SemiBold';
	--fonte-black: 'Montserrat-Black';
	--box-shadow: -4px 8px 16px 0px rgb(0 0 0 / 20%);
}

html, body{
	max-width: 100%;
	width: 100%;
	overflow-x: hidden;
}

body{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	padding: 0;
	overflow: hidden;
	position: relative;
	background-color: var(--fundo);
}

*:not(.fa){
	text-decoration: none;
	margin: 0;
	padding: 0;
	outline: none !important;
	box-sizing: border-box;
	list-style: none;
	font-family: var(--fonte-medium);
}

input {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

img{
	max-width: 100%;
	width: auto;
}

div{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
}

section{
	position: relative;
	width: 100%;
	overflow: visible;
}

.container{
	width: 88vw;
	margin: 0 auto;
	max-width: 1680px;
}

p, ul li{
	font-family: var(--fonte-regular);
	color: var(--fonte-cinza);
	padding: 0;
	border-bottom: none;
	line-height: 26px;
}

a{
	transition: .3s;
}

a:hover, a:hover, a:focus {
	text-decoration: none;
}

h1,h2,h3,h4,h5{
	font-family: var(--fonte-regular);
	font-weight: normal !important;
}

h2 span, h3 span, h4 span, h5 span, p span {
	font-family: var(--fonte-bold);
}

label.error {
	position: absolute;
	font-size: 12px;
	color: #ff4f4f;
	bottom: -18px;
	left: 0;
	margin: 0;
	font-family: var(--fonte-regular);
}

input.error{
	/*border: 1px solid #ff4f4f !important;*/
}

textarea.error{
	/*border: 1px solid #ff4f4f !important;*/
}

.enviar.active {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 43%);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

.enviar.active .loader {
	border: 6px solid #fff;
	border-top: 6px solid var(--azul);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 2s linear infinite
}

@keyframes spin {
	0% {
		transform: rotate(0)
	}
	100% {
		transform: rotate(360deg)
	}
}

.not-select{
	-webkit-user-select: none;  
	-moz-user-select: none;     
	-ms-user-select: none;      
	user-select: none;  
}


.loading {
	position: fixed;
	width: 100vw;
	height: 100vh;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-content: center;
	z-index: 99
}

.loading .logo-loading {
	width: 90px;
	overflow: hidden;
	opacity: 0;
	transition: 1s
}

.loading .logo-loading.active {
	width: 227px
}

.loading .logo-loading img {
	width: 227px;
	max-width: 227px
}

.voltar-topo{
	position: fixed;
	bottom: 96px;
	right: 20px;
	z-index: 2;
	cursor: pointer;
}

.voltar-topo .item{
	width: 70px;
	height: 70px;
	background-color: var(--azul);
	border-radius: 50%;
	position: absolute;
	right: 0px;
	bottom: 30px;
	display: none;
	box-shadow: var(--box-shadow);
	transition: .3s;
}

.voltar-topo .item i{
	color: var(--amarelo);
	font-size: 40px;
}

#whats{
	position: fixed;
	right: 20px;
	bottom: 40px;
	z-index: 2;
	background-color: var(--azul);
	border-radius: 50%;
	width: 70px;
	height: 70px;
	box-shadow: var(--box-shadow);
	transition: .3s;
}

#whats i{
	color: var(--amarelo);
	font-size: 46px;
	left: 1px;
	position: relative;
}

#whats:hover{
	transform: translateY(-10px);
}



header{

}

header.active {
	position: fixed;
	top: 0;
	box-shadow: var(--box-shadow);
	background-color: #fff;
	z-index: 3;
	width: 100%;
}

header.active .box-header:before{
	display: none	;
}

header.active .box-header {
	padding: 10px 0;
}

header.active .box-header .botoes {
	top: -7px;
}

header .box-header{
	justify-content: flex-start;
	padding: 30px 0;
}

header .box-header:before{
	content: "";
	background-color: var(--azul);
	width: 90%;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 5%;
}

header .box-header .logo{
	width: 207px;
	margin-right: 20px;
}

header .box-header .menu{
	width: calc(100% - 590px);
	border-right: 2px solid var(--fonte-cinza);
}

header .box-header .menu ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

header .box-header .menu ul li{
	margin: 0 16px;
}

header .box-header .menu ul li a{
	font-size: 14px;
	color: var(--fonte-cinza);
	position: relative;
}

header .box-header .menu ul li a:hover{
	
}

header .box-header .menu ul li a:before {
	transition: .3s;
	content: "";
	background-color: var(--fonte-cinza);
	width: 0%;
	height: 2px;
	bottom: -8px;
	left: 0;
	display: block;
	position: absolute;
}

header .box-header .menu ul li a:hover:before{
	width: 100%;
}


header .box-header .botoes{
	top: 14px;
	width: auto;
	position: absolute;
	right: -50px;
}

header .box-header .botoes svg{
	display: flex;
	position: relative;
	padding: 0;
}

header .box-header .botoes svg text,
header .box-header .botoes svg tspan{
	font-family: var(--fonte-regular);
}

header .box-header .botoes a:first-child{
	left: 80px;
	position: relative;
}


#home{
	
}

#home .box-home{
	margin-bottom: 0;
}

#home .box-home img{
	
}

#home .box-home .item{
	height: 100%;
}

#home .box-home .item .infos{
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

#home .box-home .item .infos .container{
	justify-content: flex-start;
}

#home .box-home .item .infos .container .box-infos{
	max-width: 316px;
	margin-left: 70px;
}

#home .box-home .item .infos .container .titulo{
	justify-content: flex-start;
}

#home .box-home .item .infos .container .titulo h2{
	width: 100%;
	text-align: left;
	color: var(--azul);
	font-family: var(--fonte-bold);
	font-size: 70px;
	line-height: 70px;
	max-width: 316px;
	position: relative;
}

#home .box-home .item .infos .container .titulo h2:before{
	content: "";
	width: 110px;
	height: 5px;
	background-color: var(--azul);
	position: absolute;
	bottom: -20px;
	left: 0;
}

#home .box-home .item .infos .container .titulo p{
	width: 100%;
	text-align: left;
	font-family: var(--fonte-light);
	font-size: 26px;
	line-height: 36px;
	margin: 56px 0;
}

#home .box-home .item .infos .container .btn{
	justify-content: flex-start;
}

#home .box-home .item .infos .container .btn a{
	width: 166px;
	padding: 10px 10px;
	background-color: var(--azul);
	color: var(--amarelo);
	font-size: 22px;
	border-radius: 30px;
	box-shadow: var(--box-shadow);
	text-align: center;
	font-family: var(--fonte-light);
}

#home .box-home .item .infos .container .btn a:hover{
	opacity: .8;
}

#home .box-home .item .infos .slick-dots{

}

#home .box-home ul.slick-dots {
	width: auto;
	top: 90px;
	left: 7%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
	height: 350px;
}

#home .box-home ul.slick-dots li{
	width: 100%;
	position: relative;
}

#home .box-home ul.slick-dots li:before{
	content: "";
	display: block;
	background-color: var(--amarelo);
	width: 0;
	height: 1px;
	position: absolute;
	top: 4px;
	left: 0;
}

#home .box-home ul.slick-dots li button{
	border: none;
	font-size: 0;
	background-color: #D5D5D6;
	width: 3px;
	height: 3px;
	border-radius: 50%;
}



#home .box-home ul.slick-dots li.slick-active button{
	background-color: var(--amarelo);
	
}

#home .box-home ul.slick-dots li.slick-active:before{
	width: 40px;
}

#home .box-home ul.slick-dots li button:before{
	display: none;
}




.tit{
	margin-bottom: 50px;
	width: 100%;
}

.tit.right{
	justify-content: flex-end;
}

.tit.left{
	justify-content: flex-start;
}

.tit.center{
	justify-content: center;
}

.tit h1,
.tit h2{
	font-size: 54px;
	line-height: 74px;
	color: var(--amarelo);
	font-family: var(--fonte-semibold);
	position: relative;
}

.tit h1:before,
.tit h2:before{
	content: "";
	display: block;
	background-color: var(--amarelo);
	width: 110px;
	height: 5px;
	position: absolute;
	bottom: -6px;
	right: 0;
}

.tit.right h1:before,
.tit.right h2:before{

}

.tit.left h1:before,
.tit.left h2:before{
	right: auto;
	left: 0;
}

.tit.center h1:before,
.tit.center h2:before{
	right: 30%;
}








#seja-parceiro{
	background-color: var(--azul);
	min-height: 1080px;
	padding: 80px 0;
}

#seja-parceiro .box-parceiro{
	justify-content: flex-end;
}

#seja-parceiro .box-parceiro .imagem{
	position: absolute;
	left: -16%;
	top: 0;
	width: auto;
}

#seja-parceiro .box-parceiro .infos{
	width: 60%;
	padding-bottom: 80px;
	justify-content: flex-end;
}

#seja-parceiro .box-parceiro .infos .box{
	padding: 50px 36px;
	border-radius: 40px;
	background: rgb(15,102,154);
	background: linear-gradient(180deg, rgba(15,102,154,1) 0%, rgba(11,85,129,1) 100%);
	box-shadow: var(--box-shadow);
	justify-content: flex-start;
}

#seja-parceiro .box-parceiro .infos .box.menor{
	width: 372px;
	max-width: 100%;
	position: absolute;
	left: 0;
	top: 40%;
	z-index: 1;
}

#seja-parceiro .box-parceiro .infos .box.maior{
	width: 750px;
	max-width: 100%;
	padding: 50px 36px 50px 200px;
}

#seja-parceiro .box-parceiro .infos .box ul{
	width: 100%;
}

#seja-parceiro .box-parceiro .infos .box p,
#seja-parceiro .box-parceiro .infos .box ul li{
	font-size: 24px;
	line-height: 40px;
	color: #fff;
	margin-bottom: 20px;
	font-family: var(--fonte-light);
	text-align: right;
	width: 100%;
}

#seja-parceiro .box-parceiro .infos .box .item{
	margin-bottom: 26px;
	justify-content: flex-start;
}

#seja-parceiro .box-parceiro .infos .box .icone{
	margin-right: 20px;
}

#seja-parceiro .box-parceiro .infos .box .info{
	width: calc(100% - 104px);
	max-width: 170px;
}

#seja-parceiro .box-parceiro .infos .box .info p{
	font-size: 22px;
	text-align: left;
	line-height: 28px;
	margin-bottom: 0;
}

#seja-parceiro .box-parceiro .infos .box .interessado{
	justify-content: flex-start;
}

#seja-parceiro .box-parceiro .infos .box .interessado p{
	margin-bottom: 0;
	text-align: left;
}

#seja-parceiro .box-parceiro .infos .box .interessado span{
	color: #fff;
	margin: 10px 0;
	font-size: 16px;
	font-family: var(--fonte-light);
}

#seja-parceiro .box-parceiro .infos .box .interessado a{
	background-color: var(--amarelo);
	box-shadow: var(--box-shadow);
	color: var(--azul);
	border-radius: 42px;
	font-size: 22px;
	padding: 10px 10px;
	width: 194px;
	text-align: center;
}

#seja-parceiro .box-parceiro .infos .box .interessado a:hover{
	opacity: .8;
}

#seja-parceiro .box-parceiro .documentos{
	justify-content: flex-end;
	margin-top: 10px;
}

#seja-parceiro .box-parceiro .documentos .titulo{
	justify-content: flex-end;
	margin-bottom: 60px;
}

#seja-parceiro .box-parceiro .documentos .titulo h3{
	font-size: 24px;
	color: #fff;
	background: rgb(15,102,154);
	background: linear-gradient(180deg, rgba(15,102,154,1) 0%, rgba(11,85,129,1) 100%);
	width: 366px;
	text-align: center;
	border-radius: 42px;
	padding: 18px 10px;
	box-shadow: var(--box-shadow);
}

#seja-parceiro .box-parceiro .documentos .itens{
	justify-content: flex-end;
	align-items: flex-start;
}

#seja-parceiro .box-parceiro .documentos .itens .cada{
	max-width: 146px;
	margin-left: 50px;
}

#seja-parceiro .box-parceiro .documentos .itens .cada p{
	width: 100%;
	text-align: center;
	margin-top: 20px;
	font-size: 18px;
	line-height: 24px;
	color: #fff;
	font-family: var(--fonte-light);
}


#produtos{
	background-color: var(--amarelo);
	padding: 80px 0;
}

#produtos .box-produtos{
	max-width: 80%;
}

#produtos .box-produtos .tit h2{
	color: var(--azul);
}

#produtos .box-produtos .tit h2:before{
	background-color: var(--azul);
}

#produtos .box-produtos .filtros{
	justify-content: space-between;
	align-items: flex-start;
	
}

#produtos .box-produtos .filtros .cada{
	max-width: 106px;
	cursor: pointer;
	transition: .3s
}

#produtos .box-produtos .filtros .cada .icone{
	transition: .3s
}

#produtos .box-produtos .filtros .cada.active .icone,
#produtos .box-produtos .filtros .cada:hover .icone{
	background-color: var(--amarelo);
	background: var(--amarelo);
}

#produtos .box-produtos .filtros .cada.active .icone i,
#produtos .box-produtos .filtros .cada:hover .icone i{
	color: var(--azul);
}

#produtos .box-produtos .filtros .cada p{
	color: var(--azul);
	line-height: 22px;
	font-family: var(--fonte-light);
	margin-top: 20px;
	width: 100%;
	text-align: center;
}

#produtos .box-produtos .detalhes{
	
}

#produtos .box-produtos .detalhes .item{
	display: none;
	justify-content: space-between;
	align-items: flex-start;
	transition: .3s;
}

#produtos .box-produtos .detalhes .item.active{
	display: flex;
}

#produtos .box-produtos .detalhes .item .imagem{
	max-width: 480px;
	width: 40%;
}

#produtos .box-produtos .detalhes .item .infos{
	width: 58%;
	padding-top: 60px;
}

#produtos .box-produtos .detalhes .item .infos .conteudo{
	
}

#produtos .box-produtos .detalhes .item .infos .conteudo .cada{
	justify-content: flex-start;
	margin-bottom: 20px;
}

#produtos .box-produtos .detalhes .item .infos .conteudo .cada p{
	font-size: 24px;
	color: var(--azul);
	line-height: 34px;
	margin-bottom: 30px;
	font-family: var(--fonte-light);
	width: 100%;
	text-align: left;
}

#produtos .box-produtos .detalhes .item .infos .conteudo .cada img{
	border-radius: 50px;
}

#produtos .box-produtos .detalhes .item .infos .conteudo .btn{
	justify-content: flex-start;
}

#produtos .box-produtos .detalhes .item .infos .conteudo .btn a{
	font-size: 18px;
	line-height: 54px;
	color: var(--amarelo);
	background-color: var(--azul);
	border-radius: 30px;
	width: 210px;
	text-align: center;
	font-family: var(--font-medium);
}

#produtos .box-produtos .detalhes .item .infos .conteudo .btn a:hover{
	opacity: .8;
}


#rede-credenciada{
	padding-top: 80px;
}

#rede-credenciada .box-rede{
	max-width: 80%;
	z-index: 1;
}

#rede-credenciada .box-rede .tit h2{
	color: var(--azul);
}

#rede-credenciada .box-rede .tit h2:before{
	background-color: var(--azul);
	right: 37%;
}

#rede-credenciada .box-rede .conteudo{
	padding: 50px;
	border-radius: 42px;
	background: rgb(15,102,154);
	background: linear-gradient(180deg, rgba(15,102,154,1) 0%, rgba(11,85,129,1) 100%);
	box-shadow: var(--box-shadow);
}

#rede-credenciada .box-rede .conteudo .titulo h3{
	color: #fff;
	font-size: 32px;
	line-height: 48px;
	font-style: oblique;
	font-family: var(--fonte-light);
	margin-bottom: 40px;
	text-align: center;
}

#rede-credenciada .box-rede .conteudo .infos{
	justify-content: flex-start;
}

#rede-credenciada .box-rede .conteudo .infos:before{
	content: "";
	display: block;
	height: 80%;
	width: 4px;
	background-color: var(--amarelo);
	position: absolute;
	left: 26%;
	top: 10%;
}

#rede-credenciada .box-rede .conteudo .infos:after{
	content: "";
	display: block;
	height: 80%;
	width: 4px;
	background-color: var(--amarelo);
	position: absolute;
	right: 38%;
	top: 10%;
}

#rede-credenciada .box-rede .conteudo .infos .item{
	width: calc(100%/3 - 20px);
	margin: 0 20px 48px 0;
	cursor: pointer;
}

#rede-credenciada .box-rede .conteudo .infos .item p{
	color: var(--amarelo);
	font-size: 26px;
	line-height: 32px;
	width: 100%;
	text-align: left;
}

#rede-credenciada .box-rede .conteudo .infos .item span{
	color: #fff;
	font-size: 18px;
	line-height: 32px;
	font-style: oblique;
	font-family: var(--fonte-light);
	width: 100%;
	text-align: left;
}


#quem-somos{
	background-color: var(--amarelo);
	margin-top: -100px;
	min-height: 1080px;
}

#quem-somos .imagem{
	z-index: 2;
	position: absolute;
	left: -8%;
	top: 8px;
	width: auto;
}

#quem-somos .box-somos{
	max-width: 74%;
	padding-top: 200px;
	justify-content: flex-end;
}

#quem-somos .box-somos .tit{
	
}


#quem-somos .box-somos .tit h2{
	color: var(--azul);
}

#quem-somos .box-somos .tit h2:before{
	background-color: var(--azul);
}

#quem-somos .box-somos .conteudo{
	width: 60%;
}

#quem-somos .box-somos .conteudo p{
	font-size: 24px;
	line-height: 40px;
	color: var(--azul);
	margin-bottom: 20px;
	font-family: var(--fonte-light);
	width: 100%;
	text-align: right;
}

#novidades{
	background-color: var(--azul);
	padding: 80px 0 0;
	margin-bottom: -50px;
}

#novidades .box-novidades{
	max-width: 74%;
}

#novidades .box-novidades .posts{
	justify-content: space-between;
	margin: 32px 0;
}

#novidades .box-novidades .posts .item{
	/*width: calc(100%/3 - 40px);*/
	transition: .3s;
	background-color: #fff;
	border-radius: 20px;
	padding: 20px;
	margin: 30px;
}

#novidades .box-novidades .posts .item:hover{
	transform: translateY(-6px);
}

#novidades .box-novidades .posts .item a{
	
}

#novidades .box-novidades .posts .item .imagem{
	background-position: center;
	height: 244px;
	background-repeat: no-repeat;
	border-radius: 20px;
	margin-top: -44px;
	background-size: cover;
	margin-bottom: 28px;
}

#novidades .box-novidades .posts .item .infos h2{
	color: var(--azul);
	font-size: 22px;
	line-height: 28px;
	margin-bottom: 10px;
	width: 100%;
	text-align: left;
}

#novidades .box-novidades .posts .item .infos p{
	width: 100%;
	text-align: left;
	font-size: 14px;
	line-height: 22px;
}

#novidades .box-novidades .veja-todas{
	margin: 20px 0;
}

#novidades .box-novidades .veja-todas a{
	font-size: 24px;
	line-height: 28px;
	color: var(--amarelo);
	background: rgb(15,102,154);
	background: linear-gradient(180deg, rgba(15,102,154,1) 0%, rgba(11,85,129,1) 100%);
	padding: 16px 26px;
	border-radius: 42px;
	box-shadow: var(--box-shadow);
}

#novidades .box-novidades .veja-todas a:hover{
	transform: translateY(-6px);
}


#contato{
	margin-top: 150px;
}


#contato:before{
	content: "";
	background-color: var(--azul);
	width: 100%;
	height: 118px;
	top: -100px;
	left: 0;
	position: absolute;
	margin-bottom: -30px;
}

#contato .box-contato{
	max-width: 74%;
	margin-bottom: 50px;
	border-radius: 20px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 50px;
	margin-top: -50px;
	justify-content: space-between;
}

#contato .box-contato .item{
	width: calc(100%/3 - 50px);
	background-color: #fff;
	padding: 10px 10px;
	border-radius: 12px
}

#contato .box-contato .item a{
	font-size: 18px;
	line-height: 36px;
	color: var(--azul);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

#contato .box-contato .item p{
	font-size: 18px;
	line-height: 36px;
	color: var(--azul);
}

#contato .box-contato .item a i{
	margin-right: 6px;
	font-size: 34px;
}



#modal-rede{
	position: fixed;
	width: 100%;
	height: 100%;
	left: -100%;
	background-color: rgb(0 0 0 / 64%);
	z-index: 3;
	transition: .3s;
}

#modal-rede.active{
	left: 0;
}

#modal-rede .box-modal{
	background-color: var(--azul);
	max-width: 100%;
	width: 1280px;
	padding: 50px;
	height: 90vh;
	overflow: auto;
}

#modal-rede .box-modal .fechar{
	width: 50px;
	height: 50px;
	background-color: var(--azul);
	box-shadow: var(--box-shadow);
	border-radius: 50%;
	position: absolute;
	right: 20px;
	top: 20px;
	cursor: pointer;
}

#modal-rede .box-modal .fechar span{
	content: "";
	display: block;
	height: 4px;
	width: 26px;
	border-radius: 10px;
	transition: 0.5s;
	top: 20px;
	line-height: 22px;
	background-color: var(--amarelo);
	transform: rotate( 45deg );
}

#modal-rede .box-modal .fechar span:before{
	content: "";
	display: block;
	height: 4px;
	width: 26px;
	position: absolute;
	border-radius: 10px;
	transition: 0.5s;
	background-color: var(--amarelo);
	transform: rotate( -90deg );
	top: 0;
}

#modal-rede .box-modal .conteudo{

}

#modal-rede .box-modal .conteudo{
	justify-content: flex-start;
	align-items: flex-start;
}

#modal-rede .box-modal .conteudo .item{
	width: calc(100%/2 - 40px);
	margin-right: 20px;
	margin-bottom: 20px;
}

#modal-rede .box-modal .conteudo .item h3{
	width: 100%;
	text-align: left;
	font-size: 34px;
	line-height: 60px;
	color: var(--amarelo);
	font-family: var(--fonte-semibold); 
}

#modal-rede .box-modal .conteudo .item p{
	width: 100%;
	text-align: left;
	font-size: 24px;
	line-height: 44px;
	color: #F5F5F5;
	position: relative;
	font-family: var(--fonte-light);
}

#modal-rede .box-modal .cada{
	display: none;
}

#modal-rede .box-modal .cada.active{
	display: flex;
}





#banner{
	background-color: var(--amarelo);
	margin-top: 50px;
	padding: 100px 0;
}

#banner h1{
	font-size: 80px;
	line-height: 100px;
	color: var(--azul);
}

#banner h1:before{
	background-color: var(--azul);
	right: 37%;
}



#banner.interna-blog{
	padding: 100px 0 10px;
}

#banner.interna-blog .container{
	justify-content: flex-start;
}

#banner.interna-blog a{
	color: #fff;
	text-align: left;
	color: var(--azul);
	font-family: var(--fonte-light);
	font-size: 30px;
	line-height: 44px;
}

#banner.interna-blog:before{
	background-color: var(--amarelo);
	height: 570px;
	width: 100%;
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: -200%;
}

#banner.interna-blog h1{
	font-size: 54px;
	line-height: 74px;
}



#post .box-post .imagem img{
	border-radius: 42px;
}

#post .box-post .texto{
	margin: 80px 0 0;
}

#post .box-post .texto p{
	font-size: 26px;
	line-height: 44px;
	margin-bottom: 40px;
	font-family: var(--fonte-light);
}


#blog{
	margin-top: -20px;
}

#blog .box-blog{

}

#blog .box-blog .item{
	border-radius: 50px;
	box-shadow: var(--box-shadow);
	padding: 40px;
	background-color: #fff;
	justify-content: space-between;
	height: 414px;
	margin-bottom: 160px;
}



#blog .box-blog .item .imagem{
	height: 458px;
	width: 458px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 50px;
	margin-top: -60px;
	box-shadow: var(--box-shadow);
}

#blog .box-blog .item .infos{
	width: calc(100% - 520px);
}

#blog .box-blog .item .infos h2{
	font-family: var(--fonte-medium);
	color: var(--azul);
	font-size: 50px;
	line-height: 28px;
	width: 100%;
	text-align: left;
}

#blog .box-blog .item .infos p{
	font-size: 24px;
	line-height: 46px;
	width: 100%;
	text-align: left;
	font-family: var(--fonte-light);
	margin: 20px 0;
}

#blog .box-blog .item .infos .btn{
	justify-content: flex-start;

}

#blog .box-blog .item .infos .btn a{
	background: rgb(15,102,154);
	background: linear-gradient(180deg, rgba(15,102,154,1) 0%, rgba(11,85,129,1) 100%);
	font-size: 22px;
	line-height: 20px;
	color: var(--amarelo);
	border-radius: 40px;
	text-align: center;
	font-family: var(--fonte-light);
	padding: 14px 10px;
	width: 166px;
	margin-right: 30px;
	box-shadow: var(--box-shadow);
}

#blog .box-blog .item .infos .btn a:hover{
	transform: translateY(-4px);
}

#blog .box-blog .item .infos .btn span{
	font-size: 20px;
	line-height: 16px;
	color: #8A8C8F;
	font-family: var(--fonte-medium);
}

#blog .box-blog .item .infos .btn span i{
	color: #8A8C8F;
	font-size: 20px;
	margin-right: 6px;
}

#blog .box-blog .paginacao{
	margin-top: -100px;
}

#blog .box-blog .paginacao ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

#blog .box-blog .paginacao ul li{
	margin: 0 10px;
	transition: .3s;
	font-size: 28px;
	line-height: 28px;
	color: var(--azul);
	font-family: var(--fonte-medium);
}

#blog .box-blog .paginacao ul li a{
	background: rgb(234,234,234);
	background: linear-gradient(180deg, rgba(234,234,234,1) 0%, rgba(211,211,211,1) 100%);
	color: var(--azul);
	font-family: var(--fonte-medium);
	font-size: 28px;
	line-height: 28px;
	border-radius: 50%;
	height: 50px;
	width: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-shadow: var(--box-shadow);
}

#blog .box-blog .paginacao ul li.active a,
#blog .box-blog .paginacao ul li:hover a{
	background: rgb(15,102,154);
	background: linear-gradient(180deg, rgba(15,102,154,1) 0%, rgba(11,85,129,1) 100%);
	color: var(--amarelo);
}




#saude{

}

#saude .box-saude{
	
}

#saude .box-saude .item{
	
}

#saude .box-saude .item .infos{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
}

#saude .box-saude .item .infos h2{
	font-size: 54px;
	color: var(--amarelo);
	font-family: var(--fonte-bold);
	max-width: 536px;
	line-height: 22px;
}

#saude .box-saude .item .infos h2 span{
	width: 100%;
	text-align: left;
	font-size: 140px;
	line-height: 180px;
	font-family: var(--fonte-bold);
}

#saude .box-saude .item .infos h2:before{
	width: 200px;
	height: 10px;
}




#procedimentos{
	background-color: var(--amarelo);
	padding: 80px 0;
}

#procedimentos .tit{
	margin-bottom: 80px;
}

#procedimentos .tit h2{
	color: var(--azul);
}

#procedimentos .tit h2:before{
	background-color: var(--azul);
	right: 37%;
}

#procedimentos .box-procedimentos{
	justify-content: space-between;
	max-width: 80%;
	align-items: center;
}

#procedimentos .box-procedimentos .imagem{
	width: 510px;
	border-radius: 50px;
	background: rgb(15,102,154);
	background: linear-gradient(180deg, rgba(15,102,154,1) 0%, rgba(11,85,129,1) 100%);
	box-shadow: var(--box-shadow);
	max-width: 46%;
}

#procedimentos .box-procedimentos .imagem a{
	position: absolute;
	bottom: 30px;
	background: rgb(15,102,154);
	background: linear-gradient(180deg, rgba(15,102,154,1) 0%, rgba(11,85,129,1) 100%);
	color: var(--amarelo);
	box-shadow: var(--box-shadow);
	width: 210px;
	text-align: center;
	color: var(--amarelo);
	font-size: 18px;
	border-radius: 30px;
	padding: 14px 10px;
}

#procedimentos .box-procedimentos .infos{
	width: 50%;
	margin: 40px 0;
}

#procedimentos .box-procedimentos .infos .item{
	margin-bottom: 60px;
}

#procedimentos .box-procedimentos .infos .item a{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
}

#procedimentos .box-procedimentos .infos .item.tit h1{
	color: var(--azul);
	font-size: 54px;
	line-height: 74px;
	font-family: var(--fonte-semibold);
	width: 100%;
	text-align: left;
}

#procedimentos .box-procedimentos .infos .item.tit h1:before{
	background-color: var(--azul);
}

#procedimentos .box-procedimentos .infos .item h2{
	color: var(--azul);
	font-size: 40px;
	line-height: 34px;
	font-family: var(--fonte-light);
	width: 100%;
	text-align: left;
}


#seja-parceiro.saude .box-parceiro .imagem {
	top: -64px;
	left: -7%;
	z-index: 2;
}

#seja-parceiro.saude .box-parceiro .infos .box.menor {
	top: 56%;
}

#seja-parceiro.saude .box-parceiro .infos .box .interessado{
	justify-content: center;
}

#seja-parceiro.saude .box-parceiro .infos .box .interessado p,
#seja-parceiro.saude .box-parceiro .infos .box .interessado span{
	text-align: center;
}


#error{
	height: 100vh;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background-color: var(--azul);
}

#error .box-error{
	
}

#error .box-error .imagem{
	margin-bottom: 60px;
}

#error .box-error .voltar a{
	background-color: var(--amarelo);
	border-radius: 20px;
	box-shadow: var(--box-shadow);
	padding: 14px 16px;
	font-size: 14px;
	color: var(--azul);
	font-family: var(--fonte-medium);
}

#error .box-error .voltar a:hover{
	transform: translateY(-6px);
}


#error .box-error .copy{
	border-top: none;
	width: 100%;
}



.icone{
	width: 84px;
	height: 84px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: rgb(15,102,154);
	background: linear-gradient(180deg, rgba(15,102,154,1) 0%, rgba(11,85,129,1) 100%);
	border-radius: 50%;
	box-shadow: 0px 4px 16px 0px rgb(0 0 0 / 25%)
}

.icone i{
	font-size: 38px;
	color: var(--amarelo);
}


footer{
	width: 100%;
	background-color: var(--azul);
}

footer .box-footer{
	margin-top: 30px;
	width: 90%;
	justify-content: space-between;
}

footer .box-footer .infos{
	width: 64%;
}

footer .box-footer .infos .itens{
	justify-content: space-between;
}

footer .box-footer .infos .itens .item{
	width: auto;
	max-width: calc(100%/3);
}

footer .box-footer .infos .itens .item.restrita a{
	background: rgb(15,102,154);
	background: linear-gradient(180deg, rgba(15,102,154,1) 0%, rgba(11,85,129,1) 100%);
	font-size: 12px;
	color: #fff;
	padding: 10px 16px;
	font-family: var(--fonte-light);
	border-radius: 20px;
	box-shadow: var(--box-shadow);
}

footer .box-footer .infos .itens .item.restrita a:hover{
	transform: translateY(-4px);
}


footer .box-footer .infos .texto{
	margin-top: 30px;
}

footer .box-footer .infos .texto p{
	font-size: 12px;
	color: #fff;
	line-height: 28px;
	font-family: var(--fonte-light);
}





footer .box-footer .mapa{
	width: 30%;
	border-top: 6px solid var(--amarelo);
	position: absolute;
	right: 0;
	top: -36px;
}


.copy{
	background-color: var(--azul);
	padding: 20px 0;
	border-top: 2px solid var(--amarelo);
	width: 76%;
	margin-top: 24px;
}

.copy p{
	width: 100%;
	color: var(--amarelo);
	text-align: center;
	font-family: var(--fonte-light);
	font-size: 14px;
}

.copy p a{
	margin-left: 5px;
	position: relative;
	top: 2px;
}

.copy p a img{
	width: 82px;
}

@media(max-width: 1680px){
	header .box-header .menu {
		width: calc(100% - 538px);
	}

	#seja-parceiro .box-parceiro .imagem {
		left: -30%;
	}

	#seja-parceiro .box-parceiro .infos {
		width: 72%;
	}

	#seja-parceiro .box-parceiro .documentos .itens .cada {
		max-width: 130px;
		margin-left: 40px;
	}

}

@media(max-width: 1440px){
	header .box-header .menu {
		width: calc(100% - 510px);
	}

	header .box-header .menu ul li {
		margin: 0 6px;
	}

	header .box-header .botoes {
		right: -70px;
	}

	header .box-header .botoes {
		right: -80px;
	}

	header .box-header .botoes a:first-child {
		left: 90px;
	}

	#home .box-home ul.slick-dots {
		top: -18px;
	}


	#produtos .box-produtos {
		max-width: 100%;
	}

	#seja-parceiro .box-parceiro .infos {
		width: 70%;
	}

	#seja-parceiro .box-parceiro .imagem {
		left: -32%;
	}

	#seja-parceiro .box-parceiro .infos .box.maior {
		width: 604px;
	}

	#seja-parceiro .box-parceiro .infos .box p,
	#seja-parceiro .box-parceiro .infos .box ul li,
	#seja-parceiro .box-parceiro .infos .box .info p{
		font-size: 18px;
		line-height: 36px;
	}

	#seja-parceiro .box-parceiro .documentos .titulo h3 {
		font-size: 22px;
	}

	#seja-parceiro .box-parceiro .documentos .itens .cada p {
		font-size: 16px;
	}



	#rede-credenciada .box-rede {
		max-width: 90%;
	}

	#quem-somos .box-somos {
		max-width: 100%;
	}

	#quem-somos .imagem {
		z-index: 2;
		position: absolute;
		left: -24%;
	}

	#quem-somos .box-somos .conteudo {
		width: 56%;
	}

	#quem-somos .box-somos .conteudo p {
		font-size: 22px;
		line-height: 38px;
	}

	#novidades .box-novidades {
		max-width: 100%;
	}

	#contato .box-contato {
		max-width: 92%;
	}

	#contato .box-contato .item {
		width: calc(100%/3 - 28px);
	}

	#contato .box-contato .item a {
		font-size: 16px;
	}


	#modal-rede .tit {
		margin-bottom: 30px;
	}

	#modal-rede .tit h2 {
		font-size: 42px;
		line-height: 58px;
	}

	#modal-rede .box-modal .conteudo .item h3 {
		font-size: 28px;
		line-height: 42px;
	}

	#modal-rede .box-modal .conteudo .item p {
		font-size: 18px;
		line-height: 28px;
	}


	#blog .box-blog .item {
		height: 360px;
	}

	#blog .box-blog .item .imagem {
		height: 400px;
		width: 400px;
	}

	#blog .box-blog .item .infos {
		width: calc(100% - 460px);
		margin-top: -46px;
	}

	#blog .box-blog .item .infos h2 {
		font-size: 44px;
	}

	#blog .box-blog .item .infos p {
		font-size: 20px;
		line-height: 36px;
	}


	#banner.interna-blog:before {
		bottom: -130%;
	}

	#saude .box-saude .item .infos h2 {
		font-size: 44px;
		line-height: 14px;
	}

	#saude .box-saude .item .infos h2 span {
		font-size: 114px;
		line-height: 154px;
	}



	#procedimentos .box-procedimentos .infos .item.tit h1 {
		font-size: 48px;
		line-height: 68px;
	}

	#procedimentos .box-procedimentos .infos .item h2 {
		font-size: 34px;

	}

}

@media(max-width: 1366px){
	header .box-header .menu ul li a {
		font-size: 13px;
	}

	#home .box-home ul.slick-dots {
		top: 14px;
		height: 250px;
	}
	
	#quem-somos .imagem {
		left: -30%;
	}


	#procedimentos .box-procedimentos {
		max-width: 90%;
	}

	footer .box-footer {
		width: 100%;
	}


	


}

@media(max-width: 1280px){
	header {
		top: 0px;
	}

	header .box-header {
		justify-content: space-between;
	}

	header .box-header .menu{
		position: fixed;
		width: 100%;
		height: 100%;
		background-color: #fff;
		z-index: 4;
		right: -100%;
		top: 0;
		justify-content: center;
		border-right: none;
		transition: .3s;
	}

	header .box-header .menu.active{
		right: 0;
	}

	header .box-header .menu ul li a {
		font-size: 24px;
		color: var(--azul);
	}

	header .box-header .btn-menu{
		position: relative;
		width: 40px;
		height: 40px;
		cursor: pointer;
		box-sizing: border-box;
		margin: 5px 0;
		display: block;
	}

	header .box-header .btn-menu span{
		content: "";
		display: block;
		background-color: var(--azul);
		height: 4px;
		width: 40px;
		border-radius: 10px;
		transition: 0.5s;
		top: 20px;
		position: absolute;
	}



	header .box-header .btn-menu span:before{
		content: "";
		display: block;
		background-color: var(--azul);
		height: 4px;
		width: 40px;
		position: absolute;
		border-radius: 10px;
		top: -12px;
		transition: 0.5s;
	}

	header .box-header .btn-menu span:after{
		content: "";
		display: block;
		background-color: var(--azul);
		height: 4px;
		width: 40px;
		position: absolute;
		border-radius: 10px;
		top: 12px;
		transition: 0.5s;
	}

	header .box-header .btn-menu.open{
		z-index: 99990;
	}

	header .box-header .btn-menu.open span {
		line-height: 22px;
		background-color: var(--azul);
		transform: rotate(
			45deg
		);
	}

	header .box-header .btn-menu.open span:before {
		opacity: 0;
	}

	header .box-header .btn-menu.open span:after {
		background-color: var(--azul);
		transform: rotate(
			-90deg
		);
		top: 0;
	}

	header.verde .box-header .btn-menu span,
	header.verde .box-header .btn-menu span:before,
	header.verde .box-header .btn-menu span:after{
		background-color: var(--azul);
	}

	header.verde .box-header .btn-menu.open span,
	header.verde .box-header .btn-menu.open span:after{
		background-color: #fff;
	}

	header .box-header .menu ul li{
		width: 100%;
		text-align: center;
		margin: 10px 0;
	}

	header.verde .box-header .menu ul li a {
		color: #fff;
	}


	header .box-header .redes {
		position: absolute;
		right: 80px;
		margin-top: 10px;
	}

	header .box-header .botoes {
		right: 50px;
	}

	.tit h1, .tit h2 {
		font-size: 42px;
		line-height: 62px;
	}



	#home .box-home .item .infos .container .titulo h2 {
		font-size: 60px;
		line-height: 60px;
	}

	#home .box-home .item .infos .container .titulo p {
		font-size: 22px;
		line-height: 34px;
		margin: 40px 0;
	}

	#produtos .box-produtos .detalhes .item .infos .conteudo .cada p {
		font-size: 22px;
		line-height: 30px;
	}


	#seja-parceiro .box-parceiro .imagem{
		display: none;
	}

	#seja-parceiro .box-parceiro .infos,
	#rede-credenciada .box-rede,
	#contato .box-contato{
		width: 100%;
		max-width: 100%;
	}

	#seja-parceiro .box-parceiro .documentos .itens .cada {
		max-width: 120px;
	}


	#seja-parceiro .box-parceiro .documentos .itens {
		justify-content: center;
	}

	#seja-parceiro .box-parceiro .documentos .itens .cada {
		margin-left: 0;
		margin: 0 10px 20px 10px;
	}

	#rede-credenciada .box-rede .conteudo .infos:before {
		left: 29%;
	}

	#rede-credenciada .box-rede .conteudo .infos:after {
		right: 37%;
	}

	#rede-credenciada .box-rede .conteudo .infos .item span {
		font-size: 16px;
	}


	#quem-somos .imagem {
		left: -48%;
	}

	#novidades .box-novidades .posts .item {
		width: calc(100%/3 - 10px);
	}

	#contato .box-contato .item {
		width: calc(100%/3 - 6px);
	}

	#contato .box-contato .item a,
	#contato .box-contato .item p{
		font-size: 14px;
	}



	#banner h1 {
		font-size: 62px;
	}

	#blog .box-blog .item {
		height: 284px;
	}

	#blog .box-blog .item .imagem {
		height: 320px;
		width: 320px;
	}

	#blog .box-blog .item .infos {
		width: calc(100% - 350px);
	}

	#blog .box-blog .item .infos p {
		font-size: 16px;
		line-height: 30px;
	}

	#blog .box-blog .item .infos h2 {
		font-size: 36px;
		line-height: 16px;
	}


	#procedimentos .box-procedimentos .imagem {
		max-width: 40%;
	}

	#procedimentos .box-procedimentos .infos {
		width: 54%;
	}

	#procedimentos .box-procedimentos .infos .item {
		margin-bottom: 40px;
	}

	#procedimentos .box-procedimentos {
		max-width: 100%;
	}

}

@media(max-width: 1040px){
	#rede-credenciada .box-rede .conteudo .titulo h3 {
		font-size: 24px;
	}

	#quem-somos .imagem {
		left: -55%;
	}


	#saude .box-saude .item img{
		max-width: inherit;
		width: 1280px;
	}

	#saude .box-saude .item .infos h2 {
		font-size: 38px;
	}

	#saude .box-saude .item .infos h2 span {
		font-size: 98px;
		line-height: 122px;
	}

	footer .box-footer .infos {
		width: 100%;
		margin-bottom: 30px;
	}

	footer .box-footer .mapa {
		width: 100%;
		position: relative;
		top: 0;
	}

}

@media(max-width: 978px){
	#home .box-home img {
		width: 978px;
		max-width: initial;
	}

	#home .box-home ul.slick-dots {
		top: -40px;
	}

	#produtos .box-produtos .detalhes .item .imagem{
		display: none;
	}

	#produtos .box-produtos .detalhes .item .infos {
		width: 100%;
	}

	#seja-parceiro .box-parceiro .infos .box.menor {
		width: 330px;
		top: 28%;
	}

	#seja-parceiro .box-parceiro .infos .box.maior {
		width: 490px;
	}

	#seja-parceiro .box-parceiro .infos .box p, #seja-parceiro .box-parceiro .infos .box ul li, #seja-parceiro .box-parceiro .infos .box .info p {
		font-size: 16px;
		line-height: 28px;
	}

	#blog .box-blog .item {
		height: auto;
		margin-bottom: 90px;
	}

	#blog .box-blog .item .infos {
		margin-top: 0;
		width: calc(100% - 220px);
	}

	#blog .box-blog .item .imagem {
		height: 200px;
		width: 200px;
	}

	#blog .box-blog .paginacao {
		margin-top: 0;
	}

	#banner.interna-blog:before {
		height: 400px;
		bottom: -90%;
	}

	#post .box-post .texto p {
		font-size: 22px;
		line-height: 42px;
		margin-bottom: 20px;
	}

	#saude .box-saude .item .infos {
		top: 40px;
		align-items: flex-start;
	}

	#procedimentos .box-procedimentos .infos .item h2 {
		font-size: 28px;
	}

	#procedimentos .box-procedimentos .infos .item.tit h1 {
		font-size: 34px;
		line-height: 50px;
	}
}

@media(max-width: 768px){
	#seja-parceiro .box-parceiro .infos {
		justify-content: center;
	}

	#seja-parceiro .box-parceiro .infos .box.menor {
		max-width: 100%;
		top: 0;
		position: relative;
	}

	#seja-parceiro .box-parceiro .infos .box.maior {
		padding: 30px;
		margin-top: 20px;
	}

	#seja-parceiro .box-parceiro .documentos .titulo {
		justify-content: center;
	}

	#produtos .box-produtos .filtros {
		justify-content: center;
	}

	#produtos .box-produtos .filtros .cada {
		margin: 10px;
	}

	#rede-credenciada .box-rede .conteudo .titulo h3 {
		font-size: 22px;
		line-height: 34px;
	}

	#rede-credenciada .box-rede .conteudo .infos:before,
	#rede-credenciada .box-rede .conteudo .infos:after{
		display: none;
	}

	#rede-credenciada .box-rede .conteudo .infos .item {
		width: calc(100%/2 - 20px);
		margin: 0 20px 30px 0;
	}

	#quem-somos .imagem{
		display: none;
	}

	#quem-somos .box-somos .conteudo {
		width: 100%;
	}

	#contato .box-contato .item {
		width: 100%;
		margin-bottom: 10px;
	}

	#contato .box-contato .item:last-child{
		margin-bottom: 0;
	}

	#modal-rede .box-modal .conteudo .item {
		width: 100%;
		margin-right: 0;
	}



	#blog .box-blog .item {
		padding: 48px 20px;
	}


	#blog .box-blog .item .infos .btn a{
		margin-bottom: 20px;
	}


	#procedimentos .box-procedimentos {
		justify-content: center;
	}

	#procedimentos .box-procedimentos .imagem {
		max-width: 100%;
	}

	#procedimentos .box-procedimentos .infos {
		width: 100%;
	}

	#seja-parceiro.saude{
		min-height: initial;
	}


}

@media(max-width: 580px){
	header .box-header .botoes{
		display: none;
	}

	.tit h1, .tit h2 {
		font-size: 32px;
		line-height: 56px;
	}

	#home .box-home ul.slick-dots {
		top: -20px;
	}

	#home .box-home .item .infos .container .titulo h2 {
		font-size: 36px;
		line-height: 40px;
	}

	#home .box-home .item .infos .container .titulo p {
		font-size: 20px;
		line-height: 26px;
	}


	#rede-credenciada,
	#novidades,
	#produtos,
	#seja-parceiro{
		padding-top: 50px;
	}


	#rede-credenciada .box-rede .conteudo .infos .item {
		width: 100%;
	}

	#rede-credenciada .box-rede .conteudo .infos .item p,
	#rede-credenciada .box-rede .conteudo .infos .item span{
		text-align: center;
	}

	#contato .box-contato {
		padding: 24px;
	}


	#blog .box-blog .item {
		justify-content: center;
	}

	#blog .box-blog .item .infos {
		margin-top: 40px;
		width: 100%;
	}

	#blog .box-blog .item .imagem {
		height: 240px;
		width: 80%;
	}

	#blog .box-blog .item .infos .btn a {
		margin-bottom: 0px;
	}

	#banner.interna-blog:before {
		height: 240px;
		bottom: -56%;
	}

	#banner.interna-blog h1 {
		font-size: 42px;
		line-height: 70px;
	}

	#post .box-post .texto {
		margin: 40px 0 130px;
	}

	#post .box-post .texto p {
		font-size: 20px;
		line-height: 40px;
	}




	#saude .box-saude .item .infos h2 {
		font-size: 30px;
	}

	#saude .box-saude .item .infos h2 span {
		font-size: 80px;
		line-height: 110px;
	}



	#procedimentos {
		padding: 50px 0;
	}




	footer .box-footer .infos .itens .item {
		max-width: calc(100%/2 - 20px);
	}

	footer .box-footer .infos .itens .item.restrita{
		width: 100%;
		margin-top: 20px;
		max-width: 100%;
	}

	footer .box-footer .infos .texto p{
		text-align: center;
	}

}