.sobre-purpose {
	padding: 24px 0 48px;
	background: #ffffff;
}

.sobre-purpose__shell {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
	gap: 40px;
	align-items: center;
	padding-top: 34px;
	padding-bottom: 32px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 14px;
	background:
		linear-gradient(135deg, rgba(0, 191, 106, 0.055), rgba(255, 255, 255, 0) 42%),
		#ffffff;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.sobre-purpose__content {
	padding-left: 28px;
}

.sobre-purpose__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 18px;
	color: var(--home-green, #00bf6a);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.sobre-purpose__eyebrow span {
	display: block;
	width: 28px;
	height: 5px;
	border-radius: 999px;
	background: currentColor;
}

.sobre-purpose h2 {
	max-width: 640px;
	margin: 0 0 22px;
	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;
}

.sobre-purpose .home-heading__highlight {
	color: var(--home-green, #00bf6a);
}

.sobre-purpose__items {
	display: grid;
	gap: 12px;
}

.sobre-purpose__item {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
}

.sobre-purpose__icon {
	display: inline-flex;
	width: 48px;
	height: 48px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(0, 191, 106, 0.16);
	border-radius: 10px;
	color: var(--home-green, #00bf6a);
	background: rgba(0, 191, 106, 0.08);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.sobre-purpose__icon svg {
	width: 26px;
	height: 26px;
}

.sobre-purpose__item h3 {
	margin: 0 0 4px;
	color: var(--home-ink, #0f172a);
	font-size: var(--home-type-card-title, 16px);
	font-weight: 650;
	line-height: 1.28;
	letter-spacing: 0;
}

.sobre-purpose__item p {
	margin: 0;
	color: var(--home-muted, #475569);
	font-size: var(--home-type-body, 15px);
	font-weight: 400;
	line-height: 1.5;
}

.sobre-purpose__visual {
	display: flex;
	min-height: 300px;
	align-items: center;
	justify-content: center;
	padding-right: 18px;
}

.sobre-purpose__visual img {
	display: block;
	width: min(100%, 440px);
	height: auto;
	max-height: 330px;
	object-fit: contain;
}

.sobre-purpose__placeholder {
	position: relative;
	width: min(100%, 430px);
	aspect-ratio: 1.35;
	border-radius: 18px;
	background:
		radial-gradient(circle at 68% 28%, rgba(0, 191, 106, 0.18), transparent 24%),
		radial-gradient(circle at 42% 55%, rgba(15, 23, 42, 0.08), transparent 34%),
		linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(255, 255, 255, 0.35));
}

.sobre-purpose__placeholder::before,
.sobre-purpose__placeholder::after {
	content: "";
	position: absolute;
	border: 2px solid rgba(15, 23, 42, 0.12);
	border-radius: 999px 999px 42% 42%;
	background: rgba(255, 255, 255, 0.48);
	box-shadow: inset 0 12px 28px rgba(255, 255, 255, 0.7), 0 18px 36px rgba(15, 23, 42, 0.1);
}

.sobre-purpose__placeholder::before {
	right: 54px;
	top: 22px;
	width: 118px;
	height: 164px;
}

.sobre-purpose__placeholder::after {
	left: 74px;
	bottom: 34px;
	width: 166px;
	height: 118px;
	transform: rotate(-8deg);
}

.sobre-purpose__placeholder span {
	position: absolute;
	right: 84px;
	bottom: 56px;
	width: 54px;
	height: 64px;
	border-radius: 0 0 14px 14px;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.24), rgba(15, 23, 42, 0.38));
	box-shadow: inset 0 8px 0 rgba(255, 255, 255, 0.35);
}

@media (max-width: 1100px) {
	.sobre-purpose__shell {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.sobre-purpose__content {
		padding-right: 28px;
	}

	.sobre-purpose__visual {
		min-height: 240px;
		padding: 0 28px;
	}

	.sobre-purpose__placeholder {
		max-width: 400px;
	}
}

@media (max-width: 640px) {
	.sobre-purpose {
		padding: 16px 0 34px;
	}

	.sobre-purpose__shell {
		width: min(100% - 28px, var(--uzeda-container, 1280px));
		padding: 24px 18px 24px;
		border-radius: 12px;
	}

	.sobre-purpose__content {
		padding: 0;
	}

	.sobre-purpose__eyebrow {
		gap: 10px;
		margin-bottom: 16px;
		font-size: 11px;
		letter-spacing: 0.12em;
	}

	.sobre-purpose__eyebrow span {
		width: 26px;
		height: 5px;
	}

	.sobre-purpose h2 {
		margin-bottom: 20px;
		font-size: var(--home-type-h2-mobile, 26px);
	}

	.sobre-purpose__item {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 12px;
	}

	.sobre-purpose__icon {
		width: 44px;
		height: 44px;
	}

	.sobre-purpose__icon svg {
		width: 24px;
		height: 24px;
	}

	.sobre-purpose__item h3 {
		font-size: 15px;
	}

	.sobre-purpose__item p {
		font-size: 14px;
	}

	.sobre-purpose__visual {
		min-height: 180px;
		padding: 0;
	}
}
