/* =========================================================
   Casa Gaya Medicina e Fisioterapia — by Amedi
   Design system mobile-first
   Paleta da marca: verde oliva escuro + verde-folha (2 tons),
   com dourado como cor de destaque/contraste.
   ========================================================= */

/* ===== Tokens ===== */
:root {
	/* Verde — base da marca (oliva escuro -> folhas) */
	--c-green-950: #10160a;
	--c-green-900: #1b2412;
	--c-green-800: #2c3a1c;
	--c-green-700: #3f5225;
	--c-green-600: #556b2f;
	--c-green-500: #3d8672;
	--c-green-300: #8fc1ac;
	--c-green-100: #d9ebe1;
	--c-green-50:  #eef6f1;

	/* Dourado — destaque/contraste */
	--c-gold-700: #a9752b;
	--c-gold-600: #c88f3c;
	--c-gold-500: #e9a34d;
	--c-gold-400: #efb873;
	--c-gold-100: #fbe8cf;
	--c-gold-50:  #fdf3e6;

	/* Neutros */
	--c-bg: #fbf8f4;
	--c-white: #ffffff;
	--c-ink: #1a2620;
	--c-muted: #55655c;
	--c-line: rgba(26, 38, 32, .12);

	--grad-green: linear-gradient(160deg, var(--c-green-900) 0%, var(--c-green-700) 55%, var(--c-green-500) 100%);
	--grad-soft: linear-gradient(170deg, var(--c-green-50) 0%, var(--c-bg) 70%);

	--radius: 18px;
	--radius-sm: 12px;
	--shadow: 0 8px 24px rgba(18, 48, 36, .10);
	--shadow-lg: 0 22px 54px rgba(11, 31, 22, .28);
	--container: 1140px;

	--font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
	--font-body: 'Plus Jakarta Sans', 'Segoe UI', Roboto, system-ui, -apple-system, Arial, sans-serif;
}

/* ===== Base (mobile-first) ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	color: var(--c-ink);
	background: var(--c-bg);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; margin: 0 0 .5em; font-weight: 600; }
h1 { font-size: clamp(1.85rem, 6.2vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 4.6vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 3.4vw, 1.4rem); }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--c-gold-500); outline-offset: 2px; border-radius: 4px; }
.icon { width: 1.15em; height: 1.15em; flex: none; }

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 20px;
}
.screen-reader-text { position: absolute; left: -9999px; }
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--c-green-800);
	color: #fff;
	padding: 10px 16px;
	z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

.eyebrow {
	display: inline-block;
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--c-gold-700);
	margin-bottom: 10px;
}
.section--dark .eyebrow { color: var(--c-gold-400); }

/* ===== Botões ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .55em;
	padding: 14px 22px;
	border-radius: 999px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	border: 1.5px solid transparent;
	transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--small { padding: 10px 16px; font-size: .92rem; }
.btn--whatsapp { background: var(--c-gold-500); color: #fff; box-shadow: var(--shadow); }
.btn--whatsapp:hover { background: var(--c-gold-700); }
.btn--blue { background: var(--c-gold-500); color: #fff; }
.btn--blue:hover { background: var(--c-gold-700); }
.btn--ghost { border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); }
.section--light .btn--ghost, .section--soft .btn--ghost, .section--wood .btn--ghost { border-color: var(--c-green-700); color: var(--c-green-800); }
.section--light .btn--ghost:hover, .section--soft .btn--ghost:hover, .section--wood .btn--ghost:hover { background: var(--c-green-50); }
.btn--calendar { background: var(--c-gold-500); color: #fff; cursor: pointer; font: inherit; }
.btn--calendar:hover { background: var(--c-gold-700); }
.section--dark .btn--calendar { background: #fff; color: var(--c-green-900); }
.section--dark .btn--calendar:hover { background: var(--c-green-50); }

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: .4em;
	font-weight: 600;
	text-decoration: none;
	color: var(--c-gold-500);
}
.link-arrow:hover { color: var(--c-gold-700); }
.link-arrow .icon { transition: transform .15s ease; }
.link-arrow:hover .icon { transform: translateX(3px); }

/* ===== Header ===== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(251, 248, 244, .95);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid transparent;
	transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow); border-color: var(--c-line); }
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 68px;
}
.site-logo { text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
.site-logo__text {
	font-family: var(--font-head);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.1;
	color: var(--c-green-900);
}
.site-logo__text small {
	display: block;
	font-family: var(--font-body);
	font-size: .62rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--c-gold-600);
}
.site-logo--custom img { max-height: 50px; width: auto; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0 10px;
	background: none;
	border: 1px solid var(--c-line);
	border-radius: 12px;
	cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--c-green-900); border-radius: 2px; }

.primary-nav {
	position: absolute;
	inset: 100% 0 auto 0;
	display: none;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	padding: 16px 20px 24px;
	background: var(--c-bg);
	border-bottom: 1px solid var(--c-line);
	box-shadow: var(--shadow);
}
.primary-nav.is-open { display: flex; }
.primary-nav__list {
	display: flex;
	flex-direction: column;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.primary-nav__list a {
	display: block;
	padding: 11px 0;
	text-decoration: none;
	font-weight: 500;
	color: var(--c-ink);
	border-bottom: 1px solid var(--c-line);
}
.primary-nav__list .current-menu-item > a,
.primary-nav__list .is-current > a { color: var(--c-green-700); font-weight: 700; }
.primary-nav .btn { margin-top: 10px; }

@media (min-width: 940px) {
	.nav-toggle { display: none; }
	.site-header__inner { min-height: 78px; }
	.site-logo__text { font-size: 1.45rem; }
	.primary-nav {
		position: static;
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 24px;
		padding: 0;
		background: none;
		border: 0;
		box-shadow: none;
	}
	.primary-nav__list { flex-direction: row; align-items: center; gap: 22px; }
	.primary-nav__list a {
		padding: 6px 0;
		border-bottom: 2px solid transparent;
	}
	.primary-nav__list a:hover { border-color: var(--c-gold-500); }
	.primary-nav .btn { margin-top: 0; }
}

/* ===== Seções ===== */
.section { padding: 56px 0; }
.section--light { background: var(--c-bg); }
.section--soft { background: var(--grad-soft); }
.section--wood { background: var(--c-gold-50); }
.section--dark { background: var(--grad-green); color: rgba(255, 255, 255, .9); }
.section--dark h2, .section--dark h3, .section--dark .section__title { color: #fff; }
.section__head { max-width: 720px; margin-bottom: 28px; }
.section__title { color: var(--c-green-900); }
.section__lead { font-size: 1.05rem; color: var(--c-muted); }
.section--dark .section__lead { color: rgba(255, 255, 255, .82); }
.section__image { display: block; width: 100%; height: auto; border-radius: 16px; margin-bottom: 28px; object-fit: cover; }

.section__head-row { display: flex; flex-direction: column-reverse; gap: 24px; margin-bottom: 28px; }
.section__head-row .section__head { margin-bottom: 0; }
.section__image-fig { margin: 0; flex-shrink: 0; }
.section__image--side { width: 100%; height: 300px; margin-bottom: 0; }
.section__image-fig figcaption {
	margin-top: 8px;
	text-align: center;
	font-size: .85rem;
	font-weight: 600;
	color: var(--c-muted);
}

@media (min-width: 780px) {
	.section__head-row { flex-direction: row; align-items: flex-start; }
	.section__head-row .section__head { flex: 1; }
	.section__image-fig--side { width: 260px; }
	.section__image-fig--side .section__image--side { width: 260px; }
}

@media (min-width: 780px) {
	.section { padding: 84px 0; }
	.section__head { margin-bottom: 40px; }
}

/* ===== Hero ===== */
.hero {
	background: var(--grad-green);
	color: #fff;
	padding: 56px 0 60px;
	position: relative;
	overflow: hidden;
}
.hero::after {
	content: "";
	position: absolute;
	right: -120px;
	bottom: -140px;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .07);
}
.hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	gap: 32px;
}
.hero__content { max-width: 620px; }
.hero__media { display: flex; justify-content: center; flex: none; }
.hero__logo {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid rgba(255, 255, 255, .85);
	box-shadow: var(--shadow-lg);
}
.hero__title { color: #fff; }
.hero__text { font-size: 1.05rem; color: rgba(255, 255, 255, .88); }
.hero__actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin-top: 26px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .2);
	font-size: .9rem;
	color: rgba(255, 255, 255, .78);
}
.hero__meta span { display: inline-flex; align-items: center; gap: .45em; }

@media (min-width: 620px) {
	.hero { padding: 84px 0 90px; }
	.hero__actions { flex-direction: row; flex-wrap: wrap; }
	.hero__logo { width: 180px; height: 180px; }
}

@media (min-width: 900px) {
	.hero__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 48px; }
	.hero__content { max-width: 600px; }
	.hero__logo { width: 260px; height: 260px; border-width: 6px; }
}

/* Cabeçalho interno das páginas */
.page-hero {
	background: var(--grad-green);
	color: #fff;
	padding: 48px 0 52px;
}
.page-hero__title { color: #fff; margin-bottom: .35em; }
.page-hero__lead { color: rgba(255, 255, 255, .86); max-width: 62ch; margin: 0; }
.breadcrumb {
	font-size: .84rem;
	color: rgba(255, 255, 255, .68);
	margin-bottom: 14px;
}
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

@media (min-width: 780px) { .page-hero { padding: 72px 0 76px; } }

/* ===== Cards ===== */
.card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}
@media (min-width: 620px) { .card-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (min-width: 960px) {
	.card-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
	.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
	.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
}
.card--flat { box-shadow: none; }
.card__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.card__body { padding: 22px; display: flex; flex-direction: column; gap: 6px; }
.card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: var(--c-green-50);
	color: var(--c-green-700);
	margin-bottom: 8px;
	font-size: 1.15rem;
}
.card__icon--blue { background: var(--c-gold-100); color: var(--c-gold-700); }
.card__icon--orange { background: var(--c-gold-100); color: var(--c-gold-700); }
.card__icon--wood { background: var(--c-gold-100); color: var(--c-gold-700); }
.card__meta { font-size: .85rem; color: var(--c-muted); margin: 0; }
.card__title { font-size: 1.2rem; margin: 0 0 .2em; color: var(--c-green-900); }
.card__title a { text-decoration: none; }
.card__title a:hover { color: var(--c-green-700); }
.card__excerpt, .card__body p { color: var(--c-muted); margin: 0 0 .6em; }
.card__body p:last-child { margin-bottom: 0; }
.card .link-arrow { margin-top: auto; padding-top: 10px; }

/* Cartão de destaque (perfil das profissionais) */
.profile {
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-left: 4px solid var(--c-green-600);
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: var(--shadow);
	margin-bottom: 22px;
}
.profile__role {
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--c-gold-600);
	margin-bottom: 6px;
}
.profile__name { margin-bottom: .35em; color: var(--c-green-900); }
.profile__crm {
	display: inline-block;
	margin-top: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--c-green-50);
	color: var(--c-green-800);
	font-size: .85rem;
	font-weight: 600;
}

/* ===== Espaços de imagem ===== */
.media-slot {
	aspect-ratio: var(--slot-ratio, 4 / 3);
	border-radius: var(--radius-sm);
	overflow: hidden;
	margin-bottom: 16px;
}
.media-slot--filled img { width: 100%; height: 100%; object-fit: cover; }
.media-slot--empty {
	display: grid;
	place-items: center;
	padding: 16px;
	text-align: center;
	background:
		repeating-linear-gradient(135deg, var(--c-green-50) 0 12px, var(--c-gold-50) 12px 24px);
	border: 1px dashed var(--c-gold-100);
	color: var(--c-gold-700);
}
/* TOGGLE: remova esta regra para voltar a exibir os placeholders de imagem pendente */
.media-slot--empty { display: none; }

.media-slot__hint { display: grid; gap: 6px; font-size: .82rem; font-weight: 600; }
.media-slot__hint code {
	font-size: .74rem;
	font-weight: 400;
	color: var(--c-green-800);
	background: rgba(255, 255, 255, .7);
	padding: 3px 8px;
	border-radius: 6px;
	word-break: break-all;
}
/* Dentro do card, a imagem encosta nas bordas superiores */
.card__body > .media-slot:first-child {
	margin: -22px -22px 16px;
	border-radius: 0;
}

/* ===== Listas ===== */
.list-check { list-style: none; margin: 0 0 1.2em; padding: 0; display: grid; gap: 12px; }
.list-check li {
	display: flex;
	align-items: flex-start;
	gap: .7em;
	line-height: 1.55;
}
.list-check li::before {
	content: "";
	flex: none;
	width: 20px;
	height: 20px;
	margin-top: 3px;
	border-radius: 50%;
	background: var(--c-green-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233f5225' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.section--dark .list-check li::before { background-color: rgba(255, 255, 255, .22); }

.list-plain { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.list-plain a { text-decoration: none; }
.list-plain a:hover { color: var(--c-gold-500); }

/* ===== Callout / avisos ===== */
.callout {
	border-radius: var(--radius-sm);
	padding: 18px 20px;
	margin: 24px 0;
	background: var(--c-gold-100);
	border-left: 4px solid var(--c-gold-500);
	color: var(--c-ink);
}
.callout--alert { background: var(--c-gold-100); border-left-color: var(--c-gold-700); }
.callout--wood { background: var(--c-gold-50); border-left-color: var(--c-gold-600); }
.callout__title {
	display: flex;
	align-items: center;
	gap: .5em;
	font-family: var(--font-head);
	font-weight: 700;
	margin-bottom: .3em;
}
.callout p:last-child { margin-bottom: 0; }

/* ===== Listas expansíveis (accordion) ===== */
.accordion {
	display: grid;
	gap: 12px;
}
.accordion__item {
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-sm);
	overflow: hidden;
}
.accordion__heading { margin: 0; font-size: 1rem; }
.accordion__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	width: 100%;
	padding: 16px 18px;
	background: none;
	border: 0;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-head);
	font-size: 1.02rem;
	font-weight: 600;
	color: var(--c-green-900);
	line-height: 1.35;
}
.accordion__trigger:hover { background: var(--c-green-50); }
.accordion__chevron {
	flex: none;
	width: 12px;
	height: 12px;
	border-right: 2px solid var(--c-gold-700);
	border-bottom: 2px solid var(--c-gold-700);
	transform: rotate(45deg);
	transition: transform .2s ease;
	margin-top: -4px;
}
.accordion__trigger[aria-expanded="true"] .accordion__chevron { transform: rotate(-135deg); margin-top: 4px; }
.accordion__panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height .28s ease;
}
.accordion__content { padding: 0 18px 18px; color: var(--c-muted); }
.accordion__content p:last-child, .accordion__content ul:last-child { margin-bottom: 0; }
.section--dark .accordion__item { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .18); }
.section--dark .accordion__trigger { color: #fff; }
.section--dark .accordion__trigger:hover { background: rgba(255, 255, 255, .08); }
.section--dark .accordion__content { color: rgba(255, 255, 255, .82); }

/* Sem JS: painéis abertos para o conteúdo continuar acessível */
.no-js .accordion__panel { max-height: none; }

/* ===== Tabela (horários) ===== */
.table-wrap { overflow-x: auto; }
.table {
	width: 100%;
	border-collapse: collapse;
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-sm);
	overflow: hidden;
	font-size: .96rem;
}
.table th, .table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--c-line); }
.table th { background: var(--c-green-50); color: var(--c-green-900); font-weight: 700; }
.table tr:last-child td { border-bottom: 0; }
.table td.is-closed { color: var(--c-gold-600); }

/* ===== Passos numerados ===== */
.steps { display: grid; gap: 18px; counter-reset: step; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.step {
	position: relative;
	padding: 22px 22px 22px 66px;
	background: var(--c-white);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
}
.step::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	left: 20px;
	top: 22px;
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--c-green-800);
	color: #fff;
	font-weight: 700;
	font-size: .95rem;
}
.step h3 { margin-bottom: .3em; }
.step p:last-child { margin-bottom: 0; color: var(--c-muted); }

/* ===== Blocos de contato ===== */
.contact-grid { display: grid; gap: 16px; }
@media (min-width: 620px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 22px;
	border-radius: var(--radius);
	background: var(--c-white);
	border: 1px solid var(--c-line);
	text-decoration: none;
	box-shadow: var(--shadow);
}
.contact-card:hover { border-color: var(--c-green-500); }

.map-embed {
	margin-top: 20px;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--c-line);
	box-shadow: var(--shadow);
}
.map-embed iframe { display: block; }
.contact-card__label { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); }
.contact-card__value { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; color: var(--c-green-900); }

/* ===== CTA ===== */
.cta { text-align: center; max-width: 680px; margin: 0 auto; }
.cta .btn { margin-top: 10px; }
.cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 10px; }
.cta__actions .btn { margin-top: 0; }

/* ===== Conteúdo editorial ===== */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.5em; color: var(--c-green-900); }
.prose h3 { margin-top: 1.3em; color: var(--c-green-800); }
.prose ul, .prose ol { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }
.prose img, .post-hero img { border-radius: var(--radius); margin: 1.4em 0; }
.prose blockquote {
	margin: 1.6em 0;
	padding: 4px 0 4px 20px;
	border-left: 3px solid var(--c-gold-500);
	color: var(--c-muted);
	font-style: italic;
}
.entry-content a { color: var(--c-gold-500); }

.post-nav {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 44px;
	padding-top: 22px;
	border-top: 1px solid var(--c-line);
	font-weight: 600;
}
@media (min-width: 620px) { .post-nav { flex-direction: row; justify-content: space-between; } }
.post-nav a { text-decoration: none; color: var(--c-gold-500); }

.pagination { margin-top: 40px; }
.pagination .page-numbers {
	display: inline-block;
	padding: 8px 14px;
	margin: 0 6px 6px 0;
	border: 1px solid var(--c-line);
	border-radius: 10px;
	text-decoration: none;
}
.pagination .page-numbers.current { background: var(--c-green-800); color: #fff; border-color: transparent; }

/* Aviso médico repetido no fim das páginas */
.medical-note {
	margin-top: 40px;
	padding: 18px 20px;
	border-radius: var(--radius-sm);
	background: var(--c-gold-50);
	border: 1px dashed var(--c-gold-100);
	font-size: .92rem;
	color: var(--c-gold-700);
}
.medical-note p:last-child { margin-bottom: 0; }

/* ===== Footer ===== */
.site-footer {
	background: var(--c-green-950);
	color: rgba(255, 255, 255, .8);
	padding: 48px 0 26px;
}
.site-footer a { color: #fff; }
.site-footer__logo { border-radius: 50%; margin-bottom: 12px; object-fit: cover; }
.clinica-duas { display: grid; gap: 30px; align-items: center; }
@media (min-width: 780px) {
	.clinica-duas { grid-template-columns: 1.5fr 1fr; }
	.clinica-duas__logo { border-left: 1px solid rgba(0, 0, 0, .15); padding-left: 30px; }
}
.clinica-duas__logo { display: flex; justify-content: flex-end; align-items: flex-start; margin-top: -20px; }
.clinica-logo { border-radius: 50%; object-fit: cover; }
.site-footer__grid { display: grid; gap: 30px; }
@media (min-width: 780px) { .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; } }
.site-footer__name { color: #fff; font-size: 1.4rem; margin-bottom: .25em; }
.site-footer__credentials { color: var(--c-green-300); font-size: .9rem; }
.site-footer h4 { color: #fff; font-size: 1.02rem; }
.site-footer .primary-nav__list { gap: 4px; }
.site-footer .primary-nav__list a { color: rgba(255, 255, 255, .8); border: 0; padding: 5px 0; }
.site-footer .primary-nav__list a:hover { color: var(--c-gold-400); }
.site-footer__disclaimer {
	margin-top: 36px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .14);
	font-size: .86rem;
	color: rgba(255, 255, 255, .62);
}
.site-footer__credit { margin: 0; }

/* ===== WhatsApp flutuante ===== */
.whatsapp-float {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 120;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	box-shadow: var(--shadow-lg);
}
.whatsapp-float .icon { width: 27px; height: 27px; }

/* ===== Alinhamentos do editor ===== */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { margin-left: auto; margin-right: auto; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; }
	html { scroll-behavior: auto; }
}

/* ===== Modal de agendamento ===== */
body.modal-open { overflow: hidden; }
.modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(11, 31, 22, .55); }
.modal__dialog {
	position: relative;
	background: var(--c-bg);
	border-radius: 20px;
	padding: 32px;
	max-width: 640px;
	width: 100%;
	max-height: 85vh;
	overflow-y: auto;
	box-shadow: var(--shadow-lg);
}
.modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border: none;
	background: var(--c-green-50);
	color: var(--c-green-900);
	border-radius: 999px;
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
}
.modal__title { color: var(--c-green-900); margin-bottom: 6px; }
.modal__lead { color: var(--c-muted); margin-bottom: 24px; }
.modal__options { display: grid; gap: 20px; }
.modal__option { border: 1.5px solid var(--c-green-100); border-radius: 16px; padding: 20px; }
.modal__option h3 { color: var(--c-green-900); margin-bottom: 4px; }
.modal__option p { color: var(--c-muted); margin-bottom: 14px; }

@media (min-width: 640px) {
	.modal__options { grid-template-columns: 1fr 1fr; }
}
