/* ==========================================================================
   JR Navalha — estilos
   Site: preto + dourado. Blog: papel creme para leitura.
   ========================================================================== */

:root {
	--bg: #0c0b0a;
	--bg-2: #141210;
	--surface: #1a1714;
	--line: rgba(212, 175, 55, .18);
	--line-soft: rgba(239, 232, 220, .09);
	--text: #efe8dc;
	--muted: #a79f92;
	--gold: #d4af37;
	--gold-2: #e9cf7a;
	--gold-ink: #17130a;

	--serif: "Cormorant Garamond", "Times New Roman", serif;
	--sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

	--wrap: 1200px;
	--narrow: 720px;
	--gutter: clamp(16px, 4vw, 40px);
	--radius: 14px;
	--ease: cubic-bezier(.2, .7, .2, 1);
	--header-h: 76px;
}

body.is-blog {
	--bg: #f4efe6;
	--bg-2: #ece5d8;
	--surface: #fbf8f2;
	--line: rgba(122, 94, 24, .22);
	--line-soft: rgba(28, 24, 18, .1);
	--text: #1c1812;
	--muted: #6b6356;
	--gold: #9a7619;
	--gold-2: #b8912a;
	--gold-ink: #fffaf0;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font: 400 17px/1.65 var(--sans);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.05; letter-spacing: -.01em; margin: 0; text-wrap: balance; }
h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h3 { font-size: 1.6rem; }
em { font-style: italic; font-weight: 500; color: var(--gold); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
::selection { background: var(--gold); color: var(--gold-ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
/* Itens de grid/flex podem encolher abaixo do conteúdo (evita rolagem lateral no celular). */
.hero-grid > *, .menu-grid > *, .about-grid > *, .visit-grid > *, .faq-grid > *, .post-grid > *, .footer-grid > *, .team-grid > * { min-width: 0; }
.wrap-narrow { width: min(100% - 2 * var(--gutter), var(--narrow)); margin-inline: auto; }
.sr-only, .screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 100; padding: 10px 16px; background: var(--gold); color: var(--gold-ink); border-radius: 8px; font-weight: 600; }
.skip:focus { top: 12px; }

.icon { width: 1.15em; height: 1.15em; flex: none; }

.eyebrow {
	display: inline-flex; align-items: center; gap: .75em;
	margin-bottom: 1.1rem;
	font: 600 .74rem/1.4 var(--sans); letter-spacing: .22em; text-transform: uppercase;
	color: var(--gold);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }

/* Botões ----------------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .6em;
	min-height: 52px; padding: 0 1.6rem;
	border-radius: 999px; border: 1px solid transparent;
	font: 600 .95rem/1 var(--sans); letter-spacing: .01em;
	transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--gold-ink); box-shadow: 0 10px 30px -12px rgba(212, 175, 55, .55); }
.btn-gold:hover { box-shadow: 0 16px 40px -14px rgba(212, 175, 55, .75); }
.btn-ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.link-arrow { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; font-size: .95rem; color: var(--gold); }
.link-arrow .icon { transition: transform .25s var(--ease); }
.link-arrow:hover .icon, .card-link:hover .link-arrow .icon { transform: translateX(4px); }

.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars .icon { width: 16px; height: 16px; }

/* Header ----------------------------------------------------------------- */
.site-header {
	position: fixed; inset: 0 0 auto; z-index: 50;
	height: var(--header-h);
	transition: background .3s, border-color .3s, backdrop-filter .3s;
	border-bottom: 1px solid transparent;
}
.site-header.is-scrolled, .is-blog .site-header {
	background: color-mix(in srgb, var(--bg) 82%, transparent);
	backdrop-filter: blur(14px) saturate(1.3);
	-webkit-backdrop-filter: blur(14px) saturate(1.3);
	border-bottom-color: var(--line-soft);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: inline-flex; align-items: center; gap: .6rem; }
.logo-mark {
	display: grid; place-items: center; width: 38px; height: 38px;
	border: 1px solid var(--line); border-radius: 50%; color: var(--gold);
}
.logo-mark .icon { width: 19px; height: 19px; }
.logo-word { font: 700 1.45rem/1 var(--serif); letter-spacing: .06em; text-transform: uppercase; }
.logo-word em { color: var(--gold); font-weight: 600; }
.logo-suffix {
	margin-left: .2rem; padding: .3em .7em; border-radius: 999px;
	border: 1px solid var(--line); color: var(--gold);
	font: 600 .66rem/1 var(--sans); letter-spacing: .18em; text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav > a:not(.btn) { position: relative; font-size: .92rem; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav > a:not(.btn)::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
	background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav > a:not(.btn):hover { color: var(--text); }
.nav > a:not(.btn):hover::after { transform: scaleX(1); }
.nav .btn { min-height: 44px; padding: 0 1.2rem; font-size: .88rem; }
.nav-toggle { display: none; }

@media (max-width: 960px) {
	.nav-toggle {
		display: grid; place-items: center; width: 46px; height: 46px;
		border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--text); cursor: pointer;
	}
	.nav-toggle .icon { width: 22px; height: 22px; }
	.nav {
		position: fixed; inset: var(--header-h) 0 auto; z-index: 49;
		flex-direction: column; align-items: stretch; gap: 0;
		padding: 12px var(--gutter) 28px;
		background: var(--bg); border-bottom: 1px solid var(--line-soft);
		transform: translateY(-8px); opacity: 0; visibility: hidden;
		transition: opacity .25s, transform .25s var(--ease), visibility .25s;
	}
	.nav.is-open { transform: none; opacity: 1; visibility: visible; }
	.nav > a:not(.btn) { padding: 16px 0; font-size: 1.05rem; color: var(--text); border-bottom: 1px solid var(--line-soft); }
	.nav > a:not(.btn)::after { display: none; }
	.nav .btn { margin-top: 20px; min-height: 52px; }
}

/* Hero ------------------------------------------------------------------- */
.hero {
	position: relative; overflow: hidden; isolation: isolate;
	min-height: min(100svh, 920px);
	display: flex; flex-direction: column; justify-content: center;
	padding: calc(var(--header-h) + 48px) 0 40px;
	background:
		radial-gradient(900px 600px at 78% 40%, rgba(212, 175, 55, .10), transparent 60%),
		linear-gradient(180deg, #0c0b0a 0%, #100e0c 100%);
}
.hero::before {
	/* grão sutil */
	content: ""; position: absolute; inset: 0; z-index: -1; opacity: .35; pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero::after {
	/* listras de barbearia, bem discretas */
	content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
	background: repeating-linear-gradient(-45deg, transparent 0 46px, rgba(212, 175, 55, .025) 46px 48px);
	mask-image: linear-gradient(90deg, transparent 30%, #000 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(32px, 6vw, 80px); }
.hero-title { font-size: clamp(3rem, 7.4vw, 6.4rem); line-height: .95; margin-bottom: 1.6rem; }
.hero-title em { display: block; }
.hero-lead { max-width: 34rem; font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--muted); margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-rating { display: inline-flex; align-items: center; gap: .8rem; margin-top: 2.2rem; font-size: .92rem; color: var(--muted); }
.hero-rating strong { color: var(--text); }
.hero-rating:hover { color: var(--text); }

.hero-art { position: relative; aspect-ratio: 1; width: 100%; max-width: 460px; justify-self: center; }
.seal { width: 100%; height: 100%; animation: spin 60s linear infinite; }
.seal-ring { fill: none; stroke: var(--line); stroke-width: 1; }
.seal-ring.thin { stroke: rgba(212, 175, 55, .35); stroke-dasharray: 2 6; }
.seal-text { fill: var(--gold); font: 600 17px var(--sans); letter-spacing: 7.4px; }
.seal-center { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.seal-mono {
	font: 600 clamp(6rem, 13vw, 9.5rem)/.8 var(--serif); letter-spacing: -.04em;
	background: linear-gradient(160deg, #f6e7b0 0%, var(--gold) 45%, #8a6c1c 100%);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.seal-sub { margin-top: 1rem; font: 600 .66rem/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-status { display: flex; align-items: center; gap: .7rem; margin-top: clamp(40px, 7vh, 80px); font-size: .85rem; color: var(--muted); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); }
.hero-status.is-open .status-dot { background: #5fd38a; box-shadow: 0 0 0 4px rgba(95, 211, 138, .15); }

@media (max-width: 860px) {
	.hero { min-height: auto; padding-top: calc(var(--header-h) + 32px); }
	.hero-grid { grid-template-columns: 1fr; }
	.hero-art { order: -1; max-width: 220px; justify-self: start; }
	.seal-mono { font-size: 4.6rem; }
	.seal-sub { display: none; }
}

/* Faixa rolante ------------------------------------------------------------ */
.marquee { overflow: hidden; border-block: 1px solid var(--line-soft); background: var(--bg-2); padding: 18px 0; }
.marquee-track { display: flex; width: max-content; gap: 2.2rem; align-items: center; animation: marquee 38s linear infinite; }
.marquee span { font: 500 italic clamp(1.4rem, 2.4vw, 2rem)/1 var(--serif); color: var(--text); white-space: nowrap; }
.marquee i { font-style: normal; color: var(--gold); font-size: .9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Seções ----------------------------------------------------------------- */
.section { padding: clamp(80px, 11vw, 150px) 0; }
.section-head { max-width: 640px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head h2 { margin-bottom: 1.1rem; }
.section-head > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.section-head-row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* Serviços (cardápio) */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.menu-card {
	padding: clamp(24px, 3vw, 36px);
	background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
}
.menu-card.is-featured { grid-row: span 2; border-color: var(--line); background: linear-gradient(180deg, rgba(212, 175, 55, .07), transparent 55%), var(--surface); }
.menu-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 1.4rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.menu-card-head h3 { font-size: 2rem; }
.tag { padding: .45em .8em; border-radius: 999px; background: var(--gold); color: var(--gold-ink); font: 700 .64rem/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; }
.menu-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.menu-line { display: flex; align-items: baseline; gap: .6rem; }
.menu-name { font-weight: 600; }
.menu-dots { flex: 1; min-width: 16px; border-bottom: 1px dotted rgba(167, 159, 146, .45); transform: translateY(-4px); }
.menu-price { font: 700 1.3rem/1 var(--serif); color: var(--gold); white-space: nowrap; }
.menu-price small { font: 500 .68rem var(--sans); color: var(--muted); letter-spacing: .04em; }
.menu-meta { display: flex; flex-wrap: wrap; gap: .3rem .9rem; margin-top: .2rem; font-size: .83rem; color: var(--muted); }
.menu-meta span:first-child { color: var(--text); opacity: .7; }
.menu-cta {
	grid-column: 1 / -1;
	display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px 40px;
	border-style: dashed; border-color: var(--line); background: transparent;
}
.menu-cta .eyebrow { margin: 0; }
.menu-cta h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.menu-cta p:not(.eyebrow) { color: var(--muted); grid-column: 2; margin: 0; }
.menu-cta .btn { grid-column: 3; grid-row: 1 / span 2; }
@media (max-width: 1024px) {
	.menu-grid { grid-template-columns: repeat(2, 1fr); }
	.menu-card.is-featured { grid-row: auto; }
	.menu-cta { grid-template-columns: 1fr; }
	.menu-cta p:not(.eyebrow), .menu-cta .btn { grid-column: auto; grid-row: auto; justify-self: start; }
}
@media (max-width: 640px) { .menu-grid { grid-template-columns: 1fr; } }

/* Sobre */
.about { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
.about-copy { position: sticky; top: calc(var(--header-h) + 40px); }
.about-copy h2 { margin-bottom: 1.6rem; }
.about-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.features { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.feature { padding: 32px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 60px 1fr; column-gap: 20px; }
.feature:last-child { border-bottom: 1px solid var(--line); }
.feature-num { grid-row: span 2; font: 500 italic 1.6rem/1 var(--serif); color: var(--gold); }
.feature h3 { margin-bottom: .5rem; }
.feature p { color: var(--muted); }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } .about-copy { position: static; } }

/* Equipe */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.barber { text-align: center; padding: 40px 24px 32px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--surface); transition: border-color .3s, transform .3s var(--ease); }
.barber:hover { border-color: var(--line); transform: translateY(-4px); }
.barber-portrait {
	width: 132px; aspect-ratio: 1; margin: 0 auto 24px; border-radius: 50%;
	display: grid; place-items: center; position: relative; overflow: hidden;
	background: radial-gradient(circle at 30% 25%, #2a241b, #0f0d0b 70%);
	border: 1px solid var(--line);
}
.barber-portrait::after { content: ""; position: absolute; inset: 8px; border: 1px dashed rgba(212, 175, 55, .3); border-radius: 50%; }
.barber-portrait span { font: 600 4rem/1 var(--serif); color: var(--gold); }
.barber-portrait img { width: 100%; height: 100%; object-fit: cover; }
.barber h3 { font-size: 2rem; }
.barber > p { color: var(--muted); font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; margin: .4rem 0 1.4rem; }
@media (max-width: 760px) { .team-grid { grid-template-columns: 1fr; } }

/* Avaliações */
.reviews { padding-block: clamp(60px, 8vw, 110px); }
.reviews-inner {
	display: grid; grid-template-columns: auto 1fr; gap: clamp(32px, 6vw, 90px); align-items: center;
	padding: clamp(32px, 5vw, 64px); border-radius: calc(var(--radius) * 1.5);
	border: 1px solid var(--line);
	background: radial-gradient(600px 300px at 0% 0%, rgba(212, 175, 55, .12), transparent 60%), var(--surface);
}
.reviews-score { display: grid; justify-items: center; gap: .6rem; text-align: center; }
.reviews-number { font: 600 clamp(5rem, 11vw, 8rem)/.85 var(--serif); color: var(--gold); }
.reviews-score .stars .icon { width: 22px; height: 22px; }
.reviews-count { color: var(--muted); font-size: .9rem; }
.reviews-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 1rem; }
.reviews-copy p { color: var(--muted); margin-bottom: 1.6rem; }
@media (max-width: 760px) { .reviews-inner { grid-template-columns: 1fr; } }

/* Visite */
.visit-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: stretch; }
.visit-info h2 { margin-bottom: 2.2rem; }
.visit-block { display: flex; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line-soft); }
.visit-block > .icon { width: 22px; height: 22px; color: var(--gold); margin-top: 3px; }
.visit-block p { margin-bottom: .6rem; }
.visit-info .hero-actions { margin-top: 28px; }
.hours { border-collapse: collapse; width: 100%; max-width: 320px; }
.hours th, .hours td { padding: 5px 0; font-weight: 400; text-align: left; }
.hours td { text-align: right; color: var(--muted); }
.hours tr.is-today th, .hours tr.is-today td { color: var(--gold); font-weight: 600; }
.visit-map { min-height: 420px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.visit-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(1) invert(.92) contrast(.9) sepia(.15); }
@media (max-width: 860px) { .visit-grid { grid-template-columns: 1fr; } .visit-map, .visit-map iframe { min-height: 320px; } }

/* FAQ */
.faq { background: var(--bg-2); border-top: 1px solid var(--line-soft); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 80px); }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
	display: flex; justify-content: space-between; align-items: center; gap: 20px;
	padding: 24px 0; cursor: pointer; list-style: none;
	font: 600 clamp(1.3rem, 2vw, 1.55rem)/1.2 var(--serif);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { position: relative; width: 16px; height: 16px; flex: none; }
.faq-item summary span::before, .faq-item summary span::after { content: ""; position: absolute; inset: 7px 0 auto; height: 1.5px; background: var(--gold); transition: transform .3s var(--ease); }
.faq-item summary span::after { transform: rotate(90deg); }
.faq-item[open] summary span::after { transform: rotate(0); }
.faq-item p { color: var(--muted); padding-bottom: 24px; max-width: 60ch; }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } }

/* CTA final */
.final-cta { padding: clamp(90px, 12vw, 160px) 0; text-align: center; background: radial-gradient(700px 360px at 50% 100%, rgba(212, 175, 55, .14), transparent 70%); }
.final-cta h2 { font-size: clamp(2.6rem, 6vw, 5rem); margin-bottom: 2.2rem; }
.final-cta .hero-actions { justify-content: center; }

/* Cards de artigo -------------------------------------------------------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; transition: border-color .3s, transform .3s var(--ease), box-shadow .3s; }
.card:hover { border-color: var(--line); transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(0, 0, 0, .45); }
.card-link { display: flex; flex-direction: column; height: 100%; }
.card-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-media img { transform: scale(1.04); }
.card-media.is-empty {
	display: grid; place-items: center; position: relative;
	background: repeating-linear-gradient(-45deg, transparent 0 18px, rgba(154, 118, 25, .07) 18px 19px), linear-gradient(135deg, #17140f, #2a2318);
}
.card-media.is-empty span { font: 500 italic clamp(1.6rem, 3vw, 2.3rem)/1 var(--serif); color: #e9cf7a; padding: 0 1rem; text-align: center; }
.card-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card-meta { display: flex; flex-wrap: wrap; gap: .4rem 1rem; font-size: .78rem; color: var(--muted); margin-bottom: .8rem; }
.card-cat { color: var(--gold); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.card-title { font-size: 1.65rem; line-height: 1.1; margin-bottom: .8rem; }
.card-excerpt { color: var(--muted); font-size: .95rem; margin-bottom: 1.2rem; }
.card .link-arrow { margin-top: auto; font-size: .88rem; }
.card-featured { grid-column: 1 / -1; }
.card-featured .card-link { display: grid; grid-template-columns: 1.2fr 1fr; }
.card-featured .card-media { aspect-ratio: auto; min-height: 340px; }
.card-featured .card-body { padding: clamp(28px, 4vw, 52px); justify-content: center; }
.card-featured .card-title { font-size: clamp(2rem, 3.4vw, 2.9rem); }
@media (max-width: 960px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
	.post-grid { grid-template-columns: 1fr; }
	.card-featured .card-link { grid-template-columns: 1fr; }
	.card-featured .card-media { min-height: 220px; }
}

/* Blog ------------------------------------------------------------------- */
.blog-hero { padding: calc(var(--header-h) + clamp(56px, 9vw, 120px)) 0 clamp(40px, 6vw, 72px); }
.blog-hero.is-compact { padding-bottom: 32px; }
.blog-title { font-size: clamp(2.6rem, 6.4vw, 5.2rem); line-height: .98; max-width: 16ch; margin-bottom: 1.4rem; }
.blog-hero.is-compact .blog-title { max-width: none; }
.blog-lead { max-width: 40rem; color: var(--muted); font-size: 1.15rem; }
.blog-list { padding-bottom: clamp(60px, 9vw, 120px); }
.empty { color: var(--muted); padding: 40px 0; }

.crumbs { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.4rem; font-size: .82rem; color: var(--muted); letter-spacing: .04em; }
.crumbs a { color: var(--gold); font-weight: 600; }

.pagination { margin-top: 48px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pagination .page-numbers { min-width: 46px; height: 46px; padding: 0 14px; display: inline-grid; place-items: center; border: 1px solid var(--line-soft); border-radius: 999px; font-weight: 600; font-size: .9rem; }
.pagination .page-numbers.current, .pagination a.page-numbers:hover { border-color: var(--gold); color: var(--gold); }

.blog-cta {
	display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
	margin-top: clamp(56px, 8vw, 96px); padding: clamp(28px, 4vw, 48px);
	border-radius: calc(var(--radius) * 1.5);
	background: #15120e; color: #efe8dc;
	--gold: #d4af37; --gold-2: #e9cf7a; --gold-ink: #17130a; --muted: #a79f92; --line: rgba(212, 175, 55, .3); --text: #efe8dc;
}
.blog-cta h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: .8rem; }
.blog-cta p:not(.eyebrow) { color: var(--muted); }
.blog-cta-actions { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 760px) { .blog-cta { grid-template-columns: 1fr; } .blog-cta-actions { flex-direction: row; flex-wrap: wrap; } }

/* Artigo */
.article-head { padding-top: calc(var(--header-h) + clamp(48px, 7vw, 96px)); padding-bottom: 40px; }
.article-title { font-size: clamp(2.4rem, 5.6vw, 4.2rem); line-height: 1.02; margin-bottom: 1.4rem; }
.article-lead { font-size: 1.25rem; color: var(--muted); line-height: 1.55; }
.article-meta { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; margin-top: 1.8rem; padding-top: 1.2rem; border-top: 1px solid var(--line-soft); font-size: .85rem; color: var(--muted); }
.article-cover { margin-block: 0 48px; }
.article-cover img { width: 100%; border-radius: var(--radius); aspect-ratio: 16 / 9; object-fit: cover; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; }
.article-tags a { padding: .45em 1em; border: 1px solid var(--line-soft); border-radius: 999px; font-size: .85rem; color: var(--muted); }
.article-tags a:hover { border-color: var(--gold); color: var(--gold); }
.related { border-top: 1px solid var(--line-soft); }
.related-title { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 36px; }

.prose { font-size: 1.12rem; line-height: 1.8; }
.prose > * { margin-block: 0; }
.prose > * + * { margin-top: 1.3em; }
.prose h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-top: 2.2em; line-height: 1.1; }
.prose h3 { font-size: 1.55rem; margin-top: 1.8em; }
.prose h2 + *, .prose h3 + * { margin-top: .8em; }
.prose a { color: var(--gold); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose strong { font-weight: 700; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .5em; }
.prose li::marker { color: var(--gold); }
.prose blockquote { margin-inline: 0; padding: .2em 0 .2em 1.4em; border-left: 2px solid var(--gold); font: 500 italic 1.5rem/1.4 var(--serif); }
.prose img, .prose figure { border-radius: var(--radius); margin-inline: 0; }
.prose figcaption { font-size: .85rem; color: var(--muted); margin-top: .6em; text-align: center; }
.prose table { width: 100%; border-collapse: collapse; font-size: 1rem; }
.prose th, .prose td { padding: .7em .8em; border-bottom: 1px solid var(--line-soft); text-align: left; }
.prose th { font-weight: 700; }
.prose .table-wrap, .prose .wp-block-table { overflow-x: auto; }
.prose hr { border: 0; height: 1px; background: var(--line); margin-block: 2.4em; }

.not-found { padding: calc(var(--header-h) + 120px) 0 140px; min-height: 70vh; }

/* Footer ----------------------------------------------------------------- */
.site-footer { background: #0a0908; color: #efe8dc; padding-top: clamp(64px, 8vw, 100px); --gold: #d4af37; --muted: #a79f92; --line: rgba(212, 175, 55, .18); --line-soft: rgba(239, 232, 220, .09); --text: #efe8dc; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-brand p { color: var(--muted); max-width: 30ch; margin: 1.2rem 0; font-size: .95rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); transition: background .2s, color .2s; }
.footer-social a:hover { background: var(--gold); color: #17130a; }
.footer-title { font: 600 .72rem/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col { font-style: normal; font-size: .95rem; color: var(--muted); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-col a:hover { color: var(--text); }
.footer-hours li { display: flex; justify-content: space-between; gap: 16px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding: 24px 0 32px; border-top: 1px solid var(--line-soft); font-size: .82rem; color: var(--muted); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* Barra fixa no celular */
.mobile-bar { display: none; }
@media (max-width: 760px) {
	body { padding-bottom: 72px; }
	.mobile-bar {
		position: fixed; inset: auto 0 0; z-index: 40;
		display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
		padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
		background: color-mix(in srgb, #0c0b0a 92%, transparent); backdrop-filter: blur(12px);
		border-top: 1px solid rgba(212, 175, 55, .18);
	}
	.mobile-bar a { display: flex; align-items: center; justify-content: center; gap: .5rem; height: 48px; border-radius: 999px; font-weight: 600; font-size: .95rem; border: 1px solid rgba(212, 175, 55, .3); color: #efe8dc; }
	.mobile-bar a.is-gold { background: linear-gradient(135deg, #e9cf7a, #d4af37); color: #17130a; border: 0; }
}

/* Animação de entrada ---------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

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