header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	background-color: rgba(10, 10, 10, 0.75);
	backdrop-filter: saturate(150%) blur(8px);
	font-size: 12px;
	padding: .5rem;
}

.navbar {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 1rem;
	padding: 0;
	max-width: 1200px;
	margin: 0 auto;
	box-shadow: var(--shadow);
}

/* LOGOMARCA */
.header-logo{
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--fg);
}

.header-logo img{
	width: 100%;
	max-width: 6rem;
	max-height: 3rem;
}

/* MENU PRINCIPAL (DESKTOP) */
.navbar-menu{
	display: flex;
	gap: .25rem;
	align-items: center;
	justify-content: center;
}

.navbar-menu > li, .navbar-tool > li{
	list-style: none;
	position: relative;
}

.navbar-menu > li > a{
	display: flex;
	align-items: center;
	gap: .25rem;
	height: 2rem;
	padding: 0 .5rem;
	text-decoration: none;
	border: 1px solid transparent;
	background: transparent;
	cursor: pointer;
	font-weight: 600;
	text-transform:  uppercase;
	letter-spacing: .2px;
	color: var(--dark-theme-link-color);
	user-select: none;
}

.navbar-menu > li > a[href]:hover,
.navbar-menu > li > a:hover{
	color: var(--dark-theme-link-color-hover);
}

/* MENU RIGHT (TOOL) */
.navbar-tool{
	display: flex;
	gap: .25rem;
	align-items: flex-end;
	justify-content: flex-end;
}

.navbar-tool > li > a{
	display: flex;
	align-items: center;
	height: 2rem;
	padding: 0;
	text-decoration: none;
	cursor: pointer;
	user-select: none;
}
.navbar-tool > li > a:hover i:before{
	filter: var(--light-theme-icon-hover);
}

/* MENU PRINCIPAL (DROPDOWN) */
.navbar-dropdown {
	position: absolute;
	left: 0;
	padding: 0 1rem;
	top: calc(100% + 8px);
	min-width: 220px;
	background: var(--light-theme-background);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: .5rem;
	box-shadow: var(--box-shadow);
	display: none;
	user-select: none;
}

.navbar-dropdown.active{
	display: block;
}

.navbar-dropdown a{
	display: flex;
	gap: 10px;
	align-items: center;
	padding: .4rem 0;
	color: var(--light-theme-link-color);
	text-decoration: none;
	border-bottom: 1px dashed #0b0b0b;
	font-weight: 500;
	letter-spacing: .2px;
}
.navbar-dropdown a:last-child{
	border-bottom: unset;
}

.navbar-dropdown a:hover{
	color: var(--light-theme-link-color-hover);
}

.navbar-dropdown small{
	color: var(--muted); font-weight: 500;
}

.menu-mobile-control{
	align-self: flex-end!important;
	display: flex;
}
.navbar-menu{
	display: none;
}

/* MOBILE MENU */
.mobile-menu{
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(2,6,23,.6);
	z-index: 98;
}

.mobile{
	position: absolute;
	top: 3rem;
	left: 0;
	right: 0;
	background: #131111;
	overflow-y: auto;
	max-height: 70vh;
}

.nav-mobile{
	display: flex;
	gap: .25rem;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.nav-mobile > li {
	width: 100%;
	list-style: none;
	position: relative;
}

.nav-mobile > li > a{
	display: flex;
	align-items: center;
	gap: .25rem;
	height: 2rem;
	padding: 0 .5rem;
	text-decoration: none;
	border: 1px solid transparent;
	background: transparent;
	cursor: pointer;
	font-weight: 600;
	text-transform:  uppercase;
	letter-spacing: .2px;
	color: var(--dark-theme-link-color);
	user-select: none;
}

/* MOBILE MENU (DROPDOWN) */
.nav-mobile > li > ul > li {
	position: relative;
	padding: 0 1rem;
	top: calc(100% + 8px);
	width: 100%;
	border-radius: .5rem;
	display: none;
	user-select: none;
}

.nav-mobile > li > ul > li > a{
	display: flex;
	gap: 10px;
	align-items: center;
	padding: .4rem 0;
	color: var(--light-theme-link-color);
	text-decoration: none;
	border-bottom: 1px dashed #0b0b0b;
	font-weight: 500;
	letter-spacing: .2px;
}

.mobile-menu.active{
	display: flex;
}
.nav-mobile > li > ul.active > li {
	display: block;
}

@media (min-width: 768px){
	.navbar {
		grid-template-columns: auto 1fr auto;
	}
	.header-logo img{
		max-width: 16rem;
		max-height: 8rem;
	}
	.menu-mobile-control{
		display: none;
	}
	.navbar-menu{
		display: flex;
	}
}


































