/* Estilização do menuHamburguer */
.hamburguer {
	font-size: 30px;
	cursor: pointer;
	display: none;
	position: fixed;
	top: 40px;
	left: 40px;
	z-index: 2;
	color: var(--blue-dark);
}

/* Sidebar */

.menu-mobile {
	height: 50%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	margin-top: 2rem;
}
.sidebar {
	position: fixed;
	top: 0;
	left: -280px;
	width: 250px;
	height: 100%;
	background: var(--blue-light);
	color: var(--blue-dark);
	transition: 0.3s;
	padding-top: 60px;
	padding-left: 1.5rem;
	z-index: 3;
}

.sidebar a {
	display: block;
	color: var(--blue-dark);
	padding: 15px;
	text-decoration: none;
	transition: 0.3s;
}

.sidebar a:hover {
	background: var(--blue-medium);
}

.close-btn {
	position: absolute;
	top: 35px;
	right: 30px;
	font-size: 35px;
	cursor: pointer;
}

.logoMobile {
	width: 135px;
	height: auto;
}

/* Overlay */
.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 0;
}

/* Media Query para ativar o menuHamburguer */
@media screen and (max-width: 980px) {
	.hamburguer {
		display: block;
	}

	

}