.nossas-solucoes-list {
	padding: 46px 0 58px;
	background: #ffffff;
	color: var(--home-ink, var(--uzeda-color-heading-black, #0f172a));
}

.nossas-solucoes-list__container {
	width: 100%;
	max-width: var(--uzeda-container, 1280px);
	margin: 0 auto;
	padding: 0 24px;
}

.nossas-solucoes-card {
	display: grid;
	grid-template-columns: minmax(0, 1.03fr) minmax(300px, 0.82fr);
	gap: clamp(28px, 4vw, 52px);
	align-items: center;
	padding: 30px 0;
	border-top: 1px solid rgba(15, 23, 42, 0.09);
}

.nossas-solucoes-card:last-child {
	border-bottom: 1px solid rgba(15, 23, 42, 0.09);
}

.nossas-solucoes-card--reverse {
	grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.03fr);
}

.nossas-solucoes-card--reverse .nossas-solucoes-card__content {
	order: 2;
}

.nossas-solucoes-card--reverse .nossas-solucoes-card__visual {
	order: 1;
	justify-self: start;
}

.nossas-solucoes-card__content {
	min-width: 0;
	max-width: 640px;
}

.nossas-solucoes-card__heading {
	display: grid;
	grid-template-columns: auto 26px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	margin-bottom: 12px;
}

.nossas-solucoes-card__number {
	color: var(--home-green-dark, #0b7c4d);
	font-size: clamp(32px, 3.2vw, 42px);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: 0;
}

.nossas-solucoes-card__dash {
	width: 26px;
	height: 2px;
	margin-top: 16px;
	border-radius: 999px;
	background: var(--home-green, var(--uzeda-color-secondary, #00bf6a));
}

.nossas-solucoes-card__title-group {
	min-width: 0;
	max-width: 520px;
	display: grid;
	gap: 8px;
}

.nossas-solucoes-card__benefit {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	min-height: 26px;
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(0, 191, 106, 0.1);
	color: var(--home-green-dark, #0b7c4d);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.15;
	text-transform: uppercase;
	overflow-wrap: anywhere;
}

.nossas-solucoes-card h2 {
	margin: 0;
	color: var(--home-ink, #0f172a);
	font-size: var(--home-type-h2, clamp(28px, 2.15vw, 32px));
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.nossas-solucoes-card__desc {
	min-width: 0;
	max-width: 610px;
	margin: 0;
	color: var(--home-muted, var(--uzeda-color-text, #475569));
	font-size: var(--home-type-body-lg, 16px);
	font-weight: 400;
	line-height: 1.58;
	overflow-wrap: anywhere;
}

.nossas-solucoes-card__bullets {
	min-width: 0;
	display: grid;
	gap: 8px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
	color: #263241;
	font-size: 13.5px;
	line-height: 1.42;
	overflow-wrap: anywhere;
}

.nossas-solucoes-card__bullets li {
	position: relative;
	padding-left: 24px;
}

.nossas-solucoes-card__bullets li::before {
	content: "";
	position: absolute;
	top: 0.2em;
	left: 0;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: var(--home-green-dark, #0b7c4d);
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.2 6.8 11 12 5' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 11px 11px;
}

.nossas-solucoes-card__audience {
	margin-top: 18px;
}

.nossas-solucoes-card__audience p {
	margin: 0 0 9px;
	color: var(--home-ink, #0f172a);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
}

.nossas-solucoes-card__audience ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nossas-solucoes-card__audience li {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(0, 191, 106, 0.09);
	color: var(--home-green-dark, #0b7c4d);
	font-size: 10px;
	font-weight: 800;
	line-height: 1.1;
	text-transform: uppercase;
	white-space: nowrap;
}

.nossas-solucoes-card__visual {
	position: relative;
	justify-self: end;
	width: min(100%, 430px);
	min-height: 260px;
	display: grid;
	align-items: center;
	justify-items: center;
	padding: 18px 18px 58px;
	border-radius: 8px;
	background:
		radial-gradient(circle at 76% 18%, rgba(0, 191, 106, 0.12), transparent 28%),
		linear-gradient(135deg, #f6fbf8 0%, #ffffff 62%, #eef8f2 100%);
	border: 1px solid rgba(15, 23, 42, 0.07);
	overflow: hidden;
}

.nossas-solucoes-card__visual::before {
	content: "";
	position: absolute;
	inset: 18px;
	background-image: radial-gradient(rgba(11, 124, 77, 0.14) 1px, transparent 1.5px);
	background-size: 13px 13px;
	mask-image: linear-gradient(90deg, #000 0%, transparent 62%);
	opacity: 0.52;
	pointer-events: none;
}

.nossas-solucoes-card__visual img {
	position: relative;
	z-index: 1;
	display: block;
	width: min(100%, 350px);
	height: auto;
	filter: drop-shadow(0 16px 20px rgba(0, 76, 46, 0.17));
}

.nossas-solucoes-card__cta {
	position: absolute;
	right: 18px;
	bottom: 16px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	max-width: calc(100% - 36px);
	min-height: 38px;
	padding: 10px 14px 10px 17px;
	border-radius: 999px;
	background: var(--home-green-dark, #0b7c4d);
	color: #ffffff !important;
	font-size: 13px;
	font-weight: 750;
	line-height: 1.15;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 8px 18px rgba(11, 124, 77, 0.22);
}

.nossas-solucoes-card__cta--mobile {
	display: none;
	position: static;
	width: fit-content;
	max-width: 100%;
	margin-top: 20px;
}

.nossas-solucoes-card__cta:visited,
.nossas-solucoes-card__cta:hover {
	color: #ffffff !important;
}

.nossas-solucoes-card__cta:hover {
	background: #075f3b;
}

.nossas-solucoes-card__cta:focus-visible {
	outline: 2px solid rgba(0, 191, 106, 0.55);
	outline-offset: 3px;
}

.nossas-solucoes-card__cta span {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.22);
	font-size: 13px;
	line-height: 1;
}

.nossas-solucoes-card--reverse .nossas-solucoes-card__cta {
	right: 18px;
}

@media (max-width: 1024px) {
	.nossas-solucoes-card,
	.nossas-solucoes-card--reverse {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.nossas-solucoes-card--reverse .nossas-solucoes-card__content,
	.nossas-solucoes-card--reverse .nossas-solucoes-card__visual {
		order: initial;
	}

	.nossas-solucoes-card__visual {
		justify-self: stretch;
		width: 100%;
		max-width: 560px;
	}
}

@media (max-width: 720px) {
	.nossas-solucoes-list {
		padding: 34px 0 46px;
	}

	.nossas-solucoes-list__container {
		padding: 0 18px;
	}

	.nossas-solucoes-card {
		padding: 22px 0;
	}

	.nossas-solucoes-card__heading {
		grid-template-columns: auto minmax(0, 1fr);
		gap: 8px 12px;
		margin-bottom: 10px;
		width: 100%;
		min-width: 0;
	}

	.nossas-solucoes-card__number {
		font-size: 32px;
	}

	.nossas-solucoes-card__dash {
		display: none;
	}

	.nossas-solucoes-card__title-group {
		grid-column: 2;
		grid-row: 1;
		gap: 7px;
		padding-left: 0;
	}

	.nossas-solucoes-card__benefit {
		min-height: 24px;
		padding: 5px 10px;
		font-size: 10px;
		line-height: 1.12;
	}

	.nossas-solucoes-card h2 {
		font-size: clamp(23px, 7vw, 26px);
		line-height: 1.16;
		word-break: break-word;
		hyphens: auto;
	}

	.nossas-solucoes-card__desc {
		font-size: 15px;
		line-height: 1.52;
	}

	.nossas-solucoes-card__bullets {
		gap: 7px;
		margin-top: 16px;
		font-size: 13px;
		line-height: 1.38;
	}

	.nossas-solucoes-card__bullets li {
		overflow-wrap: anywhere;
	}

	.nossas-solucoes-card__audience li {
		white-space: normal;
	}

	.nossas-solucoes-card__cta--mobile {
		display: inline-flex;
		margin-top: 14px;
	}

	.nossas-solucoes-card__visual {
		min-height: 190px;
		padding: 14px 12px;
	}

	.nossas-solucoes-card__visual img {
		width: min(100%, 250px);
	}

	.nossas-solucoes-card__cta {
		min-height: 44px;
		font-size: 13px;
	}

	.nossas-solucoes-card__cta--visual {
		display: none;
	}
}
