
/*********************************************
** Header 
*********************************************/

#header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
}

#header.scroll {
	-webkit-box-shadow: 0px 0px 18px -4px rgba(0,0,0,0.74); 
	box-shadow: 0px 0px 18px -4px rgba(0,0,0,0.74);
}

#header .boxHeaderInterno {
	width: 100%;
	display: flex;
	align-items: center;
	max-width: 1800px;
}

/* Top Header ****************************************************************/

#header .topHeader {
	float: left;
	width: 100%;
	background: var(--cor-principal);
	padding: 10px 0;
	transition: all 0.3s ease-in-out;
}

#header.scroll .topHeader {
	height: 0;
	overflow: hidden;
	padding: 0;
}

#header .topHeader .container {
	display: flex;
	align-items: center;
	justify-content: center;
}

#header .topHeader .container::after,
#header .topHeader .container::before {
	display: none;
}

/* Redes Sociais */

#header .topHeader .boxRedesHeader {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

#header .topHeader .boxRedesHeader a {
	display: inline-block;
}

#header .topHeader .boxRedesHeader a + a {
	margin-left: 20px;
}

#header .topHeader .boxRedesHeader a i {
	color: #fff;
    font-size: 18px;
	transition: all 0.2s ease-in-out;
    line-height: 18px;
}

#header .topHeader .boxRedesHeader a:hover i {
	color: var(--cor-secundaria);
}

/* Contatos */

#header .topHeader .boxContatosHeader {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

#header .topHeader .boxContatosHeader a {
	display: flex;
	align-items: center;
}

#header .topHeader .boxContatosHeader a + a {
	margin-left: 30px;
}

#header .topHeader .boxContatosHeader a i {
	color: #fff;
    font-size: 18px;
	transition: all 0.2s ease-in-out;
    line-height: 18px;
}

#header .topHeader .boxContatosHeader a span {
	color: #fff;
	font-size: 14px;
	line-height: 18px;
	margin-left: 10px;
}

/* Bottom Header ***************************************/

#header .bottomHeader {
	float: left;
	width: 100%;
	background: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease-in-out;
}

/* Logo */

#header .bottomHeader #logo img {
	width: 130px;
	transition: all 0.3s ease-in-out;
}

/* Menu */

#header .bottomHeader .menuPrincipal {
	width: 50%;
	flex: 1;
	display: flex;
	justify-content: center;
}

#header .bottomHeader .menuPrincipal ul.menu {
	padding: 0;
	margin: 0;
}

#header .bottomHeader .menuPrincipal ul.menu > li {
	list-style: none;
	float: left;
	position: relative;
	transition: all 0.1s linear;
	padding: 10px 0;
}

#header .bottomHeader .menuPrincipal ul.menu > li::after {
    position: absolute;
    height: 5px;
    width: 0%;
    bottom: -4px;
    left: 0;
	background-color: var(--cor-secundaria);
    content: "";
    display: block;
	border-radius: 5px;
    transition: all 0.3s linear;
}

#header .bottomHeader .menuPrincipal ul.menu > li:hover::after, 
#header .bottomHeader .menuPrincipal ul.menu > li.current-menu-item::after {
    width: 100%;
}

#header .bottomHeader .menuPrincipal ul.menu > li.menu-item-has-children > a::after {
	font-family: FontAwesome;
	display: inline-block;
	padding-left: 8px;
	vertical-align: middle;
	content: "\f107";
	color: var(--cor-secundaria);
}

#header .bottomHeader .menuPrincipal ul.menu > li + li {
	margin-left: 30px;
}

#header .bottomHeader .menuPrincipal ul.menu > li a {
	color: var(--cor-secundaria);
    font-size: 16px;
    line-height: 16px;
    transition: all 0.1s linear;
    font-weight: 500;
    cursor: pointer;
	display: inline-block;
	padding: 20px 5px;
	border-bottom: solid 1px transparent;
}

/* Submenu */

#header .bottomHeader .menuPrincipal ul.menu li ul {
	position: absolute;
	background-color: #fff;
	width: 300px;
	z-index: 999;
    white-space: nowrap;
    padding: 20px;
    top: calc(100% + 10px);
    left: -40px;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    box-sizing: border-box;
	-webkit-box-shadow: 0px 0px 24px -3px rgba(0,0,0,0.54);
	-moz-box-shadow: 0px 0px 24px -3px rgba(0,0,0,0.54);
	box-shadow: 0px 0px 24px -3px rgba(0,0,0,0.54);
}

#header .bottomHeader .menuPrincipal ul.menu li:hover ul {
	visibility: visible;
    opacity: 1;
	-webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

#header .bottomHeader .menuPrincipal ul.menu li ul li {
	float: left;
	width: 100%;
	margin: 0;
	list-style: none;
}

#header .bottomHeader .menuPrincipal ul.menu li ul li a {
	color: var(--cor-secundaria);
    border-radius: 15px;
    float: left;
	padding: 15px;
	border: 0;
	font-size: 14px;
	display: flex;
	align-items: center;
	width: 100%;
	transition: all 0.2s ease-in-out;
}

#header .bottomHeader .menuPrincipal ul.menu li ul li a:hover {
	background: var(--cor-principal);
	color: #fff;
}

/* Botão Busca */

#header .bottomHeader #botaoBusca {
	position: relative;
}

#header .bottomHeader #botaoBusca .botaoInterno {
	background: var(--cor-principal);
	height: 50px;
	width: 50px;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

#header .bottomHeader #botaoBusca .botaoInterno .imgCima {
	width: 18px;
	transition: all 0.1s linear;
}

#header .bottomHeader #botaoBusca .botaoInterno:hover .imgCima {
	transform: scale(1.1);
}

#header .bottomHeader #botaoBusca .boxCampoBusca {
	position: absolute;
	background-color: #fff;
	width: 350px;
	z-index: 999;
    white-space: nowrap;
    padding: 20px;
    top: calc(100% + 25px);
    right: -20px;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    box-sizing: border-box;
	-webkit-box-shadow: 0px 0px 24px -3px rgba(0,0,0,0.54);
	-moz-box-shadow: 0px 0px 24px -3px rgba(0,0,0,0.54);
	box-shadow: 0px 0px 24px -3px rgba(0,0,0,0.54);
}

#header .bottomHeader #botaoBusca.active .boxCampoBusca {
	visibility: visible;
    opacity: 1;
	-webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

#header .bottomHeader #botaoBusca .boxCampoBusca form {
	float: left;
	width: 100%;
	position: relative;
}

#header .bottomHeader #botaoBusca .boxCampoBusca form input {
	height: 50px;
	float: left;
	width: 100%;
	padding: 0 15px;
	border-radius: 100px;
	border: solid 1px #dfdfdf;
}

#header .bottomHeader #botaoBusca .boxCampoBusca form button {
	position: absolute;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--cor-secundaria);
	border: 0;
	top: 5px;
	right: 5px;
	border-radius: 100px;
}

#header .bottomHeader #botaoBusca .boxCampoBusca form button img {
	width: 18px;
}

/* Links Header */

#header .bottomHeader .boxLink {
    width: auto;
	margin-left: 10px;
}

/* Botão Menu Mobile */

#header #botaoMenuMobile {
	display: none;
}

/* Menu Mobile */

#header #boxMenuMobile {
	display: none;
}

@media only screen and (max-width: 1100px) {

	#header .bottomHeader {
		padding: 15px;
	}

	#header .bottomHeader .menuPrincipal {
		display: none;
	}

	#header #logo {
		flex: 1;
	}

	#header #logo img {
		width: 100px!important;
	}

	/* Botão Menu Mobile */

	#header #botaoMenuMobile {
		display: block;
		cursor: pointer;
		margin-left: 20px;
	}

	#header #botaoMenuMobile i {
		color: #262626;
		font-size: 30px;
		line-height: 30px;
	}

	/* Menu Mobile */

	#header #boxMenuMobile {
		display: none;
		position: fixed;
		top: 105px;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #262626;
	}

	#header #boxMenuMobile.scrollMenu {
		top: 65px;
	}

	#header #boxMenuMobile .boxFlex {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		top: 0;
		display: flex;
		justify-content: space-between;
		flex-direction: column;
	}

	#header #boxMenuMobile .menuPrincipalMobile {
		float: left;
		width: 100%;
	}

	#header #boxMenuMobile .menuPrincipalMobile ul {
		float: left;
		width: 100%;
		padding: 0;
		margin: 0;
	}

	#header #boxMenuMobile .menuPrincipalMobile ul li {
		float: left;
		width: 100%;
	}

	#header #boxMenuMobile .menuPrincipalMobile ul li + li {
		border-top: solid 1px rgb(83, 83, 83);
	}

	#header #boxMenuMobile .menuPrincipalMobile ul li a {
		text-align: center;
        color: #E1EDF6;
        padding: 15px 0;
        width: 100%;
        float: left;
        font-size: 17px;
        font-weight: 600;
		display: flex;
		align-items: center;
		justify-content: center
	}

	#header #boxMenuMobile .menuPrincipalMobile ul li ul {
		display: none;
	}

	#header #boxMenuMobile .menuPrincipalMobile ul li.menu-item-has-children > a::after {
		font-family: FontAwesome;
		display: inline-block;
		padding-left: 10px;
		vertical-align: middle;
		content: "\f107";
		color: #fff;
	}

	#header #boxMenuMobile .menuPrincipalMobile ul li ul li + li {
		border-top: 0!important;
	}

	#header #boxMenuMobile .menuPrincipalMobile ul li ul li a {
		background-color: #363636;
		color: #fff;
	}

	#header #boxMenuMobile .menuPrincipalMobile ul li ul li a span {
		color: #FFFFFF;
		font-size: 14px;
	}

	/* Links Header */

	#header #boxMenuMobile .linksHeaderMobile {
		display: flex;
		flex-direction: column;
		padding: 20px;
	}

	#header #boxMenuMobile .linksHeaderMobile a {
		display: flex;
		align-items: center;
		justify-content: center;
		background: #9AD5FF;
		border-radius: 10px;
		border: solid 2px #9AD5FF;
		padding: 10px 40px;
	}

	#header #boxMenuMobile .linksHeaderMobile a:first-child {
		background: none;
	}

	#header #boxMenuMobile .linksHeaderMobile a + a {
		margin-top: 10px;
	}

	#header #boxMenuMobile .linksHeaderMobile a i {
		color: #1E3D55;
		font-size: 20px;
		margin: 0 10px 0 0;
	}

	#header #boxMenuMobile .linksHeaderMobile a span {
		color: #1E3D55;
		font-weight: 600;
	}

}

@media only screen and (max-width: 768px) {

	#header .topHeader .boxContatosHeader a:last-child {
		display: none;
	}

	#header .bottomHeader {
		padding: 10px 0;
	}

	#header .bottomHeader .boxLink {
		display: none;
	}

	#header .bottomHeader #botaoBusca .botaoInterno {
		height: 45px;
   		width: 45px;
	}

	#header .bottomHeader #botaoBusca .boxCampoBusca {
		width: 310px;
		right: -50px;
		padding: 10px;
	}

}

@media only screen and (max-width: 600px) {

	

}