#Menu {
	display: flex;
	justify-content: center;
	z-index: 999999;
}

#Menu h2 {
	color: var(--Dark-Grey, #595b61);
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	letter-spacing: 0.96px;
}

#menu-container {
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
	width: 100%;
	margin: 32px 64px;
	gap: 40px;
}
#select-buttons {
	display: flex;
	justify-content: flex-start;
	/* margin: 32px 64px 0 64px; */
}

.btn-cat-menu {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	margin: 12px;
}
.btn-category {
	display: flex;
	width: 138px;
	padding: var(--padding-xs, 8px) var(--padding-2xl, 32px);
	justify-content: center;
	align-items: center;
	gap: var(--gap-xs, 8px);
	cursor: pointer;
}

.active {
	border: none;
	border-bottom: 2px solid #a9b0b2;
	background: var(--background-disabled, #dfe2e3);
}

.inactive {
	border: 1px solid #a9b0b2;
	background: #f9f9f9;
}

#carros-list {
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-bottom: 10px;
}

.click-category {
	display: flex;
	justify-content: center;
}

.carros-list-menu {
	display: inline-flex;
	overflow: hidden;
	width: 100%;
	gap: 66px;
}
#SUV-cars {
	flex-direction: row !important;
	justify-content: center;
}

.car1 img:hover,
.car2 img:hover,
.car3 img:hover,
.car4 img:hover {
	transform: scale(1.02);
}
.car1 img,
.car2 img,
.car3 img,
.car4 img {
	transition: 0.5s;
}

#carros-list li {
	text-decoration: none !important;
	list-style: none;
}

#carros-list h2 {
	color: var(--dark-color);
	align-items: flex-start;
	justify-content: flex-start;
}
.modelo-menu {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
	text-decoration: none !important;
	&:hover {
		transform: scale(1.02);
	}
}

.hidden {
	display: none;
}

.image-wrapper {
	width: 100%;
	height: 100%;
}

.image-wrapper img {
	width: 20vw;
}

.explore-container {
	padding: 40px 0;
}
.next-explore,
.prev-explore {
	display: none;
}
.modelo-click-menu {
}
.explore-now-btn {
	display: flex;
	padding: var(--padding-xs, 8px);
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 40px;
	gap: var(--gap-2xs, 4px);
	align-self: stretch;
	background: #f9f9f9;
	border: 1px solid var(--button-text-secondary-default, #0f0e11);
	cursor: pointer;
}
.arrow-right-icon {
	transform: rotate(90deg);
}

#SEDAN-cars {
	display: none;
}

@media (max-width: 1280px) {
	#carros-list {
		margin: 0 25px;
	}
}
@media (max-width: 767px) {
	.hidden {
		display: none;
	}
	.car1,
	.car2,
	.car3,
	.car4 {
		transition: 0s;
	}
	.prev-explore {
		display: block;
		position: absolute;
		left: 5%;
		margin-top: -160px;
	}
	.next-explore {
		display: block;
		position: absolute;
		right: 5%;
		margin-top: -160px;
	}
	.current {
		left: -25px;
		opacity: 1;
		position: relative;
		transition: 1s;
	}
	.prev {
		display: none;
		left: -125px;
		position: absolute;
		opacity: 0;
	}
	.next {
		display: none;
		left: 100px;
		position: absolute;
		opacity: 0;
	}
	.arrow-right-icon {
		width: 8px;
		height: 8px;
	}
	#Explore {
		height: 500px;
	}
}
