/* -----HERO----- */
.services-hero {
	display: flex;
	align-items: flex-end;
	min-height: 54vh;
	padding-top: 8rem;
	padding-bottom: 3.5rem;
	background-color: #1d281f;
	background-image:
		linear-gradient(180deg, rgba(8, 10, 11, 0.6) 0%, rgba(8, 10, 11, 0.9) 52%, rgba(8, 10, 11, 0.94) 100%),
		url("../assets/hero/o-que-fazer.jpg");
	background-position: center;
	background-size: cover;
}

.services-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.services-hero__title {
	max-width: 14ch;
	color: #fff;
	font-size: clamp(2.5rem, 7vw, 4.75rem);
	font-weight: 700;
	line-height: 0.95;
}

.services-hero__description {
	max-width: 40rem;
	margin-top: 1.5rem;
	color: #e5e7eb;
	font-size: 1rem;
	line-height: 1.7;
}

/* -----SERVICES PAGE----- */
.services-page {
	--directory-accent: var(--light-green);
	--directory-accent-strong: var(--dark-green);
}

.services-card__category {
	width: fit-content;
	margin-bottom: 0.75rem;
	padding: 0.3rem 0.75rem;
	border-radius: 999px;
	background-color: #d1fae5;
	color: #065f46;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.3;
}

.services-card__meta-list {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin-top: 1rem;
	padding: 0;
	list-style: none;
}

.services-card__meta-item {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	color: #4b5563;
	font-size: 0.92rem;
	line-height: 1.5;
}

.services-card__meta-icon {
	width: 1rem;
	height: 1rem;
	margin-top: 0.2rem;
	fill: var(--directory-accent);
	flex: 0 0 auto;
}

@media screen and (min-width: 768px) {
	.services-hero {
		min-height: 58vh;
		padding-top: 9rem;
		padding-bottom: 4rem;
	}
}
