.languageHeight {
			max-height: 30px;
			cursor: pointer;
			filter: grayscale(100%);
			transition: filter 0.3s;
}

.languageActive{
			filter: grayscale(0%);
}
.languageHeight:hover {
			filter: grayscale(0%);
			cursor: pointer;
}

.navbar-nav .nav-link {
			color: #333; /* cor normal */
			transition: color 0.3s, border-bottom 0.3s;
}

.navbar-nav .nav-link:hover {
			color: #ffb600 !important; /* cor ao passar o cursor */
			border-bottom: 2px solid #ffb600;
}

.navbar-nav .nav-item.active .nav-link {
			color: #ffb600 !important; /* cor do item ativo */
			font-weight: bold;
			border-bottom: 2px solid #ffb600;
}