/* =========================================================
   Prontocor — main stylesheet
   Hospital Prontocor · Alta Complexidade Cardiovascular
   ========================================================= */

:root {
	--pc-navy:       #071629;
	--pc-navy-2:     #0b2142;
	--pc-navy-3:     #122a54;
	--pc-blue:       #2563eb;
	--pc-blue-dark:  #1d4ed8;
	--pc-blue-soft:  #3b82f6;
	--pc-cyan:       #4ec8e5;
	--pc-red:        #e53935;

	--pc-bg:         #ffffff;
	--pc-bg-soft:    #f6f8fb;
	--pc-fg:         #0b1a2f;
	--pc-fg-soft:    #4a5a73;
	--pc-muted:      #8091aa;
	--pc-line:       #e6ecf3;

	--pc-radius:     14px;
	--pc-radius-lg:  22px;
	--pc-radius-btn: 999px;
	--pc-shadow:     0 4px 18px rgba(7, 22, 41, 0.08);
	--pc-shadow-lg:  0 12px 40px rgba(7, 22, 41, 0.12);

	--pc-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	--pc-container: 1440px;
	--pc-gutter: clamp(20px, 4vw, 40px);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--pc-font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--pc-fg);
	background: var(--pc-bg);
	-webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, background .2s ease, opacity .2s ease; }
ul, ol { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4 { margin: 0 0 0.5em; font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; color: var(--pc-fg); }
p { margin: 0 0 1em; }

.pc-skip {
	position: absolute; left: -9999px; top: -9999px;
	background: var(--pc-navy); color: #fff; padding: 12px 16px; z-index: 9999;
}
.pc-skip:focus { left: 12px; top: 12px; }

.pc-container {
	max-width: var(--pc-container);
	margin: 0 auto;
	padding: 0 var(--pc-gutter);
}

.pc-main { min-height: 60vh; }

/* =========================================================
   HEADER
   ========================================================= */

.pc-header {
	background: var(--pc-navy);
	position: sticky; top: 0; z-index: 50;
	min-height: 72px;
	display: flex;
	align-items: center;
}
.pc-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	min-height: 72px;
}

.pc-header__brand {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	max-height: 48px;
	line-height: 0;
}
.pc-header .custom-logo-link {
	display: inline-flex;
	align-items: center;
	max-height: 48px;
	line-height: 0;
}
.pc-header .custom-logo,
.pc-header__brand img {
	display: block;
	max-height: 48px !important;
	width: auto !important;
	height: auto !important;
	max-width: 220px !important;
	object-fit: contain;
}
.pc-header__brand-text {
	color: #fff;
	font-weight: 800;
	font-size: 1.15rem;
	letter-spacing: 0.04em;
}

.pc-nav {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.pc-nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0 auto;
}
.pc-nav__list a {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 500;
	font-size: 0.95rem;
	padding: 0.6rem 0.9rem;
	position: relative;
	display: inline-block;
}
.pc-nav__list a::after {
	content: "";
	position: absolute;
	left: 0.9rem; right: 0.9rem; bottom: 0;
	height: 2px;
	background: var(--pc-blue-soft);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}
.pc-nav__list a:hover { color: #fff; }
.pc-nav__list a:hover::after,
.pc-nav__list .current-menu-item > a::after,
.pc-nav__list .current_page_item > a::after {
	transform: scaleX(1);
}

.pc-header__actions {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-shrink: 0;
}
.pc-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 500;
	font-size: 0.95rem;
}
.pc-header__phone:hover { color: #fff; }
.pc-header__phone-sep {
	display: inline-block;
	width: 1px;
	height: 22px;
	background: rgba(255, 255, 255, 0.25);
}

.pc-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--pc-blue);
	color: #fff;
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.65rem 1.4rem;
	border-radius: 999px;
	white-space: nowrap;
}
.pc-header__cta:hover {
	background: var(--pc-blue-dark);
	color: #fff;
	transform: translateY(-1px);
}

.pc-header__mobile { display: none; align-items: center; gap: 0.5rem; }
.pc-header__mobile-phone {
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px; height: 38px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
}
.pc-header__mobile-phone:hover { border-color: #fff; }
.pc-header__mobile-phone svg { width: 16px; height: 16px; }

.pc-menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: 0;
	padding: 0.4rem 0.5rem;
	cursor: pointer;
}
.pc-menu-toggle span {
	display: block;
	width: 22px; height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: all 0.25s ease;
}
.pc-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pc-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.pc-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991px) {
	.pc-header__inner { flex-wrap: wrap; }
	.pc-header__mobile { display: inline-flex; }
	.pc-nav {
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		order: 3;
		width: 100%;
		padding: 1rem 0 1.5rem;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}
	.pc-nav.is-open { display: flex; }
	.pc-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		margin: 0;
		width: 100%;
	}
	.pc-nav__list li { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
	.pc-nav__list li:last-child { border-bottom: none; }
	.pc-nav__list a {
		display: block;
		padding: 1rem 0;
		font-size: 1.05rem;
	}
	.pc-nav__list a::after { display: none; }

	.pc-header__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 0.75rem;
		margin-top: 1rem;
	}
	.pc-header__phone-sep { display: none; }
	.pc-header__cta { width: 100%; text-align: center; }
}

/* =========================================================
   BUTTONS
   ========================================================= */

.pc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: var(--pc-radius-btn);
	font-weight: 600;
	font-size: 0.95rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, background .2s ease, color .2s ease;
}
.pc-btn--primary { background: var(--pc-blue); color: #fff; }
.pc-btn--primary:hover { background: var(--pc-blue-dark); color: #fff; transform: translateY(-1px); }
.pc-btn--secondary { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.pc-btn--secondary:hover { background: #fff; color: var(--pc-navy); }

/* =========================================================
   HERO
   ========================================================= */

.pc-hero {
	position: relative;
	min-height: 88vh;
	max-height: 900px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--pc-navy);
	color: #fff;
	padding: 80px 0 60px;
}
.pc-hero__bg { position: absolute; inset: 0; z-index: 0; }
.pc-hero__bg img {
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center;
}
.pc-hero__overlay {
	position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(7, 22, 41, var(--pc-hero-overlay, 0.25)) 0%,
		rgba(7, 22, 41, calc(var(--pc-hero-overlay, 0.25) + 0.25)) 65%,
		rgba(7, 22, 41, calc(var(--pc-hero-overlay, 0.25) + 0.55)) 100%
	);
}
.pc-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: inherit;
}
.pc-hero__kicker {
	font-size: clamp(14px, 1.3vw, 18px);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 12px;
}
.pc-hero__title {
	font-size: clamp(44px, 7.5vw, 128px);
	font-weight: 900;
	letter-spacing: -0.025em;
	line-height: 0.95;
	color: #fff;
	margin: 0;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
	hyphens: none;
	overflow-wrap: normal;
	word-break: keep-all;
}
@media (max-width: 520px) {
	.pc-hero__title {
		font-size: clamp(32px, 10vw, 56px);
		letter-spacing: -0.035em;
	}
}
.pc-hero__subtitle {
	margin-top: 20px;
	font-size: clamp(15px, 1.4vw, 18px);
	color: rgba(255, 255, 255, 0.85);
	max-width: 60ch;
}
.pc-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.pc-hero:not(.pc-hero--has-bg) {
	background: linear-gradient(180deg, var(--pc-navy) 0%, var(--pc-navy-2) 100%);
}
.pc-hero:not(.pc-hero--has-bg) .pc-hero__overlay { display: none; }

.pc-hero__scroll {
	position: absolute;
	right: var(--pc-gutter);
	bottom: 32px;
	z-index: 3;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--pc-blue);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--pc-shadow);
}
.pc-hero__scroll:hover { background: var(--pc-blue-dark); color: #fff; transform: translateY(2px); }
.pc-hero__scroll svg { width: 16px; height: 16px; }

@media (max-width: 720px) {
	.pc-hero { min-height: 70vh; padding: 60px 0 40px; }
	.pc-hero__scroll { right: 20px; bottom: 20px; }
}

/* =========================================================
   SECTIONS
   ========================================================= */

.pc-section {
	padding-top: clamp(60px, 8vw, 110px);
	padding-bottom: clamp(60px, 8vw, 110px);
}
.pc-section--tight {
	padding-top: 20px;
	padding-bottom: 20px;
}
.pc-section__header { margin-bottom: 40px; max-width: 720px; }
.pc-section__header--center { text-align: center; margin-left: auto; margin-right: auto; }
.pc-section__title {
	font-size: clamp(30px, 4vw, 46px);
	color: var(--pc-navy);
}
.pc-section__lead { color: var(--pc-fg-soft); font-size: 1.0625rem; }

/* =========================================================
   SERVIÇOS
   ========================================================= */

.pc-servicos__title {
	font-size: clamp(34px, 5vw, 56px);
	color: var(--pc-navy);
	max-width: 15ch;
	margin: 0 0 48px;
	letter-spacing: -0.02em;
	line-height: 1.05;
}

.pc-servicos__list { border-top: 1px solid var(--pc-line); }
.pc-servicos__item {
	display: grid;
	grid-template-columns: 120px 1.2fr 2fr 60px;
	gap: 32px;
	align-items: center;
	padding: 36px 0;
	border-bottom: 1px solid var(--pc-line);
}
.pc-servicos__num {
	font-size: clamp(36px, 4vw, 52px);
	font-weight: 400;
	color: var(--pc-line);
	line-height: 1;
	letter-spacing: -0.01em;
	font-variant-numeric: tabular-nums;
}
.pc-servicos__name {
	font-size: clamp(22px, 2.4vw, 30px);
	font-weight: 700;
	color: var(--pc-navy);
	margin: 0;
	letter-spacing: -0.01em;
}
.pc-servicos__desc {
	margin: 0;
	color: var(--pc-fg-soft);
	font-size: 0.95rem;
	line-height: 1.65;
}
.pc-servicos__arrow {
	justify-self: end;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px; height: 52px;
	border-radius: 50%;
	border: 2px solid var(--pc-navy);
	color: var(--pc-navy);
	transition: background .2s ease, color .2s ease, transform .2s ease;
}
.pc-servicos__arrow:hover {
	background: var(--pc-navy);
	color: #fff;
	transform: translateX(3px);
}
.pc-servicos__arrow svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
	.pc-servicos__item {
		grid-template-columns: 70px 1fr 48px;
		grid-template-areas: "num name arrow" "num desc arrow";
		row-gap: 10px;
		gap: 16px;
		padding: 28px 0;
	}
	.pc-servicos__num { grid-area: num; font-size: 2rem; align-self: start; padding-top: 4px; }
	.pc-servicos__name { grid-area: name; font-size: 1.35rem; }
	.pc-servicos__desc { grid-area: desc; font-size: 0.9rem; }
	.pc-servicos__arrow { grid-area: arrow; width: 44px; height: 44px; align-self: center; }
	.pc-servicos__arrow svg { width: 16px; height: 16px; }
}

@media (max-width: 720px) {
	.pc-servicos__arrow { display: none; }
	.pc-servicos__item {
		grid-template-columns: 48px 1fr;
		grid-template-areas: "num name" "num desc";
	}
}

/* =========================================================
   BANNER ALTA COMPLEXIDADE
   ========================================================= */

.pc-banner {
	background: var(--pc-navy);
	border-radius: var(--pc-radius-lg);
	padding: clamp(28px, 4vw, 44px);
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: clamp(20px, 3vw, 36px);
	align-items: center;
	color: #fff;
}
.pc-banner__icon {
	width: 96px; height: 96px;
	border-radius: 22px;
	background: rgba(78, 200, 229, 0.18);
	color: var(--pc-cyan);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.pc-banner__icon svg { width: 54px; height: 54px; }
.pc-banner__title {
	font-size: clamp(22px, 2.4vw, 30px);
	font-weight: 800;
	margin: 0 0 10px;
	color: #fff;
	letter-spacing: -0.01em;
	line-height: 1.15;
}
.pc-banner__text {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(15px, 1.3vw, 18px);
	line-height: 1.55;
	max-width: 62ch;
}

@media (max-width: 720px) {
	.pc-banner { grid-template-columns: 1fr; text-align: left; }
	.pc-banner__icon { width: 72px; height: 72px; }
	.pc-banner__icon svg { width: 40px; height: 40px; }
}

/* =========================================================
   HOME: CORPO CLÍNICO (preview com médicos + CTA)
   ========================================================= */

.pc-homecorpo {
	background: var(--pc-bg-soft);
}
.pc-homecorpo__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 48px;
}
.pc-homecorpo__kicker {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--pc-blue);
	margin: 0 0 14px;
}
.pc-homecorpo__title {
	font-size: clamp(30px, 3.8vw, 46px);
	font-weight: 800;
	color: var(--pc-navy);
	margin: 0 0 16px;
	letter-spacing: -0.02em;
	line-height: 1.1;
}
.pc-homecorpo__desc {
	margin: 0;
	color: var(--pc-fg-soft);
	font-size: 1.0625rem;
	line-height: 1.6;
}

/* Carrossel: 4 cards por tela no desktop, usa o mesmo card do archive */
.pc-homecorpo__carousel { margin: 0 0 44px; }
.pc-carousel__track.pc-homecorpo__track { grid-auto-columns: calc((100% - 72px) / 4); }
.pc-homecorpo__slide-card {
	/* Herda .pc-corpo__card-link — aqui só garantimos altura cheia no slide */
	height: 100%;
}

.pc-homecorpo__cta-wrap { text-align: center; }
.pc-homecorpo__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding-right: 22px;
}

@media (max-width: 1100px) {
	.pc-carousel__track.pc-homecorpo__track { grid-auto-columns: calc((100% - 48px) / 3); }
}
@media (max-width: 820px) {
	.pc-carousel__track.pc-homecorpo__track { grid-auto-columns: calc((100% - 24px) / 2); }
}
@media (max-width: 520px) {
	.pc-carousel__track.pc-homecorpo__track { grid-auto-columns: 80%; gap: 16px; }
}

/* =========================================================
   HOME: EXAMES HOOK (preview com pills + CTA)
   ========================================================= */

.pc-section--exames-hook {
	background: linear-gradient(180deg, #fff 0%, var(--pc-bg-soft) 100%);
}
.pc-exameshook {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	gap: clamp(32px, 6vw, 80px);
	align-items: center;
}
.pc-exameshook__text { max-width: 480px; }
.pc-exameshook__kicker {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--pc-blue);
	margin: 0 0 14px;
}
.pc-exameshook__title {
	font-size: clamp(28px, 3.5vw, 42px);
	font-weight: 800;
	color: var(--pc-navy);
	margin: 0 0 18px;
	letter-spacing: -0.02em;
	line-height: 1.1;
}
.pc-exameshook__desc {
	color: var(--pc-fg-soft);
	font-size: 1.0625rem;
	line-height: 1.6;
	margin: 0 0 28px;
}
.pc-exameshook__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding-right: 22px;
}
.pc-exameshook__cta-arrow {
	display: inline-flex;
	align-items: center;
	transition: transform .2s ease;
}
.pc-exameshook__cta-arrow svg { width: 18px; height: 18px; }
.pc-exameshook__cta:hover .pc-exameshook__cta-arrow { transform: translateX(4px); }

.pc-exameshook__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-content: center;
}
.pc-exameshook__pill {
	display: inline-flex;
	align-items: center;
	padding: 12px 22px;
	background: #fff;
	border: 1.5px solid var(--pc-line);
	border-radius: 999px;
	color: var(--pc-navy);
	font-weight: 600;
	font-size: 0.95rem;
	transition: border-color .2s ease, transform .2s ease, background .2s ease, color .2s ease;
}
.pc-exameshook__pill:nth-child(odd) {
	background: rgba(78, 200, 229, 0.08);
	border-color: transparent;
}
.pc-exameshook__pill:hover {
	border-color: var(--pc-blue);
	color: var(--pc-blue);
	transform: translateY(-2px);
	background: #fff;
}

@media (max-width: 860px) {
	.pc-exameshook {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.pc-exameshook__text { max-width: none; }
	.pc-exameshook__title { font-size: clamp(26px, 6vw, 36px); }
}

/* =========================================================
   BIG NUMBERS
   ========================================================= */

.pc-section--numbers {
	background: var(--pc-bg-soft);
	padding-top: clamp(56px, 7vw, 96px);
	padding-bottom: clamp(56px, 7vw, 96px);
}
.pc-numbers__title {
	text-align: center;
	color: var(--pc-navy);
	font-size: clamp(22px, 2.4vw, 32px);
	margin: 0 0 40px;
	letter-spacing: -0.01em;
}
.pc-numbers {
	display: grid;
	grid-template-columns: repeat(var(--pc-numbers-count, 4), 1fr);
	gap: clamp(24px, 3vw, 40px);
	text-align: center;
}
.pc-numbers__item {
	padding: 12px 8px;
	position: relative;
}
.pc-numbers__item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 20%;
	bottom: 20%;
	width: 1px;
	background: var(--pc-line);
}
.pc-numbers__value {
	font-size: clamp(42px, 5.5vw, 78px);
	font-weight: 800;
	color: var(--pc-navy);
	line-height: 1;
	margin-bottom: 14px;
	letter-spacing: -0.03em;
	font-variant-numeric: tabular-nums;
	background: linear-gradient(135deg, var(--pc-navy) 0%, var(--pc-blue) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.pc-numbers__label {
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--pc-muted);
	font-weight: 700;
	line-height: 1.3;
}

@media (max-width: 820px) {
	.pc-numbers { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
	.pc-numbers__item:not(:last-child)::after { display: none; }
}
@media (max-width: 480px) {
	.pc-numbers { grid-template-columns: 1fr; gap: 32px; }
}

/* =========================================================
   ARTIGOS (post-card + carrossel)
   ========================================================= */

.pc-artigos__title {
	text-align: center;
	font-size: clamp(30px, 3.8vw, 46px);
	color: var(--pc-navy);
	margin: 0 0 40px;
	letter-spacing: -0.015em;
}

.pc-card {
	background: #fff;
	border-radius: var(--pc-radius);
	overflow: hidden;
	box-shadow: var(--pc-shadow);
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform .25s ease, box-shadow .25s ease;
}
.pc-card:hover { transform: translateY(-4px); box-shadow: var(--pc-shadow-lg); }
.pc-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16/10;
	overflow: hidden;
	background: var(--pc-bg-soft);
}
.pc-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}
.pc-card:hover .pc-card__media img { transform: scale(1.04); }
.pc-card__placeholder {
	position: absolute; inset: 0;
	background: linear-gradient(135deg, var(--pc-bg-soft) 0%, #e6ecf3 100%);
}
.pc-card__chip {
	position: absolute;
	top: 14px; left: 14px;
	background: var(--pc-navy);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 5px 12px;
	border-radius: 999px;
}
.pc-card__body {
	padding: 22px 22px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}
.pc-card__title {
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
	color: var(--pc-navy);
}
.pc-card__title a:hover { color: var(--pc-blue); }
.pc-card__excerpt {
	margin: 0;
	color: var(--pc-fg-soft);
	font-size: 0.9rem;
	line-height: 1.55;
	flex: 1;
}
.pc-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 14px;
	border-top: 1px solid var(--pc-line);
	color: var(--pc-muted);
	font-size: 0.8rem;
}
.pc-card__reading {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.pc-card__reading svg { width: 13px; height: 13px; }

/* Carrossel */
.pc-carousel { position: relative; }
.pc-carousel__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 48px) / 3);
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 8px;
	scrollbar-width: none;
}
.pc-carousel__track::-webkit-scrollbar { display: none; }
.pc-carousel__slide {
	scroll-snap-align: start;
	min-width: 0;
}
.pc-carousel__controls {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 28px;
}
.pc-carousel__btn {
	width: 44px; height: 44px;
	border-radius: 50%;
	border: 2px solid var(--pc-navy);
	background: transparent;
	color: var(--pc-navy);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background .2s ease, color .2s ease, opacity .2s ease;
}
.pc-carousel__btn:hover { background: var(--pc-navy); color: #fff; }
.pc-carousel__btn:disabled { opacity: 0.35; cursor: not-allowed; }
.pc-carousel__btn svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
	.pc-carousel__track { grid-auto-columns: calc((100% - 24px) / 2); }
}
@media (max-width: 600px) {
	.pc-carousel__track { grid-auto-columns: 85%; gap: 16px; }
}

/* =========================================================
   CATEGORIA / CHIPS
   ========================================================= */

.pc-chip {
	display: inline-block;
	background: var(--pc-navy);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 6px 14px;
	border-radius: 999px;
}
.pc-chip:hover { background: var(--pc-blue); color: #fff; }

/* =========================================================
   POST SINGLE / PAGE
   ========================================================= */

.pc-single { padding: 60px 0; max-width: 820px; }
.pc-single__header { text-align: center; margin-bottom: 32px; }
.pc-single__title {
	font-size: clamp(28px, 3.6vw, 44px);
	margin: 20px 0 16px;
	color: var(--pc-navy);
	letter-spacing: -0.015em;
}
.pc-single__meta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--pc-muted);
	font-size: 0.9rem;
}
.pc-single__reading { display: inline-flex; align-items: center; gap: 6px; }
.pc-single__reading svg { width: 14px; height: 14px; }
.pc-single__cover {
	margin: 0 0 40px;
	border-radius: var(--pc-radius);
	overflow: hidden;
}
.pc-single__content { font-size: 1.0625rem; line-height: 1.75; color: var(--pc-fg-soft); }

.pc-page { max-width: 820px; margin: 0 auto; padding: 40px 0; }
.pc-page__header { margin-bottom: 32px; }
.pc-page__title { font-size: clamp(28px, 3.6vw, 44px); color: var(--pc-navy); letter-spacing: -0.015em; }

.pc-prose h2, .pc-prose h3, .pc-prose h4 { color: var(--pc-navy); margin-top: 1.6em; }
.pc-prose a { color: var(--pc-blue); text-decoration: underline; }
.pc-prose a:hover { color: var(--pc-blue-dark); }
.pc-prose img { border-radius: var(--pc-radius); margin: 1.5em 0; }
.pc-prose ul, .pc-prose ol { padding-left: 1.4em; margin: 0 0 1em; list-style: revert; }
.pc-prose blockquote {
	border-left: 3px solid var(--pc-blue);
	padding: 0.2em 0 0.2em 1.2em;
	margin: 1.5em 0;
	color: var(--pc-fg);
	font-style: italic;
}

/* =========================================================
   POST GRID (archive / index)
   ========================================================= */

.pc-post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 28px;
	padding: 20px 0;
}

/* =========================================================
   PAGINATION
   ========================================================= */

.pc-section .pagination,
.navigation.pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 50px;
}
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border-radius: 999px;
	background: var(--pc-bg-soft);
	color: var(--pc-fg);
	font-size: 0.9rem;
	font-weight: 600;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: var(--pc-navy);
	color: #fff;
}

/* =========================================================
   404
   ========================================================= */

.pc-404 { text-align: center; padding: 100px 0; }
.pc-404__title { font-size: clamp(80px, 12vw, 160px); color: var(--pc-navy); margin: 0; letter-spacing: -0.05em; }
.pc-404__lead { font-size: 1.1rem; color: var(--pc-fg-soft); margin: 10px 0 30px; }

/* =========================================================
   PAGE HERO (templates internos: Ouvidoria, etc.)
   ========================================================= */

.pc-pagehero {
	background: linear-gradient(180deg, var(--pc-navy) 0%, var(--pc-navy-2) 100%);
	color: #fff;
	padding: clamp(60px, 8vw, 110px) 0 clamp(50px, 7vw, 90px);
	position: relative;
	overflow: hidden;
}
.pc-pagehero::before {
	content: "";
	position: absolute;
	top: -120px; right: -100px;
	width: 380px; height: 380px;
	background: radial-gradient(circle, rgba(78, 200, 229, 0.15) 0%, transparent 70%);
	pointer-events: none;
}
.pc-pagehero__kicker {
	font-size: 0.8rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--pc-cyan);
	margin: 0 0 16px;
	font-weight: 700;
}
.pc-pagehero__title {
	font-size: clamp(40px, 6vw, 72px);
	font-weight: 800;
	color: #fff;
	margin: 0 0 18px;
	letter-spacing: -0.02em;
	line-height: 1;
}
.pc-pagehero__lead {
	font-size: clamp(16px, 1.4vw, 19px);
	color: rgba(255, 255, 255, 0.8);
	max-width: 60ch;
	margin: 0;
}

/* =========================================================
   CORPO CLÍNICO — archive-medico.php / single-medico.php
   ========================================================= */

/* Barra de filtros */
.pc-corpo__filters {
	background: var(--pc-bg-soft);
	border-bottom: 1px solid var(--pc-line);
	padding: 18px 0;
	position: sticky;
	top: 72px;
	z-index: 30;
	backdrop-filter: blur(10px);
	background: rgba(246, 248, 251, 0.92);
}
.pc-corpo__filters-inner {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.pc-corpo__search {
	display: flex;
	align-items: center;
	background: #fff;
	border: 1px solid var(--pc-line);
	border-radius: 999px;
	padding: 4px 4px 4px 18px;
	min-width: 280px;
	transition: border-color .2s ease;
}
.pc-corpo__search:focus-within { border-color: var(--pc-blue); }
.pc-corpo__search input {
	border: 0;
	outline: none;
	background: transparent;
	flex: 1;
	padding: 10px 0;
	font-size: 0.95rem;
	font-family: inherit;
	color: var(--pc-fg);
}
.pc-corpo__search button {
	width: 38px; height: 38px;
	border-radius: 50%;
	border: 0;
	background: var(--pc-navy);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .2s ease;
}
.pc-corpo__search button:hover { background: var(--pc-blue); }
.pc-corpo__search button svg { width: 16px; height: 16px; }

.pc-corpo__especialidades {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	flex: 1;
	overflow-x: auto;
	scrollbar-width: none;
}
.pc-corpo__especialidades::-webkit-scrollbar { display: none; }
.pc-corpo__espec {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--pc-line);
	color: var(--pc-fg);
	font-size: 0.85rem;
	font-weight: 600;
	white-space: nowrap;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.pc-corpo__espec:hover { border-color: var(--pc-blue); color: var(--pc-blue); }
.pc-corpo__espec.is-active { background: var(--pc-navy); border-color: var(--pc-navy); color: #fff; }
.pc-corpo__espec-count {
	font-size: 0.72rem;
	font-weight: 700;
	background: rgba(0, 0, 0, 0.08);
	padding: 1px 7px;
	border-radius: 999px;
	min-width: 20px;
	text-align: center;
}
.pc-corpo__espec.is-active .pc-corpo__espec-count {
	background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 720px) {
	.pc-corpo__filters { top: 60px; }
	.pc-corpo__search { min-width: 100%; }
}

/* Grid de médicos */
.pc-corpo__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.pc-corpo__card {
	display: flex;
}
.pc-corpo__card-link {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--pc-line);
	border-radius: var(--pc-radius);
	overflow: hidden;
	width: 100%;
	color: inherit;
}

.pc-corpo__card-photo {
	position: relative;
	aspect-ratio: 1 / 1;
	background: linear-gradient(135deg, var(--pc-bg-soft) 0%, #e6ecf3 100%);
	overflow: hidden;
}
.pc-corpo__card-photo img {
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center top;
}
.pc-corpo__card-placeholder {
	position: absolute; inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(7, 22, 41, 0.2);
}
.pc-corpo__card-placeholder svg { width: 56px; height: 56px; }

.pc-corpo__card-body {
	padding: 18px 20px 22px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}
.pc-corpo__card-nome {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--pc-navy);
	margin: 0;
	line-height: 1.25;
	letter-spacing: -0.005em;
}
.pc-corpo__card-espec {
	margin: 0;
	color: var(--pc-blue);
	font-size: 0.85rem;
	font-weight: 600;
}
.pc-corpo__card-crm {
	margin: 0;
	margin-top: auto;
	padding-top: 10px;
	color: var(--pc-muted);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border-top: 1px solid var(--pc-line);
}
.pc-corpo__empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--pc-fg-soft);
	font-size: 1.05rem;
}

/* Single do médico */
.pc-medico__hero {
	background: linear-gradient(180deg, var(--pc-navy) 0%, var(--pc-navy-2) 100%);
	color: #fff;
	padding: clamp(40px, 6vw, 80px) 0 clamp(40px, 6vw, 80px);
	position: relative;
	overflow: hidden;
}
.pc-medico__hero::before {
	content: "";
	position: absolute;
	top: -100px; right: -100px;
	width: 360px; height: 360px;
	background: radial-gradient(circle, rgba(78, 200, 229, 0.12) 0%, transparent 70%);
	pointer-events: none;
}
.pc-medico__back {
	margin-bottom: 32px;
}
.pc-medico__back a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	font-weight: 600;
	transition: color .2s ease;
}
.pc-medico__back a:hover { color: #fff; }
.pc-medico__back svg { width: 16px; height: 16px; }

.pc-medico__hero-grid {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}
@media (max-width: 720px) {
	.pc-medico__hero-grid { grid-template-columns: 1fr; gap: 28px; }
}

.pc-medico__photo {
	aspect-ratio: 1 / 1;
	border-radius: var(--pc-radius-lg);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.08);
	border: 3px solid rgba(255, 255, 255, 0.15);
	max-width: 280px;
}
.pc-medico__photo img {
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center top;
}
.pc-medico__photo-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%; height: 100%;
	color: rgba(255, 255, 255, 0.3);
}
.pc-medico__photo-placeholder svg { width: 80px; height: 80px; }

.pc-medico__kicker {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--pc-cyan);
	margin: 0 0 14px;
}
.pc-medico__nome {
	font-size: clamp(32px, 4.5vw, 52px);
	font-weight: 800;
	color: #fff;
	margin: 0 0 28px;
	letter-spacing: -0.02em;
	line-height: 1.05;
}

.pc-medico__dados {
	margin: 0 0 32px;
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	max-width: 720px;
}
.pc-medico__dado {
	margin: 0;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: var(--pc-radius);
}
.pc-medico__dado dt {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	margin: 0 0 4px;
}
.pc-medico__dado dd {
	margin: 0;
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
}
.pc-medico__dado dd a {
	color: var(--pc-cyan);
	text-decoration: none;
}
.pc-medico__dado dd a:hover { color: #fff; text-decoration: underline; }

.pc-medico__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
}
.pc-medico__doclist {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.88rem;
	font-weight: 600;
	text-decoration: none;
}
.pc-medico__doclist:hover { color: #fff; }

/* Single: bio + related */
.pc-medico__bio-wrap { max-width: 820px; }
.pc-medico__bio-title {
	font-size: clamp(22px, 2.4vw, 28px);
	color: var(--pc-navy);
	margin: 0 0 20px;
	letter-spacing: -0.01em;
}
.pc-medico__bio {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--pc-fg-soft);
}
.pc-medico__related { max-width: none; }

/* =========================================================
   SERVIÇOS PAGE (page-servicos.php)
   ========================================================= */

/* Cores por categoria — aplicadas via --cat-color */
.pc-servpage__cat--emergencia  { --cat-color: #e53935; --cat-soft: rgba(229, 57, 53, 0.08); }
.pc-servpage__cat--diagnostico { --cat-color: #4ec8e5; --cat-soft: rgba(78, 200, 229, 0.10); }
.pc-servpage__cat--cirurgia    { --cat-color: var(--pc-blue); --cat-soft: rgba(37, 99, 235, 0.08); }
.pc-servpage__cat--cuidado     { --cat-color: #16a34a; --cat-soft: rgba(22, 163, 74, 0.08); }

/* Índice rápido sticky */
.pc-servpage__nav {
	position: sticky;
	top: 72px;
	z-index: 30;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--pc-line);
}
.pc-servpage__nav-inner {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding-top: 14px;
	padding-bottom: 14px;
	scrollbar-width: none;
}
.pc-servpage__nav-inner::-webkit-scrollbar { display: none; }
.pc-servpage__nav-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 999px;
	background: var(--pc-bg-soft);
	color: var(--pc-navy);
	font-weight: 600;
	font-size: 0.88rem;
	white-space: nowrap;
	transition: background .2s ease, color .2s ease, transform .2s ease;
}
.pc-servpage__nav-link:hover {
	background: var(--pc-navy);
	color: #fff;
	transform: translateY(-1px);
}
.pc-servpage__nav-icon {
	display: inline-flex;
	width: 18px; height: 18px;
}
.pc-servpage__nav-icon svg { width: 100%; height: 100%; }

/* Categoria */
.pc-servpage__cat { padding: clamp(56px, 7vw, 96px) 0; scroll-margin-top: 140px; }
.pc-servpage__cat:nth-child(even) { background: var(--pc-bg-soft); }

.pc-servpage__cat-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 48px;
}
.pc-servpage__cat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px; height: 72px;
	border-radius: 20px;
	background: var(--cat-soft);
	color: var(--cat-color);
	margin-bottom: 20px;
}
.pc-servpage__cat-icon svg { width: 38px; height: 38px; }
.pc-servpage__cat-kicker {
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--cat-color);
	font-weight: 700;
	margin: 0 0 10px;
}
.pc-servpage__cat-title {
	font-size: clamp(28px, 3.4vw, 40px);
	color: var(--pc-navy);
	margin: 0 0 14px;
	letter-spacing: -0.02em;
	line-height: 1.15;
}
.pc-servpage__cat-desc {
	margin: 0;
	color: var(--pc-fg-soft);
	font-size: 1.0625rem;
	line-height: 1.6;
}

/* Grid de cards */
.pc-servpage__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 22px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.pc-servpage__card {
	display: flex;
}
.pc-servpage__card-inner {
	display: flex;
	flex-direction: column;
	gap: 14px;
	background: #fff;
	border: 1px solid var(--pc-line);
	border-radius: var(--pc-radius);
	padding: 28px 26px;
	width: 100%;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pc-servpage__card-inner:hover {
	transform: translateY(-4px);
	box-shadow: var(--pc-shadow);
	border-color: transparent;
}
.pc-servpage__card-inner--link {
	color: inherit;
	cursor: pointer;
}
.pc-servpage__card-inner--link:hover {
	border-color: var(--cat-color);
}

.pc-servpage__card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	border-radius: 12px;
	background: var(--cat-soft);
	color: var(--cat-color);
}
.pc-servpage__card-icon svg { width: 22px; height: 22px; }
.pc-servpage__card-name {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--pc-navy);
	margin: 0;
	line-height: 1.25;
	letter-spacing: -0.01em;
}
.pc-servpage__card-desc {
	margin: 0;
	color: var(--pc-fg-soft);
	font-size: 0.94rem;
	line-height: 1.6;
	flex: 1;
}
.pc-servpage__card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--cat-color);
	font-weight: 600;
	font-size: 0.9rem;
	margin-top: auto;
}
.pc-servpage__card-link svg {
	width: 16px; height: 16px;
	transition: transform .2s ease;
}
.pc-servpage__card-inner--link:hover .pc-servpage__card-link svg { transform: translateX(3px); }

@media (max-width: 720px) {
	.pc-servpage__nav { top: 60px; }
	.pc-servpage__cat { scroll-margin-top: 120px; }
}

/* =========================================================
   HISTÓRIA (page-historia.php)
   ========================================================= */

.pc-historia__section-title {
	font-size: clamp(28px, 3.6vw, 42px);
	color: var(--pc-navy);
	margin: 0 0 40px;
	letter-spacing: -0.02em;
}

/* Intro: 2 colunas (texto + card de fundadores) */
.pc-historia__intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: start;
}
.pc-historia__intro-text {
	color: var(--pc-fg-soft);
	font-size: 1.0625rem;
	line-height: 1.75;
}
.pc-historia__intro-text p { margin: 0 0 18px; }
.pc-historia__intro-text p:last-child { margin-bottom: 0; }
.pc-historia__intro-text strong { color: var(--pc-navy); font-weight: 700; }
.pc-historia__intro-title {
	font-size: clamp(26px, 3vw, 36px);
	color: var(--pc-navy);
	margin: 0 0 24px;
	letter-spacing: -0.02em;
}

.pc-historia__fundadores {
	background: linear-gradient(135deg, var(--pc-navy) 0%, var(--pc-navy-3) 100%);
	color: #fff;
	border-radius: var(--pc-radius-lg);
	padding: 32px 28px;
	position: sticky;
	top: 92px;
}
.pc-historia__fundadores-kicker {
	margin: 0 0 16px;
	color: var(--pc-cyan);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.pc-historia__fundadores-list {
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
}
.pc-historia__fundadores-list li {
	font-size: 1.05rem;
	font-weight: 600;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.pc-historia__fundadores-list li:last-child { border-bottom: none; }
.pc-historia__fundadores-year {
	margin: 0;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 860px) {
	.pc-historia__intro-grid { grid-template-columns: 1fr; gap: 36px; }
	.pc-historia__fundadores { position: static; }
}

/* Linha do tempo */
.pc-historia__timeline {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
	max-width: 880px;
}
.pc-historia__timeline::before {
	content: "";
	position: absolute;
	left: 110px;
	top: 10px;
	bottom: 10px;
	width: 2px;
	background: var(--pc-line);
}
.pc-historia__marker {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 48px;
	padding: 14px 0 28px;
	position: relative;
}
.pc-historia__marker::before {
	content: "";
	position: absolute;
	left: 104px;
	top: 22px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--pc-blue);
	box-shadow: 0 0 0 4px var(--pc-bg);
}
.pc-historia__marker-year {
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--pc-navy);
	letter-spacing: -0.01em;
	padding-top: 14px;
	text-align: right;
}
.pc-historia__marker-title {
	margin: 0 0 8px;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--pc-navy);
	letter-spacing: -0.01em;
}
.pc-historia__marker-text {
	margin: 0;
	color: var(--pc-fg-soft);
	font-size: 0.96rem;
	line-height: 1.65;
}

@media (max-width: 640px) {
	.pc-historia__timeline::before { left: 8px; }
	.pc-historia__marker {
		grid-template-columns: 1fr;
		gap: 8px;
		padding-left: 32px;
	}
	.pc-historia__marker::before { left: 2px; top: 8px; }
	.pc-historia__marker-year { text-align: left; padding-top: 0; font-size: 0.9rem; color: var(--pc-blue); }
}

/* Narrativa */
.pc-historia__narrativa {
	max-width: 820px;
	color: var(--pc-fg-soft);
	font-size: 1.075rem;
	line-height: 1.8;
}
.pc-historia__narrativa p { margin: 0 0 22px; }
.pc-historia__narrativa strong { color: var(--pc-navy); font-weight: 700; }

/* CEMAC callout */
.pc-historia__cemac-wrap { padding-top: 32px; padding-bottom: 32px; }
.pc-historia__cemac {
	background: linear-gradient(135deg, #0b2142 0%, #071629 100%);
	border-radius: var(--pc-radius-lg);
	padding: clamp(32px, 4.5vw, 56px);
	color: #fff;
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 32px;
	align-items: start;
	position: relative;
	overflow: hidden;
}
.pc-historia__cemac::after {
	content: "";
	position: absolute;
	top: -60px; right: -60px;
	width: 260px; height: 260px;
	background: radial-gradient(circle, rgba(78, 200, 229, 0.18) 0%, transparent 70%);
	pointer-events: none;
}
.pc-historia__cemac-icon {
	width: 80px; height: 80px;
	border-radius: 20px;
	background: rgba(78, 200, 229, 0.18);
	color: var(--pc-cyan);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.pc-historia__cemac-icon svg { width: 44px; height: 44px; }
.pc-historia__cemac-kicker {
	margin: 0 0 12px;
	color: var(--pc-cyan);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.pc-historia__cemac-title {
	font-size: clamp(26px, 3.2vw, 38px);
	color: #fff;
	margin: 0 0 18px;
	letter-spacing: -0.02em;
}
.pc-historia__cemac p {
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.7;
	margin: 0 0 14px;
}
.pc-historia__cemac p:last-child { margin-bottom: 0; }
.pc-historia__cemac-legal {
	margin-top: 18px;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55) !important;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 720px) {
	.pc-historia__cemac { grid-template-columns: 1fr; gap: 20px; }
	.pc-historia__cemac-icon { width: 64px; height: 64px; }
	.pc-historia__cemac-icon svg { width: 34px; height: 34px; }
}

/* CTA final */
.pc-historia__cta {
	background: linear-gradient(135deg, var(--pc-blue-dark) 0%, var(--pc-navy-3) 100%);
	border-radius: var(--pc-radius-lg);
	padding: clamp(40px, 5vw, 72px);
	color: #fff;
	text-align: center;
}
.pc-historia__cta-title {
	font-size: clamp(26px, 3.2vw, 40px);
	color: #fff;
	margin: 0 0 14px;
	letter-spacing: -0.02em;
}
.pc-historia__cta-text {
	margin: 0 auto 32px;
	max-width: 58ch;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.05rem;
}
.pc-historia__cta-actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
}

/* =========================================================
   EXAMES (page-exames.php)
   ========================================================= */

.pc-exames { padding-top: 72px; padding-bottom: 72px; }

.pc-exames__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
@media (max-width: 960px) {
	.pc-exames__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.pc-exames__grid { grid-template-columns: 1fr; gap: 16px; }
}

.pc-exames__card {
	background: #fff;
	border: 1px solid var(--pc-line);
	border-radius: var(--pc-radius);
	padding: 28px 24px 24px;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pc-exames__card:hover {
	transform: translateY(-3px);
	box-shadow: var(--pc-shadow);
	border-color: transparent;
}
.pc-exames__num {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--pc-blue);
	letter-spacing: 0.1em;
	font-variant-numeric: tabular-nums;
}
.pc-exames__nome {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--pc-navy);
	margin: 0;
	line-height: 1.25;
	letter-spacing: -0.01em;
}
.pc-exames__desc {
	margin: 0;
	color: var(--pc-fg-soft);
	font-size: 0.92rem;
	line-height: 1.55;
}

/* CTA no final da página */
.pc-exames__cta {
	margin-top: 72px;
	padding: clamp(36px, 5vw, 56px);
	background: linear-gradient(135deg, var(--pc-navy) 0%, var(--pc-navy-3) 100%);
	border-radius: var(--pc-radius-lg);
	color: #fff;
	text-align: center;
}
.pc-exames__cta-title {
	font-size: clamp(24px, 3vw, 34px);
	color: #fff;
	margin: 0 0 12px;
	letter-spacing: -0.015em;
}
.pc-exames__cta-text {
	margin: 0 auto 28px;
	max-width: 52ch;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1rem;
}
.pc-exames__cta-actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
}
.pc-btn--secondary-dark {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.5);
}
.pc-btn--secondary-dark:hover {
	background: #fff;
	color: var(--pc-navy);
	border-color: #fff;
}

/* =========================================================
   OUVIDORIA (form do plugin "Form Ouvidoria" — Bootstrap 4)
   Normaliza as classes que o plugin injeta.
   ========================================================= */

.pc-ouvidoria {
	max-width: 860px;
	margin: 0 auto;
	padding-top: 56px;
	padding-bottom: 56px;
}
.pc-ouvidoria__intro { margin-bottom: 32px; }

.pc-ouvidoria__form .fo-form {
	background: #fff;
	border: 1px solid var(--pc-line);
	border-radius: var(--pc-radius-lg);
	padding: clamp(24px, 3vw, 40px);
	box-shadow: var(--pc-shadow);
}
.pc-ouvidoria__form .alert {
	border-radius: var(--pc-radius);
	padding: 14px 18px;
	margin-bottom: 20px;
	border: 1px solid transparent;
}
.pc-ouvidoria__form .alert-success { background: #e8f7ee; border-color: #bfe6cb; color: #1a6b3a; }
.pc-ouvidoria__form .alert-danger  { background: #fdecea; border-color: #f5c6cb; color: #9b1f1f; }
.pc-ouvidoria__form .alert-warning { background: #fff4e0; border-color: #f6d58a; color: #875a0b; }

.pc-ouvidoria__form .form-group,
.pc-ouvidoria__form .mb-3 { margin-bottom: 20px; }

.pc-ouvidoria__form label { display: inline-block; font-weight: 600; color: var(--pc-navy); margin-bottom: 8px; }
.pc-ouvidoria__form .font-weight-bold { font-weight: 700 !important; }
.pc-ouvidoria__form .text-muted { color: var(--pc-fg-soft) !important; font-size: 0.92rem; }
.pc-ouvidoria__form .form-text { display: block; margin-top: 6px; font-size: 0.82rem; color: var(--pc-muted); }

.pc-ouvidoria__form .form-control {
	display: block;
	width: 100%;
	padding: 12px 14px;
	font-size: 1rem;
	font-family: inherit;
	color: var(--pc-fg);
	background: #fff;
	border: 1.5px solid var(--pc-line);
	border-radius: 10px;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.pc-ouvidoria__form .form-control:focus {
	outline: none;
	border-color: var(--pc-blue);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.pc-ouvidoria__form textarea.form-control { min-height: 140px; resize: vertical; }
.pc-ouvidoria__form .form-control-file { display: block; margin-top: 4px; font-size: 0.92rem; }

.pc-ouvidoria__form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
@media (max-width: 640px) {
	.pc-ouvidoria__form .form-row { grid-template-columns: 1fr; }
}
.pc-ouvidoria__form .form-row .col-md-6,
.pc-ouvidoria__form .col-md-6 { min-width: 0; }

.pc-ouvidoria__form .border { border: 1px solid var(--pc-line) !important; }
.pc-ouvidoria__form .rounded { border-radius: var(--pc-radius) !important; }
.pc-ouvidoria__form .p-3 { padding: 16px !important; }
.pc-ouvidoria__form .mb-2 { margin-bottom: 10px !important; }
.pc-ouvidoria__form .mb-1 { margin-bottom: 6px !important; }
.pc-ouvidoria__form .mb-0 { margin-bottom: 0 !important; }
.pc-ouvidoria__form .d-block { display: block !important; }

/* Radios customizados (Bootstrap custom-radio) */
.pc-ouvidoria__form .custom-control {
	position: relative;
	padding-left: 28px;
	min-height: 22px;
	margin-bottom: 8px;
}
.pc-ouvidoria__form .custom-control-input {
	position: absolute;
	left: 0;
	top: 2px;
	width: 18px;
	height: 18px;
	accent-color: var(--pc-blue);
}
.pc-ouvidoria__form .custom-control-label {
	cursor: pointer;
	font-weight: 500;
	color: var(--pc-fg);
	margin: 0;
	line-height: 1.4;
}

/* Botão submit */
.pc-ouvidoria__form .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 30px;
	font-size: 1rem;
	font-weight: 600;
	font-family: inherit;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background .2s ease, transform .15s ease;
}
.pc-ouvidoria__form .btn-primary {
	background: var(--pc-blue);
	color: #fff;
}
.pc-ouvidoria__form .btn-primary:hover {
	background: var(--pc-blue-dark);
	color: #fff;
	transform: translateY(-1px);
}

/* "Card body" vira padding interno neutro */
.pc-ouvidoria__form .card-body { padding: 0; }

/* =========================================================
   FOOTER
   ========================================================= */

.pc-footer {
	background: var(--pc-navy);
	color: rgba(255, 255, 255, 0.75);
	padding: 56px 0 32px;
	margin-top: 80px;
}
.pc-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	padding-bottom: 32px;
}
.pc-footer__col--brand { display: flex; align-items: flex-start; }
.pc-footer__brand { display: inline-flex; align-items: center; max-height: 56px; }
.pc-footer__brand .custom-logo-link,
.pc-footer__brand .custom-logo-link img,
.pc-footer__brand img {
	display: inline-block;
	max-height: 56px;
	width: auto;
	height: auto;
	max-width: 220px;
	object-fit: contain;
}
.pc-footer__brand-text { color: #fff; font-weight: 800; font-size: 1.35rem; letter-spacing: 0.05em; }

.pc-footer__title {
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 14px;
}
.pc-footer__line { margin: 0 0 4px; color: rgba(255, 255, 255, 0.6); font-size: 0.92rem; }
.pc-footer__label { color: #fff; font-weight: 700; margin: 0 0 4px; font-size: 0.95rem; }
.pc-footer__link { color: rgba(255, 255, 255, 0.65); font-size: 0.95rem; }
.pc-footer__link:hover { color: #fff; }

.pc-footer__social { display: flex; gap: 10px; }
.pc-footer__social a {
	width: 42px; height: 42px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
	transition: background .2s ease, color .2s ease;
}
.pc-footer__social a:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}
.pc-footer__social svg { width: 22px; height: 22px; }

.pc-footer__bottom {
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.8rem;
}

@media (max-width: 900px) {
	.pc-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
	.pc-footer__grid { grid-template-columns: 1fr; gap: 28px; }
}
