/*
Theme Name: GeneratePress Child — Dr. Antônio Pedruzzi
Theme URI: https://drantoniopedruzzi.com.br
Description: Child theme of GeneratePress implementing the Figma design for Dr. Antônio Eugênio Pedruzzi (psychiatry practice). Design tokens from design-output/design-tokens.json.
Author: Built with Claude Code
Template: generatepress
Version: 0.1.0
Text Domain: generatepress-child
*/

/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
	--c-primary: #E173F6;
	--c-primary-tint: #F9EAFD;
	--c-primary-hover: #D45BEC;
	--c-secondary: #0B285E;
	--c-secondary-hover: #123974;
	--c-secondary-deep: #0B285E; /* brand navy for button text/borders/fills */
	--c-teal: #0A4C5C;
	--c-accent: #0D6FD6;
	--c-salmon: #FF8576;
	--c-text: #101922;
	--c-text-light: #4A5361;
	--c-bg: #FFFFFF;
	--c-bg-warm: #FAF8F4;
	--c-bg-light: #E2DED5;
	--c-bg-beige: #E5D5C6;
	--c-border: #E4E0D8;
	--c-crisis-tint: #FFF1EE;
	--c-whatsapp: #25D366;
	--c-social: #241FB9;

	--font-head: "Cormorant Garamond", Georgia, serif;
	--font-body: "Nunito Sans", system-ui, -apple-system, sans-serif;

	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-pill: 999px;

	--shadow-header: 0 2px 8px rgba(15,26,34,0.05);
	--shadow-card: 0 8px 24px rgba(11,40,94,0.10);
	--shadow-card-primary: 0 10px 28px rgba(225,115,246,0.28);
	--shadow-button: 0 4px 12px rgba(11,40,94,0.25);
	--shadow-fab: 0 6px 16px rgba(0,0,0,0.30);

	--wrap: 1200px;
	--pad-x: 96px;
	--header-h: 72px;
}

/* ==========================================================================
   Base
   ========================================================================== */
body.gpc {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.625;
	color: var(--c-text);
	background: var(--c-bg);
	-webkit-font-smoothing: antialiased;
	margin: 0;
}
.gpc *,
.gpc *::before,
.gpc *::after { box-sizing: border-box; }

.gpc h1, .gpc h2, .gpc h3 {
	font-family: var(--font-head);
	font-weight: 600;
	color: var(--c-secondary);
	margin: 0;
	line-height: 1.12;
}
.gpc p { margin: 0; }
.gpc a { color: var(--c-accent); text-decoration: none; }
.gpc img { max-width: 100%; height: auto; display: block; }

.gpc-container {
	max-width: var(--wrap);
	margin: 0 auto;
	padding-left: var(--pad-x);
	padding-right: var(--pad-x);
	width: 100%;
}

/* Section rhythm & backgrounds */
.gpc-section { padding: 88px 0; }
.gpc-section--warm { background: var(--c-bg-warm); }
.gpc-section--tint { background: var(--c-primary-tint); }
.gpc-section--navy { background: var(--c-secondary); }

.gpc-overline {
	font-size: 13px;
	line-height: 16px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--c-teal);
	margin: 0 0 16px;
}
.gpc-section-title { font-size: 40px; line-height: 50px; }
.gpc-section-intro {
	font-size: 18px;
	line-height: 29px;
	color: var(--c-text-light);
	max-width: 640px;
	margin-top: 16px;
}
.gpc-section-head { max-width: 740px; }
.gpc-section-head--center { max-width: 740px; margin: 0 auto; text-align: center; }
.gpc-section-head--center .gpc-section-intro { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.gpc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 52px;
	padding: 0 26px;
	border-radius: var(--radius-pill);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.2px;
	line-height: 1;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
	text-align: center;
}
.gpc-btn svg { width: 20px; height: 20px; flex: none; }
.gpc-btn--primary { background: var(--c-primary); color: var(--c-secondary-deep); }
.gpc-btn--primary:hover { background: var(--c-primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-card-primary); }
.gpc-btn--secondary { background: var(--c-secondary-deep); color: #fff; }
.gpc-btn--secondary:hover { background: var(--c-secondary); transform: translateY(-2px); box-shadow: var(--shadow-button); }
.gpc-btn--ghost { background: transparent; color: var(--c-secondary-deep); border-color: var(--c-secondary-deep); }
.gpc-btn--ghost:hover { background: var(--c-secondary-deep); color: #fff; }
.gpc-btn--wa { background: var(--c-primary); color: var(--c-secondary-deep); }
.gpc-btn--wa:hover { background: var(--c-primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-card-primary); }

/* Buttons are <a> elements; the base `.gpc a` link color (specificity 0,1,1) otherwise
   overrides the single-class button color rules above. These win it back. */
.gpc a.gpc-btn--primary,
.gpc a.gpc-btn--wa,
.gpc a.gpc-btn--ghost { color: var(--c-secondary-deep); }
.gpc a.gpc-btn--secondary { color: #fff; }
.gpc a.gpc-btn--ghost:hover { color: #fff; }

/* ==========================================================================
   Header
   ========================================================================== */
.gpc-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255,255,255,0.94);
	backdrop-filter: saturate(180%) blur(8px);
	box-shadow: var(--shadow-header);
	border-bottom: 1px solid var(--c-border);
}
.gpc-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-h);
	gap: 24px;
}
.gpc-logo img { width: 260px; height: auto; max-width: 100%; }
.gpc-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 32px;
}
.gpc-nav a {
	color: var(--c-text);
	font-weight: 600;
	font-size: 15px;
	transition: color .15s ease;
}
.gpc-nav a:hover { color: var(--c-primary-hover); }
.gpc-header-cta { display: flex; align-items: center; gap: 16px; }
.gpc-header-cta .gpc-btn { height: 48px; padding: 0 22px; }

/* Mobile nav toggle (checkbox hack) */
.gpc-nav-toggle,
.gpc-nav-check { display: none; }
.gpc-nav-toggle {
	width: 44px; height: 44px;
	border: 0; background: transparent;
	color: var(--c-secondary);
	cursor: pointer;
	align-items: center; justify-content: center;
}
.gpc-nav-toggle svg { width: 26px; height: 26px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.gpc-hero { background: var(--c-bg-warm); overflow: hidden; }
.gpc-hero-inner {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 64px;
	align-items: center;
	padding-top: 72px;
	padding-bottom: 72px;
}
.gpc-hero h1 {
	font-size: 56px;
	line-height: 64px;
	margin: 0 0 24px;
}
.gpc-hero-lead {
	font-size: 18px;
	line-height: 29px;
	color: var(--c-text-light);
	max-width: 540px;
	margin-bottom: 32px;
}
.gpc-hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.gpc-trust { display: inline-flex; align-items: center; gap: 10px; color: var(--c-text-light); font-size: 15px; }
.gpc-trust svg { width: 18px; height: 18px; color: var(--c-primary); fill: var(--c-primary); }

.gpc-hero-photo { position: relative; justify-self: center; width: 400px; max-width: 100%; }
.gpc-hero-photo::before {
	content: "";
	position: absolute;
	left: 40px; top: 90px;
	width: 360px; height: 360px;
	max-width: 100%;
	border-radius: 50%;
	background: radial-gradient(circle at 50% 50%, var(--c-primary-tint), rgba(225,115,246,0.18));
	z-index: 0;
}
.gpc-hero-photo img {
	position: relative;
	z-index: 1;
	width: 360px;
	max-width: 100%;
	height: 440px;
	object-fit: cover;
	object-position: 50% 20%;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
}

/* ==========================================================================
   Symptoms
   ========================================================================== */
.gpc-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 40px 0;
}
.gpc-chip {
	background: var(--c-bg-warm);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-pill);
	padding: 12px 20px;
	font-size: 16px;
	font-weight: 600;
	color: var(--c-text);
}
.gpc-symptoms-close {
	font-size: 18px;
	line-height: 29px;
	color: var(--c-text-light);
	max-width: 1008px;
}

/* ==========================================================================
   Value banner
   ========================================================================== */
.gpc-value { text-align: center; padding: 72px 0; }
.gpc-value blockquote {
	font-family: var(--font-head);
	font-style: italic;
	font-weight: 500;
	font-size: 28px;
	line-height: 40px;
	color: #fff;
	max-width: 800px;
	margin: 0 auto 20px;
}
.gpc-value cite { color: rgba(255,255,255,0.7); font-style: normal; font-size: 15px; font-weight: 600; }

/* ==========================================================================
   Cards (modality + condition)
   ========================================================================== */
.gpc-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.gpc-card {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	padding: 32px;
	display: flex;
	flex-direction: column;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
/* Description grows so buttons/links align at the bottom across cards of unequal text length. */
.gpc-card p { flex: 1 1 auto; }
.gpc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
.gpc-icon-badge {
	width: 56px; height: 56px;
	border-radius: var(--radius-md);
	background: var(--c-primary-tint);
	color: var(--c-primary-hover);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 20px;
}
.gpc-icon-badge svg { width: 26px; height: 26px; }
.gpc-card h3 { font-size: 26px; line-height: 34px; margin-bottom: 12px; }
.gpc-card p { color: var(--c-text-light); font-size: 16px; line-height: 26px; }
.gpc-card .gpc-btn { margin-top: 24px; width: 100%; }
.gpc-card-link {
	display: inline-flex; align-items: center; gap: 8px;
	margin-top: 20px; font-weight: 700; color: var(--c-primary-hover);
}
.gpc-card-link svg { width: 18px; height: 18px; transition: transform .15s ease; }
.gpc-card:hover .gpc-card-link svg { transform: translateX(4px); }
.gpc-note { margin-top: 24px; font-size: 15px; color: var(--c-text-light); }

/* ==========================================================================
   First consultation (steps)
   ========================================================================== */
.gpc-consult-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.gpc-steps { display: flex; flex-direction: column; gap: 28px; }
.gpc-step { display: flex; gap: 16px; }
.gpc-step-num {
	flex: none;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--c-secondary);
	color: #fff;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 20px;
	display: flex; align-items: center; justify-content: center;
}
.gpc-step h3 { font-family: var(--font-body); font-size: 20px; line-height: 28px; font-weight: 700; color: var(--c-text); margin-bottom: 4px; }
.gpc-step p { color: var(--c-text-light); font-size: 16px; line-height: 26px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.gpc-faq { max-width: 740px; margin: 40px auto 0; }
.gpc-faq details {
	border-bottom: 1px solid var(--c-border);
}
.gpc-faq summary {
	list-style: none;
	cursor: pointer;
	padding: 24px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-weight: 700;
	font-size: 18px;
	color: var(--c-secondary);
}
.gpc-faq summary::-webkit-details-marker { display: none; }
.gpc-faq summary svg { flex: none; width: 22px; height: 22px; color: var(--c-primary-hover); transition: transform .2s ease; }
.gpc-faq details[open] summary svg { transform: rotate(180deg); }
.gpc-faq .gpc-faq-body { padding: 0 0 24px; color: var(--c-text-light); font-size: 16px; line-height: 26px; }
.gpc-faq-cta { text-align: center; margin-top: 40px; }

/* ==========================================================================
   Blog
   ========================================================================== */
.gpc-blog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.gpc-blog-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 24px; margin-top: 40px; }
.gpc-blog-side { display: grid; gap: 24px; }
.gpc-blog-card {
	background: #fff; border: 1px solid var(--c-border);
	border-radius: var(--radius-lg); overflow: hidden;
	display: flex; flex-direction: column;
	transition: transform .2s ease, box-shadow .2s ease;
}
.gpc-blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.gpc-blog-thumb { aspect-ratio: 16 / 10; background: var(--c-bg-beige); }
.gpc-blog-card--row { flex-direction: row; }
.gpc-blog-card--row .gpc-blog-thumb { width: 40%; aspect-ratio: auto; }
.gpc-blog-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.gpc-tag { align-self: flex-start; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--c-primary-hover); background: var(--c-primary-tint); padding: 4px 10px; border-radius: var(--radius-pill); }
.gpc-blog-body h3 { font-size: 22px; line-height: 28px; }
.gpc-blog-card--big .gpc-blog-body h3 { font-size: 26px; line-height: 32px; }
.gpc-blog-meta { font-size: 13px; color: var(--c-text-light); }

/* ==========================================================================
   Crisis notice
   ========================================================================== */
.gpc-crisis { background: var(--c-crisis-tint); padding: 24px 0; }
.gpc-crisis-inner { display: flex; align-items: center; gap: 16px; }
.gpc-crisis svg { flex: none; width: 24px; height: 24px; color: var(--c-salmon); }
.gpc-crisis p { font-size: 15px; line-height: 24px; color: var(--c-text); }

/* ==========================================================================
   Contact
   ========================================================================== */
.gpc-contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.gpc-form { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.gpc-field label { display: block; font-size: 14px; font-weight: 700; color: var(--c-secondary); margin-bottom: 6px; }
.gpc-field input,
.gpc-field textarea {
	width: 100%;
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	padding: 14px 16px;
	font-family: var(--font-body);
	font-size: 16px;
	color: var(--c-text);
	background: #fff;
}
.gpc-field input { height: 52px; }
.gpc-field textarea { min-height: 140px; resize: vertical; }
.gpc-field input:focus,
.gpc-field textarea:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(225,115,246,0.18); }
.gpc-form-note { font-size: 13px; color: var(--c-text-light); }
.gpc-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.gpc-form-alert { border-radius: var(--radius-md); padding: 14px 16px; font-size: 15px; font-weight: 600; margin-top: 24px; }
.gpc-form-alert--ok { background: #EAF4EB; color: #2E7D32; }
.gpc-form-alert--err { background: #FBEAEA; color: #C62828; }
.gpc-info-title { font-size: 26px; margin-bottom: 24px; }
.gpc-info-row { display: flex; gap: 16px; padding: 14px 0; }
.gpc-info-row svg { flex: none; width: 24px; height: 24px; color: var(--c-primary-hover); margin-top: 2px; }
.gpc-info-row strong { display: block; font-size: 16px; color: var(--c-text); }
.gpc-info-row span { font-size: 15px; color: var(--c-text-light); }

/* ==========================================================================
   Footer
   ========================================================================== */
.gpc-site-footer { background: var(--c-secondary); color: rgba(255,255,255,0.8); padding: 64px 0 32px; }
.gpc-footer-cols { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr; gap: 32px; }
.gpc-footer-brand img { width: 200px; height: auto; max-width: 100%; margin-bottom: 20px; }
.gpc-footer-brand p { font-size: 15px; line-height: 24px; margin-bottom: 8px; }
.gpc-footer-brand .gpc-crm { font-size: 14px; color: rgba(255,255,255,0.6); }
.gpc-site-footer h4 { font-family: var(--font-body); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin: 0 0 18px; }
.gpc-site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.gpc-site-footer li { margin: 0; }
.gpc-site-footer a { color: rgba(255,255,255,0.8); font-size: 15px; }
.gpc-site-footer a:hover { color: #fff; }
.gpc-footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.12);
	margin-top: 48px; padding-top: 24px;
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	font-size: 13px; color: rgba(255,255,255,0.6);
}
.gpc-footer-bottom a { color: rgba(255,255,255,0.6); }

/* Cookie consent banner */
.gpc-cookie {
	position: fixed;
	left: 16px; right: 16px; bottom: 16px;
	z-index: 80;
	display: none;
	align-items: center;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
	max-width: 1000px;
	margin: 0 auto;
	background: var(--c-secondary);
	color: #fff;
	padding: 18px 24px;
	border-radius: var(--radius-lg);
	box-shadow: 0 8px 30px rgba(0,0,0,0.28);
}
.gpc-cookie.is-visible { display: flex; }
.gpc-cookie p { font-size: 14px; line-height: 20px; color: rgba(255,255,255,0.9); flex: 1 1 320px; margin: 0; }
.gpc-cookie a { color: #fff; text-decoration: underline; }
.gpc-cookie-actions { display: flex; gap: 12px; flex: none; }
.gpc-cookie .gpc-btn { height: 44px; padding: 0 22px; }
.gpc-cookie .gpc-btn--ghost { color: #fff; border-color: rgba(255,255,255,0.55); }
.gpc-cookie .gpc-btn--ghost:hover { background: #fff; color: var(--c-secondary); }
@media (max-width: 600px) {
	.gpc-cookie { flex-direction: column; align-items: stretch; text-align: center; }
	.gpc-cookie-actions { justify-content: center; }
}

/* WhatsApp float */
.gpc-wa-float {
	position: fixed;
	right: 24px; bottom: 24px;
	width: 64px; height: 64px;
	border-radius: 50%;
	background: var(--c-whatsapp);
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	box-shadow: var(--shadow-fab);
	z-index: 60;
	transition: transform .2s ease;
}
.gpc-wa-float:hover { transform: scale(1.06); color: #fff; }
.gpc-wa-float svg { width: 32px; height: 32px; }

/* ==========================================================================
   Condition page
   ========================================================================== */
.gpc-cond-hero { background: var(--c-primary-tint); padding: 64px 0; }
.gpc-cond-hero-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.gpc-breadcrumb { font-size: 14px; color: var(--c-text-light); margin-bottom: 16px; }
.gpc-breadcrumb a { color: var(--c-text-light); }
.gpc-breadcrumb a:hover { color: var(--c-primary-hover); }
.gpc-cond-hero h1 { font-size: 48px; line-height: 56px; margin-bottom: 20px; }
.gpc-cond-lead { font-size: 18px; line-height: 29px; color: var(--c-text-light); max-width: 620px; margin-bottom: 28px; }
.gpc-cond-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.gpc-cond-cta-note { font-size: 14px; color: var(--c-text-light); }
.gpc-cond-icon { width: 160px; height: 160px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; color: var(--c-primary-hover); box-shadow: var(--shadow-card); }

.gpc-symptom-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 48px; margin-top: 32px; list-style: none; padding: 0; }
.gpc-symptom-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--c-text); font-size: 16px; line-height: 26px; }
.gpc-symptom-list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--c-primary); margin-top: 9px; flex: none; }

.gpc-card--plain { padding: 28px; }
.gpc-card--plain:hover { transform: none; box-shadow: none; border-color: var(--c-border); }
.gpc-card--plain h3 { font-size: 22px; line-height: 28px; }

.gpc-cta-band { background: var(--c-secondary); text-align: center; padding: 64px 0; }
.gpc-cta-band h2 { color: #fff; font-size: 32px; line-height: 40px; margin-bottom: 28px; }

.gpc-page-content p { margin-bottom: 16px; color: var(--c-text-light); }

/* ==========================================================================
   Generic content / legal pages
   ========================================================================== */
.gpc-legal { max-width: 760px; }
.gpc-legal-content { margin-top: 24px; color: var(--c-text-light); font-size: 16px; line-height: 27px; }
.gpc-legal-content h2 { font-size: 26px; line-height: 32px; margin: 36px 0 12px; color: var(--c-secondary); }
.gpc-legal-content h3 { font-size: 20px; line-height: 26px; margin: 24px 0 8px; color: var(--c-secondary); }
.gpc-legal-content p { margin: 0 0 16px; }
.gpc-legal-content ul { margin: 0 0 16px; padding-left: 22px; }
.gpc-legal-content li { margin-bottom: 8px; }
.gpc-legal-content a { color: var(--c-accent); text-decoration: underline; }
.gpc-legal-content strong { color: var(--c-text); }

/* ==========================================================================
   Blog (listing + single)
   ========================================================================== */
.gpc-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gpc-post-grid .gpc-blog-thumb { display: block; }
.gpc-post-grid .gpc-blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gpc-blog-card h3 a { color: var(--c-secondary); }
.gpc-blog-card h3 a:hover { color: var(--c-primary-hover); }
.gpc-blog-excerpt { color: var(--c-text-light); font-size: 15px; line-height: 24px; flex: 1 1 auto; }
.gpc-blog-empty { color: var(--c-text-light); font-size: 18px; }

.gpc-pagination { margin-top: 48px; }
.gpc-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; justify-content: center; }
.gpc-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 12px; border-radius: var(--radius-md); border: 1px solid var(--c-border); color: var(--c-secondary); font-weight: 700; }
.gpc-pagination .page-numbers.current { background: var(--c-secondary); color: #fff; border-color: var(--c-secondary); }
.gpc-pagination a.page-numbers:hover { border-color: var(--c-primary); color: var(--c-primary-hover); }

.gpc-post-hero { padding: 56px 0; }
.gpc-post-title { font-size: 44px; line-height: 52px; margin: 14px 0 10px; }
.gpc-post-featured { margin-bottom: 32px; border-radius: var(--radius-lg); overflow: hidden; }
.gpc-post-featured img { width: 100%; border-radius: var(--radius-lg); }
.gpc-post-back { margin-top: 40px; }
.gpc-post-back a { color: var(--c-primary-hover); font-weight: 700; }

/* ==========================================================================
   Sobre page
   ========================================================================== */
.gpc-accent-italic { font-style: italic; font-weight: 500; color: var(--c-accent); }
.gpc-about-masthead-copy h1 { margin-bottom: 8px; }
.gpc-sobre-crm { font-family: var(--font-head); font-size: 20px; color: var(--c-teal); margin: 0 0 14px; }
.gpc-about-tagline { font-family: var(--font-head); font-weight: 500; font-size: 30px; line-height: 38px; color: var(--c-secondary); margin: 0 0 30px; }
.gpc-about-masthead .gpc-hero-cta { gap: 28px; margin-top: 80px; }

/* Masthead: short identity block (headline, CRM, CTAs) beside the portrait.
   Kept deliberately free of the long bio so the copy column never has to
   fight the photo for width. */
.gpc-about-hero-inner { padding-top: 72px; padding-bottom: 72px; }
.gpc-about-masthead {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 56px;
	align-items: center;
	margin-bottom: 64px;
}
.gpc-about-masthead-copy { min-width: 0; }

/* Narrative: the bio, given its own full-width row with a controlled
   reading measure (~65-70 characters) independent of the portrait. */
.gpc-about-narrative {
	max-width: 680px;
	border-left: 3px solid var(--c-teal);
	padding-left: 32px;
}
.gpc-about-narrative p {
	font-size: 18px;
	line-height: 29px;
	color: var(--c-text-light);
	margin-bottom: 20px;
}
.gpc-about-narrative p:last-child { margin-bottom: 0; }

/* Formation timeline: a connected sequence of credentials (degree, then
   specialization, then further training) — order carries real meaning,
   so a vertical line + node echoes the homepage step pattern. */
.gpc-timeline { max-width: 760px; margin-top: 40px; }
.gpc-timeline-item { position: relative; display: flex; gap: 24px; padding-bottom: 40px; }
.gpc-timeline-item:last-child { padding-bottom: 0; }
.gpc-timeline-item::before {
	content: "";
	position: absolute;
	left: 23px;
	top: 48px;
	bottom: 0;
	width: 2px;
	background: var(--c-border);
}
.gpc-timeline-item:last-child::before { display: none; }
.gpc-timeline-node {
	position: relative;
	z-index: 1;
	flex: none;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--c-primary-tint);
	color: var(--c-primary-hover);
	display: flex;
	align-items: center;
	justify-content: center;
}
.gpc-timeline-content { padding-top: 11px; }
.gpc-timeline-content strong {
	display: block;
	font-weight: 700;
	font-size: 17px;
	line-height: 26px;
	color: var(--c-text);
}
.gpc-timeline-content span {
	display: block;
	font-size: 15px;
	line-height: 24px;
	color: var(--c-text-light);
	margin-top: 2px;
}

/* ==========================================================================
   Responsive — tablet
   ========================================================================== */
@media (max-width: 1024px) {
	:root { --pad-x: 48px; }
	.gpc-hero h1 { font-size: 44px; line-height: 52px; }
	.gpc-about-masthead { grid-template-columns: 1fr 300px; gap: 40px; }
}

@media (max-width: 900px) {
	.gpc-grid-3 { grid-template-columns: repeat(2, 1fr); }
	.gpc-hero-inner,
	.gpc-consult-inner,
	.gpc-contact-inner { grid-template-columns: 1fr; gap: 40px; }
	/* Let single-column grid tracks shrink below their content width — otherwise the
	   fixed-width photo forces the whole column past the viewport and content gets clipped. */
	.gpc-hero-inner > *,
	.gpc-consult-inner > *,
	.gpc-contact-inner > *,
	.gpc-about-masthead > * { min-width: 0; }
	.gpc-hero-photo { order: -1; width: 100%; max-width: 360px; justify-self: center; }
	.gpc-hero-photo img { width: 100%; }
	.gpc-hero-photo::before { width: 300px; height: 300px; left: 30px; top: 70px; }
	.gpc-blog-grid { grid-template-columns: 1fr; }
	.gpc-post-grid { grid-template-columns: 1fr 1fr; }

	.gpc-about-masthead { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }

	/* Hamburger nav — activates where the hero stacks, so the desktop nav never gets cramped */
	.gpc-logo img { width: 200px; }
	.gpc-nav {
		position: fixed;
		inset: var(--header-h) 0 auto 0;
		background: #fff;
		border-bottom: 1px solid var(--c-border);
		box-shadow: var(--shadow-card);
		transform: translateY(-120%);
		transition: transform .25s ease;
		padding: 12px var(--pad-x) 20px;
	}
	.gpc-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
	.gpc-nav a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--c-border); font-size: 16px; }
	.gpc-nav-check:checked ~ .gpc-nav { transform: translateY(0); }
	.gpc-nav-toggle { display: inline-flex; }
	.gpc-header-cta .gpc-btn--header-book { display: none; }
}

/* ==========================================================================
   Responsive — mobile
   ========================================================================== */
@media (max-width: 768px) {
	:root { --pad-x: 20px; }
	.gpc-section { padding: 56px 0; }

	.gpc-hero h1 { font-size: 36px; line-height: 44px; }
	.gpc-section-title { font-size: 30px; line-height: 38px; }
	.gpc-value blockquote { font-size: 24px; line-height: 34px; }
	.gpc-grid-3 { grid-template-columns: 1fr; }
	.gpc-hero-cta .gpc-btn { width: 100%; }
	.gpc-blog-card--row { flex-direction: column; }
	.gpc-blog-card--row .gpc-blog-thumb { width: 100%; aspect-ratio: 16 / 10; }
	.gpc-footer-cols { grid-template-columns: 1fr 1fr; }
	.gpc-footer-bottom { flex-direction: column; align-items: flex-start; }
	.gpc-blog-head { flex-direction: column; align-items: flex-start; }
	.gpc-cond-hero-inner { grid-template-columns: 1fr; }
	.gpc-cond-icon { display: none; }
	.gpc-symptom-list { grid-template-columns: 1fr; }
	.gpc-cond-hero h1 { font-size: 34px; line-height: 42px; }
	.gpc-cta-band h2 { font-size: 26px; line-height: 34px; }
	.gpc-post-grid { grid-template-columns: 1fr; }
	.gpc-post-title { font-size: 32px; line-height: 40px; }

	.gpc-about-hero-inner { padding-top: 48px; padding-bottom: 48px; }
	.gpc-about-masthead { margin-bottom: 40px; }
	.gpc-about-narrative { padding-left: 20px; }
	.gpc-about-narrative p { font-size: 17px; line-height: 27px; }
	.gpc-timeline-item { gap: 16px; padding-bottom: 32px; }
	.gpc-timeline-item::before { left: 19px; top: 40px; }
	.gpc-timeline-node { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
	.gpc-footer-cols { grid-template-columns: 1fr; }
	.gpc-logo img { width: 168px; }
	.gpc-hero h1 { font-size: 32px; line-height: 40px; }
	.gpc-hero-photo img { height: 400px; }
	.gpc-footer-bottom { font-size: 12px; }
}
