
/*
** Topo
** ================================================== */
.topo {
	padding: 20px 0;
}
.topo-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.topo-logo img {
	display: block;
	width: 100%;
}
.topo-logo .logo {
	width: 230px;
	display: block;
}
.topo-btn .btn + .btn {
	margin-left: 10px;
}
.btn-box {
	display: inline-flex;
	align-items: center;
}

div .wpml-ls-item a:before {
	content: '';
	margin-right: 10px;
	width: 20px;
	height: 20px;
	display: inline-flex;
	vertical-align: middle;
	background-position: center center;
	background-size: contain;
}
div .wpml-ls-item-pt-br a:before {
	background-image: url('./flag-br.png');
}
div .wpml-ls-item-en a:before {
	background-image: url('./flag-en.png');
}
div .wpml-ls-legacy-list-horizontal a {
	display: flex;
	align-items: center;
	font-size: 18px;
	font-family: 'Inter', sans-serif;
	padding: 10px 12px;
	transition: all 0.3s ease 0s;
	font-weight: 500;
	border-radius: 5px;
}

div .wpml-ls-legacy-list-horizontal a:hover {
	background-color: rgba(0,0,0,0.05);
}

/*
** Menu
** ================================================== */
/* Menu */
.topo-fixo .menu,
.topo .menu {
	list-style: none;
	display: flex;
	justify-content: space-between;
	margin: 0;
	padding: 0;
}

.topo-fixo .menu li a,
.topo .menu li a {
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 5px;
	transition: all 0.3s ease 0s;
	background-color: transparent;
	font-size: 18px;
	font-weight: 400;
	position: relative;
}

/* Hover */

.topo-fixo .menu li a:before,
.topo .menu li a:before,
.topo-fixo .menu li a:after,
.topo .menu li a:after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	opacity: 0;
	visibility: hidden;
	transition: all 0.15s ease 0s;
	pointer-events: none;
}

/* lados */
.topo-fixo .menu li a:before,
.topo .menu li a:before {
	left: -15%;
	background-image: url('../../../imagens/logo-glyph-l.svg');
}
.topo-fixo .menu li a:after,
.topo .menu li a:after {
	background-image: url('../../../imagens/logo-glyph-r.svg');
	right: -15%;
}

/* hover l */
.topo-fixo .menu li:hover > a:before,
.topo .menu li:hover > a:before {
	left: -3px;
	opacity: 1;
	visibility: visible;
	transition: all 0.4s ease 0s;
}

/* hover r */
.topo-fixo .menu li:hover > a:after,
.topo .menu li:hover > a:after {
	right: -3px;
	opacity: 1;
	visibility: visible;
	transition: all 0.4s ease 0s;
}

/*
* Menu mobile
* ================================================== */
.menu-mobile {
	position: fixed;
	left: -350px;
	top: 0;
	bottom: 0;
	background-color: #FFF;
	width: 320px;
	z-index: 999999;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease 0s;
	box-shadow: 15px 0 20px rgba(79, 79, 79, 0.2);
	max-height: 100%;
	overflow-y: auto;
	padding: 20px;
	box-sizing: border-box;
}
.menu-mobile-container {
    position: fixed;
    z-index: 999999;
    display: none;
}

.menu-mobile.menu-mobile-visivel {
    left: 0;
}

/* Sobrescrever */
.menu-mobile-container .topo-inner {
	flex-direction: column;
}
.menu-mobile-container .topo-logo .logo {
	width: 250px;
	padding: 30px 0;
}
.menu-mobile-container .btn-box {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-top: 50px;
}
.menu-mobile-container .topo-btn {
	margin-left: 0;
	width: 100%;
}
.menu-mobile-container .menu-topo-wrap {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.menu-mobile-container .topo-btn .btn + .btn {
	margin-left: 0;
	margin-top: 15px;
}

/* Menu */
.menu-mobile-container .menu {
	list-style: none;
	margin: 30px 0 0;
	padding: 0;
	text-align: center;
}
.menu-mobile-container .menu a {
	display: block;
	padding: 10px;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	font-size: 20px;
	font-weight: 500;
	border-radius: 5px;
	width: 100%;
	box-sizing: border-box;
}
.menu-mobile-container .menu a:hover {
	background-color: #000;
	color: #FFF;
}
.menu-mobile-container .menu li + li {
	margin-top: 15px;
}

/*
* Topo fixo
* ================================================== */
.topo-fixo {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 999;
	display: none;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	background-color: #FFF;
}
.topo-fixo .topo-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}
.topo-fixo .btn-topo-inner {
	padding: 5px 7px;
	border-radius: 6px;
}
.topo-fixo .topo-linha {
	height: 4px;
}
.btn-menu-responsivo-box {
	display: none;
}

@media (max-width: 1180px) {
	.topo-logo .logo {
		width: 150px;
	}
}

@media (max-width: 980px) {
	.btn-menu-responsivo-box {
		display: block;
		margin-left: 10px;
	}
	.menu-topo-wrap {
		display: none;
	}
	.btn-menu-responsivo {
		display: block;
	}
	.btn-menu-linha {
		display: block;
		width: 40px;
		height: 4px;
		background-color: #000;
	}
	.btn-menu-linha + .btn-menu-linha {
		margin-top: 5px;
	}
	.topo-btn {
		margin-left: auto;
	}
}

@media (max-width: 680px) {
	.topo-default .btn-box,
	.topo-fixo .btn-box {
		display: none;
	}
	.topo-fixo {
		padding: 10px 0;
	}
}