/* ============================================================
   HOME PAGE — Estilos específicos da front-page
   Importado em global.css → carregado em todas as páginas
   ============================================================ */

/* ──────────────────────────────────────────────────────────────
   01 · HERO
   ────────────────────────────────────────────────────────────── */
.mpm-home-hero {
	position: relative;
	isolation: isolate;
	min-height: 680px;
	overflow: hidden;
	display: flex;
	align-items: center;
	background: #050505;
	color: #fff;
}

.mpm-home-hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
	overflow: hidden;
	background: #050505;
}

.mpm-home-hero__picture,
.mpm-home-hero__img,
.mpm-home-hero__video {
	width: 100%;
	height: 100%;
	display: block;
}

.mpm-home-hero__img,
.mpm-home-hero__video {
	object-fit: cover;
	object-position: center right;
}

.mpm-home-hero__video--mobile {
	display: none;
}

.mpm-home-hero__shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(
			90deg,
			rgba(0, 0, 0, 0.98) 0%,
			rgba(0, 0, 0, 0.94) 24%,
			rgba(0, 0, 0, 0.76) 38%,
			rgba(0, 0, 0, 0.34) 58%,
			rgba(0, 0, 0, 0.12) 100%
		),
		linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.22) 0%,
			rgba(0, 0, 0, 0.08) 45%,
			rgba(0, 0, 0, 0.58) 100%
		);
}

.mpm-home-hero__container {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-top: 135px;
	padding-bottom: 90px;
}

.mpm-home-hero__content {
	max-width: 470px;
	margin-left: 0;
}

.mpm-home-hero__chapeu {
	margin: 0 0 20px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.38em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.86);
}

.mpm-home-hero__titulo {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(44px, 4.3vw, 66px);
	font-weight: 400;
	line-height: 0.96;
	letter-spacing: 0.01em;
	color: #d7c1ad;
	text-wrap: balance;
}

.mpm-home-hero__divisor {
	width: 64px;
	height: 2px;
	margin: 28px 0 22px;
	background: rgba(215, 193, 173, 0.78);
}

.mpm-home-hero__texto {
	max-width: 430px;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.01em;
	color: rgba(255, 255, 255, 0.88);
}

.mpm-home-hero__texto p {
	margin: 0;
}

.mpm-home-hero__texto p + p {
	margin-top: 14px;
}

.mpm-home-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 32px;
	min-width: 345px;
	min-height: 50px;
	padding: 15px 28px 14px 32px;
	border: 1px solid rgba(215, 193, 173, 0.6);
	background: rgba(0, 0, 0, 0.18);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	text-decoration: none;
	transition:
		background-color 0.25s ease,
		border-color 0.25s ease,
		color 0.25s ease;
}

.mpm-home-hero__btn:hover,
.mpm-home-hero__btn:focus-visible {
	background: #d7c1ad;
	border-color: #d7c1ad;
	color: #050505;
	text-decoration: none;
}

.mpm-home-hero__btn i {
	font-size: 15px;
	line-height: 1;
	transition: transform 0.25s ease;
}

.mpm-home-hero__btn:hover i,
.mpm-home-hero__btn:focus-visible i {
	transform: translateX(5px);
}

@media (min-width: 1400px) {
	.mpm-home-hero {
		min-height: 720px;
	}

	.mpm-home-hero__content {
		max-width: 520px;
	}

	.mpm-home-hero__titulo {
		font-size: 72px;
	}

	.mpm-home-hero__texto {
		max-width: 470px;
		font-size: 18px;
	}
}

@media (max-width: 1199px) {
	.mpm-home-hero {
		min-height: 640px;
	}

	.mpm-home-hero__content {
		max-width: 450px;
	}

	.mpm-home-hero__shade {
		background:
			linear-gradient(
				90deg,
				rgba(0, 0, 0, 0.98) 0%,
				rgba(0, 0, 0, 0.9) 36%,
				rgba(0, 0, 0, 0.48) 68%,
				rgba(0, 0, 0, 0.18) 100%
			),
			linear-gradient(
				180deg,
				rgba(0, 0, 0, 0.18) 0%,
				rgba(0, 0, 0, 0.64) 100%
			);
	}
}

@media (max-width: 991px) {
	.mpm-home-hero {
		min-height: 760px;
		align-items: flex-end;
	}

	.mpm-home-hero__img,
	.mpm-home-hero__video {
		object-position: center top;
	}

	.mpm-home-hero__shade {
		background:
			linear-gradient(
				180deg,
				rgba(0, 0, 0, 0.08) 0%,
				rgba(0, 0, 0, 0.35) 38%,
				rgba(0, 0, 0, 0.92) 76%,
				rgba(0, 0, 0, 0.98) 100%
			);
	}

	.mpm-home-hero__container {
		padding-top: 170px;
		padding-bottom: 70px;
	}

	.mpm-home-hero__content {
		max-width: 560px;
	}
}

@media (max-width: 767px) {
	.mpm-home-hero {
		min-height: 700px;
	}

	.mpm-home-hero__video--desktop {
		display: none;
	}

	.mpm-home-hero__video--mobile {
		display: block;
	}

	.mpm-home-hero__container {
		padding-top: 140px;
		padding-bottom: 46px;
	}

	.mpm-home-hero__content {
		max-width: 100%;
	}

	.mpm-home-hero__chapeu {
		margin-bottom: 16px;
		font-size: 11px;
		letter-spacing: 0.28em;
	}

	.mpm-home-hero__titulo {
		font-size: clamp(40px, 12vw, 54px);
		line-height: 0.98;
	}

	.mpm-home-hero__divisor {
		width: 58px;
		margin: 24px 0 20px;
	}

	.mpm-home-hero__texto {
		max-width: 100%;
		font-size: 16px;
		line-height: 1.55;
	}

	.mpm-home-hero__btn {
		width: 100%;
		min-width: 0;
		margin-top: 30px;
		padding-inline: 24px;
		gap: 20px;
		font-size: 12px;
		letter-spacing: 0.24em;
	}
}

@media (max-width: 420px) {
	.mpm-home-hero {
		min-height: 660px;
	}

	.mpm-home-hero__titulo {
		font-size: 38px;
	}

	.mpm-home-hero__btn {
		font-size: 11px;
		letter-spacing: 0.2em;
	}
}

/* ============================================================
   HOME — About
   ============================================================ */

.mpm-home-about {
	position: relative;
	overflow: hidden;
	background: #f3f0ec;
	color: #151515;
}

.mpm-home-about__grid {
	display: grid;
	grid-template-columns: 40.2% 59.8%;
	min-height: 470px;
}

.mpm-home-about__media {
	position: relative;
	min-height: 470px;
	overflow: hidden;
	background: #111;
}

.mpm-home-about__img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}

.mpm-home-about__body {
	display: flex;
	align-items: center;
	padding: clamp(64px, 6vw, 92px) clamp(32px, 7vw, 116px);
}

.mpm-home-about__content {
	max-width: 720px;
}

.mpm-home-about__chapeu {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0 0 16px;
	color: #151515;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.mpm-home-about__chapeu::after {
	content: "";
	width: 54px;
	height: 2px;
	background: rgba(21, 21, 21, 0.42);
}

.mpm-home-about__titulo {
	margin: 0;
	max-width: 720px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(38px, 3.4vw, 56px);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #171717;
}

.mpm-home-about__texto {
	max-width: 720px;
	margin-top: 20px;
	color: rgba(21, 21, 21, 0.86);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.01em;
}

.mpm-home-about__texto p {
	margin: 0;
}

.mpm-home-about__texto p + p {
	margin-top: 18px;
}

.mpm-home-about__btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 32px;
	min-width: 245px;
	min-height: 52px;
	padding: 15px 26px 14px 28px;
	border: 1px solid rgba(21, 21, 21, 0.32);
	background: transparent;
	color: #151515;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	text-decoration: none;
	transition:
		background-color 0.25s ease,
		border-color 0.25s ease,
		color 0.25s ease;
}

.mpm-home-about__btn:hover,
.mpm-home-about__btn:focus-visible {
	background: #151515;
	border-color: #151515;
	color: #fff;
	text-decoration: none;
}

.mpm-home-about__btn i {
	font-size: 14px;
	line-height: 1;
	transition: transform 0.25s ease;
}

.mpm-home-about__btn:hover i,
.mpm-home-about__btn:focus-visible i {
	transform: translateX(5px);
}

@media (max-width: 1199.98px) {
	.mpm-home-about__grid {
		grid-template-columns: 43% 57%;
	}

	.mpm-home-about__body {
		padding-inline: 52px;
	}

	.mpm-home-about__titulo {
		font-size: clamp(34px, 4vw, 48px);
	}
}

@media (max-width: 991.98px) {
	.mpm-home-about__grid {
		grid-template-columns: 1fr;
	}

	.mpm-home-about__media {
		min-height: 420px;
	}

	.mpm-home-about__body {
		padding: 56px 24px 64px;
	}

	.mpm-home-about__content {
		max-width: 100%;
	}

	.mpm-home-about__titulo {
		max-width: 100%;
	}
}

@media (max-width: 575.98px) {
	.mpm-home-about__media {
		min-height: 320px;
	}

	.mpm-home-about__body {
		padding: 44px 20px 52px;
	}

	.mpm-home-about__chapeu {
		gap: 14px;
		font-size: 11px;
		letter-spacing: 0.22em;
	}

	.mpm-home-about__chapeu::after {
		width: 42px;
	}

	.mpm-home-about__titulo {
		font-size: 34px;
		line-height: 1.08;
	}

	.mpm-home-about__texto {
		margin-top: 18px;
		font-size: 15.5px;
		line-height: 1.65;
	}

	.mpm-home-about__btn {
		width: 100%;
		min-width: 0;
		margin-top: 28px;
		padding-inline: 22px;
		font-size: 12px;
		letter-spacing: 0.2em;
	}
}
/* ============================================================
   HOME — Áreas de Atuação
   ============================================================ */

body.home .mpm-home-areas {
	position: relative;
	overflow: hidden;
	background: #050505;
	color: #fff;
	padding: clamp(72px, 7vw, 104px) 0 clamp(70px, 7vw, 96px);
}

body.home .mpm-home-areas::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at 50% 0%, rgba(215, 193, 173, 0.08), transparent 32%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 38%);
}

body.home .mpm-home-areas .container {
	position: relative;
	z-index: 2;
}

body.home .mpm-home-areas__header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: clamp(44px, 5vw, 62px);
	text-align: center;
}

body.home .mpm-home-areas__header::before,
body.home .mpm-home-areas__header::after {
	content: "";
	width: clamp(48px, 9vw, 138px);
	height: 1px;
	background: rgba(215, 193, 173, 0.28);
}

body.home .mpm-home-areas__header::before {
	margin-right: 34px;
}

body.home .mpm-home-areas__header::after {
	margin-left: 34px;
}

body.home .mpm-home-areas__title {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.42em;
	text-transform: uppercase;
}

/* Grid dinâmico */
body.home .mpm-home-areas__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	align-items: stretch;
	row-gap: 52px;
}

/* Ajustes por quantidade */
body.home .mpm-home-areas__grid--count-1 {
	max-width: 420px;
	margin-inline: auto;
	grid-template-columns: 1fr;
}

body.home .mpm-home-areas__grid--count-2 {
	max-width: 880px;
	margin-inline: auto;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.home .mpm-home-areas__grid--count-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.home .mpm-home-areas__grid--count-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* A partir de 5 itens, quebra em linhas equilibradas */
body.home .mpm-home-areas__grid:not(.mpm-home-areas__grid--count-1):not(.mpm-home-areas__grid--count-2):not(.mpm-home-areas__grid--count-3):not(.mpm-home-areas__grid--count-4) {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.home .mpm-home-areas__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 260px;
	padding: 0 clamp(28px, 3.4vw, 58px);
	color: inherit;
	text-align: center;
	text-decoration: none;
	background: transparent;
	border: 0;
}

body.home a.mpm-home-areas__card {
	cursor: pointer;
}

body.home .mpm-home-areas__card:not(:first-child)::before {
	content: "";
	position: absolute;
	top: 22px;
	left: 0;
	width: 1px;
	height: 150px;
	background: rgba(215, 193, 173, 0.34);
}

body.home .mpm-home-areas__icon {
	width: 74px;
	height: 74px;
	margin: 0 auto 28px;
	border: 1px solid rgba(215, 193, 173, 0.5);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #d7c1ad;
	transition:
		border-color 0.25s ease,
		background-color 0.25s ease,
		transform 0.25s ease;
}

body.home .mpm-home-areas__icon img {
	display: block;
	width: 34px;
	height: 34px;
	object-fit: contain;
}

body.home .mpm-home-areas__card-title {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	transition: color 0.25s ease;
}

body.home .mpm-home-areas__text {
	max-width: 330px;
	margin: 14px auto 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14.5px;
	font-weight: 400;
	line-height: 1.65;
	letter-spacing: 0.01em;
}

body.home .mpm-home-areas__text p {
	margin: 0;
}

body.home .mpm-home-areas__text p + p {
	margin-top: 12px;
}

body.home a.mpm-home-areas__card:hover,
body.home a.mpm-home-areas__card:focus-visible {
	color: inherit;
	text-decoration: none;
}

body.home a.mpm-home-areas__card:hover .mpm-home-areas__icon,
body.home a.mpm-home-areas__card:focus-visible .mpm-home-areas__icon {
	border-color: #d7c1ad;
	background: rgba(215, 193, 173, 0.08);
	transform: translateY(-4px);
}

body.home a.mpm-home-areas__card:hover .mpm-home-areas__card-title,
body.home a.mpm-home-areas__card:focus-visible .mpm-home-areas__card-title {
	color: #d7c1ad;
}

/* 4 itens no desktop menor vira 2x2 */
@media (max-width: 1199.98px) {
	body.home .mpm-home-areas__grid--count-4,
	body.home .mpm-home-areas__grid:not(.mpm-home-areas__grid--count-1):not(.mpm-home-areas__grid--count-2):not(.mpm-home-areas__grid--count-3):not(.mpm-home-areas__grid--count-4) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 56px;
	}

	body.home .mpm-home-areas__grid--count-4 .mpm-home-areas__card:nth-child(odd)::before,
	body.home .mpm-home-areas__grid:not(.mpm-home-areas__grid--count-1):not(.mpm-home-areas__grid--count-2):not(.mpm-home-areas__grid--count-3):not(.mpm-home-areas__grid--count-4) .mpm-home-areas__card:nth-child(odd)::before {
		display: none;
	}
}

/* Tablet/mobile — empilha */
@media (max-width: 991.98px) {
	body.home .mpm-home-areas {
		padding: 68px 0;
	}

	body.home .mpm-home-areas__header::before,
	body.home .mpm-home-areas__header::after {
		width: 70px;
	}

	body.home .mpm-home-areas__header::before {
		margin-right: 22px;
	}

	body.home .mpm-home-areas__header::after {
		margin-left: 22px;
	}

	body.home .mpm-home-areas__grid,
	body.home .mpm-home-areas__grid--count-1,
	body.home .mpm-home-areas__grid--count-2,
	body.home .mpm-home-areas__grid--count-3,
	body.home .mpm-home-areas__grid--count-4,
	body.home .mpm-home-areas__grid:not(.mpm-home-areas__grid--count-1):not(.mpm-home-areas__grid--count-2):not(.mpm-home-areas__grid--count-3):not(.mpm-home-areas__grid--count-4) {
		grid-template-columns: 1fr;
		max-width: 620px;
		margin: 0 auto;
		row-gap: 0;
	}

	body.home .mpm-home-areas__card {
		min-height: 0;
		padding: 36px 24px;
	}

	body.home .mpm-home-areas__card:not(:first-child)::before {
		display: block;
		top: 0;
		left: 50%;
		width: 100%;
		max-width: 360px;
		height: 1px;
		transform: translateX(-50%);
		background: rgba(215, 193, 173, 0.28);
	}

	body.home .mpm-home-areas__icon {
		margin-bottom: 22px;
	}
}

@media (max-width: 575.98px) {
	body.home .mpm-home-areas {
		padding: 58px 0;
	}

	body.home .mpm-home-areas__header {
		margin-bottom: 34px;
	}

	body.home .mpm-home-areas__header::before,
	body.home .mpm-home-areas__header::after {
		width: 42px;
	}

	body.home .mpm-home-areas__header::before {
		margin-right: 16px;
	}

	body.home .mpm-home-areas__header::after {
		margin-left: 16px;
	}

	body.home .mpm-home-areas__title {
		font-size: 12px;
		letter-spacing: 0.32em;
	}

	body.home .mpm-home-areas__card {
		padding: 32px 12px;
	}

	body.home .mpm-home-areas__icon {
		width: 66px;
		height: 66px;
	}

	body.home .mpm-home-areas__icon img {
		width: 30px;
		height: 30px;
	}

	body.home .mpm-home-areas__card-title {
		font-size: 13px;
		letter-spacing: 0.2em;
	}

	body.home .mpm-home-areas__text {
		font-size: 14px;
		line-height: 1.6;
	}
}

/* ============================================================
   HOME — Serviços
   ============================================================ */

body.home .mpm-home-services {
	position: relative;
	overflow: hidden;
	background: #f3f0ec;
	color: #151515;
	padding: clamp(58px, 6vw, 86px) 0;
}

body.home .mpm-home-services .container {
	position: relative;
	z-index: 2;
}

body.home .mpm-home-services__layout {
	display: grid;
	grid-template-columns: 31% 69%;
	align-items: stretch;
}

body.home .mpm-home-services__intro {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 18px clamp(34px, 4.6vw, 70px) 18px 0;
}

body.home .mpm-home-services__chapeu {
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 0 0 18px;
	color: #151515;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.32em;
	text-transform: uppercase;
}

body.home .mpm-home-services__chapeu::after {
	content: "";
	width: 56px;
	height: 1px;
	background: rgba(21, 21, 21, 0.42);
}

body.home .mpm-home-services__title {
	margin: 0;
	max-width: 410px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(36px, 3.4vw, 54px);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.025em;
	color: #151515;
}

body.home .mpm-home-services__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	border-left: 1px solid rgba(21, 21, 21, 0.14);
	border-top: 0;
}

/* Quantidades menores */
body.home .mpm-home-services__grid--count-1 {
	grid-template-columns: 1fr;
	max-width: 240px;
}

body.home .mpm-home-services__grid--count-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 480px;
}

body.home .mpm-home-services__grid--count-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 720px;
}

body.home .mpm-home-services__grid--count-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	max-width: 960px;
}

body.home .mpm-home-services__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 150px;
	padding: 22px 18px;
	color: #151515;
	text-align: center;
	text-decoration: none;
	border-right: 1px solid rgba(21, 21, 21, 0.14);
	border-bottom: 1px solid rgba(21, 21, 21, 0.14);
	background: transparent;
	transition:
		background-color 0.25s ease,
		color 0.25s ease;
}

body.home a.mpm-home-services__item:hover,
body.home a.mpm-home-services__item:focus-visible {
	background: rgba(215, 193, 173, 0.18);
	color: #151515;
	text-decoration: none;
}

body.home .mpm-home-services__icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.25s ease;
}

body.home .mpm-home-services__icon img {
	display: block;
	width: 42px;
	height: 42px;
	object-fit: contain;
}

body.home a.mpm-home-services__item:hover .mpm-home-services__icon,
body.home a.mpm-home-services__item:focus-visible .mpm-home-services__icon {
	transform: translateY(-3px);
}

body.home .mpm-home-services__item-title {
	margin: 0;
	max-width: 190px;
	color: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.01em;
	text-transform: none;
}

/* Responsivo */
@media (max-width: 1199.98px) {
	body.home .mpm-home-services__layout {
		grid-template-columns: 34% 66%;
	}

	body.home .mpm-home-services__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	body.home .mpm-home-services__grid--count-5 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 991.98px) {
	body.home .mpm-home-services {
		padding: 58px 0 64px;
	}

	body.home .mpm-home-services__layout {
		grid-template-columns: 1fr;
	}

	body.home .mpm-home-services__intro {
		padding: 0 0 34px;
	}

	body.home .mpm-home-services__title {
		max-width: 640px;
	}

	body.home .mpm-home-services__grid,
	body.home .mpm-home-services__grid--count-1,
	body.home .mpm-home-services__grid--count-2,
	body.home .mpm-home-services__grid--count-3,
	body.home .mpm-home-services__grid--count-4,
	body.home .mpm-home-services__grid--count-5 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		max-width: none;
		border-left: 1px solid rgba(21, 21, 21, 0.14);
		border-top: 1px solid rgba(21, 21, 21, 0.14);
	}

	body.home .mpm-home-services__item {
		min-height: 145px;
		border-top: 0;
	}
}

@media (max-width: 767.98px) {
	body.home .mpm-home-services__grid,
	body.home .mpm-home-services__grid--count-1,
	body.home .mpm-home-services__grid--count-2,
	body.home .mpm-home-services__grid--count-3,
	body.home .mpm-home-services__grid--count-4,
	body.home .mpm-home-services__grid--count-5 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575.98px) {
	body.home .mpm-home-services {
		padding: 48px 0 56px;
	}

	body.home .mpm-home-services__chapeu {
		gap: 16px;
		font-size: 11px;
		letter-spacing: 0.24em;
	}

	body.home .mpm-home-services__chapeu::after {
		width: 42px;
	}

	body.home .mpm-home-services__title {
		font-size: 34px;
		line-height: 1.08;
	}

	body.home .mpm-home-services__grid,
	body.home .mpm-home-services__grid--count-1,
	body.home .mpm-home-services__grid--count-2,
	body.home .mpm-home-services__grid--count-3,
	body.home .mpm-home-services__grid--count-4,
	body.home .mpm-home-services__grid--count-5 {
		grid-template-columns: 1fr;
	}

	body.home .mpm-home-services__item {
		min-height: 130px;
		padding: 24px 18px;
	}

	body.home .mpm-home-services__item-title {
		font-size: 14px;
	}
}

/* ============================================================
   HOME — Diferenciais
   ============================================================ */

body.home .mpm-home-differentials {
	position: relative;
	overflow: hidden;
	background: #f3f0ec;
	color: #151515;
}

body.home .mpm-home-differentials__layout {
	display: grid;
	grid-template-columns: 44% 56%;
	min-height: 430px;
}

body.home .mpm-home-differentials__left {
	position: relative;
	display: flex;
	align-items: center;
	background: #050505;
	color: #fff;
	padding: clamp(58px, 6vw, 86px) clamp(36px, 5vw, 76px);
}

body.home .mpm-home-differentials__left::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at 0% 0%, rgba(215, 193, 173, 0.08), transparent 36%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 42%);
}

body.home .mpm-home-differentials__left-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 690px;
	margin-left: auto;
}

body.home .mpm-home-differentials__list-title {
	margin: 0 0 24px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.32em;
	text-transform: uppercase;
}

body.home .mpm-home-differentials__list {
	display: flex;
	flex-direction: column;
	gap: 13px;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.home .mpm-home-differentials__list-item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.45;
	letter-spacing: 0.01em;
}

body.home .mpm-home-differentials__check {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	margin-top: -2px;
	border: 1px solid rgba(215, 193, 173, 0.42);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #d7c1ad;
	font-size: 10px;
	line-height: 1;
}

body.home .mpm-home-differentials__right {
	display: flex;
	align-items: center;
	background: #f3f0ec;
	padding: clamp(58px, 6vw, 86px) clamp(30px, 5vw, 78px);
}

body.home .mpm-home-differentials__cards {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	align-items: stretch;
}

body.home .mpm-home-differentials__cards--count-1 {
	max-width: 360px;
	margin-inline: auto;
	grid-template-columns: 1fr;
}

body.home .mpm-home-differentials__cards--count-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.home .mpm-home-differentials__cards--count-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.home .mpm-home-differentials__cards--count-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.home .mpm-home-differentials__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 280px;
	padding: 0 clamp(24px, 3vw, 54px);
	text-align: center;
	color: #151515;
}

body.home .mpm-home-differentials__card:not(:first-child)::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background: rgba(21, 21, 21, 0.14);
}

body.home .mpm-home-differentials__icon {
	width: 74px;
	height: 74px;
	margin: 0 auto 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}

body.home .mpm-home-differentials__icon img {
	display: block;
	width: 58px;
	height: 58px;
	object-fit: contain;
}

body.home .mpm-home-differentials__card-title {
	margin: 0 0 18px;
	color: #151515;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

body.home .mpm-home-differentials__card-text {
	max-width: 250px;
	margin: 0 auto;
	color: rgba(21, 21, 21, 0.82);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.65;
	letter-spacing: 0.01em;
}

body.home .mpm-home-differentials__card-text p {
	margin: 0;
}

body.home .mpm-home-differentials__card-text p + p {
	margin-top: 12px;
}

/* Mais de 4 cards */
body.home .mpm-home-differentials__cards:not(.mpm-home-differentials__cards--count-1):not(.mpm-home-differentials__cards--count-2):not(.mpm-home-differentials__cards--count-3):not(.mpm-home-differentials__cards--count-4) {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	row-gap: 56px;
}

@media (max-width: 1399.98px) {
	body.home .mpm-home-differentials__layout {
		grid-template-columns: 43% 57%;
	}

	body.home .mpm-home-differentials__card {
		padding-inline: 34px;
	}
}

@media (max-width: 1199.98px) {
	body.home .mpm-home-differentials__layout {
		grid-template-columns: 1fr;
	}

	body.home .mpm-home-differentials__left-inner {
		max-width: 100%;
		margin-left: 0;
	}

	body.home .mpm-home-differentials__cards--count-4,
	body.home .mpm-home-differentials__cards:not(.mpm-home-differentials__cards--count-1):not(.mpm-home-differentials__cards--count-2):not(.mpm-home-differentials__cards--count-3):not(.mpm-home-differentials__cards--count-4) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.home .mpm-home-differentials__cards--count-4 .mpm-home-differentials__card:nth-child(odd)::before,
	body.home .mpm-home-differentials__cards:not(.mpm-home-differentials__cards--count-1):not(.mpm-home-differentials__cards--count-2):not(.mpm-home-differentials__cards--count-3):not(.mpm-home-differentials__cards--count-4) .mpm-home-differentials__card:nth-child(odd)::before {
		display: none;
	}
}

@media (max-width: 767.98px) {
	body.home .mpm-home-differentials__left,
	body.home .mpm-home-differentials__right {
		padding: 52px 24px;
	}

	body.home .mpm-home-differentials__cards,
	body.home .mpm-home-differentials__cards--count-1,
	body.home .mpm-home-differentials__cards--count-2,
	body.home .mpm-home-differentials__cards--count-3,
	body.home .mpm-home-differentials__cards--count-4,
	body.home .mpm-home-differentials__cards:not(.mpm-home-differentials__cards--count-1):not(.mpm-home-differentials__cards--count-2):not(.mpm-home-differentials__cards--count-3):not(.mpm-home-differentials__cards--count-4) {
		grid-template-columns: 1fr;
		max-width: 520px;
		margin: 0 auto;
		row-gap: 0;
	}

	body.home .mpm-home-differentials__card {
		min-height: 0;
		padding: 36px 0;
	}

	body.home .mpm-home-differentials__card:not(:first-child)::before {
		display: block;
		top: 0;
		left: 50%;
		width: 100%;
		max-width: 320px;
		height: 1px;
		transform: translateX(-50%);
	}

	body.home .mpm-home-differentials__list-title {
		font-size: 12px;
		letter-spacing: 0.26em;
	}

	body.home .mpm-home-differentials__list-item {
		gap: 14px;
		font-size: 14px;
	}

	body.home .mpm-home-differentials__card-title {
		font-size: 13px;
		letter-spacing: 0.22em;
	}

	body.home .mpm-home-differentials__card-text {
		font-size: 14px;
		line-height: 1.6;
	}
}

@media (max-width: 575.98px) {
	body.home .mpm-home-differentials__left,
	body.home .mpm-home-differentials__right {
		padding-inline: 20px;
	}

	body.home .mpm-home-differentials__check {
		width: 22px;
		height: 22px;
		font-size: 9px;
	}
}

/* ============================================================
   HOME — Garantias Institucionais
   ============================================================ */

body.home .mpm-home-guarantees {
	position: relative;
	overflow: hidden;
	background: #f3f0ec;
	color: #151515;
	padding: clamp(42px, 4.8vw, 68px) 0 clamp(46px, 5vw, 72px);
	border-top: 1px solid rgba(21, 21, 21, 0.08);
}

body.home .mpm-home-guarantees .container {
	position: relative;
	z-index: 2;
}

body.home .mpm-home-guarantees__header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: clamp(28px, 3.6vw, 44px);
	text-align: center;
}

body.home .mpm-home-guarantees__header::before,
body.home .mpm-home-guarantees__header::after {
	content: "";
	width: clamp(54px, 10vw, 148px);
	height: 1px;
	background: rgba(21, 21, 21, 0.22);
}

body.home .mpm-home-guarantees__header::before {
	margin-right: 34px;
}

body.home .mpm-home-guarantees__header::after {
	margin-left: 34px;
}

body.home .mpm-home-guarantees__title {
	margin: 0;
	color: #151515;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.38em;
	text-transform: uppercase;
}

body.home .mpm-home-guarantees__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	align-items: stretch;
}

/* Quantidades menores */
body.home .mpm-home-guarantees__grid--count-1 {
	grid-template-columns: 1fr;
	max-width: 280px;
	margin-inline: auto;
}

body.home .mpm-home-guarantees__grid--count-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 560px;
	margin-inline: auto;
}

body.home .mpm-home-guarantees__grid--count-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 840px;
	margin-inline: auto;
}

body.home .mpm-home-guarantees__grid--count-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	max-width: 1120px;
	margin-inline: auto;
}

body.home .mpm-home-guarantees__grid--count-5 {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.home .mpm-home-guarantees__grid:not(.mpm-home-guarantees__grid--count-1):not(.mpm-home-guarantees__grid--count-2):not(.mpm-home-guarantees__grid--count-3):not(.mpm-home-guarantees__grid--count-4):not(.mpm-home-guarantees__grid--count-5) {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	row-gap: 34px;
}

body.home .mpm-home-guarantees__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 150px;
	padding: 0 clamp(20px, 3vw, 44px);
	color: #151515;
	text-align: center;
	text-decoration: none;
	background: transparent;
	border: 0;
}

body.home .mpm-home-guarantees__item:not(:first-child)::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	width: 1px;
	height: 95px;
	background: rgba(21, 21, 21, 0.18);
}

body.home .mpm-home-guarantees__icon {
	width: 62px;
	height: 62px;
	margin: 0 auto 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.25s ease;
}

body.home .mpm-home-guarantees__icon img {
	display: block;
	width: 48px;
	height: 48px;
	object-fit: contain;
}

body.home .mpm-home-guarantees__text {
	max-width: 230px;
	margin: 0 auto;
	color: rgba(21, 21, 21, 0.86);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -0.01em;
}

body.home .mpm-home-guarantees__text p {
	margin: 0;
}

body.home .mpm-home-guarantees__text p + p {
	margin-top: 8px;
}

body.home a.mpm-home-guarantees__item:hover,
body.home a.mpm-home-guarantees__item:focus-visible {
	color: #151515;
	text-decoration: none;
}

body.home a.mpm-home-guarantees__item:hover .mpm-home-guarantees__icon,
body.home a.mpm-home-guarantees__item:focus-visible .mpm-home-guarantees__icon {
	transform: translateY(-3px);
}

/* Mais de 5 itens no desktop menor */
@media (max-width: 1399.98px) {
	body.home .mpm-home-guarantees__grid:not(.mpm-home-guarantees__grid--count-1):not(.mpm-home-guarantees__grid--count-2):not(.mpm-home-guarantees__grid--count-3):not(.mpm-home-guarantees__grid--count-4):not(.mpm-home-guarantees__grid--count-5) {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 1199.98px) {
	body.home .mpm-home-guarantees__grid,
	body.home .mpm-home-guarantees__grid--count-5,
	body.home .mpm-home-guarantees__grid:not(.mpm-home-guarantees__grid--count-1):not(.mpm-home-guarantees__grid--count-2):not(.mpm-home-guarantees__grid--count-3):not(.mpm-home-guarantees__grid--count-4):not(.mpm-home-guarantees__grid--count-5) {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		row-gap: 38px;
	}

	body.home .mpm-home-guarantees__item:nth-child(3n + 1)::before {
		display: none;
	}
}

@media (max-width: 767.98px) {
	body.home .mpm-home-guarantees {
		padding: 46px 0 52px;
	}

	body.home .mpm-home-guarantees__header {
		margin-bottom: 30px;
	}

	body.home .mpm-home-guarantees__header::before,
	body.home .mpm-home-guarantees__header::after {
		width: 42px;
	}

	body.home .mpm-home-guarantees__header::before {
		margin-right: 18px;
	}

	body.home .mpm-home-guarantees__header::after {
		margin-left: 18px;
	}

	body.home .mpm-home-guarantees__title {
		font-size: 12px;
		letter-spacing: 0.28em;
	}

	body.home .mpm-home-guarantees__grid,
	body.home .mpm-home-guarantees__grid--count-1,
	body.home .mpm-home-guarantees__grid--count-2,
	body.home .mpm-home-guarantees__grid--count-3,
	body.home .mpm-home-guarantees__grid--count-4,
	body.home .mpm-home-guarantees__grid--count-5,
	body.home .mpm-home-guarantees__grid:not(.mpm-home-guarantees__grid--count-1):not(.mpm-home-guarantees__grid--count-2):not(.mpm-home-guarantees__grid--count-3):not(.mpm-home-guarantees__grid--count-4):not(.mpm-home-guarantees__grid--count-5) {
		grid-template-columns: 1fr;
		max-width: 460px;
		margin: 0 auto;
		row-gap: 0;
	}

	body.home .mpm-home-guarantees__item {
		min-height: 0;
		padding: 28px 16px;
	}

	body.home .mpm-home-guarantees__item:not(:first-child)::before {
		display: block;
		top: 0;
		left: 50%;
		width: 100%;
		max-width: 300px;
		height: 1px;
		transform: translateX(-50%);
		background: rgba(21, 21, 21, 0.16);
	}

	body.home .mpm-home-guarantees__icon {
		width: 56px;
		height: 56px;
		margin-bottom: 10px;
	}

	body.home .mpm-home-guarantees__icon img {
		width: 42px;
		height: 42px;
	}

	body.home .mpm-home-guarantees__text {
		font-size: 14px;
		line-height: 1.4;
	}
}
/* ──────────────────────────────────────────────────────────────
   03 · SOLUÇÕES
   ────────────────────────────────────────────────────────────── */
.tratamentos-home {
    padding: 80px 0 60px;
    overflow: hidden;
}

.tratamentos-home__header {
    margin-bottom: 1.5rem;
}

.tratamentos-home__carousel {
    padding-left: max(1rem, calc((100vw - 1200px) / 2));
    padding-bottom: 60px;
    padding-top: 1rem;
}


/* ──────────────────────────────────────────────────────────────
   04 · SOBRE
   ────────────────────────────────────────────────────────────── */
.sobre-home {
    background-color: var(--color-neutral-200);
    overflow: hidden;
}

.sobre-home__header {
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.sobre-home__subtitulo {
    display: block;
    margin-bottom: .75rem;
}

.sobre-home__titulo {
    color: var(--color-neutral-900);
    margin-bottom: 1rem;
}

.sobre-home__figura {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
}

.sobre-home__figura--offset {
    margin-top: -2rem;
}

.sobre-home__img {
    width: 100%;
    height: auto;
    display: block;
}

.sobre-home__cta {
    margin-top: 3rem;
}

@media (max-width: 767px) {
    .sobre-home__figura--offset {
        margin-top: 0;
    }
}

/* ──────────────────────────────────────────────────────────────
   05 · CTA PRINCIPAL
   ────────────────────────────────────────────────────────────── */
.cta-home {
    background-color: var(--color-neutral-100);
    overflow: hidden;
}

.cta-home__box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--color-neutral-900);
    padding: 4rem;
}

.cta-home__subtitulo {
    display: block;
    margin-bottom: .75rem;
}

.cta-home__titulo {
    color: var(--color-neutral-100);
    margin-bottom: 1.25rem;
}

.cta-home__texto p {
    color: rgba(255,255,255,.7);
    margin-bottom: 0;
}

.cta-home__figura {
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-self: stretch;
}

.cta-home__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

@media (max-width: 991px) {
    .cta-home__box {
        grid-template-columns: 1fr;
        padding: 2.5rem;
    }
    .cta-home__figura {
        max-height: 300px;
        overflow: hidden;
        border-radius: 8px;
    }
}

/* ──────────────────────────────────────────────────────────────
   06 · BLOG
   ────────────────────────────────────────────────────────────── */
.blog-home {
    overflow: hidden;
}

.blog-home__card {
    height: 100%;
    background: var(--color-neutral-100);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: box-shadow .3s ease, transform .3s ease;
}

.blog-home__card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,.12);
    transform: translateY(-4px);
}

.blog-home__card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.blog-home__card-fig {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 385 / 250;
}

.blog-home__card-fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.blog-home__card:hover .blog-home__card-fig img {
    transform: scale(1.04);
}

.blog-home__card-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    flex: 1;
}

.blog-home__card-title {
    font-size: clamp(1.05rem, 1.45vw, 1.2rem);
    font-weight: 600;
    color: var(--color-neutral-900);
    line-height: 1.4;
    margin: 0;
}

.blog-home__card-excerpt {
    font-size: .9375rem;
    line-height: 1.6;
    margin: 0;
}

.blog-home__card-more {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: auto;
    transition: gap .2s ease;
}

.blog-home__card:hover .blog-home__card-more {
    gap: .6rem;
}

/* ──────────────────────────────────────────────────────────────
   07 · DEPOIMENTOS (grid Swiper: 2 por linha no desktop + vídeo 16:9)
   ────────────────────────────────────────────────────────────── */
/* overflow visível para borda/sombra dos cards no hover não ser cortada */
.depo-home {
    overflow: visible;
}

.depo-home__carousel {
    position: relative;
    padding-inline: 0.5rem;
    padding-bottom: 1.25rem;
    box-sizing: border-box;
    overflow: hidden;
}

.depo-home__card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    height: 100%;
    transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.depo-home__card:hover {
    border-color: rgba(var(--color-primary-rgb), 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
    background: rgba(255, 255, 255, .06);
}

/* Card com vídeo: mídia em destaque */
.depo-home__card--video {
    gap: 1.25rem;
    padding: 1.25rem;
}

.depo-home__media {
    display: flex;
    justify-content: center;
}

.depo-home__media--video {
    width: 100%;
    margin: 0;
}

.depo-home__avatar {
    margin: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-primary);
    flex-shrink: 0;
}

.depo-home__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Miniatura grande (YouTube / upload) */
.depo-home__thumb--video {
    margin: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .35);
}

.depo-home__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s ease;
}

.depo-home__play--video {
    position: relative;
    display: block;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
}

.depo-home__play--video:hover .depo-home__thumb-img {
    transform: scale(1.04);
}

.depo-home__play-icon--video {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .42);
    border-radius: 12px;
    color: var(--color-neutral-100);
    font-size: clamp(2rem, 4vw, 2.75rem);
    transition: background .3s ease, transform .3s ease;
    pointer-events: none;
}

.depo-home__play--video:hover .depo-home__play-icon--video {
    background: rgba(0, 0, 0, .55);
}

.depo-home__play-icon--video i {
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, .5));
    padding-left: 0.2em;
}

.depo-home__body {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.depo-home__card--video .depo-home__body {
    text-align: left;
    align-items: flex-start;
}

.depo-home__texto p {
    color: rgba(255, 255, 255, .78);
    font-size: .9375rem;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: .75rem;
}

.depo-home__card--video .depo-home__texto p {
    font-size: 1rem;
}

.depo-home__texto p:last-child {
    margin-bottom: 0;
}

.depo-home__autor {
    color: var(--color-neutral-100);
    font-size: .875rem;
    margin: 0;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    align-items: center;
}

.depo-home__card--video .depo-home__autor {
    align-items: flex-start;
}

.depo-home__cargo {
    color: var(--color-secondary, #D6CC70);
    font-size: .8125rem;
    font-weight: 400;
}

/* Navegação nas laterais, alinhada ao meio vertical do carrossel */
.depo-home__nav {
    position: absolute;
    inset: 0;
    top: 0;
    bottom: 1.25rem;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 2;
}

.depo-home__nav .swiper-button-prev,
.depo-home__nav .swiper-button-next {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    margin: 0;
    transform: translateY(-50%) !important;
}

.depo-home__nav .swiper-button-prev {
    left: clamp(0.25rem, 1.5vw, 0.75rem);
    right: auto;
}

.depo-home__nav .swiper-button-next {
    right: clamp(0.25rem, 1.5vw, 0.75rem);
    left: auto;
}

@media (max-width: 767.98px) {
    .depo-home__card--video .depo-home__body {
        text-align: center;
        align-items: center;
    }

    .depo-home__card--video .depo-home__autor {
        align-items: center;
    }
}

/* ──────────────────────────────────────────────────────────────
   08 · SEO TAGS
   ────────────────────────────────────────────────────────────── */
.seo-home {
    padding: 5rem 0;
}

.seo-home__box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.seo-home__texto p {
    font-size: inherit;
    color: inherit;
    margin-bottom: .5rem;
}

.seo-home__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 0;
}

.seo-home__tag {
    display: inline-block;
    padding: .25rem .75rem;
    background: var(--color-neutral-200);
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    font-size: .875rem;
    color: var(--color-primary);
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

a.seo-home__tag:hover {
    background: var(--color-primary);
    color: var(--color-neutral-100);
}
