/* Estilos específicos da seção Categorias da home */
.cat-card {
	border-radius: 12px;
	padding: 1.5rem 1rem;
	text-align: center;
	background: #fff;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	transition: all 0.25s ease;
	text-decoration: none !important;
	color: #1f2933 !important;
	display: flex !important;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	border: 1px solid rgba(0,0,0,0.06);
}
.cat-card:link,
.cat-card:visited {
	text-decoration: none !important;
	color: #1f2933 !important;
}
.cat-card:hover {
	box-shadow: 0 10px 32px rgba(0,0,0,0.14);
	color: #e85d04 !important;
	border-color: rgba(0,0,0,0.1);
	transform: translateY(-2px);
}
.cat-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(232, 93, 4, 0.12);
	color: #e85d04;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.25s ease;
}
.cat-card__icon i {
	font-size: 1.75rem;
}
.cat-card:hover .cat-card__icon {
	background: #e85d04;
	color: #fff;
	transform: scale(1.05);
}
.cat-card__label {
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.3;
	text-decoration: none !important;
}
.cat-card:hover .cat-card__label {
	color: #e85d04;
}

