header {
	--_header-color-background: #FFFFFFDD;
	--_header-size-height: 80px;
	--_brand-size-height: 24px;
	--_nav-link-color: var(--color-preto);
	--_nav-link-font-family: 'Poppins Medium';
	--_nav-link-font-size: 24px;

	position: fixed;
	width: 100%;
	height: var(--_header-size-height);
	padding: 8px 4px;
	background-color: var(--_header-color-background);
	z-index: 999;
	transition: all 0.25s ease-out;

}

header .container-fluid {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

header .brand,
header .brand img {
	max-height: var(--_brand-size-height);
	transition: 0.25s ease-out;
}

header .brand h1 {
	margin: 0;
	line-height: 0;
}

header .nav-menu {
	display: flex;
	flex-direction: row;
	justify-content: end;
	gap: 16px;
}

header .nav-menu .nav {
	position: absolute;
	top: 0px;
	left: 0;
	right: 0;
	max-width: 100%;
	height: 100vh;
	background-color: var(--color-branco);
	flex-direction: column;
	z-index: 999;
	align-items: center;
	justify-content: center;
	gap: 8px;

	translate: 100% 0;
	transition: 0.25s ease-out;
}

header .nav .btn-closemenu {
	position: absolute;
	top: 24px;
	right: 24px;
	color: var(--_nav-link-color);
}

header .nav .nav-link {
	color: var(--_nav-link-color);
	font-family: var(--_nav-link-font-family);
	font-size: var(--_nav-link-font-size);
}

header.header--sticky {
	--_nav-link-color: var(--_nav-link-color);
	--_header-size-height: 60px;
	--_brand-size-height: 24px;

	box-shadow: 0 4px 8px rgba(0, 0, 0, .5);
	background-color: #FFF;
}

/* Abrir menu mobile */

.nav-mobile--open {
	translate: 0 !important;
}

@media (min-width: 1200px) {
	header {
		--_header-size-height: 120px;
		--_brand-size-height: 40px;
		--_nav-link-color: #000000;
		--_nav-link-font-family: 'Poppins';
		--_nav-link-font-size: 16px;
	}

	header.header--sticky {
		--_header-size-height: 80px;
		--_brand-size-height: 32px;

		box-shadow: 0 4px 8px rgba(0, 0, 0, .5);
	}

	header .nav-menu .nav {
		position: relative;
		/* top: 0px;
        left: 0;
        right: 0;
        max-width: 100%;*/
		background-color: transparent;
		height: auto;
		flex-direction: row;
		align-items: center;
		justify-content: end;
		gap: 0;

		translate: 0;
		transition: 0.25s ease-out;
	}
}