		#imagem_whats{position:fixed;right:0;bottom:0;display:block;cursor:pointer;z-index:9999999;float:right} #imagem_whats2{position:fixed;right:0;bottom:0;display:block;cursor:pointer;z-index:9999999;float:right;display:none} @media only screen and (max-width: 999px) and (min-width: 100px){#imagem_whats{display:none}#imagem_whats2{display:block}}
.titulo1{
	text-align: center;
	color: #fff;
	font-size: 4em;
	font-weight: 500;
	line-height: 1;
}
.titulo2{
	text-align: center;
	color: #fff;
}
.itens-modelo-titulo{
	color: #000;
	font-size: 10em;
	font-weight: 700;
	font-style: bold;
	line-height: 1;
}
/*Header*/
.container{
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}
.header-main{
	width: 100%;
	position: absolute;
	min-height: 80px;
	z-index: 100;
}
.logo{
	width:200px;
	align-items: center;
	display: flex;
}
.logo img{
	width: 120px;
}
.logo a{
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 2em;
}
.flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
/* Navegação */
.nav ul{
	display: flex;
	height: 80px;
	align-items: center;
	list-style: none;
}
.nav ul li a{
	padding: 10px;
	font-weight: 500;
	color: #fff;
}
@media only screen and (max-width: 768px){
	.logo{
		margin-top: 25px;
	}
	.mobile-btn{
		display: block;
		color: #fff;
		width: 30px;
		height: 30px;
		margin: 30px 20px 0 0;
		float: left;
		position: fixed;
		right: 0;
		border-top: 1px solid;
		cursor: pointer;
		-webkit-backface-visibility: hidden;
	}
	.mobile-btn::after,.mobile-btn::before{
		content: '';
		display: block;
		height: 1px;
		background: currentColor;
		position: relative;
		transition: transform .2s ease;
		margin-top: 6px;
	}
	.mobile-btn.active{
		border-top-color: transparent;
	}
	.mobile-btn.active::after{
		margin-top: 0;
		top: 2px;
		transform: rotate(45deg);
	}
	.mobile-btn.active::before{
		margin-top: 0;
		top: 2px;
		transform: rotate(135deg);
	}
	.header-main{
		position: fixed;
		width: 100%;
		z-index: 1000;
		background: var(--blue-4);
		height: 80px;
	}
	.nav.mobile-menu{
		width: 80%;
		position: fixed;
		background: var(--blue-4);
		height: 100%;
		padding:10px;
		opacity: 0;
		visibility: hidden;
		transform: translate3d(60px, 0px, 0px);
		transition: .3s;
		top: 80px;
		right: 0px;
		z-index: 2000;
	}
	.nav.mobile-menu ul{
		display: block;
	}
	.nav.mobile-menu li{
		padding: 10px;
	}
	.nav.mobile-menu.active{
		opacity: 1;
		visibility: visible;
		transform: translate3d(0px, 0px, 0px);
	}
	.nav.mobile-menu li{
		display: block;
	}

}

/* Banner */
.section_banner{
	background:url(../img/banner12.webp);
	background-size: cover;
	min-height: 85vh;
	background-position: center center;
	position: relative;
}
.section_banner::before{
	content: '';
	width: 100%;
	height: 100%;
	background: var(--blue-4opacy);
	position: absolute;
	top: 0;
	left: 0;
}
.section_banne .container{
	position: relative;
}
.mouse {
	display: block;
	width: 30px;
	height: 50px;
	border-radius: 20px;
	border: 4px solid #fff;
	text-align: center;
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 10px;
	margin: 0 auto;
}

.mouse::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 8px;
	position: relative;
	border-radius: 4px;
	background: #fff;
	animation-name: mouse;
  animation-duration: .7s;
	animation-iteration-count: infinite;
}

@keyframes mouse {
	from {
		top: 0px;
	}
  to {
		top: 6px;
	}
}
.section_banner img{
	width: 100%;
	height: 100%;
	background-size: cover;
	max-height: 700px;
	object-fit: cover;
}
.box_title{
	left: 10%;
	right: 10%;
	top: 140px;
	position: absolute;
}
.box_title h1{
	text-align: center;
	color: #fff;
	font-size: 4em;
	font-weight: 500;
	line-height: 1;
}
.box_title h2{
	text-align: center;
	font-size: 1.5em;
	color: #fff;
	font-weight: 500;
}
.box_title .btn{
	display: flex;
	max-width: 300px;
	margin: 50px auto;
	padding: 13px!important;
	border: 1px solid #fff;
	background: transparent;
	color: #fff!important;
	text-shadow: none;
	font-weight: 500;
	text-transform: uppercase;
	justify-content: center;
	align-items: center;
	border-radius: 30px;
	padding: 1.4rem 2.125rem 1.3rem;
	font-size: .8125rem;
	line-height: 1.1538;
	text-transform: uppercase;
	letter-spacing: .1rem;
	border-width: 1px;
}
.box_title .social{
	text-align: center;
}
.box_title .social a{
	color: rgba(255,255,255,0.5);
	padding: 10px;
}
.box_title .social a:hover{
	color: rgba(255,255,255);
}
@media(max-width: 900px){
	.section_banner{
		min-height: 500px!important;
	}
	.section_banner img{
		min-height: 500px!important;
	}
	.box_title{
		top: 100px!important;
	}
	.box_title h1{
		font-size: 2em;
		font-weight: 800;
	}
	.box_title .btn{
		margin-top: 30px;
		margin: 20px auto;
	}
	.social{
		margin-top: 10px;
	}
}
/* Section Conteúdo */
.section_conteudo{
	padding: 50px 0;
	background: #F4F5F7;
}
.section_conteudo h3{
	text-align: center;
	font-size: 2em;
	font-weight: 500;
	line-height: 1;
	color: var(--cinza);
	margin-bottom: 50px;
}
.section_conteudo strong{
	font-size: 1.5em;
}

.section_conteudo .flex{
	min-height: 300px;
	align-items: center;
}
.section_conteudo .item{
	flex: 1 300px;
}
.section_conteudo .item figure img{
	width: 400px;
}

.section_conteudo .item .btn{
	background: #222a67;
	text-shadow: none;
	border-radius: 35px;
	font-weight: 500;
	margin-top: 20px;
}
@media(max-width: 900px){
	.section_conteudo .flex{
		height: auto;
	}
	.section_conteudo h3{
		text-align: left;
	}
	.thumb{
		margin-top: 50px;
		margin-bottom: 50px;
	}
}
/* Section Serviços */
.section_servicos{
	padding: 50px 0;
	background-color: var(--cinzaclaro);
}
.section_servicos .flex{
	justify-content: none!important;
	padding: 30px 0;
	display: flex;
}
.section_servicos h3{
	text-align: center;
	color: var(--cinza);
	font-size: 32px;
	font-weight: 700;
}
.section_servicos h4{
	text-align: left;
	color: #222a67;
	font-size: 20px;
	font-weight: 700;
}
.section_servicos .text-blue{
	color: var(--blue);
}
.section_servicos .item{
	flex: 1 100px;
	padding: 10px;
}
.section_servicos .item h4{
	color: var(--cinza);
	font-weight: 500;
	font-size: 1.2em;
	display: none;
}

.itens-modelo{
	padding: 10px;
	border-radius: 5px;
	background: #222a67;
	display: block;
	text-align: center;
	color: #fff;
}
.itens-modelo2{
	background: #ffffff;
	border: 1px;
	border-color: #000;
	color: #000;
}
.section_servicos article {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.section_servicos .item img{
	max-height: 300px;
}
@media(max-width: 900px){
	.section_servicos .item{
		flex: 100%;
	}
}
/*faq*/
.faq{
	padding: 100px 0;
}
.faq_header {
    text-align: center;
    margin-bottom: 30px;
}

.faq_header h3 {
    font-size: 2em;
    font-weight: var(--weight-light);
    margin-bottom: 20px;
}

.faq_asks {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

.faq_ask {
    flex-basis: calc(50% - 30px);
    cursor: pointer;
    padding: 20px;
    margin: 15px;
    border: 1px solid #cccccc;
    border-bottom: 3px solid var(--blue);
    color: var(--color-default);
    -webkit-border-radius: var(--radius-medium);
    -moz-border-radius: var(--radius-medium);
    border-radius: var(--radius-medium);
}

.faq_ask h4 {
    font-size: 1em;
    font-weight: 900;
    color: var(--cinza);
}

.faq_ask p {
    font-size: 14px;
    line-height: 2;
}

.faq_ask_coll {
    display: none;
}
.j_collapse_icon.icon-plus:before {
    content: "\41";
    margin-right: 10px;
}
.j_collapse_icon.icon-minus:before {
    content: "\42";
    margin-right: 10px;
}
@media(max-width: 900px){
	.faq_ask{
		flex-basis: 100%;
	}
}
/*section_star*/
.section_star{
	padding: 50px 0;
	background: #222a67;
}
.section_star .item{
	margin: 0 auto;
	max-width: 300px;
	text-align: center;
}
.section_star .item span{
	color:yellow;
	font-size: 1.2em;
}
.section_star .item h4{
	color: #ccc;
	font-size: 1.2rem;
}
.section_star .item strong{
	color: #fff;
	text-align: center;
	font-size: 3em;
}
.section_star .item figure{
	width: 50px;
	height: 50px;
	background:red;
	text-align: center;
	margin: 0 auto;
	border-radius: 50%;
}
.section_star .item figure img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
.section_star .item p{
	color: #fff;
	text-align: center;
	font-size: .8rem;
}
/* section_infor_assistencia */
.section_infor_assistencia{
	background: url('../img/blue-fix.webp');
	background-position: top;
	padding: 50px 0;
	position: relative;
}
.section_infor_assistencia:before{
	content: '';
	background: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
}
.title_assistencia{
	max-width: 900px;
	position: relative;
}
.section_infor_assistencia h2{
	color: #fff;
	padding: 20px 0;
	font-size:2em;
}
.section_infor_assistencia p{
	color: #eee;
	font-size: 1.2em;
}
.section_infor_assistencia .sociais{
	display: flex;
	list-style: none;
	margin-top: 30px;
}
.section_infor_assistencia .sociais span{
	color: #fff;
	font-size: 2em;
	padding: 10px;
	color:#fff;
}
/* section_porque */
.section_porque{
	padding: 100px 0;
}
.section_porque .flex{
	padding: 50px 0;
}
.section_porque h3{
	font-size: 2em;
	text-align: center;
	color: var(--cinza);
	padding: 2px 0;
}
.section_porque p{
	text-align: center;
}
.section_porque .item{
	flex: 1 300px;
	padding: 10px;
}
.section_porque .item h4{
	font-size: 1.4em;
	padding:0 0 10px 0;
	color: var(--cinza);
	text-align: center;
}
.section_porque .item p{
	text-align: center;
	line-height: 1.5;
}
.section_porque figure{
	padding: 20px 0;
}
.section_porque figure >img{
	width: 50px;
	margin: 0 auto;
}
/* header_duvidas */
.header_duvidas{
	background: #222a67;
	padding: 50px 0;
}

.header_duvidas h3{
	color: #fff;
	font-size: 2em;
	padding: 10px 0;
	text-align: center;
}
.header_duvidas p{
	color: #eee;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}
.header_duvidas .btn{
	 display: flex;
    max-width: 300px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff!important;
    text-shadow: none;
    font-weight: 500;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    padding: 1.4rem 2.125rem 1.3rem;
    font-size: .8125rem;
    line-height: 1.1538;
    text-transform: uppercase;
    letter-spacing: .1rem;
    border-width: 1px;
}
.header_duvidas .btn span{
	margin-right: 10px;
}
/* Foooter */
.footer{
	padding: 50px 0;
	background: #222a67;
}

.footer .end{
	position: relative;
}
.footer .end .sobre{
	max-width: 150px;
	margin-bottom: 20px;
}
.footer .end li{
	list-style: none;
	margin: 10px 0;
}
.footer .end a{
	color: #fff;
}
.footer .end span{
	color: #fff ;
	font-size: .9em;
	margin-right:10px;
}
.social_footer span{
	margin-right: 0;
}
.footer .social_footer{
	display: flex;
	flex-wrap: wrap;
	padding: 10px 0;
	color: #fff;
	position: relative;
	align-items: center;
	height: 100px;
}
.selo{
	width:200px;
}
.footer .social_footer li{
	list-style: none;
}
.footer .social_footer a{
	padding: 10px;
}
.footer .social_footer span{
	color: #fff;
	font-size: 1.5em;
}
.copy{
	padding: 30px 0;
	background: #101920;
}
.copy p{
	color: #ccc;
	font-size: 0.7em;
	text-align: center;
}
.copy span{
	color: var(--blue);
}
[data-anime]{
	opacity: 1;
	transition: .3s;
}
[data-anime].animate{
	opacity: 1;
}
/* ATENDIMENTO */

.atendimento{
    z-index: 3000;
    position: relative;
    box-shadow: rgb(0 0 0 / 10%) 0px 12px 24px 0px;
    display: none;
    flex-direction: column;
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    transition: opacity 0.3s ease 0s, margin 0.3s ease 0s, visibility 0.3s ease 0s;
    background-color: rgb(255, 255, 255);
    transform: translate3d(0px, 0px, 0px);
    pointer-events: all;
    visibility: visible;
    touch-action: auto;
    position: fixed;
    right: 20px;
    left: auto;
    bottom:66px;
    transition: .1s;
    max-height: 382px;
    transition: .2s all;

}
.header-atendimento{
	 background: var(--blue-4);
    color: rgb(17, 17, 17);
    float: left;
    -webkit-box-align: center;
    align-items: center;
    padding: 24px 20px;
    flex-wrap: wrap;
    width: 100%;
}

.atendimento  .header-atendimento figure{
	width: 50px;
	height: 50px;
	background: #fff;
	border-radius: 50%;
	float: left;
	margin-right: 10px;
}
.atendimento  .header-atendimento figure img{
	border-radius: 50%;
}
.atendimento  .header-atendimento b{
	color: #fff;
	line-height: 2;
	font-size: 1em;
}
.atendimento  .header-atendimento .at{
	font-size: .9em;
	color: #ccc;
}
.atendimento #teste{
	background: url('../img/bg-zap.jpg');
	padding: 20px 20px 20px 10px;
	position: relative;
	overflow: auto;
	height: 200px;
	background-size: cover;
	
}

.atendimento.active{
	display: block;
	opacity: 1;
	  transition: opacity 0.3s ease 0s, margin 0.3s ease 0s, visibility 0.3s ease 0s;
}
.atendimento .p{
	background: #fff;
	padding: 10px;
	line-height: 2;
	max-width: 200px;
	border-radius: 5px;
	position: relative;
}
.carregando{
	position: absolute;
	width: 100%;
	height: 100%;
	background: red;
	z-index: 1000;
}
.atendimento .white{
	background: #fff;
	height: 80px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left:0;
	border-bottom-left-radius:5px;
	border-bottom-right-radius:5px;
}
.atendimento .white .btn{
	background: var(--blue);
	max-width: 100%;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 30px;
	display: block;
	padding: 10px;
}


.button{
	position: fixed;
	width: 40px;
	height: 40px;
	right: 30px;
	bottom: 20px;
	z-index: 4000;
	background: #fff;
	border-radius: 50%;
	text-align: center;
	display: flex;
	align-items: center;
	padding: 10px;
	cursor: pointer;
}
.button i{
	 color: rgb(9, 94, 84);
	font-size: 1.5em;
}
/* Loading */
.typing_loader {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	-webkit-animation: typing 1s linear infinite alternate;
	-moz-animation: Typing 1s linear infinite alternate;
	-ms-animation: Typing 1s linear infinite alternate;
	animation: typing 1s linear infinite alternate;
	position: relative;
	left: 30px;
	background: #fff;
}
@-webkit-keyframes typing{
    0%{
        background-color: rgba(0,0,0, 1);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2),
                    24px 0px 0px 0px rgba(0,0,0,0.2);
      }
    25%{
        background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,2),
                    24px 0px 0px 0px rgba(0,0,0,0.2);
    }
    75%{ background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(255,255,255,0.2),
                    24px 0px 0px 0px rgba(255,255,255,1);
      }
}

/*apple*/
.section-header-slide img{
	width: 100%;
	height: 500px!important;
	object-fit: cover;
}