.proj-categorias {
	margin-top: 28px;
}

.proj-categorias__shell {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px;
}

.proj-categorias__arrow {
	display: none;
}

.proj-categorias__track {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px;
}

.proj-categorias__item {
	align-items: center;
	background: #262626;
	border-radius: 33px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-size: 0.8rem;
	gap: 6px;
	margin: 2px;
	padding: 8px 16px;
	position: relative;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
	z-index: 1;
}

.proj-categorias__item:hover {
	background: #333;
	color: #fff;
}

.proj-categorias__item.is-active {
	background: #333;
	box-shadow: inset 0 0 0 1px rgba(9, 233, 104, 0.55);
}

@media (max-width: 849px) {
	.proj-categorias {
		margin-top: 24px;
		padding: 0 4px;
	}

	.proj-categorias__shell {
		align-items: center;
		background: rgba(18, 15, 23, 0.85);
		border: 1px solid rgba(255, 255, 255, 0.22);
		border-radius: 999px;
		flex-wrap: nowrap;
		gap: 0;
		min-height: 46px;
		overflow: hidden;
		padding: 0 4px;
	}

	.proj-categorias__arrow {
		align-items: center;
		align-self: center;
		background: none;
		border: none;
		color: #09E968;
		cursor: pointer;
		display: flex;
		flex: 0 0 28px;
		height: 46px;
		justify-content: center;
		line-height: 1;
		margin: 0;
		padding: 0;
		width: 28px;
	}

	.proj-categorias__arrow i {
		display: block;
		font-size: 0.75rem;
		line-height: 1;
	}

	.proj-categorias__track {
		align-items: center;
		flex: 1;
		flex-wrap: nowrap;
		gap: 0;
		justify-content: flex-start;
		min-width: 0;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scroll-behavior: smooth;
		scrollbar-width: none;
		touch-action: manipulation;
	}

	.proj-categorias__track::-webkit-scrollbar {
		display: none;
	}

	.proj-categorias__item {
		align-items: center;
		background: transparent;
		border-bottom: 3px solid transparent;
		border-radius: 0;
		box-shadow: none;
		color: rgba(255, 255, 255, 0.55);
		flex: 0 0 auto;
		font-size: 0.68rem;
		font-weight: 500;
		height: 46px;
		letter-spacing: 0.04em;
		margin: 0;
		padding: 0 12px;
		text-transform: uppercase;
		white-space: nowrap;
	}

	.proj-categorias__item:hover {
		background: transparent;
		color: rgba(255, 255, 255, 0.85);
	}

	.proj-categorias__item.is-active {
		background: transparent;
		border-bottom-color: #09E968;
		box-shadow: none;
		color: #fff;
		font-weight: 700;
	}

	.proj-categorias__item.is-active:hover {
		color: #fff;
	}
}
