body {
	overflow-x: hidden !important;
}

.navbar {
	background: rgba(0, 0, 0, 0); /* Define a transparência inicial */
	transition: 0.5s;
}

.navbar.scrolled {
	background-color:  var(--deep-blue) !important; /* Define a cor de fundo sólida quando a página é rolada */
	border-bottom: 1px solid #cfa75c;
	transition: 0.5s;
}

.navbar-brand
{
	text-transform: uppercase;
}

.nav-link {
	font-size: 0.8em !important;
}

.nav-link:hover {
	transition: 0.5s all;
	color: #cfa75c !important;
}

.nav-link-mobile
{
	padding: 1em;
	font-size: 10px !important;
}