/* ==========================================================================
   Fontes — self-hosted (subset latin, cobre acentuação pt-BR)
   ========================================================================== */

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url('../fonts/poppins-300.woff2') format('woff2');
}

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/poppins-400.woff2') format('woff2');
}

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/poppins-500.woff2') format('woff2');
}

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/poppins-600.woff2') format('woff2');
}

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/poppins-700.woff2') format('woff2');
}

@font-face {
	font-family: 'Poppins';
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/poppins-400-italic.woff2') format('woff2');
}

@font-face {
	font-family: 'DM Serif Display';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/dm-serif-display-400.woff2') format('woff2');
}

@font-face {
	font-family: 'DM Serif Display';
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/dm-serif-display-400-italic.woff2') format('woff2');
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */

.site-header {
	width: 100%;
}

.site-header--overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
	background: transparent;
}

.navbar {
	padding-block: 16px;
	background-color: var(--section-bg-light);
}

.site-header--overlay .navbar {
	background: transparent;
}

.navbar__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.navbar__logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.navbar__logo-img {
	height: 32px;
	width: auto;
}

@media (min-width: 768px) and (max-width: 1119.98px) {
	.navbar__logo-img {
		height: 38.4px;
	}
}

@media (min-width: 1120px) {
	.navbar__logo-img {
		height: 40px;
	}
}

.navbar__links {
	display: none;
}

.navbar__cta {
	padding: 10px 20px;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 500;
	white-space: nowrap;
	background-color: #EAE4DD;
	border: none;
	color: var(--dark);
	transition: background-color 0.25s ease, color 0.25s ease;
}

.navbar__cta:hover {
	background-color: var(--dark);
	color: #EAE4DD;
}

.site-header--overlay .navbar__cta {
	background-color: var(--creme);
	border-color: var(--creme);
	color: var(--dark);
}

.site-header--overlay .navbar__cta:hover {
	background-color: var(--dark);
	border-color: var(--dark);
	color: var(--creme);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.navbar__toggle {
	display: none;
}

/* Tablet e mobile: logo à esquerda, botão que abre a navegação lateral. */
@media (max-width: 1119.98px) {
	.navbar__links {
		display: none;
	}

	.navbar__cta {
		display: none;
	}

	.navbar__toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 5px;
		width: 46px;
		height: 46px;
		padding: 0;
		border: 1px solid currentColor;
		border-radius: 50%;
		background: transparent;
		color: var(--dark);
		cursor: pointer;
	}

	.site-header--overlay .navbar__toggle {
		color: var(--white);
	}

	.navbar__toggle-line {
		display: block;
		width: 20px;
		height: 1px;
		background-color: currentColor;
		transition: transform 0.22s ease, opacity 0.18s ease;
	}
}
.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 100;
	visibility: hidden;
	pointer-events: none;
}

.mobile-menu::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(26, 23, 20, 0.48);
	opacity: 0;
	transition: opacity 0.28s ease;
}

.mobile-menu__panel {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	width: min(88vw, 420px);
	height: 100%;
	min-height: 100dvh;
	padding: 24px;
	background-color: var(--creme);
	box-shadow: -12px 0 40px rgba(26, 23, 20, 0.16);
	transform: translateX(100%);
	transition: transform 0.28s ease;
}

.mobile-menu.is-open {
	visibility: visible;
	pointer-events: auto;
}

.mobile-menu.is-open::before {
	opacity: 1;
}

.mobile-menu.is-open .mobile-menu__panel {
	transform: translateX(0);
}

.mobile-menu__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 40px;
}

.mobile-menu__logo img {
	width: auto;
	height: 38px;
}

.mobile-menu__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--text);
	border-radius: 50%;
	background: transparent;
	color: var(--text);
	cursor: pointer;
}

.mobile-menu__close-icon {
	position: relative;
	display: block;
	width: 19px;
	height: 1px;
	background-color: currentColor;
}

.mobile-menu__close-icon {
	transform: rotate(45deg);
}

.mobile-menu__close-icon::after {
	position: absolute;
	inset: 0;
	background-color: currentColor;
	content: "";
	transform: rotate(90deg);
}

.mobile-menu__links {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--gray-mid);
}

.mobile-menu__links li {
	border-bottom: 1px solid var(--gray-mid);
}

.mobile-menu__links a {
	display: block;
	padding: 18px 0;
	color: var(--text);
	font-size: 1.05rem;
}

.mobile-menu__links li.current-menu-item a {
	padding-left: 14px;
	font-weight: 600;
}

/* Submenu (accordion) — ex: "Procedimentos" listando cada procedimento. */
.mobile-menu__links li {
	position: relative;
}

.mobile-menu__links li.has-submenu-toggle > a {
	padding-right: 44px;
}

.mobile-menu__submenu-toggle {
	position: absolute;
	top: 4px;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: none;
	border: none;
	color: var(--text);
	cursor: pointer;
}

.mobile-menu__submenu-icon {
	display: block;
	width: 9px;
	height: 9px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.mobile-menu__links li.is-open .mobile-menu__submenu-icon {
	transform: rotate(-135deg);
}

.mobile-menu__links .sub-menu {
	max-height: 0;
	overflow: hidden;
	list-style: none;
	transition: max-height 0.3s ease;
}

.mobile-menu__links li.is-open > .sub-menu {
	max-height: 600px;
}

.mobile-menu__links .sub-menu li {
	border-bottom: none;
}

.mobile-menu__links .sub-menu a {
	padding: 12px 0 12px 16px;
	font-size: 0.95rem;
	color: var(--text-light);
}

.mobile-menu__cta {
	margin-top: auto;
	padding: 15px 20px;
	border-radius: 999px;
	background-color: var(--dark);
	color: var(--white);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-align: center;
	text-transform: uppercase;
}

body.mobile-menu-open {
	overflow: hidden;
}

@media (max-width: 1119.98px) {
	.navbar__toggle.is-active .navbar__toggle-line:nth-child(2) {
		transform: translateY(6px) rotate(45deg);
	}

	.navbar__toggle.is-active .navbar__toggle-line:nth-child(3) {
		opacity: 0;
	}

	.navbar__toggle.is-active .navbar__toggle-line:nth-child(4) {
		transform: translateY(-6px) rotate(-45deg);
	}
}

@media (min-width: 1120px) {
	.navbar {
		padding-block: 24px;
	}

	.navbar__links {
		display: flex;
		align-items: center;
		gap: 4px;
		padding: 6px;
		border-radius: 999px;
		font-size: 0.85rem;
		background-color: #EBE6E0;
	}

	.navbar__links li a {
		display: block;
		padding: 8px 18px;
		border-radius: 999px;
		color: var(--dark);
	}

	.navbar__links li a:hover,
	.navbar__links li.current-menu-item a {
		background-color: #A5907A;
		color: var(--white);
	}

	/* Submenu (dropdown) — ex: "Procedimentos" listando cada procedimento. */
	.navbar__links li {
		position: relative;
	}

	.navbar__links li.menu-item-has-children > a {
		display: flex;
		align-items: center;
		gap: 5px;
	}

	.navbar__links li.menu-item-has-children > a::after {
		content: "";
		width: 6px;
		height: 6px;
		margin-top: -3px;
		border-right: 1.5px solid currentColor;
		border-bottom: 1.5px solid currentColor;
		transform: rotate(45deg);
	}

	.navbar__links .sub-menu {
		position: absolute;
		top: calc(100% + 10px);
		left: 50%;
		min-width: 240px;
		padding: 8px;
		list-style: none;
		background-color: #EBE6E0;
		border-radius: 16px;
		box-shadow: 0 16px 40px rgba(26, 23, 20, 0.16);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translate(-50%, 8px);
		transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
		z-index: 30;
	}

	/* Ponte invisível cobrindo o espaço entre o item e o submenu, pra o
	   mouse não "sair" do hover ao atravessar esse vão e fechar o menu
	   antes de alcançar o dropdown. */
	.navbar__links .sub-menu::before {
		content: "";
		position: absolute;
		top: -10px;
		left: 0;
		right: 0;
		height: 10px;
	}

	.navbar__links li.menu-item-has-children:hover > .sub-menu,
	.navbar__links li.menu-item-has-children:focus-within > .sub-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translate(-50%, 0);
	}

	.navbar__links .sub-menu li {
		border: none;
	}

	.navbar__links .sub-menu a {
		display: block;
		padding: 10px 16px;
		border-radius: 10px;
		color: var(--dark);
		font-size: 0.85rem;
		white-space: nowrap;
	}

	.navbar__links .sub-menu a:hover,
	.navbar__links .sub-menu li.current-menu-item a {
		background-color: #A5907A;
		color: var(--white);
	}

	.navbar__cta {
		padding: 12px 28px;
		font-size: 0.8rem;
	}
}

/* ==========================================================================
   Hero — Home
   ========================================================================== */

.hero-home {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	color: var(--white);
}

.hero-home__slides {
	position: relative;
	min-height: 100vh;
}

.hero-home__slide {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 100px 0 40px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.9s ease;
}

.hero-home__slide.is-active {
	z-index: 2;
	opacity: 1;
	visibility: visible;
}

.hero-home__inner {
	display: flex;
	flex-direction: column;
}

.hero-home__media {
	position: absolute;
	inset: 0;
	z-index: -1;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--dark);
	text-align: center;
}

/* Degradê escuro da esquerda pra direita, pra garantir contraste do texto
   (alinhado à esquerda) contra a foto clara: opaco na esquerda, some antes
   do meio do banner pra não escurecer a foto inteira. */
.hero-home__media::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image: linear-gradient(to right, rgba(26, 23, 20, 0.8) 0%, rgba(26, 23, 20, 0.5) 30%, transparent 50%);
	pointer-events: none;
}

.hero-home__media-label {
	max-width: 160px;
	padding: 10px 14px;
	border: 1px dashed var(--gray-mid);
	border-radius: 4px;
	color: var(--gray-light);
	font-size: 0.7rem;
	line-height: 1.4;
}

.hero-home__content {
	max-width: 640px;
	padding-bottom: 48px;
}

.hero-home__title {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-weight: 400;
}

.hero-home__title em {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: var(--fs-display);
	line-height: 1;
}

.hero-home__title span {
	font-family: var(--font-display);
	font-style: normal;
	font-weight: 400;
	font-size: var(--fs-h1);
	line-height: 1.1;
}

.hero-home__subtitle {
	max-width: 420px;
	margin-top: 20px;
	font-size: var(--fs-body-sm);
	line-height: 1.6;
	opacity: 0.9;
}

.hero-home__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.btn {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 999px;
	font-size: var(--fs-caption);
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-align: center;
}

.btn--primary {
	background-color: var(--white);
	color: var(--dark);
}

.btn--ghost {
	background-color: #D8C8B0;
	color: var(--dark);
}

.btn--dark {
	background-color: var(--dark);
	color: var(--white);
}

.btn--gold {
	background-color: #A5907A;
	color: var(--white);
	transition: background-color 0.2s ease;
}

.btn--gold:hover {
	background-color: #8C7A68;
}

.section-label {
	display: inline-block;
	padding: 8px 20px;
	border-radius: 999px;
	background-color: #A5907A;
	color: var(--white);
	font-size: var(--fs-caption);
	font-weight: 600;
	letter-spacing: 0.03em;
}

.hero-home__dots {
	position: absolute;
	z-index: 6;
	bottom: 110px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.hero-home__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	background-color: transparent;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-home__dot.is-active {
	background-color: var(--gold);
	border-color: var(--gold);
	transform: scale(1.2);
}

@media (min-width: 1120px) {
	.hero-home__dots {
		bottom: 130px;
	}
}

.hero-home__stats-wrap {
	position: relative;
	z-index: 5;
	margin-top: -70px;
}

/* Preenche, com a cor da seção seguinte, a parte do bloco de cards que já
   saiu da área escura do hero. Sem isso, essa faixa mostrava o --creme do
   body (fundo padrão) em vez do --gray-light da seção abaixo, criando uma
   emenda de cor visível atrás dos cards. */
.hero-home__stats-wrap::before {
	content: "";
	position: absolute;
	top: 70px;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	background-color: var(--gray-light);
}

.hero-home__stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin: 0;
	padding: 0;
}

.hero-home__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	padding: 20px;
	text-align: center;
	background-color: var(--white);
	border-radius: 8px;
	box-shadow: 0 12px 32px rgba(26, 23, 20, 0.12);
}

.hero-home__stat-number {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(2.5rem, 9vw, 4.125rem);
	line-height: 1;
	color: #A5907A;
}

.hero-home__stat-star {
	display: inline-block;
	font-size: 0.7em;
}

.hero-home__stat-label {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
	font-size: clamp(1rem, 3vw, 1.425rem);
	font-weight: 300;
	line-height: 1.4;
	color: var(--text-light);
}

@media (max-width: 767.98px) {
	.hero-home__stat-number {
		font-size: clamp(1.5rem, 5.4vw, 2.475rem);
	}

	.hero-home__stat-label {
		font-size: 15px;
	}

	/* No mobile a foto é enquadrada em pé (retrato), então centralizar o
	   texto verticalmente o jogava por cima do rosto. Empurra pra base do
	   hero, abaixo do rosto, igual ao layout já usado no desktop pros cards
	   de estatística logo abaixo. */
	.hero-home__slide {
		justify-content: flex-end;
		padding-top: 40px;
	}

	/* No mobile o texto vai pra base (foto em pé), então sobrescreve o
	   degradê esquerda→direita do desktop por um de baixo pra cima: opaco
	   na base (onde está o texto) e transparente mais acima, pra não
	   escurecer o rosto. */
	.hero-home__media::after {
		content: "";
		position: absolute;
		inset: 0;
		z-index: 1;
		background-image: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 35%, rgba(0, 0, 0, 0.35) 60%, transparent 80%);
		pointer-events: none;
	}
}

@media (min-width: 768px) and (max-width: 1119.98px) {
	.hero-home__stats {
		grid-template-columns: repeat(4, 1fr);
		gap: 12px;
	}

	.hero-home__stat {
		padding: 20px 12px;
	}

	.hero-home__stat-number {
		font-size: clamp(2rem, 4.5vw, 3rem);
	}

	.hero-home__stat-label {
		margin-top: 8px;
		font-size: clamp(0.95rem, 1.7vw, 1.1rem);
		line-height: 1.35;
	}
}

@media (min-width: 1120px) {
	.hero-home__stats {
		grid-template-columns: repeat(4, 1fr);
		gap: 16px;
	}

	.hero-home__slide {
		padding: 140px 0 60px;
	}

	.hero-home__stats-wrap {
		margin-top: -90px;
	}

	.hero-home__stats-wrap::before {
		top: 90px;
	}

	.hero-home__stat {
		padding: 28px;
	}
}

/* ==========================================================================
   Home — Indicação ("mudanças que o espelho ainda não reflete")
   ========================================================================== */

.section-indicacao {
	padding-block: 80px;
	background-color: var(--gray-light);
}

.section-indicacao__title {
	max-width: 900px;
	margin: 0 auto 48px;
	text-align: center;
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.25;
	color: var(--text);
}

.section-indicacao__title span {
	display: block;
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-style: normal;
}

.section-indicacao__title em {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 5.3vw, 3.875rem);
	font-style: italic;
	font-weight: 400;
}

.section-indicacao__title strong {
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 5.3vw, 3.875rem);
	font-style: italic;
	font-weight: 400;
}

.section-indicacao__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.section-indicacao__card,
.section-indicacao__item {
	background-color: var(--white);
	border-radius: 28px;
	padding: 36px 40px;
	box-shadow: 0 16px 40px rgba(26, 23, 20, 0.07);
}

.section-indicacao__item {
	padding: 18px 20px;
}

.section-indicacao__card p.section-indicacao__card-heading {
	font-size: 1.72rem;
	font-weight: 300;
	color: var(--text-light);
	line-height: 1.4;
	margin-bottom: 12px;
}

.section-indicacao__card p {
	font-size: 1.72rem;
	font-weight: 300;
	color: var(--text-light);
	line-height: 1.4;
}

.section-indicacao__card p + p {
	margin-top: 12px;
}

.section-indicacao__card strong {
	color: var(--text);
	font-weight: 500;
}

.section-indicacao__mirror {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 300px;
	aspect-ratio: 0.48;
	margin: 0 auto;
	text-align: center;
}

.section-indicacao__mirror-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.section-indicacao__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.section-indicacao__item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.section-indicacao__item-body h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text);
}

.section-indicacao__item-body p {
	margin-top: 12px;
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-light);
}

.section-indicacao__icon {
	display: inline-flex;
	flex-shrink: 0;
	color: var(--gold-on-light);
}

.section-indicacao__icon img {
	width: 44px;
	height: 44px;
	object-fit: contain;
}

@media (max-width: 767.98px) {
	.section-indicacao__mirror {
		order: -1;
	}

	.section-indicacao__card {
		order: 0;
	}

	.section-indicacao__list {
		order: 1;
	}
}

@media (min-width: 768px) and (max-width: 1119.98px) {
	.section-indicacao__grid {
		grid-template-columns: 4fr 1fr;
		align-items: start;
		gap: 24px;
	}

	.section-indicacao__card {
		grid-column: auto;
	}

	.section-indicacao__mirror {
		grid-column: auto;
		order: 0;
		max-width: 100%;
		aspect-ratio: auto;
		align-self: stretch;
	}

	.section-indicacao__list {
		grid-column: 1 / -1;
	}
}

@media (min-width: 1120px) {
	.section-indicacao {
		padding-top: 120px;
		padding-bottom: 60px;
	}

	.section-indicacao__grid {
		grid-template-columns: minmax(280px, 1fr) minmax(240px, 0.9fr) minmax(340px, 1.2fr);
		align-items: start;
		gap: 32px;
	}

	.section-indicacao__card {
		position: relative;
		z-index: 0;
		align-self: center;
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: calc(100% + 209px);
		padding-right: 230px;
	}

	.section-indicacao__mirror {
		position: relative;
		z-index: 1;
		grid-column: auto;
		order: 0;
		max-width: 100%;
		aspect-ratio: auto;
		align-self: stretch;
		margin-left: -80px;
	}

	.section-indicacao__list {
		margin-left: -32px;
	}
}

/* ==========================================================================
   Home — Sobre ("O resultado mais bonito é aquele que ninguém nota.")
   ========================================================================== */

.section-sobre {
	padding-block: 80px;
	background-color: var(--white);
}

.section-sobre__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
}

.section-sobre__header {
	max-width: 900px;
}

.section-sobre__photo-left {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 0.829;
	border-radius: 20px;
	background-color: rgba(140, 130, 118, 0.5);
	text-align: center;
	overflow: hidden;
}

.section-sobre__title {
	margin-top: 20px;
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.25;
	color: var(--text);
}

.section-sobre__title span {
	display: block;
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-style: normal;
}

.section-sobre__title em {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 5.3vw, 3.875rem);
	font-style: italic;
	font-weight: 400;
}

.section-sobre__intro {
	max-width: 640px;
	margin-top: 28px;
}

.section-sobre__intro p {
	color: var(--text-light);
	font-size: 1.1rem;
	line-height: 1.75;
}

.section-sobre__intro p + p {
	margin-top: 18px;
}

.section-sobre__intro strong,
.section-sobre__credentials-text strong,
.section-sobre__cta strong {
	color: var(--text);
	font-weight: 600;
}

.section-sobre__credentials {
	max-width: 640px;
	margin-top: 44px;
}

.section-sobre__credentials-text h3 {
	font-family: var(--font-body);
	font-weight: 300;
	font-size: calc(var(--fs-h3) * 1.6);
	color: var(--text);
}

.section-sobre__credentials-text p {
	margin-top: 12px;
	color: var(--text-light);
	line-height: 1.75;
}

.section-sobre__cta {
	max-width: 640px;
	margin-top: 40px;
}

.section-sobre__cta p {
	color: var(--text-light);
	line-height: 1.75;
	margin-bottom: 40px;
}

.section-sobre__media {
	display: flex;
	flex-direction: column;
}

.section-sobre__photo--second {
	margin-top: 96px;
	margin-bottom: -120px;
}

.section-sobre__photo-img {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 0.62;
	border-radius: 24px;
	background-color: rgba(140, 130, 118, 0.5);
	text-align: center;
	overflow: hidden;
}

.section-sobre__photo-caption {
	margin-top: 16px;
}

.section-sobre__photo-caption strong {
	display: block;
	font-size: 1.1rem;
	color: var(--text);
	margin-bottom: 6px;
}

.section-sobre__photo-caption p {
	color: var(--text-light);
	font-size: 0.95rem;
	line-height: 1.6;
}

.section-sobre__photo-caption p strong {
	display: inline;
	font-size: inherit;
	margin-bottom: 0;
}

.section-sobre__photo-crm {
	display: block;
	margin-top: 8px;
	font-size: 0.8rem;
	color: var(--text-light);
}

.section-sobre__media-label {
	max-width: 160px;
	padding: 10px 14px;
	border: 1px dashed var(--gray-mid);
	border-radius: 4px;
	color: var(--white);
	font-size: 0.7rem;
	line-height: 1.4;
}

@media (max-width: 1119.98px) {
	/* Foto da esquerda some no mobile e no tablet; volta só no desktop. */
	.section-sobre__photo-left {
		display: none;
	}
}

@media (max-width: 767.98px) {
	/* No mobile fica só a foto com legenda/nome; a segunda some. */
	.section-sobre__photo--second {
		display: none;
	}
}

@media (min-width: 768px) and (max-width: 1119.98px) {
	.section-sobre__grid {
		grid-template-columns: 7fr 3fr;
		align-items: start;
		gap: 40px;
	}

	.section-sobre__header {
		grid-column: 1 / -1;
	}

	.section-sobre__photo--second {
		margin-top: 24px;
		margin-bottom: 0;
	}
}

@media (min-width: 1120px) {
	.section-sobre {
		padding-block: 120px;
	}

	.section-sobre__grid {
		grid-template-columns: 353px 1fr 353px;
		align-items: start;
		gap: 60px;
	}

	.section-sobre__header {
		grid-column: 1 / -1;
	}

	.section-sobre__photo-left {
		margin-top: 270px;
	}
}

/* ==========================================================================
   Home — Procedimentos ("Cada procedimento, pensado para o seu momento.")
   ========================================================================== */

.section-procedimentos {
	position: relative;
	padding-block: 80px;
	background-color: var(--section-bg-alt);
}

.section-procedimentos__grid {
	position: relative;
}

.section-procedimentos__header {
	max-width: 1030px;
}

.section-procedimentos__title {
	margin-top: 20px;
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.25;
	color: var(--text);
}

.section-procedimentos__title span {
	display: block;
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-style: normal;
}

.section-procedimentos__title em {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 5.3vw, 3.875rem);
	font-style: italic;
	font-weight: 400;
}

.section-procedimentos__subtitle {
	margin-top: 24px;
	color: var(--text-light);
	font-size: 1.645rem;
	line-height: 1.75;
}

.section-procedimentos__subtitle strong {
	color: var(--text);
	font-weight: 600;
}

.section-procedimentos__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	margin-top: 48px;
	padding: 0;
	list-style: none;
}

.section-procedimentos__item-img-link {
	display: block;
}

.section-procedimentos__item-img {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1.04;
	border-radius: 8px;
	background-color: rgba(140, 130, 118, 0.5);
	text-align: center;
	overflow: hidden;
}

.section-procedimentos__item h3 {
	margin-top: 20px;
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 25px;
	color: var(--text);
}

.section-procedimentos__item p {
	margin-top: 12px;
	color: var(--text-light);
	font-size: 1.1rem;
	line-height: 1.8;
}

.section-procedimentos__link {
	display: inline-block;
	margin-top: 14px;
	color: var(--text);
	font-size: 1.1rem;
	text-decoration: underline;
	text-underline-offset: 4px;
}

@media (min-width: 640px) {
	.section-procedimentos__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1120px) {
	.section-procedimentos {
		padding-top: 120px;
		padding-bottom: 48px;
	}

	.section-procedimentos__list {
		grid-template-columns: repeat(3, 1fr);
		gap: 48px 32px;
	}
}

.section-procedimentos__footer {
	display: flex;
	justify-content: center;
	margin-top: 56px;
}

/* ==========================================================================
   Home — Como funciona ("Da primeira conversa ao resultado que é seu.")
   ========================================================================== */

.section-como-funciona {
	padding-block: 80px;
	background-color: var(--section-bg-alt);
}

.section-como-funciona__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

.section-como-funciona__media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 0.704;
	border-radius: 20px;
	background-color: rgba(140, 130, 118, 0.5);
	text-align: center;
	overflow: hidden;
}

.section-como-funciona__title {
	margin-top: 20px;
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.25;
	color: var(--text);
}

.section-como-funciona__title span {
	display: block;
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-style: normal;
}

.section-como-funciona__title em {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 5.3vw, 3.875rem);
	font-style: italic;
	font-weight: 400;
}

.section-como-funciona__subtitle {
	margin-top: 24px;
	color: var(--text-light);
	font-size: 1.1rem;
	line-height: 1.75;
}

.section-como-funciona__steps {
	position: relative;
	margin-top: 44px;
	padding: 0;
	list-style: none;
}

.section-como-funciona__steps::before {
	content: "";
	position: absolute;
	top: 20px;
	bottom: 20px;
	left: 19px;
	width: 1px;
	background-color: var(--gray-mid);
}

.section-como-funciona__step {
	position: relative;
	display: flex;
	gap: 24px;
	padding-bottom: 40px;
}

.section-como-funciona__step:last-child {
	padding-bottom: 0;
}

.section-como-funciona__step-num {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border: 1px solid var(--gray-mid);
	border-radius: 50%;
	background-color: var(--white);
	font-family: var(--font-display);
	font-size: 1.1rem;
	color: var(--text);
}

.section-como-funciona__step-body h3 {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 25px;
	color: var(--text);
}

.section-como-funciona__step-body p {
	margin-top: 8px;
	color: var(--text-light);
	font-size: 1.1rem;
	line-height: 1.75;
}

@media (max-width: 1119.98px) {
	.section-como-funciona__media {
		display: none;
	}
}

@media (min-width: 1120px) {
	.section-como-funciona {
		padding-top: 48px;
		padding-bottom: 120px;
	}

	.section-como-funciona__grid {
		grid-template-columns: minmax(0, 560px) 1fr;
		align-items: end;
		gap: 96px;
	}
}

/* ==========================================================================
   Home — Diferenciais ("Uma paciente. Uma história. Uma decisão por vez.")
   ========================================================================== */

.section-diferenciais {
	padding-block: 80px;
	background-color: var(--section-bg-alt);
}

.section-diferenciais__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
}

.section-diferenciais__title {
	margin-top: 20px;
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.2;
	color: var(--text);
}

.section-diferenciais__title span {
	display: block;
	font-size: clamp(1.8rem, 3.6vw, 2.6rem);
	font-style: normal;
}

.section-diferenciais__title em {
	display: block;
	margin-top: 4px;
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 4.4vw, 3.25rem);
	font-style: italic;
	font-weight: 400;
}

.section-diferenciais__list {
	margin-top: 44px;
	padding: 0;
	list-style: none;
}

.section-diferenciais__item {
	padding: 32px 0;
	border-top: 1px solid var(--gray-mid);
}

.section-diferenciais__item:first-child {
	padding-top: 0;
}

.section-diferenciais__item:first-child {
	border-top: none;
}

.section-diferenciais__item h3 {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 25px;
	color: var(--text);
}

.section-diferenciais__item p {
	margin-top: 12px;
	color: var(--text-light);
	font-size: 1.1rem;
	line-height: 1.75;
}

.section-diferenciais__media {
	position: relative;
}

.section-diferenciais__photo {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 0.788;
	border-radius: 20px;
	background-color: rgba(140, 130, 118, 0.5);
	text-align: center;
	overflow: hidden;
}

.section-diferenciais__quote {
	position: relative;
	max-width: 320px;
	margin: 0 0 -40px 0;
	padding: 28px 28px 24px;
	border-radius: 16px;
	background-color: var(--white);
	box-shadow: 0 16px 40px rgba(26, 23, 20, 0.12);
}

@media (max-width: 767.98px) {
	.section-diferenciais__quote {
		margin-top: -100px;
	}
}

.section-diferenciais__quote p {
	color: var(--text-light);
	font-size: 1rem;
	line-height: 1.6;
}

.section-diferenciais__quote strong {
	color: var(--text);
	font-weight: 600;
}

@media (min-width: 768px) and (max-width: 1119.98px) {
	.section-diferenciais__grid {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
		grid-template-areas: "media content";
		align-items: start;
		gap: 48px;
	}

	.section-diferenciais__content {
		grid-area: content;
	}

	.section-diferenciais__media {
		grid-area: media;
		width: 100%;
	}

	.section-diferenciais__quote {
		margin-top: -100px;
	}
}

@media (min-width: 1120px) {
	.section-diferenciais {
		padding-top: 48px;
		padding-bottom: 120px;
	}

	.section-diferenciais__grid {
		grid-template-columns: minmax(0, 620px) 1fr;
		align-items: start;
		gap: 96px;
	}

	.section-diferenciais__quote {
		position: absolute;
		top: -40px;
		left: -60px;
		margin: 0;
		z-index: 1;
	}
}

/* ==========================================================================
   Home — FAQ ("Tem uma dúvida? Temos a resposta.")
   ========================================================================== */

.section-faq {
	padding-block: 80px;
	background-color: var(--section-bg-light);
}

.section-faq__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

.section-faq__media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 0.83;
	border-radius: 20px;
	background-color: rgba(140, 130, 118, 0.5);
	text-align: center;
	overflow: hidden;
}

.section-faq__title {
	margin-top: 20px;
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.25;
	color: var(--text);
}

.section-faq__title span {
	display: block;
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-style: normal;
}

.section-faq__title em {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 5.3vw, 3.875rem);
	font-style: italic;
	font-weight: 400;
}

.section-faq__list {
	margin-top: 44px;
}

.section-faq__item {
	border-top: 1px solid var(--gray-mid);
}

.section-faq__item:last-child {
	border-bottom: 1px solid var(--gray-mid);
}

.section-faq__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	padding: 24px 0;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
}

.section-faq__question {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.3rem;
	color: var(--text);
}

.section-faq__icon {
	position: relative;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
}

.section-faq__icon::before,
.section-faq__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: var(--text-light);
	transform: translate(-50%, -50%);
}

.section-faq__icon::before {
	width: 18px;
	height: 1px;
}

.section-faq__icon::after {
	width: 1px;
	height: 18px;
	transition: transform 0.2s ease;
}

.section-faq__item.is-open .section-faq__icon::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.section-faq__item.is-open .section-faq__icon::after {
	transform: translate(-50%, -50%) rotate(45deg);
}

.section-faq__answer {
	display: none;
	padding-bottom: 24px;
}

.section-faq__item.is-open .section-faq__answer {
	display: block;
}

.section-faq__answer p {
	max-width: 736px;
	color: var(--text-light);
	font-size: 0.935rem;
	line-height: 1.75;
}

@media (max-width: 1119.98px) {
	.section-faq__media {
		display: none;
	}
}

@media (min-width: 1120px) {
	.section-faq {
		padding-block: 120px;
	}

	.section-faq__grid {
		grid-template-columns: minmax(0, 500px) 1fr;
		align-items: start;
		gap: 96px;
	}
}

/* ==========================================================================
   Home — Depoimentos ("Histórias de mulheres que escolheram se reconectar.")
   ========================================================================== */

.section-depoimentos {
	padding-block: 80px;
	background-color: var(--section-bg-alt);
	overflow: hidden;
}

.section-depoimentos__header {
	max-width: 1030px;
}

.section-depoimentos__title {
	margin-top: 20px;
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.25;
	color: var(--text);
}

.section-depoimentos__title span {
	display: block;
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-style: normal;
}

.section-depoimentos__title em {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 5.3vw, 3.875rem);
	font-style: italic;
	font-weight: 400;
}

.section-depoimentos__subtitle {
	margin-top: 16px;
	color: var(--text-light);
	font-size: 1.645rem;
	line-height: 1.75;
}

.section-depoimentos__track-wrap {
	margin-top: 48px;
	overflow: hidden;
	cursor: grab;
	touch-action: pan-y;
	-webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
	mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.section-depoimentos__track-wrap.is-dragging {
	cursor: grabbing;
}

.section-depoimentos__track {
	display: flex;
	gap: 24px;
	width: max-content;
	will-change: transform;
	user-select: none;
}

.section-depoimentos__card {
	flex: 0 0 auto;
	scroll-snap-align: start;
	width: 391px;
	padding: 32px;
	border-radius: 20px;
	background-color: var(--white);
	box-shadow: 0 16px 40px rgba(26, 23, 20, 0.06);
}

.section-depoimentos__top {
	display: flex;
	align-items: center;
	gap: 14px;
}

.section-depoimentos__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: var(--gray-light);
	color: var(--text);
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.section-depoimentos__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-depoimentos__name {
	font-weight: 600;
	color: var(--text);
}

.section-depoimentos__stars {
	margin-top: 2px;
	color: var(--gold-on-light);
	font-size: 0.9rem;
	letter-spacing: 2px;
}

.section-depoimentos__date {
	margin-top: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--gray-light);
	color: var(--text-light);
	font-size: 0.85rem;
}

.section-depoimentos__headline {
	margin-top: 20px;
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--text);
}

.section-depoimentos__text {
	margin-top: 12px;
	color: var(--text-light);
	font-size: 0.95rem;
	line-height: 1.7;
}

@media (min-width: 1120px) {
	.section-depoimentos {
		padding-top: 120px;
		padding-bottom: 48px;
	}
}

/* ==========================================================================
   Home — Instagram ("Acompanhe no Instagram @dracamilahorr")
   ========================================================================== */

.section-instagram {
	padding-block: 80px;
	background-color: var(--section-bg-alt);
}

.section-instagram__title {
	max-width: 1030px;
	margin: 0 auto;
	text-align: center;
	font-family: var(--font-body);
	font-weight: 300;
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	line-height: 1.25;
	color: var(--text);
}

.section-instagram__title em {
	font-family: var(--font-body);
	font-style: italic;
	font-weight: 300;
}

.section-instagram__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4px;
	margin-top: 48px;
}

.section-instagram__item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 0.8;
	background-color: rgba(140, 130, 118, 0.5);
	text-align: center;
	overflow: hidden;
}

.section-instagram__play {
	position: absolute;
	top: 12px;
	right: 12px;
	color: var(--white);
	font-size: 0.8rem;
	opacity: 0.85;
}

.section-instagram__feed {
	margin-top: 48px;
}

.section-instagram__feed #sb_instagram {
	padding: 0 !important;
	max-width: none !important;
}

/* Tablet/mobile: vira carrossel horizontal (arrasta/desliza) em vez de
   empilhar um item embaixo do outro — mesmo espírito do carrossel de
   depoimentos. Sobrescreve o grid próprio do Smash Balloon nesses breakpoints. */
@media all and (max-width: 800px) {
	.section-instagram__feed #sbi_images {
		display: flex !important;
		flex-wrap: nowrap;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 12px !important;
		padding-inline: 20px;
	}

	.section-instagram__feed #sbi_images .sbi_item {
		flex: 0 0 auto !important;
		width: 46% !important;
		scroll-snap-align: start;
	}

	/* O plugin calcula a altura da foto via JS com base na largura "cheia"
	   do card (ele assume 1 coluna nesses breakpoints), o que destoa da
	   largura reduzida que usamos pro efeito de carrossel — sobrescrevemos
	   com aspect-ratio pra manter a proporção correta em vez do px inline. */
	.section-instagram__feed #sbi_images .sbi_photo {
		height: auto !important;
		aspect-ratio: 3 / 4;
	}

	.section-instagram__feed #sbi_images .sbi_photo img {
		height: 100% !important;
	}
}

@media all and (max-width: 480px) {
	.section-instagram__feed #sbi_images .sbi_item {
		width: 78% !important;
	}

	.section-instagram__feed #sbi_images .sbi_photo {
		aspect-ratio: 4 / 5;
	}
}

@media (min-width: 1120px) {
	.section-instagram {
		padding-top: 48px;
		padding-bottom: 60px;
	}

	.section-instagram__grid {
		grid-template-columns: repeat(6, 1fr);
	}
}

/* ==========================================================================
   Home — CTA final ("Dê o primeiro passo para a sua transformação.")
   ========================================================================== */

.section-cta-final {
	padding-block: 80px;
	background-color: var(--section-bg-light);
}

.section-cta-final__inner {
	max-width: 900px;
	margin-inline: auto;
	text-align: center;
}

.section-cta-final__title {
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.25;
	color: var(--text);
}

.section-cta-final__title span {
	display: block;
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-style: normal;
}

.section-cta-final__title em {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 5.3vw, 3.875rem);
	font-style: italic;
	font-weight: 400;
}

.section-cta-final__subtitle {
	max-width: 620px;
	margin: 24px auto 40px;
	color: var(--text-light);
	font-size: 1.1rem;
	line-height: 1.75;
}

/*
 * Mobile e tablet: duas seções consecutivas somam o padding inferior e
 * superior. Reduzir cada lado de 80px para 56px corta em 30% o espaço
 * percebido entre elas (160px -> 112px).
 */
@media (max-width: 1119.98px) {
	.section-indicacao,
	.section-sobre,
	.section-procedimentos,
	.section-como-funciona,
	.section-diferenciais,
	.section-faq,
	.section-depoimentos,
	.section-instagram,
	.section-cta-final {
		padding-block: 56px;
	}
}


@media (min-width: 1120px) {
	.section-cta-final {
		padding-block: 120px;
	}
}

/* ==========================================================================
   Página de Procedimento (single-procedimento.php)
   ========================================================================== */

.procedimento-hero {
	padding-block: 32px;
	background-color: var(--section-bg-light);
}

.procedimento-hero__grid {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: 40px;
}

@media (min-width: 768px) {
	.procedimento-hero__grid {
		grid-template-columns: 1fr 1fr;
		gap: 48px;
	}
}

.procedimento-hero__title {
	margin-top: 20px;
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(2.5rem, 6vw, 3.5rem);
	line-height: 1.15;
	color: var(--text);
}

.procedimento-hero__intro p {
	margin-top: 20px;
	color: var(--text-light);
	font-size: 1.05rem;
	line-height: 1.75;
}

.procedimento-hero__cta {
	margin-top: 30px;
	padding: 16px 32px;
	font-size: 0.92rem;
	background-color: #645442;
	transition: background-color 0.2s ease;
}

.procedimento-hero__cta:hover {
	background-color: #504335;
}

.procedimento-hero__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 610px;
	aspect-ratio: 610 / 700;
	margin-left: auto;
	border-radius: 20px;
	background-color: rgba(140, 130, 118, 0.5);
	text-align: center;
	overflow: hidden;
}

.procedimento-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.procedimento-hero__media iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (min-width: 1120px) {
	.procedimento-hero {
		padding-block: 70px 50px;
	}

	.procedimento-hero__grid {
		grid-template-columns: 1fr 1fr;
		gap: 80px;
	}

	.procedimento-hero__title {
		font-size: clamp(2rem, 4.5vw, 3.25rem);
	}

	.procedimento-hero__intro p {
		font-size: 1.3rem;
	}

	.procedimento-hero__media {
		z-index: 2;
		margin-bottom: -140px;
	}

	.contato-hero .procedimento-hero__media {
		margin-bottom: 0;
	}
}

/* ── Contato — bloco de localização e botões, dentro do hero ── */

.contato-hero__localizacao {
	margin-top: 36px;
	padding-top: 32px;
	border-top: 1px solid var(--gray-light);
}

.contato-hero__localizacao-label {
	display: block;
	color: var(--text);
	font-size: var(--fs-caption);
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.contato-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}

/* ── Título e texto de apoio, compartilhados entre as seções do procedimento ── */

.procedimento-section-title {
	margin-top: 20px;
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.25;
	color: var(--text);
}

.procedimento-section-title span {
	display: block;
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-style: normal;
}

.procedimento-section-title em {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 5.3vw, 3.875rem);
	font-style: italic;
	font-weight: 400;
}

.procedimento-section-text {
	margin-top: 16px;
	max-width: 1000px;
	color: var(--text-light);
	font-size: 1.3rem;
	line-height: 1.75;
	font-weight: 300;
}

/* ==========================================================================
   Procedimento — Para quem é indicada
   ========================================================================== */

.procedimento-indicacao {
	padding-block: 56px;
	background-color: var(--section-bg-alt);
}

.procedimento-indicacao__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-top: 32px;
}

.procedimento-indicacao__card-photo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 450px;
	aspect-ratio: 450 / 300;
	border-radius: 16px;
	background-color: rgba(140, 130, 118, 0.5);
	text-align: center;
	overflow: hidden;
	margin-bottom: 20px;
}

.procedimento-indicacao__card-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.procedimento-indicacao__card h3 {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 25px;
	line-height: 1.25;
	color: var(--text);
}

.procedimento-indicacao__card p {
	margin-top: 10px;
	color: var(--text-light);
	font-size: 1.1rem;
	line-height: 1.75;
}

.procedimento-indicacao__banner {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: 24px;
	margin-top: 36px;
}

.procedimento-indicacao__banner-photo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 700px;
	aspect-ratio: 700 / 317;
	border-radius: 20px;
	background-color: rgba(140, 130, 118, 0.5);
	text-align: center;
	overflow: hidden;
}

.procedimento-indicacao__banner-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.procedimento-indicacao__banner-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.procedimento-indicacao__banner-content h3 {
	font-family: var(--font-body);
	font-weight: 300;
	font-size: clamp(1.9rem, 4.1vw, 2.64rem);
	line-height: 1.2;
	color: var(--text);
}

.procedimento-indicacao__banner-content p {
	margin-top: 12px;
	color: var(--text-light);
	font-size: 1rem;
	line-height: 1.75;
}

@media (min-width: 768px) {
	.procedimento-indicacao__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.procedimento-indicacao__banner {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

	.procedimento-indicacao__banner-photo {
		max-width: none;
	}
}

@media (min-width: 1120px) {
	.procedimento-indicacao {
		padding-block: 90px;
	}

	.procedimento-indicacao__banner {
		grid-template-columns: 1fr 1fr;
		gap: 48px;
		margin-top: 48px;
	}
}

/* ==========================================================================
   Procedimento — Benefícios
   ========================================================================== */

.procedimento-beneficios {
	padding-top: 56px;
	padding-bottom: 22px;
	background-color: var(--section-bg-light);
}

.procedimento-beneficios__grid {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 32px;
}

@media (min-width: 768px) and (max-width: 1119.98px) {
	.procedimento-beneficios__grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		align-items: center;
		gap: 40px 32px;
	}

	.procedimento-beneficios__row--3 .procedimento-beneficios__text:last-child {
		grid-column: 1 / -1;
	}
}

.procedimento-beneficios__row {
	display: contents;
}

.procedimento-beneficios__photo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 305px;
	border-radius: 20px;
	background-color: rgba(140, 130, 118, 0.5);
	text-align: center;
	overflow: hidden;
}

.procedimento-beneficios__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.procedimento-beneficios__text h3 {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 25px;
	line-height: 1.25;
	color: var(--text);
}

.procedimento-beneficios__text p {
	margin-top: 12px;
	color: var(--text-light);
	font-size: 1.1rem;
	font-weight: 300;
	line-height: 1.75;
}

/* A partir daqui os itens fluem em tabuleiro: texto e foto de cada
   benefício ficam lado a lado na sequência (texto, foto, texto, foto...).
   Cada linha do tabuleiro tem sua própria proporção de larguras (não são
   colunas uniformes entre as linhas), reproduzindo em fr — fluido, mas
   proporcional aos valores em px do layout de referência:
   Linha 1 — Abdome plano e firme (415) · foto (450) · Correção da
     separação muscular (405)
   Linha 2 — foto (300) · Contorno lateral refinado (325) · foto (625)
   Linha 3 — Cicatriz baixa e planejada (365) · foto (450) · Liberdade
     para o abdome (410) */
@media (min-width: 1120px) {
	.procedimento-beneficios {
		padding-top: 90px;
		padding-bottom: 36px;
	}

	.procedimento-beneficios__grid {
		gap: 56px;
		margin-top: 48px;
	}

	.procedimento-beneficios__row {
		display: flex;
		align-items: center;
		gap: 48px;
	}

	.procedimento-beneficios__row--1 > :nth-child(1) { flex: 415 415 0; }
	.procedimento-beneficios__row--1 > :nth-child(2) { flex: 450 450 0; }
	.procedimento-beneficios__row--1 > :nth-child(3) { flex: 405 405 0; }

	.procedimento-beneficios__row--2 > :nth-child(1) { flex: 300 300 0; }
	.procedimento-beneficios__row--2 > :nth-child(2) { flex: 325 325 0; }
	.procedimento-beneficios__row--2 > :nth-child(3) { flex: 625 625 0; }

	.procedimento-beneficios__row--3 > :nth-child(1) { flex: 365 365 0; }
	.procedimento-beneficios__row--3 > :nth-child(2) { flex: 450 450 0; }
	.procedimento-beneficios__row--3 > :nth-child(3) { flex: 410 410 0; }
}

/* ==========================================================================
   Procedimento — Como funciona
   ========================================================================== */

.procedimento-como-funciona {
	padding-top: 22px;
	padding-bottom: 56px;
	background-color: var(--section-bg-light);
}

.procedimento-como-funciona__grid {
	display: grid;
	grid-template-columns: 1fr;
	margin-top: 32px;
}

.procedimento-como-funciona__item {
	padding-block: 28px;
	border-top: 1px solid var(--gray-mid);
}

.procedimento-como-funciona__item:first-child {
	border-top: none;
	padding-top: 0;
}

.procedimento-como-funciona__num {
	font-family: var(--font-display);
	font-style: italic;
	color: var(--gold-on-light);
}

.procedimento-como-funciona__item h3 {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 25px;
	line-height: 1.25;
	color: var(--text);
}

.procedimento-como-funciona__item p {
	margin-top: 10px;
	color: var(--text-light);
	font-size: 1.1rem;
	line-height: 1.75;
}

/* Box geral: só agrupa e alinha os dois lados, sem fundo/borda próprios
   — cada lado (texto/foto) cuida da sua própria aparência. */
.procedimento-como-funciona__highlight {
	display: grid;
	grid-template-columns: 1fr;
	margin-top: 32px;
}

.procedimento-como-funciona__highlight-photo {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	aspect-ratio: 16 / 10;
	text-align: center;
	overflow: hidden;
}

/* Essa foto não é um retrato qualquer: já vem pronta do design com o
   "box branco arredondado" desenhado dentro do próprio arquivo, simulando
   a continuação do card de texto. Por isso não pode ser recortada
   (object-fit: cover) — precisa aparecer inteira, no tamanho/proporção
   natural dela, sem esticar a altura do card da esquerda, e limitada a
   540px de largura (o resto do espaço fica sem fundo colorido). */
.procedimento-como-funciona__highlight-photo img {
	display: block;
	width: 100%;
	max-width: 540px;
	height: auto;
}

@media (min-width: 768px) and (max-width: 1119.98px) {
	.procedimento-como-funciona__highlight-photo {
		display: none;
	}
}

.procedimento-como-funciona__highlight-content {
	background-color: var(--white);
	border-radius: 20px;
	padding: 32px;
}

.procedimento-como-funciona__highlight-content .procedimento-como-funciona__num {
	color: var(--gold-on-light);
}

.procedimento-como-funciona__highlight-content h3 {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 25px;
	line-height: 1.25;
	color: #514E48;
}

.procedimento-como-funciona__highlight-content p {
	margin-top: 10px;
	color: #514E48;
	font-size: 1.1rem;
	line-height: 1.75;
}

@media (min-width: 1120px) {
	.procedimento-como-funciona {
		padding-top: 36px;
		padding-bottom: 90px;
	}

	.procedimento-como-funciona__grid {
		grid-template-columns: 1fr 1fr;
		column-gap: 64px;
	}

	.procedimento-como-funciona__item:nth-child(2) {
		border-top: none;
		padding-top: 0;
	}

	.procedimento-como-funciona__item:nth-child(n+3) {
		border-top: 1px solid var(--gray-mid);
	}

	/* Box geral: só agrupa e recorta os cantos arredondados. Não define
	   altura — quem manda na altura de cada lado é o próprio box (conteúdo
	   ou foto), de forma independente, pra ajustar um sem afetar o outro. */
	.procedimento-como-funciona__highlight {
		position: relative;
		z-index: 2;
		grid-template-columns: 1fr 540px;
		align-items: end;
		margin-top: 48px;
		margin-bottom: -110px;
	}

	/* Box da foto: altura própria, natural da imagem (ver regra base do
	   <img>, que já limita a 540px de largura). Independente do texto. */
	.procedimento-como-funciona__highlight-photo {
		aspect-ratio: auto;
		height: auto;
	}

	/* Box do texto: altura fixa de 274px (não só um teto), pra sempre bater
	   com a altura da foto ao lado. Independente da foto. Arredonda só o
	   lado esquerdo — o direito cola direto na foto, sem emenda. */
	.procedimento-como-funciona__highlight-content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 274px;
		padding: 48px;
		border-radius: 20px 0 0 20px;
		overflow: hidden;
	}
}

/* ==========================================================================
   Procedimento — Recuperação
   ========================================================================== */

.procedimento-recuperacao {
	padding-block: 56px;
	background-color: var(--section-bg-alt);
}

.procedimento-recuperacao__intro {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: 32px;
}

.procedimento-recuperacao__intro-content .procedimento-section-title,
.procedimento-recuperacao__intro-content .procedimento-section-text {
	max-width: 100%;
}

.procedimento-recuperacao__intro-photo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 625px;
	aspect-ratio: 625 / 270;
	border-radius: 20px;
	background-color: rgba(140, 130, 118, 0.5);
	text-align: center;
	overflow: hidden;
}

.procedimento-recuperacao__intro-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (min-width: 1120px) {
	.procedimento-recuperacao__intro {
		grid-template-columns: minmax(0, 700px) 1fr;
		gap: 48px;
	}

	.procedimento-recuperacao__intro-content {
		max-width: 700px;
	}
}

.procedimento-recuperacao__table {
	width: 100%;
	margin-top: 32px;
	border-collapse: collapse;
	table-layout: fixed;
	font-size: 0.9rem;
}

.procedimento-recuperacao__table th:nth-child(1) {
	width: 18%;
}

.procedimento-recuperacao__table th:nth-child(2) {
	width: 32%;
}

.procedimento-recuperacao__table th:nth-child(3) {
	width: 50%;
}

.procedimento-recuperacao__table thead {
	background-color: #A5907A;
	color: var(--white);
}

.procedimento-recuperacao__table th {
	padding: 16px 20px;
	font-size: 1rem;
	font-weight: 300;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-align: center;
}

.procedimento-recuperacao__table td {
	padding: 32px 20px;
	border-bottom: 1px solid var(--gray-mid);
	color: var(--text-light);
	font-size: 1.2rem;
	line-height: 1.6;
	vertical-align: middle;
	text-align: center;
}

.procedimento-recuperacao__table td:first-child {
	font-weight: 600;
	color: var(--text);
	white-space: nowrap;
}

.procedimento-recuperacao__table td:nth-child(2) {
	font-weight: 500;
	color: var(--text);
}

.procedimento-recuperacao__table td:nth-child(3) {
	text-align: left;
}

.procedimento-recuperacao__table tbody tr:last-child td {
	border-bottom: none;
}

.procedimento-recuperacao__aviso {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin-top: 32px;
	padding: 42px;
	background-color: #514E48;
	color: var(--white);
}

.procedimento-recuperacao__aviso-titulo {
	font-family: var(--font-display);
	font-weight: 400;
	font-style: italic;
	font-size: 52.5px;
	line-height: 1.2;
	color: var(--white);
}

.procedimento-recuperacao__aviso-texto {
	max-width: 88%;
	margin-left: auto;
	text-align: left;
	font-size: 17.5px;
	font-weight: 300;
	line-height: 1.5;
	color: var(--white);
}

@media (max-width: 767.98px) {
	.procedimento-recuperacao__aviso {
		text-align: center;
	}

	.procedimento-recuperacao__aviso-texto {
		max-width: 100%;
		margin-left: 0;
		text-align: center;
	}
}

@media (min-width: 768px) {
	.procedimento-recuperacao__aviso {
		grid-template-columns: auto 1fr;
		align-items: center;
		gap: 64px;
	}
}

@media (max-width: 767.98px) {
	.procedimento-recuperacao__table thead {
		display: none;
	}

	.procedimento-recuperacao__table,
	.procedimento-recuperacao__table tbody,
	.procedimento-recuperacao__table tr,
	.procedimento-recuperacao__table td {
		display: block;
		width: 100%;
	}

	.procedimento-recuperacao__table tr {
		margin-top: 16px;
		padding: 20px;
		border-radius: 12px;
		background-color: var(--section-bg-light);
	}

	.procedimento-recuperacao__table tbody tr:nth-child(even) {
		background-color: var(--section-bg-light);
	}

	.procedimento-recuperacao__table td {
		padding: 6px 0;
		border-bottom: none;
		text-align: left;
	}

	.procedimento-recuperacao__table td::before {
		content: attr(data-label);
		display: block;
		margin-bottom: 4px;
		font-size: 0.7rem;
		font-weight: 600;
		letter-spacing: 0.05em;
		text-transform: uppercase;
		color: var(--gold-on-light);
	}
}

@media (min-width: 1120px) {
	.procedimento-recuperacao {
		padding-block: 90px;
	}
}

/* ==========================================================================
   Home — imagens reais dentro dos placeholders (ACF)
   Os containers abaixo foram desenhados só pra centralizar o texto de
   placeholder; ao vir uma imagem real da ACF, ela precisa preencher 100%
   do container recortado (object-fit: cover) em vez do tamanho natural.
   ========================================================================== */

.section-sobre__photo-left img,
.section-sobre__photo-img img,
.section-procedimentos__item-img img,
.section-como-funciona__media img,
.section-diferenciais__photo img,
.section-faq__media img,
.section-instagram__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Hero: a imagem ocupa 100% do fundo sem faixas nas laterais; quando o
   recorte precisa cortar largura, ancora à direita (onde geralmente está
   a pessoa/foco da foto) em vez de cortar dos dois lados igualmente. */
.hero-home__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	padding-block: 56px 32px;
	background-color: var(--dark);
	color: var(--gray-light);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
}

.site-footer__brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

/* No tablet/mobile, o rodapé mostra só a marca e o contato — as colunas de
   Procedimentos e Clínica ficam reservadas pro desktop. */
.site-footer__col--procedimentos,
.site-footer__col--clinica {
	display: none;
}

.site-footer__logo-img {
	height: 34px;
	width: auto;
}

.site-footer__desc {
	margin-top: 18px;
	max-width: 30ch;
	font-size: var(--fs-body-sm);
	line-height: 1.7;
	color: var(--gray-light);
	opacity: 0.75;
}

.site-footer__crm {
	margin-top: 14px;
	font-size: var(--fs-caption);
	line-height: 1.6;
	color: var(--gray-light);
	opacity: 0.6;
}

.site-footer__heading {
	margin: 0 0 20px;
	font-family: var(--font-body);
	font-size: var(--fs-caption);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gold);
}

.site-footer__links {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--fs-body-sm);
}

.site-footer__links a {
	color: var(--gray-light);
	opacity: 0.8;
	text-decoration: none;
	transition: opacity 0.2s ease, color 0.2s ease;
}

.site-footer__links a:hover {
	opacity: 1;
	color: var(--gold);
}

.site-footer__address {
	max-width: 100%;
	line-height: 1.6;
	opacity: 0.8;
}

.site-footer__links--multicol {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(5, auto);
	column-gap: 40px;
	row-gap: 14px;
}

.site-footer__socials {
	display: flex;
	gap: 16px;
	margin-top: 24px;
}

.site-footer__social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--gray-light);
	border-radius: 50%;
	color: var(--gray-light);
	opacity: 0.85;
	transition: opacity 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-footer__social-icon svg {
	width: 17px;
	height: 17px;
}

.site-footer__social-icon:hover {
	opacity: 1;
	border-color: var(--gold);
	color: var(--gold);
}

.site-footer__bottom {
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid rgba(232, 226, 219, 0.15);
}

.site-footer__copy {
	font-size: 0.75rem;
	opacity: 0.6;
}

@media (max-width: 639.98px) {
	.site-footer__grid {
		justify-items: center;
		text-align: center;
	}

	.site-footer__brand {
		align-items: center;
	}

	.site-footer__col--contato .site-footer__links {
		align-items: center;
	}

	.site-footer__socials {
		justify-content: center;
	}

	.site-footer__bottom {
		text-align: center;
	}
}

@media (min-width: 640px) {
	.site-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1120px) {
	.site-footer {
		padding-block: 80px 40px;
	}

	.site-footer__grid {
		grid-template-columns: 1.2fr 1.8fr 0.9fr 1.27fr;
		gap: 64px;
	}

	.site-footer__col--procedimentos,
	.site-footer__col--clinica {
		display: block;
	}
}

/* ==========================================================================
   Hero — Sobre
   ========================================================================== */

.section-label--ghost {
	background-color: var(--white);
	color: var(--dark);
}

.sobre-hero {
	position: relative;
	display: flex;
	align-items: stretch;
	min-height: 560px;
	padding: 70px 0 0;
	background-color: var(--dark);
	background-size: cover;
	background-position: center;
	color: var(--white);
}

.sobre-hero__grid {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.sobre-hero__content {
	max-width: 620px;
}

@media (min-width: 900px) and (max-width: 1399.98px) {
	.sobre-hero__content {
		max-width: clamp(320px, 52vw, 560px);
	}
}

.sobre-hero__title {
	margin-top: 16px;
	font-family: var(--font-display);
	font-weight: 400;
	font-size: var(--fs-display);
	line-height: 1.05;
}

.sobre-hero__intro {
	max-width: 560px;
	margin-top: 24px;
	font-size: var(--fs-body-sm);
	line-height: 1.75;
	opacity: 0.92;
}

.sobre-hero__cta {
	margin-top: 32px;
}

.sobre-hero__media {
	display: block;
	align-self: center;
	width: min(70%, 337px);
	aspect-ratio: 617 / 692;
	margin-top: 32px;
}

.sobre-hero__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (min-width: 900px) {
	.sobre-hero {
		min-height: 760px;
		padding-top: 160px;
		padding-bottom: 0;
	}

	.sobre-hero__grid {
		flex-direction: row;
	}

	.sobre-hero__media {
		display: block;
		position: relative;
		align-self: flex-end;
		flex: 0 1 min(40vw, 617px);
		width: min(40vw, 617px);
		aspect-ratio: 617 / 692;
		margin-left: 56px;
	}

	.sobre-hero__media img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
}

/* Tablet (menu ainda em hambúrguer): banner mais próximo do menu — o
   padding-top de desktop (160px) ficava exagerado com o header compacto. */
@media (min-width: 900px) and (max-width: 1119.98px) {
	.sobre-hero {
		padding-top: 48px;
	}

	.sobre-hero__grid {
		gap: 24px;
	}

	.sobre-hero__content,
	.sobre-hero__media {
		flex: 1 1 0;
		width: auto;
		max-width: none;
		margin-left: 0;
	}
}

/* ==========================================================================
   Sobre — Frase (manifesto)
   ========================================================================== */

.sobre-manifesto {
	background-color: var(--section-bg-light);
	padding: 72px 0;
}

.sobre-manifesto__inner {
	max-width: 900px;
	margin-inline: auto;
	text-align: center;
}

.sobre-manifesto__title {
	font-weight: 400;
	line-height: 1.25;
	color: var(--text);
}

.sobre-manifesto__title span {
	display: block;
	font-family: var(--font-body);
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-style: normal;
	font-weight: 300;
}

.sobre-manifesto__title em {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 5.3vw, 3.875rem);
	font-style: italic;
	font-weight: 400;
}

.sobre-manifesto__text {
	max-width: 780px;
	margin: 32px auto 0;
	color: var(--text-light);
	font-size: 1.32rem;
	line-height: 1.75;
}

.sobre-manifesto__text strong {
	color: var(--text);
	font-weight: 600;
}

.sobre-manifesto__text p + p {
	margin-top: 18px;
}

.sobre-manifesto__divider {
	display: block;
	width: 1px;
	height: 48px;
	margin: 40px auto;
	background-color: var(--gray-mid);
}

@media (min-width: 900px) {
	.sobre-manifesto {
		padding: 96px 0;
	}
}

/* ==========================================================================
   Sobre — Formação e credenciais
   ========================================================================== */

.sobre-formacao {
	--sobre-formacao-h: 480px;
	position: relative;
	min-height: var(--sobre-formacao-h);
	padding: 48px 0;
	background-color: var(--gray-light);
	background-size: cover;
	background-position: center;
}

.sobre-formacao__grid {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: var(--sobre-formacao-h);
	gap: 32px;
}

.sobre-formacao__content {
	max-width: 720px;
}

.sobre-formacao__title {
	margin-top: 16px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--text);
}

.sobre-formacao__title span {
	display: block;
	font-family: var(--font-body);
	font-size: clamp(2.3rem, 4.7vw, 3.25rem);
	font-style: normal;
	font-weight: 300;
}

.sobre-formacao__title em {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 5.5vw, 3.75rem);
	font-style: italic;
	font-weight: 400;
}

.sobre-formacao__text {
	max-width: 620px;
	margin-top: 24px;
	color: var(--text-light);
	font-size: 1.43rem;
	line-height: 1.7;
}

.sobre-formacao__text strong {
	color: var(--text);
	font-weight: 600;
}

.sobre-formacao__media {
	display: none;
}

@media (min-width: 900px) {
	.sobre-formacao {
		--sobre-formacao-h: 550px;
		padding: 0;
	}

	.sobre-formacao__grid {
		flex-direction: row;
		align-items: center;
		justify-content: flex-end;
		gap: 0;
	}

	.sobre-formacao__media {
		display: block;
		position: relative;
		align-self: stretch;
		flex: 0 0 min(34vw, 335px);
		width: min(34vw, 335px);
	}

	.sobre-formacao__media img {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: bottom left;
	}

	.sobre-formacao__content {
		padding-left: 56px;
	}
}

@media (min-width: 1400px) {
	.sobre-formacao__media {
		flex-basis: 335px;
		width: 335px;
	}
}

/* ==========================================================================
   Sobre — Diferenciais no atendimento
   ========================================================================== */

.sobre-diferenciais {
	padding: 72px 0;
	background-color: var(--section-bg-light);
}

.section-label--dark {
	background-color: #4A4A4A;
	color: var(--white);
}

.sobre-diferenciais__header {
	max-width: 860px;
	margin-inline: auto;
	text-align: center;
}

.sobre-diferenciais__title {
	margin-top: 20px;
	font-weight: 400;
	line-height: 1.25;
	color: var(--text);
}

.sobre-diferenciais__title span {
	display: block;
	font-family: var(--font-body);
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-style: normal;
	font-weight: 300;
}

.sobre-diferenciais__title em {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 5.3vw, 3.875rem);
	font-style: italic;
	font-weight: 400;
}

.sobre-diferenciais__subtitle {
	margin-top: 20px;
	color: var(--text-light);
	font-size: 1.1rem;
	line-height: 1.7;
}

.sobre-diferenciais__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	margin-top: 48px;
}

.sobre-diferenciais__photo {
	aspect-ratio: 450 / 300;
	border-radius: 20px;
	overflow: hidden;
}

.sobre-diferenciais__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sobre-diferenciais__card-title {
	margin-top: 24px;
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 2.1rem;
	line-height: 1.3;
	color: var(--text);
}

.sobre-diferenciais__card-text {
	margin-top: 14px;
	color: var(--text-light);
	font-size: 1.15rem;
	line-height: 1.75;
}

@media (min-width: 900px) {
	.sobre-diferenciais {
		padding: 96px 0;
	}

	.sobre-diferenciais__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 32px;
		margin-top: 56px;
	}
}

/* ==========================================================================
   Sobre — A Clínica
   ========================================================================== */

.sobre-clinica {
	padding: 72px 0;
	background-color: var(--section-bg-light);
}

.sobre-clinica__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}

.sobre-clinica__title {
	margin-top: 20px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--text);
}

.sobre-clinica__title span {
	display: block;
	font-family: var(--font-body);
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-style: normal;
	font-weight: 300;
}

.sobre-clinica__title em {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.3rem, 4.8vw, 3.5rem);
	font-style: italic;
	font-weight: 400;
}

.sobre-clinica__text {
	max-width: 480px;
	margin-top: 24px;
	color: var(--text-light);
	font-size: 1.1rem;
	line-height: 1.75;
}

.sobre-clinica__text strong {
	color: var(--text);
	font-weight: 600;
}

.sobre-clinica__endereco {
	max-width: 480px;
	margin-top: 28px;
	color: var(--text);
	font-size: 1.2rem;
	line-height: 1.5;
}

.sobre-clinica__media {
	border-radius: 20px;
	overflow: hidden;
}

.sobre-clinica__media img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

@media (min-width: 900px) {
	.sobre-clinica {
		padding: 96px 0;
	}

	.sobre-clinica__grid {
		grid-template-columns: 1fr 1fr;
		gap: 64px;
	}

	.sobre-clinica__media img {
		max-width: 740px;
		max-height: 830px;
	}
}

/* ==========================================================================
   Contato — bloco de localização (texto, dentro de .contato-hero__localizacao)
   ========================================================================== */

.contato-mapa__endereco {
	max-width: 420px;
	margin-top: 12px;
	color: var(--text-light);
	font-size: 1.1rem;
	line-height: 1.7;
}

.contato-mapa__whatsapp {
	margin-top: 12px;
	color: var(--text);
	font-size: 1.1rem;
	font-weight: 600;
}

.contato-mapa__whatsapp a:hover {
	color: var(--gold-on-light);
}

