@font-face{
	font-family: "Mark Pro";
	src: url("../fonts/Mark-Pro.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face{
	font-family: "Mark Pro";
	src: url("../fonts/Mark-Pro-Medium.otf") format("truetype");
	font-weight: 600;
	font-style: normal;
}

@font-face{
	font-family: "Mark Pro";
	src: url("../fonts/Mark-Pro-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
}

@font-face{
	font-family: "Mark Pro";
	src: url("../fonts/Mark-Pro-Heavy.ttf") format("truetype");
	font-weight: 900;
	font-style: normal;
}

body {
	font-family: "Mark Pro", sans-serif;
	padding: 0;
	margin: 0;
	overflow: hidden;
}

* {
	box-sizing: border-box;
}

.container-full {
	max-width: 1920px;
	margin: auto;
	padding: 0 15px;
}

a{
	text-decoration: none;
}

/* Preloader */

#preloader {
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	color: #FFFFFF;
	background-color: #ED7024; /* cor do background que vai ocupar o body */
	z-index:9999; /* z-index para jogar para frente e sobrepor tudo */
}

#preloader img{
	height: 200px;
}

#preloader .inner {
	position: absolute;
	top: 50%; /* centralizar a parte interna do preload (onde fica a animação)*/
	left: 50%;
	transform: translate(-50%, -50%);  
}

.fa-gear {
	position: relative;
	font-size: 28px;
	animation: spinnergear 1.2s linear infinite;
}

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

.logo-loader {
	animation: scalechange 1.5s linear infinite;
}

@keyframes scalechange {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

/* COLORS */
.bg-primary-color{
	background: #F17021!important;
}

.bg-second-color{
	background: #1A2948!important;
}

.bg-three-color{
	background: #FF9E57;
}

.primary-color{
	color: #1A2948!important;
}

.second-color{
	color: #FFFFFFDE!important;
}

/* BOTÃO PADRÃO */
#button-padrao{
	color: #FFFFFFDE;
	background: #F17021;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	transition: 0.8s;

}

/* NAVBAR HEADER */
header{
	transition: 0.8s;
	background: #ffff;
}
@media(max-width: 576px){
	header {
		transition: 0.8s;
		background: transparent;
	}
}

a:is(:link, :active, :visited).active{
	color: #F17021!important;
}

#navbar-header{
	display: flex;
	justify-content: space-between;
	text-transform: uppercase;
	transition: 0.3s;
	
}

.image-header img{
	height: 45px;
}

.image-header #laranja{
	display: none;
}

#titulo-site{
	font-weight: 600;
	font-size: 20px;
	transition: 0.8s;
	color: #FFFF;
}

#navbar-header.main-menu{
	display: flex;
	justify-content: end;
	align-items: center;
}

.main-menu #header-link{
	transition: 0.8s;
	font-size: 14px;
	font-weight: 600;
	padding: 2px;
	margin-left: 48px;
	color: #00468C;
	
}

.main-menu #header-link:hover{
	transition: 0.3s;
	background: #EF5A23;
	color: #FFFFFFDE;
	
}

.main-menu #button-header{
	color: #F17021;
	background: #FFFF;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	transition: 0.8s;

}

#button-header:hover{
	background: #F17021;
	color: #FFFFFFDE;
	transition: 0.3s;
}

#button-header i{
	margin: 0 5px;
}

/* MENU MOBILE */
#link-title,
#menu-mobile-header{
	display: none;
}

#btn-mobile-header{
	display: none;
}

#offcanvasTop.offcanvas-top{
	height: max-content;
}

#offcanvasTop .offcanvas-header{
/* 	padding-top: 5%; */
	background: #1A2948;
	padding-left: 10%;
	padding-right: 10%;
}

#offcanvasTop .offcanvas-body{
	padding: 1rem 10%;
}

#btn-mobile-header .fa-bars{
	font-size: 30px;
}

.btn-close.text-reset.fechar-botao-sidebar-desktop{
	font-size: 20px;
/* 	margin-right: auto; */
	opacity: 0.9;
/* 	color: #f55442; */

}

#mobile-menu.main-menu #header-link{
	margin: 10px 0;
/* 	color: #1A2948; */
}

@media(max-width: 1028px){
	.main-menu #header-link {
/* 		margin: 0px 4px; */
	}
}

@media(max-width: 998px){
	#navbar-header{
		flex-direction: row-reverse;
	}
	#navbar-header .main-menu{
		display: none;
	}
	#btn-mobile-header{
		display: block;
		color: #004777;
	}
}

@media(max-width: 576px){
	.container #navbar-header{
		padding: 0 8%;
	}
	#navbar-header .brand{
		margin-right: 10px;
	}
	.image-header img {
		height: 40px;
	}
	#link-title{
		display: block;
	}
	#img-header-title{
		display: none;
	}
	#btn-mobile-header{
		color: #ffff;
	}
}

/* SOCIAL PÁGINA HOME */
.container-home-social{
	display: flex;
	flex-direction: column;
	z-index: 10;
	top: 66%;
	left: 8%;
}

.container-home-social i{
	font-size: 35px;
	color: #FFFF;
	margin: 5px 0;
}
@media(max-width: 1280px){
	.container-home-social {
		left: 6%;
	}
}
@media(max-width: 1080px){
	.container-home-social {
		left: 4%;
	}
}
@media(max-width: 880px){
	.container-home-social {
		left: initial;
		right: 4%;
	}
}
@media(max-width: 576px){
	.container-home-social {
		top: 40%;
		left: initial;
		right: 5%;
	}
	.container-home-social i {
		font-size: 30px;
	}
}

/* FOOTER */
footer{
	z-index: 10;
	position: relative;
	background: #ffff;
}

#nome-footer{
	font-weight: 700;
	font-size: 24px;
}

#footer-social #socials-icon i{
	font-size: 24px;
	color: #1A2948;
	margin: 0 10px;
}

#titulo-form-footer{
	font-size: 24px;
	font-weight: 400;
	
}

#footer-logo{
	text-align: right;
}

/* FOOTER FORM */
#footer-form{
	z-index: 9999;
}

#footer-form form{
	display: flex;
	position: relative;
}

#footer-form form p:nth-of-type(1){
	display: flex;
}

#footer-form .wpcf7-form-control-wrap[data-name="whatsapp"]{
	display: none;
}

#footer-form .wpcf7-form-control-wrap[data-name="email"]{
	margin: 0 10px;
}

#footer-form .wpcf7 {
	max-width: 100%;
}

#footer-form .wpcf7 input {
	width: 100%;
	border-radius: 5px;
	border: none;
	margin: 8px 0;
	color: #ffff;
}

#footer-form .wpcf7 input::placeholder {
	color: #ffff;
}

#footer-form .wpcf7 input:not(input[type=submit]) {
	font-size: 16px;
	height: 45px;
	padding: 15px;
	background: #F47741;
}

#footer-form .wpcf7 input[type=submit] {
	font-size: 14px;
	font-weight: 600;
	padding: 12px;
	background: #F17021;
	color: #FFFFFF;
	text-transform: uppercase;
	letter-spacing: 1.25px;
	transition: 0.3s;
}

#footer-form .wpcf7 input[type=submit]:hover {
	background: #EF5A23;
}

#footer-form .wpcf7 input::placeholder {
	font-size: 16px;
}

#footer-form .wpcf7-not-valid-tip {
	font-size: 14px;
	font-weight: 600;
	padding-bottom: 10px;
/* 	position: absolute; */
}

#footer-form .wpcf72 .wpcf7-spinner {
	position: absolute;
	transform: translateY(13px);
}

#footer-form .wpcf7 form .wpcf7-response-output {
	font-size: 14px;
	border-radius: 5px;
	margin: auto;
	margin-bottom: 4px;
	position: absolute;
	bottom: 0;
	left: 50%;
    transform: translate(-50%, 40%);
	width: 100%;
}

#footer-form .wpcf7-form-control-wrap {
	display: inline-block;
}

#link-politicas{
	text-underline-offset: 4px;
}

@media(max-width: 998px){
	#footer-form form{
		display: block;
	}
	#footer-form .wpcf7 {
		max-width: 90%;
		margin: auto;
	}
	#footer-form .wpcf7-form-control-wrap{
		width: 100%;
	}
	#footer-form .wpcf7-form-control-wrap[data-name="email"]{
		margin: 0;
	}
	#footer-form form p:nth-of-type(1){
		display: initial;
	}
	#footer-form .wpcf7 form .wpcf7-response-output {
		margin-bottom: 0;
		position: initial;
		 transform: initial;
	}	
	#direitos-footer{
		display: block;
		margin-top: 10px;
	}

}

@media(max-width: 578px){
	#wrapper-footer{
		text-align: center;
	}
	#footer-logo{
		text-align: center;
	}
}