
/*********************************************
** Header 
*********************************************/

#header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	padding: 20px 0;
	transition: all 0.2s linear;
	background-color: #212121;
}

#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);
	background-color: #212121;
	padding: 7px 0;
}

/* Bottom Header ***************************************/

#header .bottomHeader {
	float: left;
	width: 100%;
	transition: all 0.3s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Logo */

#header .bottomHeader #logo img {
	transition: all 0.3s ease-in-out;
}

#header.scroll .bottomHeader #logo img {
	width: 150px;
}

/* Menu */

#header .bottomHeader .menuPrincipal {
	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: 15px 0;
}

#header .bottomHeader .menuPrincipal ul.menu > li + li {
	margin-left: 30px;
}

#header .bottomHeader .menuPrincipal ul.menu > li a {
	color: #fff;
    font-size: 16px;
    line-height: 16px;
    transition: all 0.2s linear;
    font-weight: 400;
    cursor: pointer;
	display: inline-block;
	border-bottom: solid 1px transparent;
	display: flex;
    align-items: center;
}

#header .bottomHeader .menuPrincipal ul.menu > li.menu-item-has-children > a::after {
	font-family: FontAwesome;
    display: inline-block;
    padding-left: 10px;
    vertical-align: middle;
    content: "\f0d7";
    color: #fff;
	font-size: 16px;
    line-height: 16px;
	transition: all 0.1s linear;
}

#header .bottomHeader .menuPrincipal ul.menu > li:hover > a,
#header .bottomHeader .menuPrincipal ul.menu > li:hover > a::after  {
	color: #FACA08;
} 

#header .bottomHeader .menuPrincipal ul.menu > li.menu-item-has-children:hover > a::after {
	transform: scaleY(-1);
}

/* Submenu */

#header .bottomHeader .menuPrincipal ul.menu li ul {
	position: absolute;
	background-color: #fff;
	z-index: 999;
    white-space: nowrap;
    top: 100%;
    visibility: hidden;
    opacity: 0;
	padding: 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;
    -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);
	border-radius: 8px;
	overflow: hidden;
	display: grid;
	gap: 0;

	/* visibility: visible;
    opacity: 1;
	-webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px); */
}

#header .bottomHeader .menuPrincipal ul.menu li.menuSolucoes ul {
	width: 810px;
	left: calc(50% - 405px);
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

#header .bottomHeader .menuPrincipal ul.menu li.menuCentralDoCliente ul {
	width: 270px;
	left: calc(50% - 135px);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

#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 {
	margin: 0;
	list-style: none;
	height: 150px;
}

#header .bottomHeader .menuPrincipal ul.menu li ul li + li {
	border-left: solid 1px #e6e6e6;
}

#header .bottomHeader .menuPrincipal ul.menu li ul li a {
	color: #000000;
    float: left;
    padding: 0 10px;
    border: 0;
    font-size: 13px;
	line-height: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
	justify-content: center;
    flex-direction: column;
    width: 100%;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
	text-wrap: auto;
	text-align: center;
	height: 100%;
}

#header .bottomHeader .menuPrincipal ul.menu li ul li a::before {
	content: "";
	width: 60px;
	height: 60px;
	margin-bottom: 10px;
	opacity: 0.4;
}

#header .bottomHeader .menuPrincipal ul.menu li ul li.menuVendingMachines a::before {
	background: url('../img/ic-menu/ic-vending-machines.png') center center no-repeat;
}

#header .bottomHeader .menuPrincipal ul.menu li ul li.menuMicromercado a::before {
	background: url('../img/ic-menu/ic-minimercado.png') center center no-repeat;
}

#header .bottomHeader .menuPrincipal ul.menu li ul li.menuLavanderia a::before {
	background: url('../img/ic-menu/ic-lavanderia.png') center center no-repeat;
}

#header .bottomHeader .menuPrincipal ul.menu li ul li.menuDiversaoEletronica a::before {
	background: url('../img/ic-menu/ic-diversao-eletronica.png') center center no-repeat;
}

#header .bottomHeader .menuPrincipal ul.menu li ul li.menuFoodService a::before {
	background: url('../img/ic-menu/ic-food-service.png') center center no-repeat;
}

#header .bottomHeader .menuPrincipal ul.menu li ul li.menuEletroposto a::before {
	background: url('../img/ic-menu/ic-eletroposto.png') center center no-repeat;
}

#header .bottomHeader .menuPrincipal ul.menu li ul li.menuCentralDeSuporte a::before {
	background: url('../img/ic-menu/ic-central-de-suporte.png') center center no-repeat;
}

#header .bottomHeader .menuPrincipal ul.menu li ul li.menuTreinamentos a::before {
	background: url('../img/ic-menu/ic-treinamentos.png') center center no-repeat;
}

#header .bottomHeader .menuPrincipal ul.menu li ul li a:hover {
	background-color: #FACA08;
}

#header .bottomHeader .menuPrincipal ul.menu li ul li a:hover::before {
	opacity: 1;
}

/* Botão Loja */

#header .bottomHeader .linkLoja {
	border: solid 1px #fff;
    border-radius: 6px;
    display: inline-block;
    padding: 8px 5px;
	text-align: center;
    color: #fff;
    font-weight: 400;
	width: 115px;
}

/* Botão Login */

#header .bottomHeader .linkLogin {
    border-radius: 6px;
    display: inline-block;
    padding: 8px 15px;
    color: #000;
    font-weight: 500;
	margin-left: 15px;
	background-color: #FACA08;
	width: 115px;
	text-align: center;
}

/* Botão Menu Mobile */

#header #botaoMenuMobile {
	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 img {
		width: 40px;
	}

	/* Menu Mobile */

	#header #boxMenuMobile {
		display: none;
		position: fixed;
		top: 105px;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #324559;
	}

	#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(176, 219, 250);
	}

	#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: #1A3147;
		color: #fff;
	}

	#header #boxMenuMobile .menuPrincipalMobile ul li ul li:first-child a::before {
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		background: url('../../../uploads/2025/03/ic-casa.png') center center no-repeat;
		margin-right: 10px;
	}
	
	#header #boxMenuMobile .menuPrincipalMobile ul li ul li a span {
		color: #FFFFFF;
		font-size: 14px;
	}
	
	#header #boxMenuMobile .menuPrincipalMobile ul li ul li:last-child a::before {
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		background: url('../../../uploads/2025/03/ic-carro.png') center center no-repeat;
		margin-right: 10px;
	}

	/* 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) {

	

}