:root {
	--pth-green: #055F37;
	--pth-green-dark: #034528;
	--pth-green-light: #EAF5EF;
	--pth-white: #FFFFFF;
	--pth-text: #1F2933;
	--pth-border: #E5E7EB;
}

.pth-wrapper {
	background: var(--pth-white);
	border: 1px solid var(--pth-border);
	border-radius: 12px;
	padding: 24px;
	margin: 24px 0;
	color: var(--pth-text);
}

.pth-header {
	margin-bottom: 18px;
}

.pth-header h2 {
	margin: 0 0 8px;
	color: var(--pth-green-dark);
	font-size: 1.8rem;
}

.pth-update-info {
	margin: 0;
	font-size: 0.95rem;
	color: #425466;
}

.pth-filters-form {
	background: var(--pth-green-light);
	border: 1px solid var(--pth-border);
	border-radius: 10px;
	padding: 16px;
	margin-bottom: 16px;
}

.pth-filter-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
}

.pth-filter-item label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 0.9rem;
}

.pth-filter-item input,
.pth-filter-item select {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid var(--pth-border);
	border-radius: 8px;
	background: var(--pth-white);
}

.pth-filter-actions {
	display: flex;
	gap: 10px;
	margin-top: 12px;
}

.pth-button {
	display: inline-block;
	text-decoration: none;
	background: var(--pth-green);
	color: var(--pth-white);
	border: 1px solid var(--pth-green);
	border-radius: 8px;
	padding: 8px 14px;
	font-weight: 600;
}

.pth-button:hover {
	background: var(--pth-green-dark);
	border-color: var(--pth-green-dark);
	color: var(--pth-white);
}

.pth-button-light {
	background: var(--pth-white);
	color: var(--pth-green-dark);
	border-color: var(--pth-green-dark);
}

.pth-button-light:hover {
	background: var(--pth-green-light);
	color: var(--pth-green-dark);
}

.pth-export {
	margin-bottom: 14px;
}

.pth-card {
	border: 1px solid var(--pth-border);
	border-radius: 10px;
	padding: 14px;
	margin-bottom: 12px;
	background: var(--pth-white);
}

.pth-card-title {
	margin: 0 0 8px;
	font-size: 1.1rem;
}

.pth-card-title a {
	color: var(--pth-green-dark);
	text-decoration: none;
}

.pth-card-title a:hover {
	text-decoration: underline;
}

.pth-meta-list {
	margin: 0;
	padding-left: 18px;
}

.pth-meta-list li {
	margin-bottom: 6px;
}

.pth-card-detail {
	margin: 10px 0 0;
}

.pth-card-detail a {
	color: var(--pth-green);
	font-weight: 600;
}

.pth-pagination {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 16px;
}

.pth-page-info {
	font-weight: 600;
}

.pth-empty {
	padding: 16px;
	border: 1px dashed var(--pth-border);
	border-radius: 10px;
}

.pth-single-details {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 2px solid var(--pth-border);
}

.pth-single-details h3 {
	margin-top: 0;
	color: var(--pth-green-dark);
}

.pth-landing-page {
	margin: 24px 0;
}

.pth-landing-hero {
	background: linear-gradient(135deg, #f4faf7 0%, #ffffff 100%);
	border: 1px solid var(--pth-border);
	border-left: 6px solid var(--pth-green);
	border-radius: 14px;
	padding: 24px;
	margin-bottom: 18px;
}

.pth-landing-eyebrow {
	margin: 0 0 8px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--pth-green);
}

.pth-landing-hero h1 {
	margin: 0 0 8px;
	font-size: 2rem;
	color: var(--pth-green-dark);
}

.pth-landing-hero p {
	margin: 0;
	color: #425466;
}

.pth-landing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
}

.pth-landing-card {
	display: block;
	text-decoration: none;
	background: #ffffff;
	border: 1px solid var(--pth-border);
	border-radius: 12px;
	padding: 18px;
	box-shadow: 0 8px 18px rgba(5, 95, 55, 0.06);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.pth-landing-card:hover {
	border-color: var(--pth-green);
	transform: translateY(-2px);
}

.pth-landing-card h2 {
	margin: 0 0 6px;
	font-size: 1.1rem;
	color: var(--pth-green-dark);
}

.pth-landing-card p {
	margin: 0;
	color: #4c5f70;
	font-size: 0.95rem;
}

.pth-landing-note {
	margin-top: 16px;
	padding: 14px 16px;
	border: 1px dashed #bcd9ca;
	border-radius: 12px;
	background: #f8fcfa;
	color: #1f3a2d;
}

.pth-section-page-intro {
	background: #f8fcfa;
	border: 1px solid var(--pth-border);
	border-radius: 12px;
	padding: 18px;
	margin: 20px 0 12px;
}

.pth-section-page-intro h1 {
	margin: 0 0 8px;
	font-size: 1.7rem;
	color: var(--pth-green-dark);
}

.pth-section-page-intro p {
	margin: 0;
	color: #425466;
}

.pth-section-page-note {
	margin: 12px 0 22px;
	padding: 12px 14px;
	border-left: 4px solid #8abda2;
	background: #f2f9f5;
}

.pth-section-page-note p {
	margin: 0;
	color: #2c4e3d;
}

.pth-home-page,
.pth-landing-page,
.pth-wrapper,
.pth-section-page-intro,
.pth-section-page-note {
	width: min(1320px, calc(100vw - 2rem));
	margin-left: auto;
	margin-right: auto;
}

body.home .wp-block-post-title,
body.home .entry-title {
	display: none;
}

.is-layout-constrained > :where(.pth-home-page, .pth-landing-page, .pth-wrapper, .pth-section-page-intro, .pth-section-page-note),
.is-layout-flow > :where(.pth-home-page, .pth-landing-page, .pth-wrapper, .pth-section-page-intro, .pth-section-page-note) {
	max-width: none !important;
}

.wp-site-blocks .pth-home-page,
.wp-site-blocks .pth-landing-page {
	padding-left: clamp(0.6rem, 1.2vw, 1.2rem);
	padding-right: clamp(0.6rem, 1.2vw, 1.2rem);
}

.pth-home-page {
	margin: 18px auto 34px;
}

.pth-home-topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 14px 18px;
	border-radius: 14px;
	background: #ffffff;
	border: 1px solid #dce8df;
	box-shadow: 0 10px 26px rgba(5, 80, 46, 0.08);
}

.pth-home-brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.pth-home-brand-badge {
	width: 46px;
	height: 46px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0e6f42 0%, #0a5a36 100%);
	color: #ffffff;
	font-weight: 800;
	font-size: 0.88rem;
}

.pth-home-brand strong {
	display: block;
	color: #0c3f27;
	font-size: 1rem;
}

.pth-home-brand small {
	display: block;
	color: #5d7180;
	font-size: 0.8rem;
}

.pth-home-contact {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.pth-home-contact span,
.pth-home-contact a {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 0.82rem;
	background: #f4f8f6;
	border: 1px solid #d7e6dd;
	color: #29513c;
	text-decoration: none;
	font-weight: 600;
}

.pth-home-contact a {
	background: #25c562;
	border-color: #25c562;
	color: #ffffff;
}

.pth-home-hero-shell {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(18px, 2vw, 30px);
	margin-top: 20px;
}

.pth-home-hero {
	background: linear-gradient(130deg, #083f28 0%, #0a5a36 42%, #0d7044 100%);
	color: #ffffff;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 18px 34px rgba(3, 69, 40, 0.24);
	position: relative;
	overflow: hidden;
}

.pth-home-hero::after {
	content: "";
	position: absolute;
	inset: auto -90px -90px auto;
	width: 240px;
	height: 240px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
}

.pth-home-kicker {
	margin: 0 0 10px;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.85);
}

.pth-home-hero h1 {
	margin: 0 0 10px;
	font-size: clamp(1.72rem, 2.2vw, 2.55rem);
	line-height: 1.12;
	max-width: 17ch;
}

.pth-home-hero p {
	margin: 0;
	max-width: 60ch;
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.02rem;
	line-height: 1.55;
}

.pth-home-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.pth-home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: 700;
	padding: 10px 16px;
	border-radius: 9px;
	border: 1px solid transparent;
	background: #ffffff;
	color: #0b5131;
	position: relative;
	z-index: 1;
}

.pth-home-btn:hover {
	background: #ebf6f0;
	color: #073d25;
}

.pth-home-btn-light {
	background: transparent;
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.56);
}

.pth-home-btn-light:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
}

.pth-home-hero-media {
	margin: 0;
	background: linear-gradient(140deg, #f5f7f6 0%, #e6efe9 100%);
	border: 1px solid #d6e4db;
	border-radius: 32px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 14px 30px rgba(7, 59, 37, 0.12);
	min-height: 420px;
}

.pth-home-hero-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pth-home-metrics {
	margin-top: 16px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.pth-home-metric {
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #d7e5dc;
	padding: 14px 14px 12px;
	box-shadow: 0 8px 18px rgba(5, 95, 55, 0.06);
}

.pth-home-metric span {
	display: block;
	font-size: 0.78rem;
	color: #4e6674;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-weight: 700;
}

.pth-home-metric strong {
	display: block;
	margin-top: 5px;
	font-size: 1.22rem;
	color: #0b4f31;
}

.pth-home-metric small {
	display: block;
	margin-top: 4px;
	font-size: 0.78rem;
	color: #6c7f8b;
}

.pth-home-highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 16px;
}

.pth-home-highlight {
	background: #ffffff;
	border: 1px solid #d8e8df;
	border-radius: 12px;
	padding: 14px;
	box-shadow: 0 8px 18px rgba(5, 95, 55, 0.06);
}

.pth-home-highlight strong {
	display: block;
	color: #0a4a2d;
	margin-bottom: 5px;
	font-size: 0.95rem;
}

.pth-home-highlight span {
	display: block;
	color: #4b5f6c;
	font-size: 0.9rem;
	line-height: 1.4;
}

.pth-home-grid-title {
	margin: 22px 0 0;
	font-size: clamp(1.2rem, 1.6vw, 1.55rem);
	color: #123728;
}

.pth-home-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 14px;
	margin-top: 16px;
}

.pth-home-card {
	display: block;
	text-decoration: none;
	background: #ffffff;
	border: 1px solid var(--pth-border);
	border-radius: 12px;
	padding: 16px;
	box-shadow: 0 9px 20px rgba(6, 72, 43, 0.07);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pth-home-card:hover {
	transform: translateY(-2px);
	border-color: var(--pth-green);
	box-shadow: 0 12px 24px rgba(5, 95, 55, 0.12);
}

.pth-home-card h2 {
	margin: 0 0 8px;
	color: #0b4c2f;
	font-size: 1.05rem;
}

.pth-home-card p {
	margin: 0 0 10px;
	color: #516472;
	font-size: 0.93rem;
	line-height: 1.45;
}

.pth-home-card-link {
	display: inline-block;
	font-weight: 700;
	color: #0b6a40;
	font-size: 0.88rem;
}

.pth-home-note {
	margin-top: 15px;
	padding: 12px 14px;
	border-radius: 11px;
	border: 1px dashed #bad7c8;
	background: #f3fbf7;
	color: #234635;
}

.pth-home-news-demo {
	margin-top: 18px;
	background: #ffffff;
	border: 1px solid #d8e8df;
	border-radius: 12px;
	padding: 16px 18px;
}

.pth-home-news-demo h3 {
	margin: 0 0 10px;
	font-size: 1.05rem;
	color: #0f3f29;
}

.pth-home-news-demo ul {
	margin: 0;
	padding-left: 18px;
}

.pth-home-news-demo li {
	margin-bottom: 8px;
	color: #3f5564;
	line-height: 1.45;
}

.pth-section-back-link {
	margin: 10px 0 0;
}

.pth-section-back-link a {
	color: var(--pth-green);
	font-weight: 700;
	text-decoration: none;
}

.pth-section-back-link a:hover {
	text-decoration: underline;
}

.pth-landing-inline-metrics {
	margin-top: 12px;
	display: inline-grid;
	grid-template-columns: repeat(3, minmax(120px, 1fr));
	gap: 10px;
}

.pth-landing-inline-metrics > div {
	background: #ffffff;
	border: 1px solid #d8e8df;
	border-radius: 10px;
	padding: 9px 10px;
}

.pth-landing-inline-metrics strong {
	display: block;
	color: #0b5233;
	font-size: 1.02rem;
}

.pth-landing-inline-metrics span {
	display: block;
	color: #557081;
	font-size: 0.8rem;
}

@media (max-width: 1100px) {
	.pth-home-hero-shell {
		grid-template-columns: 1fr;
	}

	.pth-home-hero-media {
		min-height: 260px;
	}

	.pth-home-metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pth-home-highlights {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 1500px) {
	.pth-home-page,
	.pth-landing-page,
	.pth-wrapper,
	.pth-section-page-intro,
	.pth-section-page-note {
		width: min(1440px, calc(100vw - 3rem));
	}

	.pth-home-hero {
		padding: 34px;
	}

	.pth-home-hero h1 {
		font-size: clamp(2rem, 2.6vw, 3rem);
	}
}

@media (max-width: 768px) {
	.pth-wrapper {
		padding: 16px;
	}

	.pth-filter-actions {
		flex-direction: column;
	}

	.pth-pagination {
		flex-wrap: wrap;
	}

	.pth-landing-hero h1 {
		font-size: 1.6rem;
	}

	.pth-home-hero {
		padding: 20px;
	}

	.pth-home-hero h1 {
		font-size: 1.55rem;
		max-width: none;
	}

	.pth-home-contact {
		width: 100%;
	}

	.pth-home-contact span,
	.pth-home-contact a {
		flex: 1 1 auto;
		justify-content: center;
	}

	.pth-home-metrics {
		grid-template-columns: 1fr;
	}

	.pth-home-highlights {
		grid-template-columns: 1fr;
	}

	.pth-home-grid {
		grid-template-columns: 1fr;
	}

	.pth-landing-inline-metrics {
		grid-template-columns: 1fr;
		width: 100%;
	}
}

@media (max-width: 480px) {
	.pth-home-page,
	.pth-landing-page,
	.pth-wrapper,
	.pth-section-page-intro,
	.pth-section-page-note {
		width: calc(100vw - 1.2rem);
	}

	.pth-home-topline {
		padding: 12px;
	}

	.pth-home-brand-badge {
		width: 40px;
		height: 40px;
		font-size: 0.78rem;
	}
}

/* Home institucional premium */
:root {
	--pth-site-navy: #103a52;
	--pth-site-navy-dark: #082737;
	--pth-site-green: #09663e;
	--pth-site-green-soft: #e9f5ee;
	--pth-site-teal: #1e9d9a;
	--pth-site-gold: #f0b44d;
	--pth-site-ink: #172a36;
	--pth-site-muted: #627483;
	--pth-site-surface: #ffffff;
	--pth-site-line: #dce8e3;
	--pth-site-shadow: 0 24px 70px rgba(9, 43, 57, 0.14);
}

body.home .wp-site-blocks > header:first-child,
body.home .wp-site-blocks > .wp-block-template-part:first-child {
	display: none;
}

.pth-site-home,
.pth-institutional-page {
	color: var(--pth-site-ink);
	font-family: "Aptos Display", "Montserrat", "Trebuchet MS", sans-serif;
	width: 100%;
	max-width: none !important;
	margin: 0 auto 64px;
	overflow-x: clip;
	background:
		radial-gradient(circle at 8% 12%, rgba(30, 157, 154, 0.08), transparent 28rem),
		radial-gradient(circle at 92% 22%, rgba(240, 180, 77, 0.12), transparent 24rem),
		linear-gradient(180deg, #f8fbfa 0%, #ffffff 44%, #f7fbfa 100%);
}

.is-layout-constrained > :where(.pth-site-home, .pth-institutional-page),
.is-layout-flow > :where(.pth-site-home, .pth-institutional-page) {
	max-width: none !important;
}

.pth-site-topbar {
	background: #eef5f2;
	border-bottom: 1px solid rgba(9, 102, 62, 0.1);
}

.pth-site-topbar-inner,
.pth-site-header,
.pth-site-slider,
.pth-site-quick-grid,
.pth-site-section,
.pth-site-demo-note,
.pth-institutional-page > * {
	width: min(1440px, calc(100vw - 48px));
	margin-left: auto;
	margin-right: auto;
}

.pth-site-topbar-inner {
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	font-size: 0.9rem;
	color: #294756;
}

.pth-site-topbar-inner span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
}

.pth-site-topbar-inner span::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--pth-site-green);
	box-shadow: 0 0 0 4px rgba(9, 102, 62, 0.1);
}

.pth-site-topbar-inner a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 18px;
	border-radius: 999px;
	background: #23c967;
	color: #ffffff;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 12px 24px rgba(35, 201, 103, 0.24);
}

.pth-site-header {
	min-height: 92px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.pth-site-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--pth-site-navy-dark);
	text-decoration: none;
	min-width: max-content;
}

.pth-site-logo:hover {
	color: var(--pth-site-green);
}

.pth-site-logo-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--pth-site-green) 0%, #0a8a58 100%);
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 900;
	letter-spacing: 0.03em;
	box-shadow: 0 14px 28px rgba(9, 102, 62, 0.2);
}

.pth-site-logo strong,
.pth-site-logo small {
	display: block;
}

.pth-site-logo strong {
	font-size: 1.15rem;
	line-height: 1.1;
}

.pth-site-logo small {
	margin-top: 3px;
	color: var(--pth-site-muted);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.pth-site-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 6px;
}

.pth-site-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 13px;
	border-radius: 999px;
	color: #203947;
	text-decoration: none;
	font-weight: 800;
	font-size: 0.92rem;
	transition: color 0.2s ease, background 0.2s ease;
}

.pth-site-nav a:hover,
.pth-site-nav a:focus-visible {
	background: var(--pth-site-green-soft);
	color: var(--pth-site-green);
	outline: none;
}

.pth-site-slider {
	position: relative;
	min-height: 650px;
	overflow: hidden;
	border-radius: 42px;
	background: var(--pth-site-navy-dark);
	box-shadow: var(--pth-site-shadow);
}

.pth-site-slider-track,
.pth-site-slide {
	position: absolute;
	inset: 0;
}

.pth-site-slide {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.65s ease, visibility 0.65s ease;
}

.pth-site-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.pth-site-slide-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02);
}

.pth-site-slide-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(8, 39, 55, 0.9) 0%, rgba(8, 39, 55, 0.72) 42%, rgba(8, 39, 55, 0.08) 100%),
		linear-gradient(0deg, rgba(8, 39, 55, 0.16), rgba(8, 39, 55, 0.02));
	z-index: 1;
}

.pth-site-slide-content {
	position: relative;
	z-index: 2;
	min-height: 650px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	max-width: 760px;
	padding: 80px 86px;
	color: #ffffff;
}

.pth-site-slide-eyebrow,
.pth-site-section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	color: var(--pth-site-gold);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.pth-site-slide-eyebrow::before,
.pth-site-section-eyebrow::before {
	content: "";
	width: 30px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.pth-site-slide-content h1 {
	margin: 0;
	max-width: 760px;
	color: #ffffff;
	font-size: 56px;
	line-height: 1.02;
	letter-spacing: -0.04em;
	font-weight: 900;
}

.pth-site-slide-content p {
	margin: 22px 0 0;
	max-width: 620px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.18rem;
	line-height: 1.55;
	font-weight: 600;
}

.pth-site-slide-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.pth-site-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 24px;
	border-radius: 16px;
	border: 1px solid #ffffff;
	background: #ffffff;
	color: var(--pth-site-green);
	text-decoration: none;
	font-weight: 900;
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.pth-site-button:hover,
.pth-site-button:focus-visible {
	background: #f4fbf7;
	color: var(--pth-site-navy-dark);
	outline: none;
}

.pth-site-button-outline {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(10px);
}

.pth-site-button-outline:hover,
.pth-site-button-outline:focus-visible {
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
}

.pth-site-slider-arrow {
	position: absolute;
	top: 50%;
	z-index: 4;
	width: 52px;
	height: 52px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--pth-site-navy-dark);
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.pth-site-slider-arrow:hover,
.pth-site-slider-arrow:focus-visible {
	background: var(--pth-site-gold);
	color: var(--pth-site-navy-dark);
	outline: none;
}

.pth-site-slider-prev {
	left: 24px;
}

.pth-site-slider-next {
	right: 24px;
}

.pth-site-slider-dots {
	position: absolute;
	left: 50%;
	bottom: 26px;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 10px;
	transform: translateX(-50%);
}

.pth-site-slider-dot {
	width: 12px;
	height: 12px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.55);
	cursor: pointer;
	transition: width 0.2s ease, background 0.2s ease;
}

.pth-site-slider-dot.is-active {
	width: 34px;
	background: var(--pth-site-gold);
}

.pth-site-quick-grid {
	position: relative;
	z-index: 5;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: -52px;
	margin-bottom: 58px;
}

.pth-site-quick-card,
.pth-site-news-card,
.pth-institutional-card {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(220, 232, 227, 0.96);
	border-radius: 24px;
	box-shadow: 0 18px 44px rgba(9, 43, 57, 0.09);
}

.pth-site-quick-card {
	display: block;
	min-height: 178px;
	padding: 26px;
	color: var(--pth-site-ink);
	text-decoration: none;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pth-site-quick-card:hover,
.pth-site-quick-card:focus-visible {
	transform: translateY(-5px);
	border-color: rgba(9, 102, 62, 0.35);
	box-shadow: 0 24px 56px rgba(9, 43, 57, 0.14);
	outline: none;
}

.pth-site-quick-card span {
	display: block;
	color: var(--pth-site-navy-dark);
	font-size: 1.12rem;
	font-weight: 900;
}

.pth-site-quick-card p {
	margin: 12px 0 18px;
	color: var(--pth-site-muted);
	font-size: 0.96rem;
	line-height: 1.5;
}

.pth-site-quick-card strong {
	color: var(--pth-site-green);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.pth-site-section {
	margin-bottom: 58px;
}

.pth-site-transparency-band {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
	gap: 34px;
	align-items: center;
	padding: 42px;
	border-radius: 34px;
	background:
		linear-gradient(135deg, rgba(9, 102, 62, 0.96) 0%, rgba(16, 58, 82, 0.96) 100%),
		radial-gradient(circle at 90% 18%, rgba(240, 180, 77, 0.2), transparent 24rem);
	color: #ffffff;
	box-shadow: var(--pth-site-shadow);
}

.pth-site-section-copy h2,
.pth-site-section-heading h2 {
	margin: 0;
	color: inherit;
	font-size: 2.25rem;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.pth-site-section-copy p {
	margin: 18px 0 0;
	max-width: 720px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 1.05rem;
	line-height: 1.6;
}

.pth-site-kpis {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.pth-site-kpis div {
	padding: 20px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(12px);
}

.pth-site-kpis strong,
.pth-site-kpis span {
	display: block;
}

.pth-site-kpis strong {
	color: #ffffff;
	font-size: 2rem;
	line-height: 1;
}

.pth-site-kpis span {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.pth-site-news {
	color: var(--pth-site-ink);
}

.pth-site-section-heading {
	max-width: 760px;
	margin-bottom: 24px;
}

.pth-site-section-heading .pth-site-section-eyebrow {
	color: var(--pth-site-green);
}

.pth-site-news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.pth-site-news-card {
	padding: 26px;
}

.pth-site-news-card span {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 12px;
	border-radius: 999px;
	background: var(--pth-site-green-soft);
	color: var(--pth-site-green);
	font-size: 0.82rem;
	font-weight: 900;
}

.pth-site-news-card h3 {
	margin: 18px 0 10px;
	color: var(--pth-site-navy-dark);
	font-size: 1.22rem;
	line-height: 1.2;
}

.pth-site-news-card p {
	margin: 0;
	color: var(--pth-site-muted);
	line-height: 1.55;
}

.pth-site-demo-note {
	margin-bottom: 40px;
	padding: 16px 20px;
	border-radius: 18px;
	border: 1px dashed rgba(9, 102, 62, 0.35);
	background: #f1faf5;
	color: #284838;
}

.pth-institutional-page {
	padding-top: 42px;
	padding-bottom: 72px;
}

.pth-institutional-hero {
	padding: 52px;
	border-radius: 34px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 247, 243, 0.96) 100%),
		radial-gradient(circle at 90% 16%, rgba(30, 157, 154, 0.16), transparent 22rem);
	border: 1px solid var(--pth-site-line);
	box-shadow: 0 18px 44px rgba(9, 43, 57, 0.08);
}

.pth-institutional-hero .pth-site-section-eyebrow {
	color: var(--pth-site-green);
}

.pth-institutional-hero h1 {
	margin: 0;
	color: var(--pth-site-navy-dark);
	font-size: 3rem;
	line-height: 1.05;
	letter-spacing: -0.04em;
}

.pth-institutional-hero p {
	margin: 18px 0 0;
	max-width: 760px;
	color: var(--pth-site-muted);
	font-size: 1.12rem;
	line-height: 1.6;
}

.pth-institutional-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
	gap: 18px;
	margin-top: 22px;
}

.pth-institutional-card {
	padding: 30px;
}

.pth-institutional-card h2 {
	margin: 0 0 16px;
	color: var(--pth-site-navy-dark);
	font-size: 1.35rem;
}

.pth-institutional-card ul {
	margin: 0;
	padding-left: 20px;
	color: var(--pth-site-muted);
	line-height: 1.7;
}

.pth-institutional-card p {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.6;
}

.pth-institutional-card-accent {
	background: linear-gradient(135deg, var(--pth-site-green) 0%, var(--pth-site-navy) 100%);
	color: #ffffff;
}

.pth-institutional-card-accent h2 {
	color: #ffffff;
}

.pth-institutional-card-accent a {
	color: #ffffff;
	font-weight: 900;
}

@media (max-width: 1180px) {
	.pth-site-header {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding: 18px 0;
	}

	.pth-site-nav {
		justify-content: flex-start;
	}

	.pth-site-slider,
	.pth-site-slide-content {
		min-height: 590px;
	}

	.pth-site-slide-content {
		padding: 68px 64px;
	}

	.pth-site-slide-content h1 {
		font-size: 44px;
	}

	.pth-site-quick-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pth-site-transparency-band,
	.pth-institutional-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 780px) {
	.pth-site-topbar-inner,
	.pth-site-header,
	.pth-site-slider,
	.pth-site-quick-grid,
	.pth-site-section,
	.pth-site-demo-note,
	.pth-institutional-page > * {
		width: min(100% - 28px, 720px);
	}

	.pth-site-topbar-inner {
		justify-content: flex-start;
		align-items: stretch;
		flex-direction: column;
		gap: 8px;
		padding: 12px 0;
	}

	.pth-site-topbar-inner span,
	.pth-site-topbar-inner a {
		width: 100%;
		justify-content: center;
		white-space: normal;
		text-align: center;
	}

	.pth-site-header {
		gap: 18px;
	}

	.pth-site-nav {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
		gap: 8px;
	}

	.pth-site-nav a {
		justify-content: center;
		background: #ffffff;
		border: 1px solid var(--pth-site-line);
	}

	.pth-site-slider {
		min-height: 610px;
		border-radius: 28px;
	}

	.pth-site-slide-content {
		min-height: 610px;
		padding: 74px 28px 92px;
	}

	.pth-site-slide-overlay {
		background: linear-gradient(180deg, rgba(8, 39, 55, 0.9) 0%, rgba(8, 39, 55, 0.72) 58%, rgba(8, 39, 55, 0.36) 100%);
	}

	.pth-site-slide-content h1 {
		font-size: 34px;
		letter-spacing: -0.03em;
	}

	.pth-site-slide-content p {
		font-size: 1rem;
	}

	.pth-site-slider-arrow {
		top: auto;
		bottom: 22px;
		width: 44px;
		height: 44px;
		font-size: 1.7rem;
		transform: none;
	}

	.pth-site-slider-prev {
		left: 20px;
	}

	.pth-site-slider-next {
		right: 20px;
	}

	.pth-site-quick-grid,
	.pth-site-news-grid {
		grid-template-columns: 1fr;
		margin-top: 20px;
	}

	.pth-site-transparency-band {
		padding: 28px;
		border-radius: 26px;
	}

	.pth-site-section-copy h2,
	.pth-site-section-heading h2 {
		font-size: 1.75rem;
	}

	.pth-site-kpis {
		grid-template-columns: 1fr;
	}

	.pth-institutional-hero {
		padding: 34px 24px;
	}

	.pth-institutional-hero h1 {
		font-size: 2.15rem;
	}
}

@media (max-width: 520px) {
	.pth-site-logo {
		min-width: 0;
	}

	.pth-site-logo-mark {
		width: 48px;
		height: 48px;
		border-radius: 16px;
	}

	.pth-site-logo strong {
		font-size: 1rem;
	}

	.pth-site-nav {
		grid-template-columns: 1fr;
	}

	.pth-site-slider {
		min-height: 640px;
	}

	.pth-site-slide-content {
		min-height: 640px;
		padding: 64px 22px 104px;
	}

	.pth-site-slide-content h1 {
		font-size: 30px;
	}

	.pth-site-slide-actions {
		width: 100%;
	}

	.pth-site-button {
		width: 100%;
	}

	.pth-site-slider-dots {
		bottom: 76px;
	}

	.pth-site-quick-card,
	.pth-site-news-card,
	.pth-institutional-card {
		padding: 22px;
		border-radius: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pth-site-slide,
	.pth-site-quick-card,
	.pth-site-nav a,
	.pth-site-slider-dot {
		transition: none;
	}
}

/* Refinamento institucional - Hospital Sao Jose de Chapada */
body.pth-site-controlled .wp-site-blocks > header,
body.pth-site-controlled .wp-site-blocks > footer,
body.pth-site-controlled .wp-block-post-title,
body.pth-site-controlled .entry-title {
	display: none !important;
}

body.pth-site-controlled .wp-site-blocks {
	padding-top: 0;
	padding-bottom: 0;
}

body.pth-site-controlled main,
body.pth-site-controlled .wp-block-post-content {
	margin-block-start: 0 !important;
	width: 100% !important;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	box-sizing: border-box;
}

body.pth-site-controlled .wp-block-group.alignfull.has-global-padding {
	width: 100% !important;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	box-sizing: border-box;
}

body.pth-site-controlled .pth-site-home.alignfull,
body.pth-site-controlled .pth-institutional-page.alignfull,
body.pth-site-controlled .pth-landing-page.alignfull {
	width: 100% !important;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.pth-site-home,
.pth-institutional-page,
.pth-landing-page {
	background: #cdcdcb;
	color: #142b24;
	font-family: "Aptos", "Segoe UI", sans-serif;
	margin: 0 auto;
	overflow-x: clip;
}

.pth-site-home *,
.pth-institutional-page *,
.pth-landing-page * {
	box-sizing: border-box;
}

.pth-site-header,
.pth-site-slider,
.pth-site-quick-grid,
.pth-site-section,
.pth-site-demo-note,
.pth-site-footer-inner,
.pth-institutional-page > .pth-site-header,
.pth-institutional-page > .pth-institutional-hero,
.pth-institutional-page > .pth-institutional-grid,
.pth-institutional-page > .pth-contact-grid,
.pth-landing-page > .pth-site-header,
.pth-landing-page > .pth-landing-hero,
.pth-landing-page > .pth-landing-grid,
.pth-landing-page > .pth-landing-note,
.pth-section-page-intro,
.pth-section-page-note,
.pth-wrapper {
	width: min(1360px, calc(100vw - 80px));
	margin-left: auto;
	margin-right: auto;
}

.pth-site-header {
	min-height: 104px;
	padding: 18px 0;
	border-bottom: 1px solid rgba(14, 50, 37, 0.16);
	background: #cdcdcb;
}

.pth-site-logo {
	gap: 14px;
	color: #123a2a;
	min-width: 0;
}

.pth-site-logo-image {
	width: 72px;
	height: 72px;
	display: block;
	border-radius: 0;
	object-fit: contain;
	box-shadow: none;
}

.pth-site-logo span {
	display: block;
}

.pth-site-logo strong {
	color: #10291f;
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: 0;
}

.pth-site-logo small {
	color: #587267;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pth-site-nav {
	gap: 14px;
}

.pth-site-nav a {
	min-height: auto;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: #17382d;
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0;
	white-space: nowrap;
}

.pth-site-nav a:hover,
.pth-site-nav a:focus-visible {
	background: transparent;
	color: #087444;
	text-decoration: underline;
	text-underline-offset: 7px;
}

.pth-site-slider {
	min-height: 560px;
	margin-top: 28px;
	border-radius: 8px;
	box-shadow: 0 18px 52px rgba(17, 53, 41, 0.12);
}

.pth-site-slide-content {
	min-height: 560px;
	max-width: 720px;
	padding: 68px 76px;
}

.pth-site-slide-overlay {
	background:
		linear-gradient(90deg, rgba(7, 38, 47, 0.82) 0%, rgba(7, 38, 47, 0.62) 45%, rgba(7, 38, 47, 0.08) 100%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.04));
}

.pth-site-slide-eyebrow,
.pth-site-section-eyebrow {
	margin-bottom: 14px;
	color: #f0b44d;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
}

.pth-site-slide-content h1 {
	max-width: 680px;
	font-size: 3.25rem;
	line-height: 1.04;
	letter-spacing: 0;
	font-weight: 800;
}

.pth-site-slide-content p {
	max-width: 560px;
	margin-top: 20px;
	font-size: 1.05rem;
	line-height: 1.6;
	font-weight: 500;
}

.pth-site-button {
	min-height: 48px;
	padding: 0 22px;
	border-radius: 6px;
	font-size: 0.95rem;
	box-shadow: none;
}

.pth-site-slider-arrow {
	width: 46px;
	height: 46px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.pth-site-slider-prev {
	left: 24px;
}

.pth-site-slider-next {
	right: 24px;
}

.pth-site-slider-dots {
	bottom: 24px;
}

.pth-site-quick-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 30px;
	margin-bottom: 56px;
}

.pth-site-quick-card,
.pth-site-news-card,
.pth-institutional-card,
.pth-contact-card {
	border-radius: 8px;
	background: #f4f4f0;
	border: 1px solid rgba(14, 50, 37, 0.14);
	box-shadow: none;
}

.pth-site-quick-card {
	min-height: 150px;
	padding: 24px;
}

.pth-site-quick-card:hover,
.pth-site-quick-card:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(20, 57, 43, 0.1);
}

.pth-site-quick-card span {
	color: #0e3225;
	font-size: 1rem;
}

.pth-site-quick-card p {
	color: #5d7169;
	font-size: 0.93rem;
}

.pth-site-quick-card strong {
	color: #087444;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
}

.pth-site-transparency-band {
	border-radius: 8px;
	background: #0c5737;
	box-shadow: none;
	padding: 40px;
}

.pth-site-section-copy h2,
.pth-site-section-heading h2 {
	font-size: 2rem;
	letter-spacing: 0;
}

.pth-site-kpis div {
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
}

.pth-site-news-card {
	padding: 24px;
}

.pth-site-demo-note {
	border-radius: 8px;
	background: #d9d9d6;
	margin-bottom: 44px;
}

.pth-site-footer {
	background: #0d2f23;
	color: #ffffff;
	margin-top: 60px;
}

.pth-site-footer-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
	padding: 34px 0;
}

.pth-site-footer-brand {
	display: flex;
	align-items: center;
	gap: 16px;
}

.pth-site-footer-brand img {
	width: 58px;
	height: 58px;
	object-fit: contain;
	background: #ffffff;
}

.pth-site-footer-brand strong,
.pth-site-footer-brand span {
	display: block;
}

.pth-site-footer-brand strong {
	font-size: 1rem;
}

.pth-site-footer-brand span,
.pth-site-footer-copy {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.88rem;
}

.pth-site-footer-links {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 18px;
}

.pth-site-footer-links a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.9rem;
}

.pth-site-footer-links a:hover,
.pth-site-footer-links a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 6px;
}

.pth-site-footer-copy {
	grid-column: 1 / -1;
	margin: 0;
}

.pth-institutional-page {
	padding: 0 0 64px;
}

.pth-institutional-hero {
	margin-top: 34px;
	padding: 46px;
	border-radius: 8px;
	box-shadow: none;
	background: #d9d9d6;
}

.pth-institutional-hero h1 {
	font-size: 2.5rem;
	letter-spacing: 0;
}

.pth-institutional-grid,
.pth-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 18px;
}

.pth-institutional-card {
	padding: 26px;
}

.pth-institutional-card-accent {
	background: #0c5737;
}

.pth-contact-card {
	padding: 28px;
}

.pth-contact-card span {
	display: block;
	color: #087444;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pth-contact-card h2 {
	margin: 12px 0 10px;
	color: #10291f;
	font-size: 1.35rem;
}

.pth-contact-card p {
	margin: 0;
	color: #5d7169;
	line-height: 1.55;
}

.pth-contact-card a {
	display: inline-flex;
	margin-top: 16px;
	color: #087444;
	font-weight: 800;
	text-decoration: none;
}

.pth-content-band {
	width: min(1360px, calc(100vw - 80px));
	margin: 18px auto 0;
	padding: 34px;
	border-radius: 8px;
	background: #f4f4f0;
	border: 1px solid rgba(14, 50, 37, 0.14);
}

.pth-content-band h2 {
	margin: 0 0 14px;
	color: #10291f;
	font-size: 1.6rem;
	line-height: 1.15;
}

.pth-content-band p {
	margin: 0 0 14px;
	color: #40584d;
	line-height: 1.7;
}

.pth-content-band p:last-child {
	margin-bottom: 0;
}

.pth-content-band-split {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
	gap: 30px;
	align-items: start;
}

.pth-text-stack {
	max-width: 760px;
}

.pth-fact-grid,
.pth-person-grid,
.pth-list-grid,
.pth-exam-grid {
	display: grid;
	gap: 14px;
}

.pth-fact-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pth-fact-grid div,
.pth-person-card,
.pth-list-grid article,
.pth-exam-card {
	border-radius: 8px;
	background: #ffffff;
	border: 1px solid rgba(14, 50, 37, 0.12);
	padding: 18px;
}

.pth-fact-grid strong,
.pth-fact-grid span,
.pth-person-card strong,
.pth-person-card span,
.pth-list-grid strong,
.pth-list-grid span {
	display: block;
}

.pth-fact-grid strong {
	color: #0c5737;
	font-size: 1.35rem;
	line-height: 1.15;
}

.pth-fact-grid span,
.pth-person-card span,
.pth-list-grid span,
.pth-exam-card p {
	color: #52695f;
	line-height: 1.55;
}

.pth-person-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pth-person-card strong {
	margin-top: 7px;
	color: #10291f;
	font-size: 1rem;
}

.pth-person-card span {
	color: #087444;
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.pth-doctor-grid .pth-person-card span {
	text-transform: none;
	font-weight: 700;
}

.pth-list-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pth-list-grid article {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.pth-list-grid article::before {
	content: "";
	width: 10px;
	height: 10px;
	margin-top: 7px;
	flex: 0 0 auto;
	border-radius: 999px;
	background: #087444;
}

.pth-list-grid-compact {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pth-list-grid-compact article {
	display: block;
}

.pth-list-grid-compact article::before {
	display: none;
}

.pth-list-grid strong {
	margin-bottom: 8px;
	color: #10291f;
}

.pth-exam-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pth-exam-card h2 {
	margin: 0 0 10px;
	color: #10291f;
	font-size: 1.05rem;
	line-height: 1.25;
}

.pth-exam-card p {
	margin: 0;
	font-size: 0.94rem;
}

@media (max-width: 1180px) {
	.pth-site-header {
		align-items: center;
		flex-direction: row;
	}

	.pth-site-nav {
		gap: 10px 12px;
	}

	.pth-site-slide-content h1 {
		font-size: 2.7rem;
	}

	.pth-site-quick-grid,
	.pth-site-news-grid,
	.pth-institutional-grid,
	.pth-contact-grid,
	.pth-person-grid,
	.pth-exam-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pth-content-band-split,
	.pth-list-grid,
	.pth-list-grid-compact {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 860px) {
	.pth-site-header,
	.pth-site-slider,
	.pth-site-quick-grid,
	.pth-site-section,
	.pth-site-demo-note,
	.pth-site-footer-inner,
	.pth-institutional-page > .pth-site-header,
	.pth-institutional-page > .pth-institutional-hero,
	.pth-institutional-page > .pth-institutional-grid,
	.pth-institutional-page > .pth-contact-grid,
	.pth-landing-page > .pth-site-header,
	.pth-landing-page > .pth-landing-hero,
	.pth-landing-page > .pth-landing-grid,
	.pth-landing-page > .pth-landing-note,
	.pth-section-page-intro,
	.pth-section-page-note,
	.pth-wrapper {
		width: min(100% - 28px, 720px);
	}

	.pth-content-band {
		width: min(100% - 28px, 720px);
		padding: 24px;
	}

	.pth-site-header {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
	}

	.pth-site-nav {
		display: flex;
		justify-content: flex-start;
		gap: 14px 18px;
	}

	.pth-site-slider,
	.pth-site-slide-content {
		min-height: 570px;
	}

	.pth-site-slide-content {
		padding: 64px 30px 92px;
	}

	.pth-site-slide-overlay {
		background: linear-gradient(180deg, rgba(7, 38, 47, 0.84) 0%, rgba(7, 38, 47, 0.68) 62%, rgba(7, 38, 47, 0.3) 100%);
	}

	.pth-site-slide-content h1 {
		font-size: 2.15rem;
	}

	.pth-site-quick-grid,
	.pth-site-news-grid,
	.pth-institutional-grid,
	.pth-contact-grid,
	.pth-fact-grid,
	.pth-person-grid,
	.pth-list-grid,
	.pth-list-grid-compact,
	.pth-exam-grid,
	.pth-site-transparency-band,
	.pth-site-footer-inner {
		grid-template-columns: 1fr;
	}

	.pth-site-footer-links {
		justify-content: flex-start;
	}
}

@media (max-width: 520px) {
	.pth-site-logo-image {
		width: 58px;
		height: 58px;
	}

	.pth-site-nav {
		gap: 12px 16px;
	}

	.pth-site-nav a {
		font-size: 0.9rem;
	}

	.pth-site-slider,
	.pth-site-slide-content {
		min-height: 620px;
	}

	.pth-site-button {
		width: 100%;
	}

	.pth-site-footer-brand {
		align-items: flex-start;
	}
}

/* Refinamento institucional: Bruma Clinica */
:root {
	--pth-bruma-base: #e4e6e2;
	--pth-bruma-surface: #eef0ec;
	--pth-bruma-panel: #f4f5f1;
	--pth-bruma-line: #cfd5ce;
	--pth-bruma-ink: #18352a;
	--pth-bruma-muted: #5a6d63;
	--pth-bruma-green: #0b5c40;
	--pth-bruma-green-dark: #103b2c;
	--pth-bruma-gold: #c99a45;
}

body.pth-site-controlled,
body.pth-site-controlled .wp-site-blocks,
body.pth-site-controlled .wp-site-blocks > main {
	background: var(--pth-bruma-base) !important;
}

body.pth-site-controlled .wp-site-blocks {
	min-height: 100vh;
}

body.pth-site-controlled .wp-site-blocks > main {
	margin-block-start: 0 !important;
	padding-block-start: 0 !important;
}

.pth-site-home,
.pth-institutional-page,
.pth-landing-page {
	min-height: 100vh;
	background: var(--pth-bruma-base);
	color: var(--pth-bruma-ink);
}

.pth-site-header,
.pth-site-slider,
.pth-site-access-rail,
.pth-site-section,
.pth-site-demo-note,
.pth-site-footer-inner,
.pth-institutional-page > .pth-site-header,
.pth-institutional-page > .pth-institutional-hero,
.pth-institutional-page > .pth-institutional-grid,
.pth-institutional-page > .pth-contact-grid,
.pth-landing-page > .pth-site-header,
.pth-landing-page > .pth-landing-hero,
.pth-landing-page > .pth-landing-grid,
.pth-landing-page > .pth-landing-note,
.pth-section-page-intro,
.pth-section-page-note,
.pth-wrapper,
.pth-content-band {
	width: min(1360px, calc(100vw - 64px));
}

.pth-site-header {
	position: relative;
	min-height: 96px;
	padding: 14px 0;
	background: transparent;
	border-bottom-color: rgba(24, 53, 42, 0.18);
}

.pth-site-logo {
	gap: 13px;
}

.pth-site-logo-image {
	width: 64px;
	height: 64px;
}

.pth-site-logo strong {
	font-size: 1.08rem;
	letter-spacing: -0.01em;
}

.pth-site-logo small {
	color: var(--pth-bruma-muted);
	font-size: 0.7rem;
}

.pth-site-menu-toggle {
	display: none;
}

.pth-site-nav {
	display: flex;
	align-items: center;
	gap: 26px;
}

.pth-site-nav > a,
.pth-site-nav-group > summary {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	color: var(--pth-bruma-ink);
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
}

.pth-site-nav-group {
	position: relative;
}

.pth-site-nav-group > summary {
	list-style: none;
	gap: 8px;
}

.pth-site-nav-group > summary::-webkit-details-marker {
	display: none;
}

.pth-site-nav-group > summary::after {
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	content: "";
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.pth-site-nav-group[open] > summary::after {
	margin-top: 3px;
	transform: rotate(225deg);
}

.pth-site-nav > a:hover,
.pth-site-nav > a:focus-visible,
.pth-site-nav-group > summary:hover,
.pth-site-nav-group > summary:focus-visible {
	color: var(--pth-bruma-green);
	outline: none;
}

.pth-site-nav-dropdown {
	position: absolute;
	z-index: 20;
	top: calc(100% + 10px);
	right: 0;
	display: grid;
	min-width: 224px;
	padding: 10px;
	border: 1px solid var(--pth-bruma-line);
	border-radius: 14px;
	background: var(--pth-bruma-panel);
	box-shadow: 0 18px 40px rgba(16, 59, 44, 0.14);
}

.pth-site-nav-dropdown a {
	padding: 12px 14px;
	border-radius: 9px;
	color: var(--pth-bruma-ink);
	font-size: 0.88rem;
	font-weight: 650;
	text-decoration: none;
}

.pth-site-nav-dropdown a:hover,
.pth-site-nav-dropdown a:focus-visible {
	background: #dce5dc;
	color: var(--pth-bruma-green);
	outline: none;
}

.pth-site-slider {
	min-height: clamp(460px, 42vw, 560px);
	margin-top: 26px;
	border: 1px solid rgba(24, 53, 42, 0.16);
	border-radius: 22px;
	box-shadow: 0 22px 46px rgba(16, 59, 44, 0.12);
}

.pth-site-slide-image {
	position: absolute;
	inset: 0;
}

.pth-site-slide-content {
	min-height: clamp(460px, 42vw, 560px);
	max-width: 670px;
	padding: clamp(48px, 5vw, 76px);
}

.pth-site-slide-overlay {
	background:
		linear-gradient(90deg, rgba(10, 47, 38, 0.84) 0%, rgba(10, 47, 38, 0.66) 46%, rgba(10, 47, 38, 0.12) 78%, rgba(10, 47, 38, 0.04) 100%),
		linear-gradient(0deg, rgba(10, 47, 38, 0.16), transparent 42%);
}

.pth-site-slide-eyebrow,
.pth-site-section-eyebrow {
	color: #e5bd71;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.13em;
}

.pth-site-slide-content h1 {
	max-width: 620px;
	font-size: clamp(2.55rem, 4vw, 4.35rem);
	font-weight: 750;
	letter-spacing: -0.045em;
	line-height: 0.98;
}

.pth-site-slide-content p {
	max-width: 520px;
	font-size: 1.03rem;
	line-height: 1.62;
}

.pth-site-button {
	border-radius: 999px;
	background: var(--pth-bruma-panel);
	color: var(--pth-bruma-green-dark);
	font-weight: 800;
}

.pth-site-button:hover,
.pth-site-button:focus-visible {
	background: #dce5dc;
	color: var(--pth-bruma-green-dark);
}

.pth-site-button-outline {
	border-color: rgba(244, 245, 241, 0.62);
	background: transparent;
	color: #ffffff;
}

.pth-site-button-outline:hover,
.pth-site-button-outline:focus-visible {
	border-color: var(--pth-bruma-panel);
	background: rgba(244, 245, 241, 0.12);
	color: #ffffff;
}

.pth-site-slider-arrow {
	width: 48px;
	height: 48px;
	border: 1px solid rgba(244, 245, 241, 0.56);
	background: rgba(244, 245, 241, 0.94);
	color: var(--pth-bruma-green-dark);
}

.pth-site-slider-arrow:hover,
.pth-site-slider-arrow:focus-visible {
	background: var(--pth-bruma-panel);
}

.pth-site-slider-dot {
	background: rgba(244, 245, 241, 0.7);
}

.pth-site-slider-dot.is-active {
	background: var(--pth-bruma-gold);
}

.pth-site-access-rail {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 22px;
	margin-bottom: 76px;
	border-top: 1px solid var(--pth-bruma-line);
	border-bottom: 1px solid var(--pth-bruma-line);
	background: transparent;
}

.pth-site-access-link {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	grid-template-areas:
		"number title arrow"
		"number description arrow";
	column-gap: 14px;
	row-gap: 7px;
	min-height: 142px;
	padding: 28px 22px;
	color: var(--pth-bruma-ink);
	text-decoration: none;
}

.pth-site-access-link + .pth-site-access-link {
	border-left: 1px solid var(--pth-bruma-line);
}

.pth-site-access-link:hover,
.pth-site-access-link:focus-visible {
	background: rgba(244, 245, 241, 0.56);
	outline: none;
}

.pth-site-access-number {
	grid-area: number;
	color: var(--pth-bruma-gold);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.pth-site-access-title {
	grid-area: title;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.2;
}

.pth-site-access-description {
	grid-area: description;
	color: var(--pth-bruma-muted);
	font-size: 0.88rem;
	line-height: 1.5;
}

.pth-site-access-arrow {
	grid-area: arrow;
	align-self: center;
	color: var(--pth-bruma-green);
	font-size: 1.25rem;
	font-weight: 700;
}

.pth-site-transparency-band {
	border: 0;
	border-radius: 22px;
	background: var(--pth-bruma-green);
	box-shadow: none;
}

.pth-site-section-copy h2,
.pth-site-section-heading h2 {
	letter-spacing: -0.035em;
}

.pth-site-kpis div {
	border: 1px solid rgba(244, 245, 241, 0.2);
	border-radius: 12px;
	background: rgba(244, 245, 241, 0.1);
}

.pth-site-news-grid {
	gap: 1px;
	border: 1px solid var(--pth-bruma-line);
	border-radius: 18px;
	overflow: hidden;
	background: var(--pth-bruma-line);
}

.pth-site-news-card,
.pth-institutional-card,
.pth-contact-card,
.pth-content-band,
.pth-fact-grid div,
.pth-person-card,
.pth-list-grid article,
.pth-exam-card {
	border-color: transparent;
	border-radius: 0;
	background: var(--pth-bruma-surface);
	box-shadow: none;
}

.pth-site-news-card {
	min-height: 250px;
	padding: 30px;
}

.pth-site-news-card:first-child {
	border-radius: 17px 0 0 17px;
}

.pth-site-news-card:last-child {
	border-radius: 0 17px 17px 0;
}

.pth-institutional-hero {
	border: 1px solid var(--pth-bruma-line);
	border-radius: 22px;
	background: var(--pth-bruma-surface);
}

.pth-content-band {
	border-color: var(--pth-bruma-line);
	border-radius: 18px;
	background: var(--pth-bruma-surface);
}

.pth-fact-grid div,
.pth-person-card,
.pth-list-grid article,
.pth-exam-card {
	border: 1px solid var(--pth-bruma-line);
	border-radius: 14px;
	background: rgba(244, 245, 241, 0.52);
}

.pth-site-demo-note {
	border: 1px solid var(--pth-bruma-line);
	border-radius: 14px;
	background: #d9ddd7;
	color: var(--pth-bruma-ink);
}

.pth-site-footer {
	margin-top: 72px;
	background: var(--pth-bruma-green-dark);
}

.pth-site-footer-brand img {
	background: transparent;
}

@media (max-width: 1100px) {
	.pth-site-nav {
		gap: 18px;
	}

	.pth-site-nav > a,
	.pth-site-nav-group > summary {
		font-size: 0.82rem;
	}

	.pth-site-access-rail {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pth-site-access-link:nth-child(3) {
		border-left: 0;
		border-top: 1px solid var(--pth-bruma-line);
	}

	.pth-site-access-link:nth-child(4) {
		border-top: 1px solid var(--pth-bruma-line);
	}
}

@media (max-width: 860px) {
	.pth-site-header,
	.pth-site-slider,
	.pth-site-access-rail,
	.pth-site-section,
	.pth-site-demo-note,
	.pth-site-footer-inner,
	.pth-institutional-page > .pth-site-header,
	.pth-institutional-page > .pth-institutional-hero,
	.pth-institutional-page > .pth-institutional-grid,
	.pth-institutional-page > .pth-contact-grid,
	.pth-landing-page > .pth-site-header,
	.pth-landing-page > .pth-landing-hero,
	.pth-landing-page > .pth-landing-grid,
	.pth-landing-page > .pth-landing-note,
	.pth-section-page-intro,
	.pth-section-page-note,
	.pth-wrapper,
	.pth-content-band {
		width: min(100% - 32px, 720px);
	}

	.pth-site-header {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		min-height: 84px;
		padding: 10px 0;
	}

	.pth-site-menu-toggle {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		min-height: 42px;
		padding: 0;
		border: 0;
		background: transparent;
		color: var(--pth-bruma-ink);
		font: inherit;
		font-size: 0.82rem;
		font-weight: 800;
		cursor: pointer;
	}

	.pth-site-menu-toggle i,
	.pth-site-menu-toggle i::before,
	.pth-site-menu-toggle i::after {
		display: block;
		width: 18px;
		height: 1.5px;
		background: currentColor;
		content: "";
	}

	.pth-site-menu-toggle i {
		position: relative;
	}

	.pth-site-menu-toggle i::before,
	.pth-site-menu-toggle i::after {
		position: absolute;
		left: 0;
	}

	.pth-site-menu-toggle i::before {
		top: -6px;
	}

	.pth-site-menu-toggle i::after {
		top: 6px;
	}

	.pth-site-nav {
		display: none;
		grid-column: 1 / -1;
		grid-template-columns: 1fr;
		gap: 0;
		width: 100%;
		margin-top: 12px;
		padding: 8px 0 2px;
		border-top: 1px solid var(--pth-bruma-line);
	}

	.pth-site-header.is-menu-open .pth-site-nav {
		display: grid;
	}

	.pth-site-nav > a,
	.pth-site-nav-group > summary {
		justify-content: space-between;
		width: 100%;
		min-height: 48px;
		padding: 0 4px;
		border-bottom: 1px solid rgba(207, 213, 206, 0.72);
		font-size: 0.94rem;
	}

	.pth-site-nav-group {
		position: static;
	}

	.pth-site-nav-dropdown {
		position: static;
		min-width: 0;
		margin: 0 0 8px;
		padding: 4px 0 8px 14px;
		border: 0;
		border-bottom: 1px solid rgba(207, 213, 206, 0.72);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.pth-site-nav-dropdown a {
		padding: 11px 4px;
	}

	.pth-site-slider,
	.pth-site-slide-content {
		min-height: 520px;
	}

	.pth-site-slide-content {
		padding: 54px 30px 92px;
	}

	.pth-site-slide-overlay {
		background: linear-gradient(180deg, rgba(10, 47, 38, 0.86) 0%, rgba(10, 47, 38, 0.68) 60%, rgba(10, 47, 38, 0.22) 100%);
	}

	.pth-site-news-card,
	.pth-site-news-card:first-child,
	.pth-site-news-card:last-child {
		border-radius: 0;
	}
}

@media (max-width: 560px) {
	.pth-site-logo-image {
		width: 54px;
		height: 54px;
	}

	.pth-site-logo strong {
		font-size: 0.98rem;
	}

	.pth-site-slider {
		margin-top: 18px;
		border-radius: 18px;
	}

	.pth-site-slider,
	.pth-site-slide-content {
		min-height: 540px;
	}

	.pth-site-slide-content {
		padding: 46px 24px 104px;
	}

	.pth-site-slide-content h1 {
		font-size: clamp(2.35rem, 12vw, 3.15rem);
	}

	.pth-site-slide-content p {
		font-size: 0.96rem;
	}

	.pth-site-slide-actions {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.pth-site-button {
		width: 100%;
	}

	.pth-site-slider-arrow {
		top: auto;
		bottom: 22px;
		width: 42px;
		height: 42px;
		transform: none;
	}

	.pth-site-slider-prev {
		left: 20px;
	}

	.pth-site-slider-next {
		right: 20px;
	}

	.pth-site-slider-dots {
		bottom: 36px;
	}

	.pth-site-access-rail {
		grid-template-columns: 1fr;
		margin-bottom: 56px;
	}

	.pth-site-access-link,
	.pth-site-access-link + .pth-site-access-link,
	.pth-site-access-link:nth-child(3),
	.pth-site-access-link:nth-child(4) {
		min-height: 116px;
		border-top: 1px solid var(--pth-bruma-line);
		border-left: 0;
	}

	.pth-site-access-link:first-child {
		border-top: 0;
	}
}

/* Centro de Transparencia - consulta documental */
.pth-landing-page > .pth-transparency-publications {
	width: min(1440px, calc(100vw - 72px));
	margin: 24px auto 0;
}

.pth-landing-page > .pth-landing-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(36px, 5vw, 72px);
	border: 1px solid rgba(15, 101, 72, 0.16);
	border-left: 0;
	border-radius: 18px;
	background:
		radial-gradient(circle at 88% 18%, rgba(190, 216, 199, 0.5), transparent 30%),
		linear-gradient(135deg, #f7f8f4 0%, #edf3ee 100%);
}

.pth-landing-page > .pth-landing-hero::after {
	position: absolute;
	right: -70px;
	bottom: -110px;
	width: 300px;
	height: 300px;
	border: 1px solid rgba(15, 101, 72, 0.13);
	border-radius: 50%;
	content: "";
}

.pth-landing-hero h1 {
	max-width: 760px;
	font-size: clamp(2.7rem, 5vw, 5.4rem);
	font-weight: 650;
	letter-spacing: -0.055em;
}

.pth-landing-hero > p:not(.pth-landing-eyebrow) {
	max-width: 850px;
	font-size: clamp(1rem, 1.45vw, 1.25rem);
	line-height: 1.65;
}

.pth-landing-inline-metrics {
	position: relative;
	z-index: 1;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	max-width: 1030px;
	margin-top: clamp(34px, 5vw, 64px);
	padding: 0;
	border-top: 1px solid rgba(15, 101, 72, 0.16);
}

.pth-landing-inline-metrics > div {
	padding: 22px 28px 0 0;
	border: 0;
	background: transparent;
}

.pth-landing-inline-metrics > div + div {
	padding-left: 28px;
	border-left: 1px solid rgba(15, 101, 72, 0.16);
}

.pth-landing-page > .pth-landing-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-top: 18px;
}

.pth-landing-card {
	display: flex;
	flex-direction: column;
	min-height: 240px;
	padding: 26px;
	border: 1px solid rgba(15, 101, 72, 0.15);
	border-radius: 14px;
	background: rgba(247, 248, 244, 0.76);
	box-shadow: none;
}

.pth-landing-card:hover,
.pth-landing-card:focus-visible {
	border-color: rgba(15, 101, 72, 0.42);
	background: #f7f8f4;
	box-shadow: 0 18px 38px rgba(24, 57, 45, 0.08);
	transform: translateY(-3px);
}

.pth-landing-card-number {
	margin-bottom: 40px;
	color: #b27614;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.pth-landing-card h2 {
	font-size: 1.22rem;
	line-height: 1.25;
}

.pth-landing-card p {
	line-height: 1.55;
}

.pth-landing-card-action {
	display: flex;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 22px;
	color: var(--pth-bruma-green);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pth-transparency-publications {
	padding: clamp(28px, 4vw, 52px);
	border: 1px solid rgba(15, 101, 72, 0.14);
	border-radius: 18px;
	background: #f7f8f4;
}

.pth-transparency-publications-intro {
	max-width: 760px;
	margin-bottom: 30px;
}

.pth-transparency-publications-intro h2 {
	margin: 7px 0 10px;
	color: #123a2a;
	font-size: clamp(1.8rem, 3vw, 3rem);
	font-weight: 650;
	letter-spacing: -0.035em;
}

.pth-transparency-publications-intro > p:last-child {
	margin: 0;
	color: #53675f;
}

.pth-transparency-publications > .pth-wrapper {
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.pth-transparency-publications .pth-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(15, 101, 72, 0.14);
}

.pth-transparency-publications .pth-header h2 {
	font-size: 1.15rem;
}

.pth-section-documentos .pth-results {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.pth-section-documentos .pth-card {
	display: flex;
	flex-direction: column;
	min-height: 180px;
	margin: 0;
	padding: 22px;
	border-color: rgba(15, 101, 72, 0.15);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.74);
}

.pth-section-documentos .pth-card-detail {
	margin-top: auto;
	padding-top: 16px;
}

.pth-section-faq .pth-filters-form,
.pth-section-faq .pth-export {
	display: none;
}

.pth-section-faq .pth-results {
	display: grid;
	gap: 10px;
}

.pth-faq-item {
	border: 1px solid rgba(15, 101, 72, 0.16);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.78);
}

.pth-faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 76px;
	padding: 18px 22px;
	color: #123a2a;
	font-weight: 750;
	cursor: pointer;
	list-style: none;
}

.pth-faq-item summary::-webkit-details-marker {
	display: none;
}

.pth-faq-toggle {
	display: grid;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	place-items: center;
	border: 1px solid rgba(15, 101, 72, 0.2);
	border-radius: 50%;
	font-size: 1.15rem;
	font-weight: 400;
	transition: transform 0.18s ease, background 0.18s ease;
}

.pth-faq-item[open] .pth-faq-toggle {
	background: #0f6548;
	color: #fff;
	transform: rotate(45deg);
}

.pth-faq-answer {
	padding: 0 72px 24px 22px;
	color: #4f625b;
	line-height: 1.7;
}

.pth-faq-answer p {
	margin: 0;
}

.pth-faq-category {
	margin-bottom: 8px !important;
	color: #a36c12;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

@media (max-width: 1020px) {
	.pth-landing-page > .pth-landing-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 860px) {
	.pth-landing-page > .pth-transparency-publications {
		width: min(100% - 32px, 720px);
	}

	.pth-landing-inline-metrics {
		grid-template-columns: 1fr;
	}

	.pth-landing-inline-metrics > div,
	.pth-landing-inline-metrics > div + div {
		padding: 16px 0;
		border-left: 0;
		border-bottom: 1px solid rgba(15, 101, 72, 0.12);
	}

	.pth-section-documentos .pth-results {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.pth-landing-page > .pth-landing-grid {
		grid-template-columns: 1fr;
	}

	.pth-landing-card {
		min-height: 210px;
	}

	.pth-transparency-publications {
		padding: 24px 18px;
	}

	.pth-transparency-publications .pth-header {
		display: block;
	}

	.pth-faq-answer {
		padding-right: 22px;
	}
}

/* Refinamento final institucional - HSJ */
.pth-site-header,
.pth-site-slider,
.pth-site-access-rail,
.pth-site-section,
.pth-site-footer-inner,
.pth-institutional-page > .pth-site-header,
.pth-institutional-page > .pth-institutional-hero,
.pth-institutional-page > .pth-institutional-grid,
.pth-institutional-page > .pth-contact-grid,
.pth-landing-page > .pth-site-header,
.pth-landing-page > .pth-landing-hero,
.pth-landing-page > .pth-landing-grid,
.pth-section-page-intro,
.pth-section-page-note,
.pth-wrapper,
.pth-content-band {
	width: min(1440px, calc(100vw - 72px));
}

.pth-site-header {
	min-height: 112px;
	padding: 12px 0;
}

.pth-site-logo {
	gap: 17px;
}

.pth-site-logo-image {
	width: 82px;
	height: 82px;
}

.pth-site-logo strong {
	font-size: 1.28rem;
	line-height: 1.15;
}

.pth-site-logo small {
	margin-top: 7px;
	font-size: 0.76rem;
	letter-spacing: 0.1em;
}

.pth-site-nav-trigger {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--pth-bruma-ink);
	font: inherit;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.pth-site-nav-trigger::after {
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	content: "";
	transform: rotate(45deg);
	transition: transform 0.18s ease, margin 0.18s ease;
}

.pth-site-nav-group.is-open .pth-site-nav-trigger::after {
	margin-top: 3px;
	transform: rotate(225deg);
}

.pth-site-nav-trigger:hover,
.pth-site-nav-trigger:focus-visible,
.pth-site-nav-group.is-open .pth-site-nav-trigger {
	color: var(--pth-bruma-green);
	outline: none;
}

.pth-site-nav-dropdown[hidden] {
	display: none !important;
}

.pth-site-nav-group.is-open .pth-site-nav-dropdown {
	display: grid;
}

.pth-site-nav-dropdown {
	top: calc(100% + 12px);
	right: auto;
	left: -16px;
	min-width: 218px;
	padding: 7px;
	border-radius: 10px;
	background: #f7f8f4;
	box-shadow: 0 16px 34px rgba(16, 59, 44, 0.13);
}

.pth-site-nav-dropdown a {
	padding: 11px 13px;
	border-radius: 6px;
}

.pth-site-access-rail {
	gap: 12px;
	margin: 18px auto 72px;
	border: 0;
	background: transparent;
}

.pth-site-access-link,
.pth-site-access-link + .pth-site-access-link {
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-areas:
		"number arrow"
		"title title"
		"description description";
	align-content: start;
	min-height: 148px;
	padding: 24px;
	border: 1px solid var(--pth-bruma-line);
	border-radius: 12px;
	background: rgba(247, 248, 244, 0.62);
	transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.pth-site-access-link:hover,
.pth-site-access-link:focus-visible {
	border-color: rgba(15, 101, 72, 0.34);
	background: #f7f8f4;
	transform: translateY(-2px);
}

.pth-site-access-number {
	font-size: 0.68rem;
	letter-spacing: 0.12em;
}

.pth-site-access-title {
	margin-top: 5px;
	font-size: 1.05rem;
}

.pth-site-access-description {
	font-size: 0.86rem;
}

@media (max-width: 1100px) {
	.pth-site-nav {
		gap: 18px;
	}

	.pth-site-nav > a,
	.pth-site-nav-trigger {
		font-size: 0.82rem;
	}

	.pth-site-access-link:nth-child(3),
	.pth-site-access-link:nth-child(4) {
		border: 1px solid var(--pth-bruma-line);
	}
}

@media (max-width: 860px) {
	.pth-site-header,
	.pth-site-slider,
	.pth-site-access-rail,
	.pth-site-section,
	.pth-site-footer-inner,
	.pth-institutional-page > .pth-site-header,
	.pth-institutional-page > .pth-institutional-hero,
	.pth-institutional-page > .pth-institutional-grid,
	.pth-institutional-page > .pth-contact-grid,
	.pth-landing-page > .pth-site-header,
	.pth-landing-page > .pth-landing-hero,
	.pth-landing-page > .pth-landing-grid,
	.pth-section-page-intro,
	.pth-section-page-note,
	.pth-wrapper,
	.pth-content-band {
		width: min(100% - 32px, 720px);
	}

	.pth-site-header {
		min-height: 96px;
	}

	.pth-site-logo-image {
		width: 64px;
		height: 64px;
	}

	.pth-site-logo strong {
		font-size: 1.08rem;
	}

	.pth-site-nav-trigger {
		justify-content: space-between;
		width: 100%;
		min-height: 48px;
		padding: 0 4px;
		border-bottom: 1px solid rgba(207, 213, 206, 0.72);
		font-size: 0.94rem;
	}

	.pth-site-nav-dropdown {
		position: static;
		min-width: 0;
		margin: 0;
		padding: 3px 0 8px 16px;
		border: 0;
		border-bottom: 1px solid rgba(207, 213, 206, 0.72);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.pth-site-nav-dropdown a {
		padding: 11px 4px;
	}
}

@media (max-width: 560px) {
	.pth-site-logo-image {
		width: 58px;
		height: 58px;
	}

	.pth-site-logo strong {
		font-size: 1rem;
	}

	.pth-site-logo small {
		font-size: 0.66rem;
	}

	.pth-site-access-link,
	.pth-site-access-link + .pth-site-access-link,
	.pth-site-access-link:nth-child(3),
	.pth-site-access-link:nth-child(4) {
		min-height: 132px;
		border: 1px solid var(--pth-bruma-line);
	}
}

/* Exames, agendamento e estrutura institucional */
.pth-exam-scheduling,
.pth-structure-empty {
	width: min(1440px, calc(100vw - 72px));
	margin-right: auto;
	margin-left: auto;
}

.pth-exam-grid {
	gap: 18px;
}

.pth-exam-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--pth-bruma-line);
	border-radius: 16px;
	background: var(--pth-bruma-surface);
}

.pth-exam-card-media {
	position: relative;
	flex: 0 0 auto;
	width: 100%;
	min-height: 0;
	aspect-ratio: 16 / 9;
	margin: 0;
	overflow: hidden;
	background: #dfe4de;
}

.pth-exam-card-media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(9, 62, 43, 0.02), rgba(9, 62, 43, 0.1));
	content: "";
	pointer-events: none;
}

.pth-exam-card-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.pth-exam-card-media figcaption {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 1;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(6, 57, 39, 0.9);
	color: #ffffff;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	line-height: 1;
	text-transform: uppercase;
}

.pth-exam-card-body {
	flex: 1 1 auto;
	padding: 24px;
}

.pth-exam-card-category {
	display: block;
	margin-bottom: 10px;
	color: var(--pth-bruma-green);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.pth-exam-card .pth-exam-card-body h2 {
	margin-bottom: 9px;
	font-size: 1.08rem;
}

.pth-exam-card .pth-exam-card-body p {
	font-size: 0.88rem;
	line-height: 1.58;
}

.pth-exam-scheduling {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	margin-top: 22px;
	padding: 30px 34px;
	border-radius: 16px;
	background: var(--pth-bruma-green);
	color: #f7f8f4;
}

.pth-exam-scheduling span,
.pth-exam-scheduling strong {
	display: block;
}

.pth-exam-scheduling span {
	margin-bottom: 7px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.pth-exam-scheduling strong {
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	line-height: 1.15;
}

.pth-exam-scheduling p {
	max-width: 760px;
	margin: 9px 0 0;
	color: rgba(247, 248, 244, 0.82);
	line-height: 1.55;
}

.pth-exam-scheduling a,
.pth-contact-card-whatsapp a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 22px;
	border-radius: 999px;
	background: #f7f8f4;
	color: var(--pth-bruma-green-dark);
	font-size: 0.86rem;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
}

.pth-exam-scheduling a:hover,
.pth-exam-scheduling a:focus-visible,
.pth-contact-card-whatsapp a:hover,
.pth-contact-card-whatsapp a:focus-visible {
	background: #ffffff;
	outline: 2px solid rgba(247, 248, 244, 0.5);
	outline-offset: 3px;
}

.pth-contact-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pth-contact-card-whatsapp {
	background: var(--pth-bruma-green);
}

.pth-contact-card-whatsapp span,
.pth-contact-card-whatsapp h2,
.pth-contact-card-whatsapp p {
	color: #f7f8f4;
}

.pth-contact-card-whatsapp p {
	color: rgba(247, 248, 244, 0.82);
}

.pth-contact-card-whatsapp a {
	margin-top: 20px;
}

.pth-structure-intro .pth-text-stack {
	max-width: 900px;
}

.pth-structure-empty {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 18px;
	padding: 34px;
	border: 1px dashed rgba(15, 101, 72, 0.35);
	border-radius: 16px;
	background: rgba(247, 248, 244, 0.6);
}

.pth-structure-empty > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	flex: 0 0 72px;
	border-radius: 50%;
	background: var(--pth-bruma-green);
	color: #ffffff;
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.pth-structure-empty h2 {
	margin: 0 0 7px;
	color: var(--pth-bruma-ink);
	font-size: 1.25rem;
}

.pth-structure-empty p {
	margin: 0;
	color: var(--pth-bruma-muted);
}

@media (max-width: 1180px) {
	.pth-contact-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pth-exam-card {
		flex-direction: column;
	}

	.pth-exam-card-media {
		flex-basis: auto;
		min-height: 0;
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 860px) {
	.pth-exam-scheduling,
	.pth-structure-empty {
		width: min(100% - 32px, 720px);
	}

	.pth-exam-scheduling {
		align-items: flex-start;
		flex-direction: column;
		padding: 28px;
	}

	.pth-contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.pth-exam-card-media {
		min-height: 0;
		aspect-ratio: 16 / 10;
	}

	.pth-exam-card-body {
		padding: 20px;
	}

	.pth-exam-scheduling a {
		width: 100%;
		white-space: normal;
	}

	.pth-structure-empty {
		align-items: flex-start;
		flex-direction: column;
		padding: 26px;
	}
}

/* Paginas internas do Portal da Transparencia */
body.pth-site-controlled .pth-transparency-section-page.alignfull {
	box-sizing: border-box;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding-right: 0 !important;
	padding-left: 0 !important;
	overflow-x: clip;
}

body.pth-site-controlled .pth-landing-page.alignfull {
	box-sizing: border-box;
	padding-right: 0 !important;
	padding-left: 0 !important;
}

.pth-transparency-section-page > .pth-section-page-intro {
	position: relative;
	margin-top: 24px;
	margin-bottom: 18px;
	padding: clamp(32px, 4vw, 56px);
	overflow: hidden;
	border: 1px solid rgba(15, 101, 72, 0.15);
	border-radius: 18px;
	background:
		radial-gradient(circle at 92% 16%, rgba(190, 216, 199, 0.48), transparent 28%),
		linear-gradient(135deg, #f7f8f4 0%, #edf3ee 100%);
}

.pth-transparency-section-page > .pth-section-page-intro::after {
	position: absolute;
	right: -82px;
	bottom: -138px;
	width: 310px;
	height: 310px;
	border: 1px solid rgba(15, 101, 72, 0.12);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.pth-transparency-section-page .pth-section-page-intro h1 {
	position: relative;
	z-index: 1;
	max-width: 920px;
	margin: 0 0 12px;
	color: var(--pth-bruma-green-dark);
	font-size: clamp(2.2rem, 4vw, 4.3rem);
	font-weight: 650;
	letter-spacing: -0.045em;
	line-height: 1.02;
}

.pth-transparency-section-page .pth-section-page-intro > p:not(.pth-landing-eyebrow):not(.pth-section-back-link) {
	position: relative;
	z-index: 1;
	max-width: 900px;
	color: var(--pth-bruma-muted);
	font-size: clamp(1rem, 1.35vw, 1.18rem);
	line-height: 1.65;
}

.pth-transparency-section-page .pth-section-back-link {
	position: relative;
	z-index: 1;
	margin-top: 24px;
}

.pth-transparency-section-page .pth-section-back-link a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--pth-bruma-green);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-decoration: none;
}

.pth-transparency-section-page .pth-section-back-link a::before {
	content: "\2190";
	font-size: 1rem;
}

.pth-transparency-section-page > .pth-wrapper {
	margin-top: 0;
	margin-bottom: 18px;
	padding: clamp(26px, 3.5vw, 46px);
	border: 1px solid rgba(15, 101, 72, 0.14);
	border-radius: 18px;
	background: var(--pth-bruma-panel);
	box-shadow: none;
}

.pth-transparency-section-page .pth-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(15, 101, 72, 0.14);
}

.pth-transparency-section-page .pth-header h2 {
	margin: 0;
	color: var(--pth-bruma-green-dark);
	font-size: clamp(1.7rem, 2.6vw, 2.5rem);
	font-weight: 650;
	letter-spacing: -0.03em;
}

.pth-transparency-section-page .pth-update-info {
	max-width: 520px;
	margin: 0;
	color: var(--pth-bruma-muted);
	font-size: 0.82rem;
	line-height: 1.5;
	text-align: right;
}

.pth-transparency-section-page .pth-filters-form {
	margin-bottom: 14px;
	padding: 20px;
	border: 1px solid rgba(15, 101, 72, 0.13);
	border-radius: 12px;
	background: rgba(223, 235, 226, 0.62);
}

.pth-transparency-section-page .pth-filter-grid {
	grid-template-columns: minmax(260px, 1.35fr) minmax(220px, 1fr);
	gap: 14px;
}

.pth-transparency-section-page .pth-filter-item label {
	margin-bottom: 7px;
	color: var(--pth-bruma-ink);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.pth-transparency-section-page .pth-filter-item input,
.pth-transparency-section-page .pth-filter-item select {
	min-height: 46px;
	padding: 10px 13px;
	border-color: rgba(15, 101, 72, 0.18);
	border-radius: 8px;
	color: var(--pth-bruma-ink);
	font: inherit;
	font-size: 0.92rem;
}

.pth-transparency-section-page .pth-filter-actions {
	margin-top: 14px;
}

.pth-transparency-section-page .pth-button {
	min-height: 42px;
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 800;
	line-height: 1.25;
}

.pth-transparency-publications .pth-filters-form {
	padding: 20px;
	border-color: rgba(15, 101, 72, 0.13);
	background: rgba(223, 235, 226, 0.62);
}

.pth-transparency-publications .pth-filter-item label {
	margin-bottom: 7px;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.pth-transparency-publications .pth-filter-item input,
.pth-transparency-publications .pth-filter-item select {
	min-height: 44px;
	font: inherit;
	font-size: 0.9rem;
}

.pth-transparency-publications .pth-button {
	min-height: 40px;
	padding: 9px 15px;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.25;
}

.pth-transparency-publications .pth-export {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 16px;
}

.pth-transparency-publications .pth-export .pth-button {
	background: transparent;
	color: var(--pth-bruma-green);
}

.pth-transparency-publications .pth-export .pth-button:hover,
.pth-transparency-publications .pth-export .pth-button:focus-visible {
	background: var(--pth-bruma-green);
	color: #fff;
}

.pth-transparency-publications .pth-meta-list {
	color: var(--pth-bruma-muted);
	font-size: 0.88rem;
	line-height: 1.55;
}

.pth-transparency-publications .pth-card-title {
	font-size: 1.02rem;
	line-height: 1.35;
}

.pth-transparency-publications .pth-card-detail a {
	font-size: 0.8rem;
	font-weight: 800;
	text-decoration: none;
}

.pth-transparency-section-page .pth-section-faq .pth-export {
	display: none;
}

.pth-transparency-section-page .pth-export {
	display: flex;
	justify-content: flex-end;
	margin: 0 0 18px;
}

.pth-transparency-section-page .pth-export .pth-button {
	background: transparent;
	color: var(--pth-bruma-green);
}

.pth-transparency-section-page .pth-export .pth-button:hover,
.pth-transparency-section-page .pth-export .pth-button:focus-visible {
	background: var(--pth-bruma-green);
	color: #fff;
}

.pth-transparency-section-page .pth-section-documentos .pth-results {
	gap: 14px;
}

.pth-transparency-section-page .pth-section-documentos .pth-card {
	min-height: 210px;
	padding: 24px;
	border: 1px solid rgba(15, 101, 72, 0.15);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.7);
	transition: border-color 0.18s ease, transform 0.18s ease;
}

.pth-transparency-section-page .pth-section-documentos .pth-card:hover {
	border-color: rgba(15, 101, 72, 0.36);
	transform: translateY(-2px);
}

.pth-transparency-section-page .pth-card-title {
	margin-bottom: 14px;
	font-size: 1.08rem;
	line-height: 1.35;
}

.pth-transparency-section-page .pth-meta-list {
	padding-left: 18px;
	color: var(--pth-bruma-muted);
	font-size: 0.9rem;
	line-height: 1.55;
}

.pth-transparency-section-page .pth-card-detail a {
	font-size: 0.82rem;
	font-weight: 800;
	text-decoration: none;
}

.pth-transparency-section-page > .pth-section-page-note {
	margin-top: 0;
	margin-bottom: 36px;
	padding: 17px 20px;
	border: 1px solid rgba(15, 101, 72, 0.14);
	border-left: 4px solid var(--pth-bruma-green);
	border-radius: 10px;
	background: rgba(247, 248, 244, 0.72);
}

.pth-transparency-section-page > .pth-section-page-note p {
	color: var(--pth-bruma-muted);
	font-size: 0.9rem;
	line-height: 1.6;
}

@media (max-width: 860px) {
	.pth-transparency-section-page > .pth-section-page-intro {
		margin-top: 18px;
		padding: 32px 26px;
	}

	.pth-transparency-section-page .pth-header {
		display: block;
	}

	.pth-transparency-section-page .pth-update-info {
		margin-top: 10px;
		text-align: left;
	}

	.pth-transparency-section-page .pth-filter-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.pth-transparency-section-page > .pth-section-page-intro {
		padding: 28px 22px;
		border-radius: 14px;
	}

	.pth-transparency-section-page > .pth-wrapper {
		padding: 22px 18px;
		border-radius: 14px;
	}

	.pth-transparency-section-page .pth-filter-actions,
	.pth-transparency-section-page .pth-export {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.pth-transparency-section-page .pth-export {
		grid-template-columns: 1fr;
	}

	.pth-transparency-section-page .pth-button {
		width: 100%;
		text-align: center;
	}
}
