.carousel-container {
	width: 100%;
	padding: 24px 24px;
	margin: 0 auto;
	background: #f1f1f1;
	position: relative;
	touch-action: pan-y pinch-zoom;
	overflow-x: hidden;
}

/* CAROUSEL WRAPPER & TRACK */

.carousel-wrapper {
	overflow: hidden;
	position: relative;
	width: calc(100% - 48px);
	margin: 0 auto;
	touch-action: pan-y pinch-zoom;
}

.carousel-track {
	display: flex;
	gap: 16px;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
	touch-action: pan-x;
}

/* CAROUSEL CARDS & CONTENT */

.carousel-card {
	background: #fff;
	border-radius: 24px;
	padding: 32px 24px 96px 24px;
	flex: 0 0 auto;
	width: 298px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 384px;
	position: relative;
}

.carousel-card-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	flex: 1;
}

.carousel-card-texts {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.carousel-card-number {
	font-size: 40px;
	line-height: 48px;
	font-style: normal;
	font-weight: 700;
	color: var(--Primárias-Preto, #212121);
	margin: 0;
}

/* CAROUSEL NAVIGATION */

.carousel-nav {
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: flex-start;
	position: absolute;
	bottom: 24px;
	left: 24px;
	z-index: 10;
	pointer-events: none;
	width: auto;
	touch-action: none;
}

.carousel-btn {
	width: 48px;
	height: 48px;
	border-radius: 136px;
	border: none;
	outline: none;
	background: var(--Primárias-Preto, #212121);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
	padding: 0;
	position: relative;
	pointer-events: auto;
}

.carousel-btn-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.carousel-btn-prev .carousel-btn-icon {
	transform: rotate(180deg) scaleY(-1);
}

.carousel-btn svg {
	width: 24px;
	height: 24px;
	color: #ffffff;
}

/* CAROUSEL BUTTON STATES */

.carousel-btn:hover {
	background: var(--Primárias-Preto, #212121);
	opacity: 0.8;
}

.carousel-btn:focus {
	outline: none;
}

.carousel-btn:active {
	outline: none;
}

.carousel-btn:disabled {
	background: var(--neutras-400, #b3b3b3);
	cursor: not-allowed;
	opacity: 1;
}

.carousel-btn:disabled svg {
	color: #ffffff;
}

/* MEDIA QUERIES */

@media (max-width: 1024px) {
	.carousel-container {
		padding: 24px 0;
	}

	.carousel-wrapper {
		width: 100%;
	}

	.carousel-nav {
		left: 48px;
	}
}

@media (min-width: 1024px) {
	.carousel-container {
		padding: 40px 0;
		max-width: none;
		margin: 0;
	}

	.carousel-wrapper {
		width: 100%;
		max-width: calc(394px * 3 + 16px * 2);
		margin: 0 auto;
	}

	.carousel-card {
		width: 100%;
		max-width: 394px;
	}

	.carousel-track {
		display: flex;
		gap: 16px;
	}

	.carousel-item {
		width: 298px;
		min-height: 384px;
	}

	.carousel-nav {
		position: static;
		margin-top: 24px;
		justify-content: flex-start;
		pointer-events: auto;
	}
}
