/*
Theme Name: Greblo
Theme URI: https://greblo.com.br
Description: Tema customizado para Gissele Greblo - Homeopatia e Saúde
Version: 1.0.3
Author: Desenvolvedor Web
Author URI: https://greblo.com.br
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: greblo
Domain Path: /languages
*/

/* ========================================
   ESTILOS DO TEMA GREBLO
   ======================================== */

:root {
	--sage:       #4D6B5C;
	--sage-light: #EAF0EC;
	--sage-mid:   #8FAF9B;
	--clay:       #A8623E;
	--clay-light: #F5EAE0;
	--cream:      #FAF8F4;
	--parchment:  #F2EDE4;
	--ink:        #1A1F1C;
	--ink-mid:    #3A4139;
	--muted:      #7A8278;
	--border:     #DDD7CC;
	--white:      #FDFCFA;
	--plum:       #6B4F7A;
	--plum-light: #F0EAF5;
	--amber:      #A0660A;
	--amber-light:#FFF3E0;
	--rose:       #9B3560;
	--rose-light: #FDE8F0;
	--blue:       #2E6088;
	--blue-light: #E4EFF5;

	--font-serif: 'Lora', Georgia, serif;
	--font-sans:  'DM Sans', system-ui, sans-serif;

	--radius-sm: 4px;
	--radius-md: 10px;
	--radius-lg: 18px;
	--radius-xl: 28px;

	--shadow-sm: 0 1px 4px rgba(26,31,28,.06);
	--shadow-md: 0 4px 20px rgba(26,31,28,.08);
	--shadow-lg: 0 12px 40px rgba(26,31,28,.10);
}

/* Reset + Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: var(--font-sans);
	background: var(--white);
	color: var(--ink);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Utilities */
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.serif { font-family: var(--font-serif); }

/* Navigation */
.nav {
	position: fixed; top: 0; left: 0; right: 0;
	z-index: 200;
	background: rgba(250,248,244,.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
	max-width: 1160px; margin: 0 auto; padding: 0 40px;
	height: 68px;
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
	font-family: var(--font-serif);
	font-size: 17px;
	color: var(--ink);
	font-style: italic;
	white-space: nowrap;
	flex-shrink: 0;
}
.nav-logo span { font-style: normal; color: var(--sage); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 4px; }

/* Menu WordPress */
.nav-links ul,
.nav-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links li,
.nav-menu li {
	display: flex;
	align-items: center;
}

.nav-links a {
	font-size: 13.5px;
	font-weight: 400;
	color: var(--ink-mid);
	padding: 7px 13px;
	border-radius: 6px;
	transition: background .15s, color .15s;
	white-space: nowrap;
	display: block;
}
.nav-links a:hover { background: var(--sage-light); color: var(--sage); }
.nav-links a.blog-link { color: var(--sage); font-weight: 500; }
.nav-links a.current-menu-item { color: var(--sage); font-weight: 500; }

.nav-menu a {
	font-size: 13.5px;
	font-weight: 400;
	color: var(--ink-mid);
	padding: 7px 13px;
	border-radius: 6px;
	transition: background .15s, color .15s;
	white-space: nowrap;
	display: block;
}
.nav-menu a:hover { background: var(--sage-light); color: var(--sage); }
.nav-menu a.current-menu-item { color: var(--sage); font-weight: 500; }
.nav-cta {
	display: flex; align-items: center; gap: 8px;
	background: var(--clay);
	color: var(--white) !important;
	padding: 9px 20px !important;
	border-radius: 8px !important;
	font-weight: 500 !important;
	font-size: 13.5px;
	transition: background .2s, transform .15s !important;
	flex-shrink: 0;
}
.nav-cta:hover { background: #8f5133 !important; transform: translateY(-1px); }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Menu hambúrguer (visível em tablet/mobile — ver media queries) */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 44px; height: 44px;
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
	flex-shrink: 0;
}
.nav-toggle-bar {
	width: 22px; height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   PÁGINA INICIAL (HOME) — do template-home.html
   ======================================== */

/* Hero */
.hero {
	min-height: 100vh;
	background: var(--parchment);
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding-top: 68px;
}
.hero::before {
	content: '';
	position: absolute; inset: 0;
	background-image:
		radial-gradient(ellipse 60% 80% at 70% 50%, rgba(77,107,92,.07) 0%, transparent 70%),
		radial-gradient(ellipse 40% 60% at 20% 80%, rgba(168,98,62,.05) 0%, transparent 60%);
	pointer-events: none;
}
.hero-content {
	position: relative; z-index: 2;
	padding: 80px 60px 80px 40px;
	max-width: 600px;
	margin-left: auto;
}
.hero-eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 12px; font-weight: 500;
	text-transform: uppercase; letter-spacing: .1em;
	color: var(--sage);
	margin-bottom: 28px;
}
.hero-eyebrow::before {
	content: '';
	display: block; width: 28px; height: 1.5px;
	background: var(--sage);
}
.hero-h1 {
	font-family: var(--font-serif);
	font-size: clamp(36px, 4vw, 54px);
	font-weight: 400;
	line-height: 1.18;
	color: var(--ink);
	margin-bottom: 8px;
}
.hero-h1 em { font-style: italic; color: var(--sage); }
.hero-accent-line {
	width: 64px; height: 2px;
	background: var(--clay);
	transform: rotate(-3deg);
	margin: 22px 0 26px;
	border-radius: 2px;
}
.hero-sub {
	font-size: 17px;
	font-weight: 300;
	color: var(--ink-mid);
	line-height: 1.7;
	max-width: 440px;
	margin-bottom: 36px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.btn-primary {
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--clay);
	color: var(--white);
	padding: 14px 26px;
	border-radius: 10px;
	font-size: 15px; font-weight: 500;
	transition: background .2s, transform .15s, box-shadow .2s;
	box-shadow: 0 4px 16px rgba(168,98,62,.25);
}
.btn-primary:hover { background: #8f5133; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(168,98,62,.3); }
.btn-primary svg { width: 18px; height: 18px; }

.btn-ghost {
	display: inline-flex; align-items: center; gap: 6px;
	color: var(--sage);
	font-size: 14px; font-weight: 500;
	border-bottom: 1.5px solid var(--sage-mid);
	padding-bottom: 2px;
	transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--clay); border-color: var(--clay); }

.hero-proof {
	display: flex; align-items: center; flex-wrap: wrap; row-gap: 6px; gap: 12px;
	font-size: 13px; color: var(--muted);
}
.stars { color: #C8972A; letter-spacing: 1px; }
.hero-proof-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }

.hero-image-side {
	position: relative;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
}
.hero-image-side img,
.hero-img-placeholder {
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: top center;
}
.hero-img-placeholder {
	background: linear-gradient(160deg, var(--sage-light) 0%, var(--sage-mid) 100%);
	display: flex; flex-direction: column;
	align-items: center; justify-content: center;
	font-family: var(--font-serif);
	font-size: 15px; color: var(--sage);
	gap: 8px;
}
.hero-img-placeholder span { font-size: 12px; opacity: .6; font-family: var(--font-sans); }

.hero-card {
	position: absolute; bottom: 48px; left: 150px;
	background: var(--white);
	border-radius: var(--radius-md);
	padding: 16px 20px;
	box-shadow: var(--shadow-lg);
	min-width: 220px;
}
.hero-card-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 4px; }
.hero-card-name { font-family: var(--font-serif); font-size: 15px; font-style: italic; color: var(--ink); }
.hero-card-spec { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.spec-pill {
	font-size: 11px; font-weight: 500;
	background: var(--sage-light); color: var(--sage);
	padding: 3px 9px; border-radius: 20px;
}

/* Números de credibilidade */
.credibility { background: var(--ink); padding: 52px 0; }
.credibility-inner {
	max-width: 1160px; margin: 0 auto; padding: 0 40px;
	display: grid; grid-template-columns: repeat(4, 1fr);
	gap: 0;
	align-items: center;
}
.cred-divider { width: 1px; background: rgba(255,255,255,.1); align-self: stretch; margin: 8px 0; }
.cred-item { text-align: center; padding: 8px 24px; }
.cred-number {
	font-family: var(--font-serif);
	font-size: 38px;
	font-weight: 400;
	color: var(--white);
	line-height: 1;
	margin-bottom: 6px;
}
.cred-number em { font-style: italic; color: var(--sage-mid); }
.cred-label { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.4; }

/* Section commons (usado na home e em páginas internas) */
.section { padding: 96px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--ink); }
.section-parchment { background: var(--parchment); }
.section-label {
	display: flex; align-items: center; gap: 10px;
	font-size: 11.5px; font-weight: 500;
	text-transform: uppercase; letter-spacing: .12em;
	color: var(--sage);
	margin-bottom: 16px;
}
.section-label::after { content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--sage-mid); }
.section-h2 {
	font-family: var(--font-serif);
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 400;
	line-height: 1.25;
	color: var(--ink);
	margin-bottom: 16px;
}
.section-h2 em { font-style: italic; color: var(--sage); }
.section-h2-white { color: var(--white); }
.section-h2-white em { color: var(--sage-mid); }
.section-intro {
	font-size: 17px;
	font-weight: 300;
	color: var(--muted);
	max-width: 520px;
	line-height: 1.7;
	margin-bottom: 52px;
}

/* 3 Pilares */
.pillars-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
}
.pillar { background: var(--white); padding: 44px 36px; position: relative; transition: background .3s; }
.pillar:hover { background: var(--sage-light); }
.pillar-num {
	font-family: var(--font-serif);
	font-size: 60px;
	font-weight: 400;
	color: var(--parchment);
	line-height: 1;
	margin-bottom: -12px;
	user-select: none;
}
.pillar-icon {
	width: 44px; height: 44px;
	border-radius: 10px;
	background: var(--sage-light);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 18px;
	color: var(--sage);
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar-title {
	font-family: var(--font-serif);
	font-size: 20px;
	font-weight: 500;
	color: var(--ink);
	margin-bottom: 12px;
	line-height: 1.3;
}
.pillar-body { font-size: 14.5px; color: var(--muted); line-height: 1.7; }
.pillar-link {
	display: inline-flex; align-items: center; gap: 5px;
	margin-top: 20px;
	font-size: 13px; font-weight: 500;
	color: var(--sage);
	border-bottom: 1px solid var(--sage-mid);
	padding-bottom: 1px;
	transition: gap .2s, color .2s;
}
.pillar-link:hover { gap: 8px; color: var(--clay); border-color: var(--clay); }

/* Sintomas (cards da home) */
.symptoms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.symptom-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	position: relative;
	overflow: hidden;
	transition: transform .25s, box-shadow .25s;
}
.symptom-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.symptom-card::after {
	content: '';
	position: absolute; bottom: 0; left: 0; right: 0;
	height: 3px;
	background: var(--sage-mid);
	transform: scaleX(0);
	transition: transform .3s;
	transform-origin: left;
}
.symptom-card:hover::after { transform: scaleX(1); }
.symptom-label {
	font-size: 11px; font-weight: 500;
	text-transform: uppercase; letter-spacing: .1em;
	color: var(--sage); margin-bottom: 14px;
}
.symptom-title {
	font-family: var(--font-serif);
	font-size: 19px;
	font-style: italic;
	color: var(--ink);
	line-height: 1.35;
	margin-bottom: 12px;
}
.symptom-body { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 22px; }
.btn-symptom {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 13px; font-weight: 500;
	color: var(--clay);
	border-bottom: 1.5px solid var(--clay-light);
	padding-bottom: 2px;
	transition: border-color .2s;
}
.btn-symptom:hover { border-color: var(--clay); }

/* Como funciona */
.steps-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.steps-image {
	border-radius: var(--radius-xl);
	overflow: hidden;
	height: 480px;
	background: var(--sage-light);
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-serif);
	font-size: 14px; color: var(--sage);
	position: relative;
}
.steps-image::before {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(160deg, transparent 50%, rgba(77,107,92,.15) 100%);
}
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-item { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border); position: relative; }
.step-item:last-child { border-bottom: none; }
.step-num-wrap { flex-shrink: 0; position: relative; }
.step-num {
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--sage);
	color: var(--white);
	font-family: var(--font-serif);
	font-size: 18px;
	display: flex; align-items: center; justify-content: center;
}
.step-connector {
	position: absolute; left: 50%; top: 44px;
	width: 1px; height: calc(100% + 29px);
	background: var(--border);
	transform: translateX(-50%);
}
.step-item:last-child .step-connector { display: none; }
.step-content { padding-top: 6px; }
.step-title { font-size: 17px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.step-body { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* Depoimentos */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tmt-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	border: 1px solid var(--border);
	position: relative;
	transition: box-shadow .25s;
}
.tmt-card:hover { box-shadow: var(--shadow-md); }
.tmt-quote-mark {
	font-family: var(--font-serif);
	font-size: 64px;
	line-height: .8;
	color: var(--sage-light);
	margin-bottom: 12px;
	user-select: none;
}
.tmt-text {
	font-family: var(--font-serif);
	font-size: 15px;
	font-style: italic;
	color: var(--ink-mid);
	line-height: 1.7;
	margin-bottom: 20px;
}
.tmt-stars { color: #C8972A; font-size: 13px; margin-bottom: 12px; letter-spacing: 2px; }
.tmt-footer { display: flex; align-items: center; gap: 10px; }
.tmt-avatar {
	width: 36px; height: 36px; border-radius: 50%;
	background: var(--sage-mid);
	display: flex; align-items: center; justify-content: center;
	font-size: 14px; font-weight: 500; color: var(--white);
	flex-shrink: 0;
}
.tmt-name { font-size: 13px; font-weight: 500; color: var(--ink); }
.tmt-source { font-size: 11px; color: var(--muted); }

/* Sobre (mini — home) */
.about-home { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: center; }
.about-photo {
	border-radius: var(--radius-xl);
	overflow: hidden;
	height: 460px;
	background: var(--parchment);
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-serif); color: var(--muted); font-size: 14px;
	position: relative;
}
.about-photo-decor {
	position: absolute; bottom: -20px; right: -20px;
	width: 120px; height: 120px;
	border-radius: 50%;
	border: 2px solid var(--sage-light);
	pointer-events: none;
}
.about-quote {
	font-family: var(--font-serif);
	font-size: 20px;
	font-style: italic;
	color: var(--ink);
	line-height: 1.5;
	border-left: 3px solid var(--sage);
	padding-left: 24px;
	margin-bottom: 24px;
}
.about-body { font-size: 15px; color: var(--ink-mid); line-height: 1.75; margin-bottom: 32px; }
.credentials-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.cred-pill {
	font-size: 12px; font-weight: 500;
	background: var(--sage-light); color: var(--sage);
	padding: 5px 13px; border-radius: 20px;
}

/* Localização */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.location-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: box-shadow .25s;
}
.location-card:hover { box-shadow: var(--shadow-md); }
.location-map {
	height: 180px;
	background: linear-gradient(135deg, var(--sage-light), var(--parchment));
	display: flex; align-items: center; justify-content: center;
	font-size: 13px; color: var(--sage);
	font-weight: 500;
	position: relative;
	overflow: hidden;
}
.location-map::before {
	content: '';
	position: absolute; inset: 0;
	background-image: radial-gradient(circle at 50% 50%, rgba(77,107,92,.08) 0%, transparent 70%);
}
.location-body { padding: 24px 28px; }
.location-city { font-family: var(--font-serif); font-size: 19px; color: var(--ink); margin-bottom: 10px; }
.location-addr { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.location-hours { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-mid); margin-bottom: 18px; }
.location-hours::before { content: '◷'; color: var(--sage); }
.location-link {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 13px; font-weight: 500;
	color: var(--sage);
	border-bottom: 1.5px solid var(--sage-mid);
	padding-bottom: 1px;
	transition: color .2s;
}
.location-link:hover { color: var(--clay); }

/* Blog (bloco na home) */
.blog-home-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.blog-card-home {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform .25s, box-shadow .25s;
	display: block;
}
.blog-card-home:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
	height: 180px;
	background: var(--sage-light);
	display: flex; align-items: center; justify-content: center;
	font-size: 12px; color: var(--sage); font-weight: 500;
	position: relative; overflow: hidden;
}
.blog-card-img-2 { background: linear-gradient(135deg, #FDE8F0, #F5EAE0); color: #9B3560; }
.blog-card-img-3 { background: linear-gradient(135deg, #FFF3E0, var(--parchment)); color: #A0660A; }
.blog-card-cat-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; margin-right: 5px; vertical-align: middle; }
.blog-card-body-home { padding: 22px 22px 26px; }
.blog-card-category {
	display: flex; align-items: center;
	font-size: 11px; font-weight: 500;
	text-transform: uppercase; letter-spacing: .08em;
	margin-bottom: 10px;
}
.blog-card-title-home {
	font-family: var(--font-serif);
	font-size: 17px;
	color: var(--ink);
	line-height: 1.35;
	margin-bottom: 10px;
	transition: color .2s;
}
.blog-card-home:hover .blog-card-title-home { color: var(--sage); }
.blog-card-meta-home { font-size: 12px; color: var(--muted); }

/* CTA Final */
.cta-final { background: var(--sage); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-final::before {
	content: '';
	position: absolute;
	top: -40px; left: 50%; transform: translateX(-50%);
	width: 600px; height: 600px;
	border-radius: 50%;
	background: rgba(255,255,255,.04);
	pointer-events: none;
}
.cta-final::after {
	content: '';
	position: absolute;
	bottom: -80px; right: -80px;
	width: 400px; height: 400px;
	border-radius: 50%;
	background: rgba(255,255,255,.03);
	pointer-events: none;
}
.cta-final-eyebrow {
	font-size: 11.5px; font-weight: 500;
	text-transform: uppercase; letter-spacing: .14em;
	color: rgba(255,255,255,.55);
	margin-bottom: 20px;
}
.cta-final-h2 {
	font-family: var(--font-serif);
	font-size: clamp(28px, 3.5vw, 44px);
	font-weight: 400;
	color: var(--white);
	line-height: 1.25;
	max-width: 640px;
	margin: 0 auto 16px;
}
.cta-final-h2 em { font-style: italic; color: var(--sage-mid); }
.cta-final-sub {
	font-size: 15px; color: rgba(255,255,255,.65);
	max-width: 380px; margin: 0 auto 36px;
	line-height: 1.65;
}
.btn-cta-white {
	display: inline-flex; align-items: center; gap: 10px;
	background: var(--white);
	color: var(--sage);
	font-weight: 500; font-size: 15px;
	padding: 15px 32px;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0,0,0,.15);
	transition: transform .2s, box-shadow .2s;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.btn-cta-white svg { width: 18px; height: 18px; }
.cta-final-micro { margin-top: 16px; font-size: 12.5px; color: rgba(255,255,255,.4); }

/* ========================================
   PÁGINA DO BLOG — do template-blog.html
   ======================================== */

/* Blog Hero */
.blog-hero {
	background: var(--parchment);
	padding: 80px 0 60px;
	margin-top: 68px;
	text-align: center;
}
.blog-hero-eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 12px; font-weight: 500;
	text-transform: uppercase; letter-spacing: .1em;
	color: var(--sage);
	margin-bottom: 20px;
}
.blog-hero h1 {
	font-family: var(--font-serif);
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 400;
	line-height: 1.2;
	color: var(--ink);
	margin-bottom: 16px;
}
.blog-hero h1 em { font-style: italic; color: var(--sage); }
.blog-hero-sub {
	font-size: 17px;
	font-weight: 300;
	color: var(--ink-mid);
	max-width: 520px;
	margin: 0 auto 32px;
	line-height: 1.7;
}

/* Blog Search */
.blog-search {
	display: flex;
	align-items: center;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 10px;
	max-width: 400px;
	margin: 0 auto;
	overflow: hidden;
}
.blog-search input {
	flex: 1;
	border: none;
	background: transparent;
	padding: 12px 16px;
	font-size: 15px;
	outline: none;
}
.blog-search button {
	background: transparent;
	border: none;
	padding: 12px 16px;
	cursor: pointer;
	font-size: 16px;
}

/* Blog Layout */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; }

/* Articles Grid */
.articles-section-title {
	font-family: var(--font-serif);
	font-size: 20px;
	font-weight: 400;
	color: var(--ink);
	margin-bottom: 20px;
}
.articles-grid { display: flex; flex-direction: column; gap: 16px; }

/* Article Row */
.article-row {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 0;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform .2s, box-shadow .2s;
}
.article-row:hover { transform: translateX(3px); box-shadow: var(--shadow-md); }
.article-row-img {
	background: var(--sage-light);
	display: flex; align-items: center; justify-content: center;
	font-size: 12px; color: var(--sage); font-weight: 500;
	min-height: 140px;
}
.article-row-body {
	padding: 22px 26px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.article-row-cat {
	font-size: 11px; font-weight: 500;
	text-transform: uppercase; letter-spacing: .08em;
	margin-bottom: 8px;
	display: flex; align-items: center; gap: 5px;
}
.article-row-title {
	font-family: var(--font-serif);
	font-size: 18px;
	font-weight: 400;
	color: var(--ink);
	line-height: 1.35;
	margin-bottom: 8px;
	transition: color .2s;
}
.article-row:hover .article-row-title { color: var(--sage); }
.article-row-exc {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 14px;
}
.article-row-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.article-row-meta {
	font-size: 12px;
	color: var(--muted);
}
.btn-read {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 14px; font-weight: 500;
	color: var(--sage);
	border-bottom: 1.5px solid var(--sage-mid);
	padding-bottom: 2px;
	transition: color .2s, border-color .2s, gap .2s;
}
.btn-read:hover { color: var(--clay); border-color: var(--clay); gap: 10px; }

/* Cat Dot */
.cat-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	display: inline-block;
	flex-shrink: 0;
}

/* Sidebar */
.sidebar { padding-top: 0; }
.sidebar-widget {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 22px 20px;
	margin-bottom: 16px;
}
.sw-title {
	font-size: 13px; font-weight: 500;
	color: var(--ink);
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border);
}

/* Pagination */
.load-more { text-align: center; padding: 36px 0 0; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.pagination a,
.pagination span {
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 14px;
	color: var(--ink-mid);
	border: 1px solid var(--border);
	transition: background .2s;
}
.pagination a:hover { background: var(--sage-light); color: var(--sage); }
.pagination .current { background: var(--sage); color: var(--white); border-color: var(--sage); }

/* ========================================
   COMPARTILHADO — Footer e WhatsApp flutuante
   ======================================== */
.footer { background: var(--ink); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { }
.footer-logo {
	font-family: var(--font-serif);
	font-size: 18px; font-style: italic;
	color: var(--white);
	margin-bottom: 12px;
}
.footer-logo span { font-style: normal; color: var(--sage-mid); }
.footer-brand-text { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.65; max-width: 240px; }
.footer-crm { font-size: 11px; color: rgba(255,255,255,.2); margin-top: 16px; }
.footer-col-title { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 9px; transition: color .15s; }
.footer-col a:hover { color: var(--white); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.07);
	padding-top: 24px;
	display: flex; align-items: center; justify-content: space-between;
	font-size: 12px; color: rgba(255,255,255,.25);
}

.wa-float {
	position: fixed; bottom: 28px; right: 28px; z-index: 300;
	display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.wa-tooltip {
	background: var(--ink);
	color: var(--white);
	font-size: 12px; font-weight: 500;
	padding: 7px 14px;
	border-radius: 8px;
	white-space: nowrap;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity .2s, transform .2s;
	pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateY(0); }
.wa-btn {
	width: 54px; height: 54px;
	background: #25D366;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 4px 20px rgba(37,211,102,.35);
	transition: transform .2s, box-shadow .2s;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.45); }
.wa-btn svg { width: 28px; height: 28px; fill: white; }

/* ========================================
   RESPONSIVO (home + blog combinados)
   ======================================== */
@media (max-width: 1024px) {
	.hero { grid-template-columns: 1fr; min-height: auto; }
	.hero-image-side { height: 50vw; min-height: 300px; }
	.hero-content { padding: 60px 40px 40px; max-width: 100%; margin: 0; }
	.credibility-inner { grid-template-columns: repeat(2,1fr); }
	.cred-divider { display: none; }
	.pillars-grid { grid-template-columns: 1fr; }
	.symptoms-grid { grid-template-columns: 1fr 1fr; }
	.steps-wrapper { grid-template-columns: 1fr; }
	.steps-image { height: 280px; }
	.testimonials-grid { grid-template-columns: 1fr 1fr; }
	.about-home { grid-template-columns: 1fr; }
	.about-photo { height: 300px; }
	.locations-grid { grid-template-columns: 1fr; }
	.blog-home-grid { grid-template-columns: 1fr 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
	.blog-layout { grid-template-columns: 1fr; }
	.sidebar { padding-top: 0; }
	.article-row { grid-template-columns: 200px 1fr; }

	/* Menu hambúrguer (tablet + mobile) */
	.nav-toggle { display: flex; }
	#navLinks {
		position: fixed;
		top: 68px; left: 0; right: 0;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		background: var(--white);
		border-bottom: 1px solid var(--border);
		box-shadow: var(--shadow-md);
		transition: max-height .3s ease, opacity .25s ease;
		z-index: 199;
	}
	#navLinks.open { max-height: calc(100vh - 68px); opacity: 1; overflow-y: auto; }
	#navLinks .nav-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 8px 24px 20px;
	}
	#navLinks .nav-menu li { width: 100%; }
	#navLinks .nav-menu a {
		width: 100%;
		padding: 14px 4px;
		font-size: 15.5px;
		border-radius: 0;
		border-bottom: 1px solid var(--border);
	}
	body.nav-open { overflow: hidden; }
}

@media (max-width: 680px) {
	.container { padding: 0 20px; }
	.nav-inner { padding: 0 20px; gap: 10px; }
	.nav-logo {
		font-size: 14px;
		flex-shrink: 1;
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.nav-cta-label { display: none; }
	.nav-cta { padding: 12px !important; border-radius: 50% !important; }
	.nav-cta svg { width: 18px; height: 18px; }
	.section { padding: 64px 0; }
	.hero-content { padding: 48px 20px 32px; }
	.credibility-inner { grid-template-columns: 1fr 1fr; }
	.pillar { padding: 36px 24px; }
	.symptoms-grid { grid-template-columns: 1fr; }
	.symptom-card { padding: 28px 22px; }
	.testimonials-grid { grid-template-columns: 1fr; }
	.tmt-card { padding: 28px 22px; }
	.blog-home-grid { grid-template-columns: 1fr; }
	.hero-card { display: none; }
	.cta-final { padding: 72px 0; }
	.blog-layout { grid-template-columns: 1fr; }
	.article-row { grid-template-columns: 1fr; }
	.article-row-img { min-height: 120px; }
	.footer-grid { grid-template-columns: 1fr; }
	.footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* Animações (home) */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp .6s ease both; }
.hero-h1 { animation: fadeUp .7s .1s ease both; }
.hero-accent-line { animation: fadeUp .6s .2s ease both; }
.hero-sub { animation: fadeUp .6s .25s ease both; }
.hero-actions { animation: fadeUp .6s .35s ease both; }
.hero-proof { animation: fadeUp .5s .45s ease both; }
