/* ============================================================
   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;
	}
}
/* ──────────────────────────────────────────────────────────────
   02 · ESTATÍSTICAS
   ────────────────────────────────────────────────────────────── */
.esta-home {
    position: relative;
    background: linear-gradient(180deg, var(--color-neutral-200) 0%, #fff 100%);
    overflow: hidden;
    padding: 5rem 0;
}

.esta-home > .container {
    position: relative;
    z-index: 1;
}

.esta-home__inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* ornamentos dourados sutis */
.esta-home::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -180px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--color-primary-rgb), .18), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.esta-home::after {
    content: '';
    position: absolute;
    bottom: -220px;
    left: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--color-primary-rgb), .10), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* texto */
.esta-home__texto-wrap {
    max-width: 540px;
}

.esta-home__titulo {
    color: var(--color-neutral-900);
    margin-bottom: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.esta-home__titulo strong,
.esta-home__titulo em {
    color: var(--color-primary);
    font-style: normal;
    font-weight: inherit;
}

.esta-home__texto p,
.esta-home__texto li {
    color: var(--color-neutral-600);
    line-height: 1.65;
}

.esta-home__texto li {
    margin-bottom: .4rem;
}

.esta-home__btn.btn-style-01 {
    margin-top: 1.75rem;
}

/* contadores — row horizontal de 3 cols com separadores */
.esta-home__counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 2.25rem 2rem;
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
    border: 1px solid var(--color-neutral-300);
}

.esta-home__item {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0.5rem 1.75rem;
    border-right: 1px solid var(--color-neutral-300);
    position: relative;
}

.esta-home__item:first-child {
    padding-left: 0.5rem;
}

.esta-home__item:last-child {
    border-right: 0;
    padding-right: 0.5rem;
}

.esta-home__number {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    color: var(--color-primary);
    line-height: 1;
    font-size: clamp(2.25rem, 3vw, 2.75rem);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.esta-home__prefixo {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-secondary);
    line-height: 1;
    align-self: center;
}

.esta-home__valor {
    font-size: 1em;
    font-weight: 700;
}

.esta-home__sufixo {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-secondary);
    line-height: 1;
    align-self: center;
}

.esta-home__legenda {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--color-neutral-600);
    font-weight: 500;
}

/* imagem — frame elegante */
.esta-home__figura {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .18);
    aspect-ratio: 5 / 6;
    max-height: 560px;
}

.esta-home__figura::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 14px;
    z-index: 2;
    pointer-events: none;
}

.esta-home__figura::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .35));
    pointer-events: none;
}

.esta-home__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .8s ease;
}

.esta-home__figura:hover .esta-home__img {
    transform: scale(1.04);
}

@media (max-width: 991.98px) {
    .esta-home {
        padding: 3rem 0;
    }

    .esta-home__inner {
        gap: 2.25rem;
    }

    .esta-home__figura {
        aspect-ratio: 4 / 5;
        border-radius: 14px;
    }

    .esta-home__texto-wrap {
        max-width: none;
        text-align: center;
    }

    .esta-home__btn.btn-style-01 {
        display: inline-flex;
    }

    .esta-home__counters {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 0;
    }

    .esta-home__item {
        padding: 1.25rem 0;
        border-right: 0;
        border-bottom: 1px solid var(--color-neutral-300);
        align-items: center;
        text-align: center;
    }

    .esta-home__item:first-child {
        padding-top: 0.5rem;
        padding-left: 0;
    }

    .esta-home__item:last-child {
        padding-bottom: 0.5rem;
        padding-right: 0;
        border-bottom: 0;
    }

    .esta-home__number {
        flex-wrap: wrap;
        justify-content: center;
        align-items: baseline;
        gap: 0.4rem 0.5rem;
        font-size: clamp(2.4rem, 9vw, 3rem);
        line-height: 1;
        white-space: normal;
    }

    .esta-home__prefixo,
    .esta-home__sufixo {
        text-align: center;
        max-width: 100%;
        white-space: normal;
        font-size: 0.72rem;
        letter-spacing: 0.1em;
    }

    .esta-home__sufixo {
        flex-basis: 100%;
        margin-top: 0.15rem;
    }

    .esta-home__legenda {
        font-size: 0.9rem;
        line-height: 1.45;
        max-width: 24rem;
    }
}

/* ──────────────────────────────────────────────────────────────
   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);
}
