@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montez&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/*------------------------Mudando-Barra-de-rolagem------------------------*/
::-webkit-scrollbar
{
	width: 8px;
}
::-webkit-scrollbar-track{ 
	box-shadow: inset 0 0 6px rgba(50,50,50,0.3);
}
::-webkit-scrollbar-thumb 
{
	background-color:#cccccc;
	/*box-shadow: inset 0 0 6px rgba(0,0,0,0.4);*/
}
/*------------------------------------------------------------------------------*/
::selection /* Seleção padrão para o Internet Explorer */
{ 
	background: #132960; /* coloque a cor que deseja para a seleção */
	color: #fff; /* coloque a cor que deseja para a cor do texto da seleção */
}	
::-moz-selection /* Seleção para o Mozilla Firefox */
{
	background: #132960; /* coloque a cor que deseja para a seleção */
	color: #fff; /* coloque a cor que deseja para a cor do texto da seleção */
}	
::-webkit-selection /* Seleção para o Chrome e Safari */
{
	background: #132960; /* coloque a cor que deseja para a seleção */
	color: #fff; /* coloque a cor que deseja para a cor do texto da seleção */
}
/*------------------------------------CSS-GERAL------------------------------------*/
body{
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #767676;
}
a{
	text-decoration:none !important;
}
::-webkit-input-placeholder{
	color: #808080 !important;
}
:-moz-placeholder{
	color: #808080 !important;
}
::-moz-placeholder{
	color: #808080 !important;
}
:-ms-input-placeholder{  
	color: #808080 !important;
}
/*------------------------------------HEADER------------------------------------*/
header{
	width: 100%;
	position: absolute;
	z-index: 1000;
    padding: 0 0;
	background-color: transparent;
}
/*-------------------HEADER-FAIXA-PRINCIPAL-------------------*/
.header{
	width: 100%;
	padding: 0 0;
}
/*-------------------HEADER-MENU-PRINCIPAL-------------------*/
.menuHeader{
	background-color: #f2f2f2;
}
.itemMenuTopo{
	font-size: 18px;
    font-weight: 500;
	color: #ffffff;
	margin: 0 10px;
    padding: 5px 5px;
	background-color: transparent !important;
	text-decoration:none !important;
	outline: none !important; /*------------TIRANDO BORDA AZUL QUE APARECE NO CHROME------------*/
	box-shadow: none !important; /*------------TIRANDO BORDA AZUL QUE APARECE NO CHROME------------*/
	border: none; /*------------TIRANDO BORDA AZUL QUE APARECE NO CHROME------------*/
	transition: all 0.2s ease-in;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
}
.itemMenuTopo:hover{
    border-bottom: solid 5px #ffffff;
	color: #ffffff !important;
	background-color: transparent !important;
}
.logo{
	height: 90px;
}
/*------------------------------------BANNER------------------------------------*/
.banner{
	width: 100%;
	margin: 0;
	padding: 0;
	padding-top: 150px;
	padding-bottom: 100px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
.sombraBanner{
	width: 100%;
	margin: 0;
	padding: 0;
	/*background-color: rgba(27,26,65,0.85);*/
}
.conteudoBanner{
	padding: 0;
	text-align: left;
}
.tituloBanner{
	padding: 0;
	margin: 0;
	line-height: 50px;
	font-size: 48px;
	font-weight: bold;
	color: #ffffff;
}
.conteudoBanner h2{
	padding: 0;
	margin: 0;
	line-height: 26px;
	font-size: 26px;
	font-weight: 300;
	color: #ffffff;
}
.btnBanner{
	width: auto;
	height: auto;
	margin: 0;
	padding: 15px 50px;
	line-height: 18px;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	color: #ffffff;
	background: #00b84e;
	background: -moz-linear-gradient(0deg,  #00b84e 0%, #3dec00 100%);
	background: -webkit-linear-gradient(0deg,  #00b84e 0%,#3dec00 1000%);
	background: linear-gradient(0deg,  #00b84e 0%,#00b84e 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b84e', endColorstr='#3dec00',GradientType=2 );
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: solid 2px #00b84e !important; /*------------TIRANDO BORDA AZUL QUE APARECE NO CHROME------------*/
	text-decoration:none !important; /*------------TIRANDO BORDA AZUL QUE APARECE NO CHROME------------*/
	outline: none !important; /*------------TIRANDO BORDA AZUL QUE APARECE NO CHROME------------*/
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.20) !important;
	-moz-box-shadow:    0px 0px 15px 0px rgba(0, 0, 0, 0.20) !important;
	box-shadow:         0px 0px 15px 0px rgba(0, 0, 0, 0.20) !important;
	transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
}
.btnBanner i{
	font-size: 22px;
}
.btnBanner:hover{
	background: #00b84e;
	-moz-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.btnBannerSetaBaixo{
	width: auto;
	height: auto;
	margin: 0;
	padding: 7px 3px;
	line-height: normal;
	font-size: 20px;
	color: #ffffff;
	background-color: transparent;
	-webkit-border-radius: 75px;
	-moz-border-radius: 75px;
	border-radius: 75px;
	border: 3px solid #ffffff;
	text-decoration:none !important;
	outline: none !important; /*------------TIRANDO BORDA AZUL QUE APARECE NO CHROME------------*/
	transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
}
.btnBannerSetaBaixo:hover{
	color: #ffffff;
	background-color: #269300;
	border: 3px solid #269300;
}
.bannerVideo{
	width: 100%;
	height: 280px;
}
/*------------------------------------HOMEAJUDAR------------------------------------*/
.homeAjudar{
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: #ffffff;
}
.ajudarHome{
	margin: 0;
	padding: 100px 0px;
}
.ajudarHome h2{
	padding: 0;
	margin: 0;
	line-height: 55px;
	font-size: 55px;
	font-weight: 700;
	color: #161616;
}
.ajudarHome h2 span{
	color: #0064f9;
}
.ajudarHome p{
	padding: 0;
	margin: 0;
	line-height: normal;
	font-size: 23px;
	font-weight: 400;
	color: #5e5e5e;
}
.itemAjudarHome h3{
	padding: 0;
	margin: 0;
	line-height: normal;
	text-transform: uppercase;
	font-size: 23px;
	font-weight: 700;
	color: #161616;
}
.itemAjudarHome span{
	padding: 0;
	margin: 0;
	line-height: normal;
	font-size: 18px;
	font-weight: 400;
	color: #424242;
}
/*------------------------------------HOMESOLUCOES------------------------------------*/
.homeSolucoes{
	width: 100%;
	margin: 0;
	padding: 100px 0px;
	text-align: center;
	background-color: #ffffff;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
.homeSolucoes h2{
	padding: 0;
	margin: 0;
	line-height: 55px;
	font-size: 55px;
	font-weight: 700;
	color: #ffffff;
}
.homeSolucoes h2 span{
	color: #0064f9;
}
.homeSolucoes img{
	max-height: 102px;
}
.homeSolucoes p{
	padding: 0;
	margin: 10px 0;
	line-height: 23px;
	font-size: 23px;
	font-weight: 400;
	color: #ffffff;
}
.homeSolucoes h4{
	padding: 0;
	margin: 0;
	line-height: 22px;
	font-size: 22px;
	font-weight: 400;
	color: #ffffff;
}
/*------------------------------------HOMENUMEROS------------------------------------*/
.homeNumeros{
	width: 100%;
	margin: 0;
	padding: 100px 0px;
	text-align: center;
	background-color: #ffffff;
}
.homeNumeros h2{
	padding: 0;
	margin: 0;
	line-height: 55px;
	font-size: 55px;
	font-weight: 700;
	color: #1a1a1a;
}
.homeNumeros h2 span{
	color: #0064f9;
}
.homeNumeros h3{
	padding: 0;
	margin: 0;
	line-height: 26px;
	font-size: 26px;
	font-weight: 300;
	color: #595959;
}
.btIcoNumerosHome{
	width: auto;
	height: auto;
	margin: 0;
	padding: 15px 15px;
	background-color: #0064f9;
	-webkit-border-radius: 75px;
	-moz-border-radius: 75px;
	border-radius: 75px;
	border: 3px solid #0064f9;
	text-decoration:none !important;
	outline: none !important; /*------------TIRANDO BORDA AZUL QUE APARECE NO CHROME------------*/
	transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
}
.conteudoItemNumerosHome{
	margin-top: -10px;
	padding: 30px 0;
	border: 3px solid #0064f9;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.conteudoItemNumerosHome p{
	padding: 0;
	margin: 0;
	line-height: 50px;
	font-size: 50px;
	font-weight: 700;
	color: #0064f9;
}
.conteudoItemNumerosHome span{
	padding: 0;
	margin: 0;
	line-height: 22px;
	font-size: 22px;
	font-weight: 400;
	color: #949494;
}
/*------------------------------------HOMEETAPAS------------------------------------*/
.homeEtapas{
	width: 100%;
	margin: 0;
	padding: 100px 0px;
	text-align: center;
	background-color: #ffffff;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
.homeEtapas h2{
	padding: 0;
	margin: 0;
	line-height: 55px;
	font-size: 55px;
	font-weight: 700;
	color: #ffffff;
}
.itensEtapas{
	padding: 0;
	margin: 0;
	text-align: left;
}
.itensEtapas h3{
	padding: 0;
	margin: 0;
	line-height: 32px;
	font-size: 32px;
	font-weight: 700;
	color: #069fff;
}
.itensEtapas h3 i{
	font-size: 28px;
}
.itensEtapas p{
	padding: 0 0 0 20px;
	margin: 10px 0;
	line-height: 20px;
	font-size: 20px;
	font-weight: 400;
	color: #ffffff;
}
.itensEtapas i{
	font-size: 10px;
}
/*------------------------------------HOMETIME------------------------------------*/
.homeTime{
	width: 100%;
	margin: 0;
	padding: 100px 0px;
	text-align: center;
	background-color: #ffffff;
}
.homeTime h2{
	padding: 0;
	margin: 0;
	line-height: 55px;
	font-size: 55px;
	font-weight: 700;
	color: #1a1a1a;
}
.homeTime h2 span{
	color: #0064f9;
}
.homeTime h3{
	padding: 0;
	margin: 0;
	line-height: 26px;
	font-size: 26px;
	font-weight: 300;
	color: #595959;
}
.conteudoItemTimeHome{
	margin-top: -80px;
	padding: 100px 0 10px 20px;
	border-left: 3px solid #0064f9;
	text-align: left;
}
.conteudoItemTimeHome p{
	padding: 0;
	margin: 0;
	line-height: 25px;
	font-size: 25px;
	font-weight: 700;
	color: #3a3a3a;
}
.conteudoItemTimeHome span{
	padding: 0;
	margin: 0;
	line-height: 30px;
	font-size: 30px;
	font-weight: 700;
	color: #0064f9;
}
/*------------------------------------HOMEFEEDBACK------------------------------------*/
.homeFeedback{
	width: 100%;
	margin: 0;
	padding: 100px 0px;
	text-align: center;
	background-color: #f7f7f7;
}
.homeFeedback h2{
	padding: 0;
	margin: 0;
	line-height: 55px;
	font-size: 55px;
	font-weight: 700;
	color: #1a1a1a;
}
.homeFeedback h2 span{
	color: #0064f9;
}
.loopFeedbackHome{
	text-align: left;
	margin: 20px 0;
}
.loopFeedbackHome p{
	padding: 0;
	margin: 0;
	line-height: 19px;
	font-size: 19px;
	font-weight: 300;
	color: #44535d;
}
/*------------------------------------HOMEPERGUNTAS------------------------------------*/
.homePerguntas{
	width: 100%;
	margin: 0;
	padding: 100px 0px;
	text-align: center;
	background-color: #ffffff;
}
.homePerguntas h2{
	padding: 0;
	margin: 0;
	line-height: 55px;
	font-size: 55px;
	font-weight: 700;
	color: #111111;
}
.homePerguntas h3{
	padding: 0;
	margin: 0;
	line-height: 23px;
	font-size: 23px;
	font-weight: 400;
	color: #2a2a2a;
}
.conteudoPerguntas #accordion{
	width: 100%;
}
.conteudoPerguntas .card{
	margin-top: 2px;
}
.conteudoPerguntas .card .card-header{
	text-align: left;
	padding-left: 20px;
}
.conteudoPerguntas .card .card-header .btn.btn-link{
	background-color: #f7f7f7;
	margin: 0;
	line-height: 23px;
	font-size: 23px;
	font-weight: 600;
	color: #494949;
}
/*------------------------------------FOOTER------------------------------------*/
.footer{
	width: 100%;
	margin: 0;
	padding: 50px 0px;
	text-align: center;
	background-color: #ffffff;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
.footer h2{
	padding: 0;
	margin: 0;
	line-height: 55px;
	font-size: 55px;
	font-weight: 700;
	color: #ffffff;
}
.footer h2 span{
	color: #0064f9;
}
.footer p{
	padding: 0;
	margin: 0;
	font-size: 22px;
	color: #ffffff;
}
.footer small{
	padding: 0;
	margin: 0;
	font-size: 14px;
	color: #ffffff;
}
.logoFooter{
	height: 120px;
}



/*---------------------CONTATO HOME---------------------*/
.modal{
	/* From https://css.glass */
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.modalContato{
	background-color: #101010;
	text-align: center;
}
.modalContato h2{
	padding: 0;
	margin: 0;
	line-height: 30px;
	font-size: 30px;
	font-weight: 700;
	color: #ffffff;
}
.modalContato p{
	padding: 0;
	margin: 0;
	line-height: 16px;
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
}
.contato{
	width: 100%;
	margin: 0;
	padding: 50px 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-color: #000000;
	border-top: solid 2px #ffffff;
}
.contato h2{
	padding: 0;
	margin: 0;
	line-height: 46px;
	font-size: 46px;
	font-weight: 700;
	color: #0064f9;
}
.contato h3{
	padding: 0;
	margin: 0;
	line-height: 46px;
	font-size: 46px;
	font-weight: 700;
	color: #ffffff;
}
.contato h4{
	padding: 0;
	margin: 0;
	line-height: 26px;
	font-size: 26px;
	font-weight: 400;
	color: #ffffff;
}
.contato h4 span{
	text-decoration: line-through;
}
.contato h5{
	padding: 0;
	margin: 0;
	line-height: 36px;
	font-size: 36px;
	font-weight: 700;
	color: #ffffff;
}
.contato p{
	padding: 0;
	margin: 0;
	line-height: 18px;
	font-size: 18px;
	font-weight: 400;
	color: #ffffff;
}
.campoFormFooter{
	height: 40px;
	margin: 0;
	padding: 0 0 0 5px;
	font-weight: 400;
	font-size: 16px;
    color: #585757 !important;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
	border-radius: 8px;
	background-color: #ffffff !important;
	text-decoration:none !important;
	outline: none !important; /*------------TIRANDO BORDA AZUL QUE APARECE NO CHROME------------*/
	box-shadow: none !important; /*------------TIRANDO BORDA AZUL QUE APARECE NO CHROME------------*/
	border: solid 2px #a2a2a2;
}
.icoSucesso{
	padding: 0;
	margin: 0;
	font-size: 120px;
	color: #00b562;
}
.icoErro{
	padding: 0;
	margin: 0;
	font-size: 120px;
	color: #b50000;
}
.IcoWhatsFlutuante{
	width:70px;
	height:70px;
	position: fixed;
	padding: 0;
	margin: 0;
	z-index:9999999;
	background-color:#449c44;
	bottom: 20px;
	right:20px;
	text-decoration:none !important;
	cursor: pointer;
	outline: none !important; /*------------TIRANDO BORDA AZUL QUE APARECE NO CHROME------------*/
	border: none !important; /*------------TIRANDO BORDA AZUL QUE APARECE NO CHROME------------*/
	-webkit-border-radius: 200px;
	-moz-border-radius: 200px;
	border-radius: 200px;
	transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
}
.IcoWhatsFlutuante i{
	font-size:45px;
	color:#ffffff;
	padding: 0;
	margin: 0;
	vertical-align: auto !important;
}
.IcoWhatsFlutuante:hover{
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow:    0px 0px 30px 0px rgba(0, 0, 0, 0.5);
	box-shadow:         0px 0px 30px 0px rgba(0, 0, 0, 0.5);
	background-color:#25d366;
	transition: all 0.2s ease-in;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
}


.linkVop{
	color:#ffffff;
	font-weight: bold;
	text-decoration:none;
	font-style:italic;
	outline: none !important; /*------------TIRANDO BORDA AZUL QUE APARECE NO CHROME------------*/
	box-shadow: none !important; /*------------TIRANDO BORDA AZUL QUE APARECE NO CHROME------------*/
	border: none !important; /*------------TIRANDO BORDA AZUL QUE APARECE NO CHROME------------*/
	transition: all 0.2s ease-in;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
}
.linkVop:hover{
	color:#a6ce52;
}