
/*********************************************
** Header 
*********************************************/

#header {
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
	padding: 20px 0;
	transition: all 0.2s ease-in-out;
}

#header.scroll {
	background: rgb(243, 239, 229, 0.95);
	padding: 10px 0;
	box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}

#header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Logo */

#header #logoHeader img {
	transition: all 0.2s linear;
}

#header.scroll #logoHeader img {
	width: 60px;
}

/* Menu */

#header .boxMenuHeader {
	flex: 1;
	display: flex;
	justify-content: center;
}

#header .boxMenuHeader #fechaMenuMobile {
	display: none;
}

#header .boxMenuHeader #fechaMenuMobile img {
	width: 20px;
}

#header .boxMenuHeader > ul.menu {
	padding: 0;
	margin: 0;
	display: flex;
}

#header .boxMenuHeader > ul.menu li {
	list-style: none;
}

#header .boxMenuHeader > ul.menu li + li {
	margin-left: 20px;
}

#header .boxMenuHeader > ul.menu li a {
    font-size: 15px;
    color: #D62020;
    line-height: 15px;
    transition: all 0.1s linear;
    font-weight: 400;
    display: inline-block;
    text-transform: uppercase;
	font-family: CyRegular;
	letter-spacing: 1px;
	cursor: pointer;
}

#header .boxMenuHeader > ul.menu li a:hover {
	font-weight: 900;
}

/* Seletor de Idiomas */

#header .boxIdiomas {
	position: relative;
	z-index: 99;
}

#header .boxIdiomas .idiomaAtivo {
	float: left;
	border: solid 1px #5C5C5C;
	border-radius: 100px;
	display: flex;
	align-items: center;
	padding-right: 12px;
	cursor: pointer;
}

#header .boxIdiomas .idiomaAtivo img {
	margin: -1px 0 -1px -1px;
	width: 35px;
}

#header .boxIdiomas .idiomaAtivo i {
	color: #5C5C5C;
	margin-left: 5px;
	transition: all 0.1s linear;
}

#header .boxIdiomas .idiomaAtivo.active i {
	transform: rotate(180deg);
}

#header .boxIdiomas ul {
	position: absolute;
	top: calc(100% + 5px);
	padding: 0;
	margin: 0;
	width: 100%;
	left: 0;
	display: none;
}

#header .boxIdiomas ul li {
	list-style: none;
	float: left;
	width: 100%;
    border: solid 1px #5C5C5C;
    border-radius: 100px;
    display: flex;
    align-items: center;
    padding-right: 12px;
    cursor: pointer;
	background-color: #fff;
	transition: all 0.2s linear;
}

#header .boxIdiomas ul li + li {
	margin-top: 5px;
}


#header .boxIdiomas ul li:hover {
	background-color: #f1f1f1;
}

#header .boxIdiomas ul li img {
	width: 35px!important;
	height: 35px!important;
	margin: -1px 3px -1px -1px;
}

#header .boxIdiomas ul li span {
	font-weight: 600;
    font-size: 12px;
	line-height: 12px;
    text-transform: uppercase;
}

/* Botão menu */

#header #botaoMenuHeader {
	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: #06AA48;
		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 #06AA48;
        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: #06AA48;
		font-size: 16px;
	}

}