/* ROOT */
:root{
	--branco: #FFFFFF;
	--cinza: #836F58;
	--azul: #3E3F94;
	--azul-claro: #06BBCC;
	--azul-escuro: #0d214f;
	--laranja: #F37335;
	--laranja-escuro: #cc5e29;
	--verde: #01A859;
	--verde-medio: #0FA05E;
	--preto: #252525;

	--padding-x-global: 6.25rem;
	--padding-x-global-mobile: 2.5rem;
	--section-y-global: 3.5rem;

	--Nunito: 'Nunito', sans-serif;
	--Rubik: 'Rubik', sans-serif;

	/* 	--h1-fs: 4rem;
	--h1-lh: 1.2em;
	--h2-fs: 3.2rem;
	--h2-lh: 1.2em;
	--h3-fs: 2.8rem;
	--h3-lh: 1.2em;
	--h4-fs: 2.4rem;
	--h4-lh: 1.2em;
	--h5-fs: 2em;
	--h5-lh: 1.2em;
	--h6-fs: 1.4rem;
	--h6-lh: 1.2em; 

	--h1-fs-mobile: 2.2rem;
	--h1-lh-mobile: 1.2em;
	--h2-fs-mobile: 2rem;
	--h2-lh-mobile: 1.2em;
	--h3-fs-mobile: 1.8rem;
	--h3-lh-mobile: 1.2em;
	--h4-fs-mobile: 1.6rem;
	--h4-lh-mobile: 1.2em;
	--h5-fs-mobile: 1.4em;
	--h5-lh-mobile: 1.2em;
	--h6-fs-mobile: 1.2rem;
	--h6-lh-mobile: 1.2em;  */
}

*{
	border: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--Nunito);
}


html {
	font-size: calc(10px + 0.390625vw);

}

body {
	max-width: 100%;
	/* background: var(--azul); */
}

/* FORMULÁRIO */
.wpcf7 {
	display: none;
}

/* html, body {
width: 100%;
overflow-x: hidden;

} */

a, a:hover {
	text-decoration: none!important;
	color: initial;

}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

button:focus{
	box-shadow: none!important;
}

/* RESPONSIVIDADE */
.wrapper{
	padding: 4rem 0;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	padding: 0 var(--padding-x-global);
	max-width: 100rem;
}

/* .h1, h1 {
font-size: var(--h1-fs);
line-height: var(--h1-lh);
}

.h2, h2 {
font-size: var(--h2-fs);
line-height: var(--h2-lh);
}

.h3, h3 {
font-size: var(--h3-fs);
line-height: var(--h3-lh);
}

.h4, h4 {
font-size: var(--h4-fs);
line-height: var(--h4-lh);
}

.h5, h5 {
font-size: var(--h5-fs);
line-height: var(--h5-lh);
}

.h6, h6 {
font-size: var(--h6-fs);
line-height: var(--h6-lh);
} */

@media(max-width: 1024px) {
	.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		padding: 0 var(--padding-x-global-mobile);
	}

}

@media(max-width: 768px) {

	.h1, h1 {
		font-size: var(--h1-fs-mobile);
		line-height: var(--h1-lh-mobile);
	}

	.h2, h2 {
		font-size: var(--h2-fs-mobile);
		line-height: var(--h2-lh-mobile);
	}

	.h3, h3 {
		font-size: var(--h3-fs-mobile);
		line-height: var(--h3-lh-mobile);
	}

	.h4, h4 {
		font-size: var(--h4-fs-mobile);
		line-height: var(--h4-lh-mobile);
	}

	.h5, h5 {
		font-size: var(--h5-fs-mobile);
		line-height: var(--h5-lh-mobile);
	}

	.h6, h6 {
		font-size: var(--h6-fs-mobile);
		line-height: var(--h6-lh-mobile);
	}

}

/* CONFIGURAÇÃO A PARTE */
.stop-scrolling {
	height: 100%;
	overflow: hidden;
}

/* BOTÕES DO SITE */
.btn.btn-default {
	color: var(--branco);
	padding: 0.625rem 1.25rem;
	transition: 0.3s;
	border: 2px solid var(--laranja);
	background-color: var(--laranja);
}

.btn.btn-default:hover {
	color: var(--branco);
	border: none;
	background-color: var(--laranja-escuro);
	border: 2px solid var(--laranja-escuro);
}

.btn.btn-default-2 {
	color: var(--branco);
	border: 2px solid var(--branco);
	padding: 0.625rem 1.25rem;
	transition: 0.5s;
	background-color: transparent;
}

.btn.btn-default-2:hover {
	color: var(--branco);
	border: 2px solid var(--azul);
	background-color: var(--azul);

}

.btn.btn-default-outline {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.25rem;
	color: var(--branco);
	border: 2px solid var(--branco);
	border-radius: 0;
	padding: 0.575rem 1rem;
	transition: 0.3s;
}

.btn.btn-default-outline:hover {
	color: var(--branco);
	border: 2px solid var(--branco);
	border-radius: 0;
	background: rgba(217, 217, 217, 0.20);
}

/*** LOADING PAGE ***/
.spinner {
	width: 40px;
	height: 40px;
	background: var(--laranja);
	margin: 100px auto;
	-webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
	animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
	0% {
		-webkit-transform: perspective(120px)
	}
	50% {
		-webkit-transform: perspective(120px) rotateY(180deg)
	}
	100% {
		-webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
	}
}

@keyframes sk-rotateplane {
	0% {
		transform: perspective(120px) rotateX(0deg) rotateY(0deg);
		-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
	}
	50% {
		transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
		-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
	}
	100% {
		transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
		-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
	}
}

#spinner {
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s ease-out, visibility 0s linear .5s;
	z-index: 99999;
}

#spinner.show {
	transition: opacity .5s ease-out, visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}

/* SEARCH MODAL */
#searchModal .modal-content{
	background: rgba(9, 30, 62, .7);
}

#searchModal .input-group{
	max-width: 600px;

}

#searchModal .btn-close{
	border: 1px solid var(--laranja);
	background: var(--branco);
	opacity: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

#searchModal .btn-close i{
	font-size: 20px;
	color: var(--preto);

}

#searchModal .input-group input{
	border: 1px solid var(--laranja);
	color: var(--branco);

}

#searchModal .input-group input::placeholder{
	color: #cccc;

}

/* TOPBAR MENU */
#topbar{
	background-color: var(--azul);
	color: var(--branco);
	padding: 8px 0;
}

#topbar .btn-link{
	width: 30px;
	height: 30px;
	margin: 0 5px;
	border: 1px solid var(--branco);
	border-radius: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--branco);
	transition: 0.5s;

}

#topbar .btn-link:hover{
	border: 1px solid var(--verde);
	background-color: var(--verde);
	/* color: var(--branco); */

}

/* MENU PRINCIPAL */
#navbar{
	background: linear-gradient(to bottom, var(--branco) 95%, #ededed 10%);
}

#navbar .navbar-brand img{
	height: 70px;
}

#navbar .navbar{
	transition: 0.5s;
}

#navbar #menu-header{
	display: flex;
}

#navbar #menu-header li {
	font-family: 'Nunito', sans-serif;
	position: relative;
	margin-left: 25px;
	padding: 35px 0;
	font-size: 18px;
	font-weight: 600;
	outline: none;
	transition: .5s;
}

#navbar #menu-header li {
	padding: 20px 0;

}

#navbar #menu-header li a{
	color: var(--preto);
}

#navbar #menu-header li.active a{
	color: var(--laranja-escuro);
}

#navbar #menu-header li a:hover{
	color: var(--laranja);

}

#navbar .navbar-brand h1 {
	color: var(--branco);
}

#navbar .navbar-toggler {
	color: var(--laranja) !important;
	border-color: var(--laranja) !important;
}

#navbar .dropdown-item:focus, 
#navbar .dropdown-item:hover{
	background-color: var(--laranja);
	color: var(--branco);
}


#navbar .offcanvas-header button{
	background-color: #ffff;
	box-shadow: none;
	border: none;
	outline: 0;
}

#navbar .offcanvas-header i{
	font-size: 30px;
	color: var(--laranja);

}

@media (min-width: 992px){
	.navbar-expand-lg .offcanvas .offcanvas-body {
		align-items: center;
	}

}

@media (max-width: 991.98px) {
	.sticky-top {
		position: relative;
		background: #FFFFFF;
	}

	#navbar #menu-header li,
	#navbar #menu-header li.show,
	.sticky-top #menu-header li {
		padding: 10px 0;
		color: var(--preto);
	}

	#navbar .navbar-brand h1 {
		color: var(--branco);
	}

	#navbar .offcanvas .offcanvas-header {
		align-items: baseline;
	}

	#navbar #menu-header {
		flex-direction: column;
	}

}

@media (min-width: 992px) {
	#navbar {
		position: absolute;
		width: 100%;
		top: 0;
		left: 0;
		z-index: 999;
	}

	.sticky-top{
		height: 70px;
		position: fixed;
		left: 0;
		padding: 0 5rem;
		width: 100%;
		background: var(--branco);
		transition: 0.8s;

	}

	#navbar .sticky-top img {
		height: 50px;
	}

	#navbar #menu-header li::before {
		position: absolute;
		content: "";
		width: 0;
		height: 2px;
		bottom: 20%;
		left: 50%;
		background: var(--laranja);
		transition: .5s;
	}

	#navbar #menu-header li:hover::before,
	#navbar #menu-header li.active::before {
		width: 100%;
		left: 0;
	}

	#navbar .navbar-nav .nav-link.nav-contact::before {
		display: none;
	}

	.sticky-top .navbar-brand h1 {
		color: var(--primary);
	}

	#navbar .nav-item .dropdown-menu {
		display: block;
		margin-top: 0;
		opacity: 0;
		visibility: hidden;
		transition: .5s;
	}

	#navbar .dropdown-menu.fade-down {
		top: 100%;
		transform: rotateX(-75deg);
		transform-origin: 0% 0%;
	}

	#navbar .nav-item:hover .dropdown-menu {
		top: 100%;
		transform: rotateX(0deg);
		visibility: visible;
		transition: .5s;
		opacity: 1;
	}

}

@media(max-width: 576px){
	#navbar .navbar-brand img {
		height: 40px;
	}
}

/* CARROSSEL PRINCIPAL */
.carousel-caption {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(9, 30, 62, .7);
	z-index: 1;
}

@media (max-width: 576px) {
	.carousel-caption h5 {
		font-size: 14px;
		font-weight: 500 !important;
	}

	.carousel-caption h1 {
		font-size: 30px;
		font-weight: 600 !important;
	}
}



/*** Section Title ***/
.section-title::before {
	position: absolute;
	content: "";
	width: 150px;
	height: 5px;
	left: 0;
	bottom: 0;
	background: var(--primary);
	border-radius: 2px;
}

.section-title.text-center::before {
	left: 50%;
	margin-left: -75px;
}

.section-title.section-title-sm::before {
	width: 90px;
	height: 3px;
}

.section-title::after {
	position: absolute;
	content: "";
	width: 6px;
	height: 5px;
	bottom: 0px;
	background: #FFFFFF;

}

.section-title.section-title-sm::after {
	width: 45px;
	height: 3px;
}

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
	margin-top: 15px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.testimonial-carousel .owl-dot {
	position: relative;
	display: inline-block;
	margin: 0 5px;
	width: 15px;
	height: 15px;
	background: #DDDDDD;
	border-radius: 2px;
	transition: .5s;
}

.testimonial-carousel .owl-dot.active {
	width: 30px;
	background: var(--azul);
}

.testimonial-carousel .owl-item.center {
	position: relative;
	z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
	transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
	background: #FFFFFF !important;
	color: var(--preto)!important;
	box-shadow: 0 0 30px #DDDDDD;
}

/*** Team ***/
.team-item {
	transition: .5s;
}

.team-social {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s;
}

.team-social a.btn {
	position: relative;
	margin: 0 3px;
	margin-top: 100px;
	opacity: 0;
}

.team-item:hover {
	box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
	background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
	opacity: 1;
	margin-top: 0;
	transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
	opacity: 1;
	margin-top: 0;
	transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
	opacity: 1;
	margin-top: 0;
	transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
	opacity: 1;
	margin-top: 0;
	transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
	transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
	transform: scale(1.15);
}

/* BLOG */
.blog-item  img{
	width: 100%;
	height: 250px;
	object-fit: cover;
}


/* FOOTER */
footer{
	background-color: var(--azul-escuro);
	color: var(--branco);
}

.link-animated a {
	transition: .5s!important;
}

.link-animated a:hover {
	padding-left: 10px!important;
}

#marca{
	background-color: var(--branco);
	color: var(--azul-escuro);
}

#redes-sociais a{
	background-color: var(--laranja);
	transition: 0.5s;
}

#redes-sociais a:hover{
	background-color: var(--laranja-escuro);
}

#endereco i{
	color: var(--verde);
}

#redes-sociais i{
	color: var(--branco);
}

#endereco .redes-socias{
	color: var(--branco);
}

#submenu-footer li a::before,
#menu-footer li a::before{
	content: '\f061';
	font-weight: 900;
	color: var(--verde);
	font-family: 'Font Awesome 6 Free';
	margin-right: 10px;
	display: inline-block;

}

#menu-footer li a ,
#submenu-footer li a{
	display: block;
	padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
	font-size: var(--bs-nav-link-font-size);
	font-weight: var(--bs-nav-link-font-weight);
	color: var(--branco);
	text-decoration: none;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;

}

#credits{
	background-color: var(--preto);
	color: var(--branco);
	padding: 20px 0;
}

#credits img{
	margin-left: 10px;
}

@media(max-width: 576px){


}