
/*********************************************
** Header 
*********************************************/

#header {
	width: 100%;
	float: left;
	position: relative;
}

/* Top Header */

#header .topHeader {
	float: left;
	width: 100%;
	background: #fff;
	padding: 10px 0;
}

#header .topHeader ul {
	float: left;
	width: 100%;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

#header .topHeader ul li {
	list-style: none;
}

#header .topHeader ul li + li {
	margin-left: 20px;
}

#header .topHeader ul li a {
	color: #414141;
    font-size: 12px;
    font-weight: 500;
}

/* Bottom Header */

#header .bottomHeader {
	float: left;
	width: 100%;
	background: #202020;
	padding: 15px 0;
}

#header .bottomHeader .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#header .bottomHeader .container::after,
#header .bottomHeader .container::before {
	display: none;
}

/* Coluna 1 */

#header .bottomHeader .coluna1 {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

#header .bottomHeader .coluna1 #botaoMenuHeader {
	cursor: pointer;
	position: relative;
}

#header .bottomHeader .coluna1 #botaoMenuHeader img {
	width: 30px;
}

/* Coluna 2 */

#header .bottomHeader .coluna2 {
	display: flex;
	justify-content: center;
}

/* Coluna 3 */

#header .bottomHeader .coluna3 {
	display: flex;
	justify-content: flex-end;
}

#header .bottomHeader .coluna3 .buscaHeader {
	width: 100%;
	transition: all 0.2s ease-in-out;
}

#header .bottomHeader .coluna3 .buscaHeader form {
	float: left;
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

#header .bottomHeader .coluna3 .buscaHeader form input {
	border: 0;
	border-radius: 5px;
	height: 35px;
	background: #fff;
	width: 50%;
	padding: 0 15px;
	color: #999;
	font-size: 14px;
	transition: all 0.2s ease-in-out;
}

#header .bottomHeader .coluna3 .buscaHeader form input:focus {
	width: 80%;
}

#header .bottomHeader .coluna3 .buscaHeader form input::placeholder {
  color: #999;
  opacity: 1; /* Firefox */
}

#header .bottomHeader .coluna3 .buscaHeader form input::-ms-input-placeholder { /* Edge 12 -18 */
  color: #999;
}

#header .bottomHeader .coluna3 .buscaHeader form button {
	position: absolute;
	right: 15px;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: 0;
	top: 0;
}

#header .bottomHeader .coluna3 .buscaHeader form button i {
	color: #202020;
	font-size: 16px;
}

#header .bottomHeader .coluna3 .buscaMobile {
	display: none;
}

/* Menu */

#fadeMenuPrincipal {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0,0,0,0.5);
	display: none;
	z-index: 99999;
}

#menuPrincipal {
	position: absolute;
	top: 0;
	height: 100%;
	width: 300px;
	background-color: #fff;
	box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
	padding: 50px 30px 30px 30px;
	overflow: auto;
	visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    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;
}

#menuPrincipal.active {
	visibility: visible;
    opacity: 1;
	-webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

#menuPrincipal #fechaMenuMobile {
	position: absolute;
	top: 15px;
	right: 15px;
	cursor: pointer;
}

#menuPrincipal #fechaMenuMobile img {
	width: 20px;
}

#menuPrincipal #logoMenu {
	float: left;
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}

#menuPrincipal .tituloMenu {
	float: left;
    width: 100%;
    font-weight: 600;
    margin: 0 0 20px 0;
}

#menuPrincipal ul.menuInstitucional {
	padding: 0;
	margin: 0;
	float: left;
	width: 100%;
}

#menuPrincipal ul.menuInstitucional li {
	list-style: none;
	float: left;
	width: 100%;
}

#menuPrincipal ul.menuInstitucional li + li {
	margin-top: 5px;
}

#menuPrincipal ul.menuInstitucional li a {
    font-size: 13px;
	color: #414141;
    line-height: 13px;
    transition: all 0.1s linear;
    font-weight: 400;
	display: inline-block;
}

#menuPrincipal ul.menuInstitucional li:hover a {
	color: #06AA48;
}

/* Busca Header */

#buscaMobile {
	display: none;
}

@media only screen and (max-width: 768px) {

	#header .topHeader {
		display: none;
	}

	#header .bottomHeader .container {
		padding: 0;
	}

	#header .bottomHeader .coluna1,
	#header .bottomHeader .coluna2,
	#header .bottomHeader .coluna3 {
		width: 33.33333333%;
	}

	#header .bottomHeader .coluna1 #botaoMenuHeader {
		margin-right: 12px;
    	padding-right: 12px;
	}

	#header .bottomHeader .coluna1 #menuTimes .botaoMenu span {
		display: none;
	}

	#header .bottomHeader .coluna1 #botaoMenuHeader img,
	#header .bottomHeader .coluna1 #menuTimes .botaoMenu img {
		width: 25px;
	}

	#header .bottomHeader .coluna3 .buscaHeader {
		display: none;
	}

	#header .bottomHeader .coluna3 .buscaMobile {
		display: block;
	}

	#header .bottomHeader .coluna3 .buscaMobile i {
		color: #fff;
		font-size: 20px;
	}

	/* Busca Header */

	#buscaMobile {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		display: block;
		z-index: 999;
		padding: 10px 10px 0 10px;
		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;
	}

	#buscaMobile.active {
		visibility: visible;
		opacity: 1;
		-webkit-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
	}

	#buscaMobile form {
		float: left;
		width: 100%;
		background-color: #202020;
		padding: 10px;
		border-radius: 5px;
		position: relative;
	}

	#buscaMobile form::before {
		content: "";
        border-right: 8px solid transparent;
        border-left: 8px solid transparent;
        border-bottom: 8px solid #202020;
        height: 0;
        right: 6px;
        position: absolute;
        top: -7px;
	}

	#buscaMobile form input {
		border: 0;
		border-radius: 5px;
		height: 35px;
		background: #fff;
		width: 100%;
		padding: 0 15px;
		color: #999;
		font-size: 14px;
		transition: all 0.2s ease-in-out;
	}

	#buscaMobile form input::placeholder {
		color: #999;
		opacity: 1; /* Firefox */
	}

	#buscaMobile form input::-ms-input-placeholder { /* Edge 12 -18 */
		color: #999;
	}

	#buscaMobile form button {
		position: absolute;
        right: 0;
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: 0;
        top: 0;
        margin: 0;
        padding: 0;
	}

	#buscaMobile form button i {
		color: #202020;
		font-size: 16px;
	}

}