/* ==========================================================================
   Arghon Tecnologia — preto + dourado, visual tecnológico
   ========================================================================== */

:root {
	--bg: #0c0c0e;
	--bg-2: #111114;
	--surface: #16161a;
	--surface-2: #1b1b20;
	--line: rgba(201, 163, 102, .22);
	--line-soft: rgba(255, 255, 255, .07);
	--gold: #c9a366;
	--gold-2: #e8d5a8;
	--gold-3: #a07a3f;
	--text: #ecebe6;
	--muted: #a5a49d;
	--ok: #4fd18b;
	--gold-grad: linear-gradient(90deg, #a8813f, #e6d3a4 50%, #a8813f);
	--font-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--font-serif: "Lora", Georgia, "Times New Roman", serif;
	--radius: 14px;
	--header-h: 76px;
}

*, *::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-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-2); }
:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3, h4 { font-family: var(--font-sans); line-height: 1.2; margin: 0 0 .6em; color: #fff; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 0; background: var(--gold); color: #111; padding: 10px 16px; z-index: 200; }
.skip:focus { left: 10px; top: 10px; }
.center { text-align: center; }
.note { color: var(--muted); margin-top: 28px; }
.gold { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 600; }
.ico { flex: none; width: 1.25em; height: 1.25em; }
.link-gold { color: var(--gold); font-weight: 500; }

.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 20px; }
.container--narrow { max-width: 820px; }

.eyebrow {
	font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
	color: var(--gold); font-weight: 500; margin: 0 0 14px;
}

/* ---------- Botões ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .55em;
	padding: 14px 24px; border-radius: 10px; border: 1px solid transparent;
	background: linear-gradient(135deg, #e6d3a4, #c9a366 55%, #a8813f);
	color: #14110b; font-weight: 600; font-size: .92rem; letter-spacing: .02em;
	cursor: pointer; text-align: center; line-height: 1.2;
	transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
	box-shadow: 0 6px 22px rgba(201, 163, 102, .18);
}
.btn:hover { color: #14110b; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201, 163, 102, .32); filter: brightness(1.05); }
.btn--ghost { background: transparent; color: var(--gold-2); border-color: var(--line); box-shadow: none; }
.btn--ghost:hover { background: rgba(201, 163, 102, .1); color: #fff; border-color: var(--gold); box-shadow: none; }
.btn--sm { padding: 10px 16px; font-size: .84rem; }
.btn--block { display: flex; width: 100%; margin-top: 10px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.actions--center { justify-content: center; }

/* ---------- Cabeçalho ---------- */
.site-header {
	position: sticky; top: 0; z-index: 100; height: var(--header-h);
	background: rgba(12, 12, 14, .88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line-soft);
}
.site-header::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: var(--gold-grad); opacity: .55; }
.hdr { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; flex: none; }
.brand:hover { color: #fff; }
.brand picture { display: block; line-height: 0; }
.brand__img { display: block; height: 46px; width: auto; }
.brand__img--stack { height: auto; width: 190px; max-width: 100%; }
@media (max-width: 560px) { .brand__img { height: 40px; } }
.brand__mark { display: inline-flex; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-weight: 300; letter-spacing: .34em; font-size: 1.15rem; color: #fff; }
.brand__sub { font-size: .52rem; letter-spacing: .5em; color: var(--gold); margin-top: 5px; }

.nav { margin-left: auto; }
.nav .menu { list-style: none; display: flex; gap: 4px; }
.nav .menu a {
	display: block; padding: 8px 12px; color: var(--text); font-size: .86rem; font-weight: 400;
	border-radius: 8px; position: relative;
}
.nav .menu a::after {
	content: ""; position: absolute; left: 12px; right: 12px; bottom: 3px; height: 1px;
	background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav .menu a:hover, .nav .menu .current-menu-item > a { color: var(--gold-2); }
.nav .menu a:hover::after, .nav .menu .current-menu-item > a::after { transform: scaleX(1); }
.nav .menu a { white-space: nowrap; }
.nav__cta { display: none; }

.hdr__actions { display: flex; align-items: center; gap: 16px; flex: none; }
.hdr__phone { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-size: .86rem; }
.hdr__phone .ico { color: var(--gold); width: 1.1em; height: 1.1em; }

.nav-toggle { display: none; margin-left: auto; width: 46px; height: 46px; background: transparent; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; position: relative; }
.nav-toggle i, .nav-toggle i::before, .nav-toggle i::after {
	content: ""; position: absolute; left: 12px; right: 12px; height: 2px; background: var(--gold); border-radius: 2px; transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle i { top: 22px; }
.nav-toggle i::before { left: 0; right: 0; top: -7px; }
.nav-toggle i::after { left: 0; right: 0; top: 7px; }
.nav-toggle[aria-expanded="true"] i { background: transparent; }
.nav-toggle[aria-expanded="true"] i::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] i::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1180px) {
	.hdr { gap: 14px; }
	.nav .menu a { padding: 8px 9px; font-size: .82rem; }
	.hdr__phone span { display: none; }
}
@media (max-width: 980px) {
	.hdr__actions { display: none; }
	.nav-toggle { display: block; }
	.js .nav {
		position: absolute; left: 0; right: 0; top: var(--header-h); margin: 0;
		background: rgba(12, 12, 14, .98); border-bottom: 1px solid var(--line);
		padding: 10px 20px 22px; display: none;
	}
	.js .nav.is-open { display: block; }
	.nav .menu { flex-direction: column; gap: 0; }
	.nav .menu a { padding: 14px 4px; border-bottom: 1px solid var(--line-soft); border-radius: 0; font-size: 1rem; }
	.nav .menu a::after { display: none; }
	.nav__cta { display: block; margin-top: 16px; }
	.nav__cta .btn { width: 100%; }
	.no-js-hide { display: none; }
	html:not(.js) .site-header { height: auto; position: static; }
	html:not(.js) .hdr { flex-wrap: wrap; height: auto; padding-block: 12px; }
	html:not(.js) .nav-toggle { display: none; }
	html:not(.js) .nav { position: static; width: 100%; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(56px, 9vw, 120px) 0 clamp(64px, 8vw, 104px); background: var(--bg); isolation: isolate; }
.hero::before {
	content: ""; position: absolute; inset: 0; z-index: -2;
	background:
		radial-gradient(60% 55% at 82% 8%, rgba(201, 163, 102, .17), transparent 62%),
		radial-gradient(45% 45% at 5% 95%, rgba(201, 163, 102, .08), transparent 60%);
}
.hero::after {
	content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
	background-image:
		linear-gradient(var(--line-soft) 1px, transparent 1px),
		linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
	background-size: 56px 56px;
	-webkit-mask-image: radial-gradient(70% 70% at 70% 30%, #000 0%, transparent 75%);
	mask-image: radial-gradient(70% 70% at 70% 30%, #000 0%, transparent 75%);
}
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; color: var(--gold); opacity: .38; }
.hero__lines { width: 100%; height: 100%; }
.node { animation: pulse 3.2s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.node--2 { animation-delay: .8s; } .node--3 { animation-delay: 1.6s; } .node--4 { animation-delay: 2.4s; }
@keyframes pulse { 0%, 100% { opacity: .35; transform: scale(1); } 50% { opacity: 1; transform: scale(1.9); } }

.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero h1 { font-size: clamp(2rem, 4.6vw, 3.5rem); font-weight: 300; letter-spacing: .01em; line-height: 1.12; margin-bottom: .5em; }
.lead { font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--muted); max-width: 60ch; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; }
.chips li { display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--text); }
.chips .ico { color: var(--gold); width: 1.1em; height: 1.1em; }

.console {
	background: linear-gradient(180deg, rgba(27, 27, 32, .92), rgba(17, 17, 20, .92));
	border: 1px solid var(--line); border-radius: 18px; padding: 18px 18px 8px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .02) inset;
	position: relative;
}
.console::before { content: ""; position: absolute; left: 24px; right: 24px; top: -1px; height: 1px; background: var(--gold-grad); }
.console__head { display: flex; align-items: center; gap: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line-soft); }
.dots { display: inline-flex; gap: 6px; } .dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .14); }
.console__title { font-size: .66rem; letter-spacing: .32em; color: var(--gold); font-weight: 500; }
.console__rows { list-style: none; }
.console__rows li { display: flex; align-items: center; gap: 14px; padding: 15px 4px; border-bottom: 1px solid var(--line-soft); font-size: .9rem; }
.console__rows li:last-child { border-bottom: 0; }
.console__rows .ico { color: var(--gold); width: 1.5em; height: 1.5em; }
.console__rows span { flex: 1; display: flex; flex-direction: column; line-height: 1.25; }
.console__rows em { font-style: normal; color: var(--muted); font-size: .76rem; margin-top: 2px; }
.pill { font-weight: 500; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ok); display: inline-flex; align-items: center; gap: 7px; }
.pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(79, 209, 139, .6); animation: ping 2.4s ease-out infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(79, 209, 139, .55); } 80%, 100% { box-shadow: 0 0 0 9px rgba(79, 209, 139, 0); } }

@media (max-width: 900px) {
	.hero__grid { grid-template-columns: 1fr; }
	.console { max-width: 520px; }
}

/* ---------- Faixa de áreas ---------- */
.strip { background: #f8f5ee; border-top: 3px solid transparent; border-image: var(--gold-grad) 1; border-bottom: 1px solid #e6dfcf; }
.strip ul { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 0; padding: 14px 0; }
.strip li { font-size: .7rem; letter-spacing: .26em; text-transform: uppercase; color: #8a6a34; font-weight: 500; padding: 0 16px; position: relative; }
.strip li + li::before { content: "•"; position: absolute; left: -3px; color: #b08d57; }

/* ---------- Seções ---------- */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
.section__head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 48px); }
.section__head h2, .split h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 300; }
.section__lead { color: var(--muted); font-size: 1.05rem; }
.center .section__head, .section__head.center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---------- Cartões ---------- */
.card {
	position: relative; display: flex; flex-direction: column; padding: 28px 26px 24px;
	background: linear-gradient(180deg, var(--surface), #121215);
	border: 1px solid var(--line-soft); border-radius: var(--radius);
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
	overflow: hidden;
}
.card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--gold-grad); opacity: 0; transition: opacity .25s ease; }
.card:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: 0 18px 50px rgba(0, 0, 0, .45); }
.card:hover::before { opacity: 1; }
.card__icon {
	display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 12px;
	background: rgba(201, 163, 102, .1); border: 1px solid var(--line); color: var(--gold); margin-bottom: 18px;
}
.card__icon .ico { width: 26px; height: 26px; }
.card__title { font-size: 1.12rem; font-weight: 500; margin-bottom: .5em; }
.card__title a { color: #fff; }
.card__title a:hover { color: var(--gold-2); }
.card p { color: var(--muted); font-size: .94rem; flex: 1; }
.card__more { display: inline-flex; align-items: center; gap: 8px; font-size: .84rem; font-weight: 500; letter-spacing: .04em; margin-top: 6px; }
.card__more .ico { width: 1.1em; height: 1.1em; transition: transform .2s ease; }
.card__more:hover .ico { transform: translateX(4px); }
.card__meta { font-size: .76rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; flex: none !important; margin-bottom: .4em; }
.card__thumb { display: block; margin: -28px -26px 18px; }
.card__thumb img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .4s ease; }
.card:hover .card__thumb img { transform: scale(1.03); }
.card__thumb { overflow: hidden; }
.card--photo .card__thumb img { aspect-ratio: 4 / 3; }
.card--photo .card__icon { display: none; }
.post-thumb img { height: auto; }
.card__cat { color: var(--gold); }
.card__cat:hover { color: var(--gold-2); }
.card--num .num {
	display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px;
	border: 1px solid var(--gold); color: var(--gold); font-size: .78rem; letter-spacing: .1em; margin-bottom: 18px; border-radius: 6px;
}

/* ---------- Sobre / pilares ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split p { color: var(--muted); }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.pillars { list-style: none; display: grid; gap: 14px; }
.pillars li { padding: 20px 22px; background: var(--surface); border: 1px solid var(--line-soft); border-left: 2px solid var(--gold); border-radius: 10px; }
.pillars b { display: block; font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-weight: 500; }
.pillars span { color: var(--muted); font-size: .95rem; }

/* ---------- Passos ---------- */
.steps { list-style: none; counter-reset: s; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.steps li { counter-increment: s; position: relative; padding-top: 58px; }
.steps li::before {
	content: counter(s, decimal-leading-zero); position: absolute; top: 0; left: 0; width: 42px; height: 42px;
	display: flex; align-items: center; justify-content: center; border: 1px solid var(--gold); color: var(--gold);
	font-size: .8rem; letter-spacing: .1em; background: var(--bg-2); border-radius: 8px; z-index: 1;
}
.steps li::after { content: ""; position: absolute; top: 21px; left: 50px; right: -18px; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }
.steps li:last-child::after { display: none; }
.steps b { display: block; color: #fff; font-weight: 500; margin-bottom: 4px; }
.steps span { color: var(--muted); font-size: .9rem; display: block; }
@media (max-width: 980px) { .steps { grid-template-columns: 1fr; } .steps li { padding: 4px 0 4px 60px; } .steps li::after { display: none; } }

/* ---------- Tags de regiões ---------- */
.tags { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.tags a {
	display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px;
	color: var(--text); font-size: .9rem; background: rgba(201, 163, 102, .05); transition: all .2s ease;
}
.tags a .ico { color: var(--gold); width: 1em; height: 1em; }
.tags a:hover { border-color: var(--gold); background: rgba(201, 163, 102, .14); color: #fff; }

/* ---------- FAQ (home e conteúdo) ---------- */
.faq details, .prose details {
	background: var(--surface); border: 1px solid var(--line-soft); border-radius: 12px; margin-bottom: 10px; overflow: hidden;
}
.faq details[open], .prose details[open] { border-color: var(--line); }
.faq summary, .prose summary {
	list-style: none; cursor: pointer; padding: 18px 54px 18px 22px; font-weight: 500; color: #fff; position: relative; font-family: var(--font-sans);
}
.faq summary::-webkit-details-marker, .prose summary::-webkit-details-marker { display: none; }
.faq summary::after, .prose summary::after {
	content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 1.5rem; font-weight: 300; transition: transform .2s ease;
}
.faq details[open] summary::after, .prose details[open] summary::after { content: "–"; }
.faq details p, .prose details > p { padding: 0 22px 20px; margin: 0; color: var(--muted); }

/* ---------- Faixa de CTA ---------- */
.cta-band { position: relative; padding: clamp(48px, 7vw, 84px) 0; background: linear-gradient(135deg, #17140e, #0c0c0e 60%); border-top: 1px solid var(--line); overflow: hidden; }
.cta-band::before { content: ""; position: absolute; right: -10%; top: -60%; width: 60%; height: 220%; background: radial-gradient(closest-side, rgba(201, 163, 102, .16), transparent); pointer-events: none; }
.cta-band__in { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 300; margin-bottom: .3em; }
.cta-band p { color: var(--muted); margin: 0; max-width: 56ch; }
.cta-band .eyebrow { margin-bottom: 10px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Cabeçalho das páginas internas ---------- */
.page-hero { position: relative; padding: clamp(36px, 6vw, 72px) 0 clamp(36px, 5vw, 56px); border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.page-hero__bg {
	position: absolute; inset: 0; z-index: 0;
	background: radial-gradient(50% 90% at 90% 0%, rgba(201, 163, 102, .14), transparent 60%);
}
.page-hero::after {
	content: ""; position: absolute; inset: 0; opacity: .35; pointer-events: none;
	background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
	background-size: 56px 56px; -webkit-mask-image: linear-gradient(90deg, transparent 30%, #000); mask-image: linear-gradient(90deg, transparent 30%, #000);
}
.page-hero__in { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); font-weight: 300; max-width: 22ch; margin-bottom: .4em; }
.page-hero__row { display: flex; gap: 22px; align-items: flex-start; }
.page-hero__icon {
	flex: none; display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 14px;
	background: rgba(201, 163, 102, .1); border: 1px solid var(--line); color: var(--gold);
}
.page-hero__icon .ico { width: 32px; height: 32px; }
@media (max-width: 620px) { .page-hero__row { flex-direction: column; gap: 14px; } }

.crumbs { margin-bottom: 20px; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px 0; font-size: .8rem; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin: 0 10px; color: var(--gold-3); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--gold-2); }
.crumbs li[aria-current] { color: var(--gold-2); }

/* ---------- Conteúdo editorial ---------- */
.layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 980px) { .layout { grid-template-columns: 1fr; } }
.prose { font-family: var(--font-serif); font-size: 1.08rem; line-height: 1.8; color: #d8d7d0; }
.prose > * { max-width: 72ch; }
.prose h2 { font-family: var(--font-sans); font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 500; margin: 2em 0 .6em; color: #fff; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--font-sans); font-size: 1.15rem; font-weight: 500; margin: 1.6em 0 .5em; }
.prose p { margin-bottom: 1.15em; }
.prose a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(201, 163, 102, .4); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--gold-2); }
.prose ul { list-style: none; margin: 0 0 1.4em; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: .55em; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: .7em; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
.prose ol { margin: 0 0 1.4em 1.2em; }
.prose img { border-radius: 12px; }
.prose blockquote { border-left: 2px solid var(--gold); margin: 1.6em 0; padding: .2em 0 .2em 1.2em; color: var(--muted); font-style: italic; }
.prose .wp-block-details { max-width: 72ch; }
.post-thumb { margin: 0 0 32px; } .post-thumb img { width: 100%; border-radius: var(--radius); display: block; }

.side { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 16px; }
@media (max-width: 980px) { .side { position: static; } }
.side__card { background: linear-gradient(180deg, var(--surface), #121215); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.side__card h2 { font-size: 1.15rem; font-weight: 500; margin-bottom: .4em; }
.side__card p { color: var(--muted); font-size: .92rem; }
.side__list { list-style: none; }
.side__list li { border-bottom: 1px solid var(--line-soft); }
.side__list li:last-child { border-bottom: 0; }
.side__list a { display: block; padding: 11px 0; color: var(--text); font-size: .92rem; }
.side__list a:hover { color: var(--gold-2); padding-left: 4px; }

/* ---------- Contato ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }
.contact__list { list-style: none; display: grid; gap: 18px; margin: 28px 0; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__list .ico { color: var(--gold); width: 26px; height: 26px; margin-top: 3px; }
.contact__list span { display: flex; flex-direction: column; font-size: .98rem; }
.contact__list b { font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 3px; }
.contact__list a { color: var(--text); }
.contact__form { background: linear-gradient(180deg, var(--surface), #121215); border: 1px solid var(--line); border-radius: 16px; padding: clamp(22px, 3vw, 34px); }
.contact__form h2 { font-size: 1.3rem; font-weight: 500; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .8rem; color: var(--muted); margin-bottom: 6px; letter-spacing: .03em; }
.field input, .field select, .field textarea {
	width: 100%; padding: 13px 14px; background: #0f0f12; color: var(--text); border: 1px solid var(--line-soft); border-radius: 10px;
	font: inherit; font-size: .95rem; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 163, 102, .18); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .78rem; color: var(--muted); margin: 14px 0 0; }
.alert { padding: 14px 16px; border-radius: 10px; margin-bottom: 18px; font-size: .94rem; }
.alert--ok { background: rgba(79, 209, 139, .1); border: 1px solid rgba(79, 209, 139, .4); color: #b9f0d2; }
.alert--err { background: rgba(255, 99, 99, .1); border: 1px solid rgba(255, 99, 99, .4); color: #ffc7c7; }

.empty { text-align: center; max-width: 560px; margin: 0 auto; color: var(--muted); }
.empty .actions { justify-content: center; }
.pagination { margin-top: 40px; text-align: center; }
.pagination .nav-links { display: inline-flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.pagination .page-numbers { padding: 9px 15px; border: 1px solid var(--line-soft); border-radius: 8px; color: var(--text); font-size: .9rem; }
.pagination .page-numbers.current, .pagination .page-numbers:hover { border-color: var(--gold); color: var(--gold-2); }

/* ---------- Rodapé ---------- */
.site-footer { background: #08080a; border-top: 3px solid transparent; border-image: var(--gold-grad) 1; margin-top: 0; }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-block: 64px 44px; }
@media (max-width: 980px) { .foot { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot { grid-template-columns: 1fr; padding-block: 48px 32px; } }
.foot__brand p { color: var(--muted); font-size: .92rem; margin-top: 18px; max-width: 34ch; }
.foot__col h2 { font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 16px; }
.foot__col ul { list-style: none; }
.foot__col li { margin-bottom: 9px; font-size: .92rem; }
.foot__col a { color: var(--muted); }
.foot__col a:hover { color: var(--gold-2); }
.foot__contact li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.foot__contact .ico { color: var(--gold); width: 1.2em; height: 1.2em; margin-top: .25em; }
.foot__bar { border-top: 1px solid var(--line-soft); }
.foot__bar-in { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-block: 20px; font-size: .78rem; color: var(--muted); letter-spacing: .04em; }
.foot__bar a { color: var(--muted); }
.foot__bar a:hover { color: var(--gold-2); }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
	position: fixed; z-index: 90; right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom));
	width: 60px; height: 60px; aspect-ratio: 1 / 1; flex: none; padding: 0; margin: 0; border-radius: 50%; line-height: 0;
	background: #25d366; color: #fff; display: grid; place-items: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .45), inset 0 0 0 1px rgba(255, 255, 255, .12);
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.wa-float:hover { color: #fff; background: #1fbd5b; transform: translateY(-2px) scale(1.05); box-shadow: 0 12px 30px rgba(37, 211, 102, .35), 0 8px 24px rgba(0, 0, 0, .5); }
.wa-float:focus-visible { outline-offset: 4px; }
.wa-float .ico { display: block; width: 32px; height: 32px; margin: 0; }
@media (max-width: 560px) {
	.wa-float { width: 56px; height: 56px; right: max(14px, env(safe-area-inset-right)); bottom: max(14px, env(safe-area-inset-bottom)); }
	.wa-float .ico { width: 30px; height: 30px; }
}

/* ---------- Redes sociais (ícones) ---------- */
.socials { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.socials a {
	display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%;
	border: 1px solid var(--line); color: var(--gold); background: rgba(201, 163, 102, .06);
	transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: #14110b; transform: translateY(-2px); }
.socials .ico { width: 20px; height: 20px; }
.socials--left { margin-top: 24px; }

/* ---------- Números em destaque ---------- */
.stats { background: linear-gradient(180deg, #100f0b, var(--bg)); border-block: 1px solid var(--line); padding: clamp(32px, 5vw, 56px) 0; }
.stats__grid { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); }
.stat { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 10px; padding: 6px 18px; text-align: center; border-left: 1px solid var(--line-soft); }
.stat:first-child { border-left: 0; }
.stat__num {
	font-size: clamp(2.3rem, 4.2vw, 3.3rem); font-weight: 300; line-height: 1; font-variant-numeric: tabular-nums;
	background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 12px; background: rgba(201, 163, 102, .1); border: 1px solid var(--line); color: var(--gold); }
.stat__icon .ico { width: 26px; height: 26px; }
.stat__label { font-size: .84rem; color: var(--muted); letter-spacing: .05em; max-width: 22ch; }
@media (max-width: 980px) {
	.stats__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.stat { border: 1px solid var(--line-soft); border-radius: 12px; padding: 20px 12px; background: var(--surface); }
	.stat:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

/* ---------- Fundadores ---------- */
.founders { position: relative; background: #08080a; overflow: hidden; isolation: isolate; border-block: 1px solid var(--line-soft); }
.founders::before {
	content: ""; position: absolute; inset: 0; z-index: -2;
	background: radial-gradient(46% 62% at 24% 58%, rgba(201, 163, 102, .24), transparent 70%), radial-gradient(40% 50% at 92% 8%, rgba(201, 163, 102, .09), transparent 60%);
}
.founders::after {
	content: ""; position: absolute; inset: 0; z-index: -1; opacity: .4; pointer-events: none;
	background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
	background-size: 56px 56px; -webkit-mask-image: radial-gradient(60% 70% at 30% 55%, #000, transparent 75%); mask-image: radial-gradient(60% 70% at 30% 55%, #000, transparent 75%);
}
.founders__grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(24px, 5vw, 72px); align-items: center; }
.founders__photo { margin: 0; position: relative; width: 100%; max-width: 540px; justify-self: center; }
.founders__photo::before { content: ""; position: absolute; inset: 6% 4% 0; border: 1px solid var(--line); border-bottom: 0; border-radius: 50% 50% 0 0 / 38% 38% 0 0; opacity: .7; }
.founders__photo img {
	position: relative; display: block; width: 100%; height: auto;
	filter: drop-shadow(0 26px 38px rgba(0, 0, 0, .65));
	-webkit-mask-image: linear-gradient(#000 84%, transparent); mask-image: linear-gradient(#000 84%, transparent);
}
.founders__copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); font-weight: 300; line-height: 1.15; }
.founders__copy p { color: var(--muted); max-width: 58ch; }
.ticks { list-style: none; display: grid; gap: 10px; margin: 22px 0 4px; }
.ticks li { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: .95rem; }
.ticks .ico { color: var(--gold); width: 1.15em; height: 1.15em; }
@media (max-width: 900px) {
	.founders__grid { grid-template-columns: 1fr; }
	.founders__photo { max-width: 400px; }
}

/* ---------- Avaliações do Google ---------- */
.reviews__card {
	position: relative; overflow: hidden; display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 5vw, 64px); align-items: center;
	background: linear-gradient(180deg, var(--surface), #121215); border: 1px solid var(--line); border-radius: 18px; padding: clamp(24px, 4vw, 48px);
}
.reviews__card::before { content: ""; position: absolute; left: 24px; right: 24px; top: -1px; height: 1px; background: var(--gold-grad); }
.reviews__score { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 200px; padding-right: clamp(0px, 4vw, 48px); border-right: 1px solid var(--line-soft); }
.reviews__num { font-size: 4.2rem; font-weight: 300; line-height: 1; color: #fff; }
.reviews__stars { display: inline-flex; gap: 3px; color: var(--gold); }
.reviews__stars .ico { width: 22px; height: 22px; }
.reviews__stars .is-off { opacity: .22; }
.reviews__count { font-size: .84rem; color: var(--muted); letter-spacing: .03em; }
.reviews__copy h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 300; }
.reviews__copy p { color: var(--muted); max-width: 60ch; }
@media (max-width: 760px) {
	.reviews__card { grid-template-columns: 1fr; text-align: center; }
	.reviews__score { border-right: 0; border-bottom: 1px solid var(--line-soft); padding: 0 0 22px; }
	.reviews__copy p { margin-inline: auto; }
	.reviews__copy .actions { justify-content: center; }
}

.reviews__widget { background: #f8f5ee; color: #1a1a1d; border-radius: 16px; padding: clamp(14px, 3vw, 28px); margin-bottom: 28px; overflow: hidden; }
.reviews__widget h1, .reviews__widget h2, .reviews__widget h3, .reviews__widget h4 { color: inherit; }

/* ---------- Parceiros ---------- */
.carousel { --per: 5; position: relative; padding-inline: 0; }
.carousel__viewport { overflow: hidden; padding-block: 6px; }
.carousel__track { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; will-change: transform; }
.carousel__item { flex: 0 0 calc(100% / var(--per)); padding: 0 7px; min-width: 0; }
.js .carousel__track { flex-wrap: nowrap; justify-content: flex-start; }
.partner {
	display: grid; place-items: center; width: 100%; height: 108px; padding: 12px; border-radius: 12px; background: #fff;
	transition: transform .25s ease, box-shadow .25s ease;
}
.partner:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0, 0, 0, .45); }
.partner--dark { background: linear-gradient(160deg, #1b1b20, #0f0f12); border: 1px solid var(--line); }
.partner a { display: grid; place-items: center; width: 100%; height: 100%; }
.partner img { width: auto; height: auto; max-width: 100%; max-height: 80px; object-fit: contain; user-select: none; -webkit-user-drag: none; }
.carousel__btn {
	display: none; position: absolute; top: 50%; z-index: 2; width: 40px; height: 40px; margin-top: -20px; padding: 0; border-radius: 50%;
	background: rgba(12, 12, 14, .92); border: 1px solid var(--line); color: var(--gold); cursor: pointer; place-items: center;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.carousel__btn:hover { background: var(--gold); border-color: var(--gold); color: #14110b; }
.carousel__btn .ico { width: 18px; height: 18px; }
.carousel__btn--prev { left: -12px; }
.carousel__btn--prev .ico { transform: scaleX(-1); }
.carousel__btn--next { right: -12px; }
.js .carousel.is-active .carousel__btn { display: grid; }
@media (max-width: 1180px) { .carousel { --per: 4; } }
@media (max-width: 900px) { .carousel { --per: 3; } }
@media (max-width: 620px) { .carousel { --per: 2; } .partner { height: 92px; } .partner img { max-height: 66px; } .carousel__btn--prev { left: -6px; } .carousel__btn--next { right: -6px; } }

/* ---------- Localização ---------- */
.location__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(24px, 4vw, 56px); align-items: stretch; }
.location__info .contact__list { margin-top: 0; }
.location__map { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; min-height: 340px; background: #101012; }
.location__map iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; }
@media (max-width: 900px) { .location__grid { grid-template-columns: 1fr; } .location__map, .location__map iframe { min-height: 300px; } }

/* ---------- Blog: filtros, busca e chamada final do artigo ---------- */
.blog-tools { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 24px; margin-bottom: 32px; }
.chips-nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.chips-nav a {
	display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px;
	color: var(--text); font-size: .86rem; background: rgba(201, 163, 102, .04); transition: all .2s ease;
}
.chips-nav a span { font-size: .7rem; color: var(--muted); }
.chips-nav a:hover, .chips-nav a.is-active { border-color: var(--gold); background: rgba(201, 163, 102, .16); color: #fff; }
.blog-search { position: relative; flex: 1 1 260px; max-width: 340px; }
.blog-search input {
	width: 100%; padding: 12px 46px 12px 18px; background: #0f0f12; border: 1px solid var(--line-soft); border-radius: 999px;
	color: var(--text); font: inherit; font-size: .92rem;
}
.blog-search input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 163, 102, .18); }
.blog-search button { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border: 0; border-radius: 50%; background: transparent; color: var(--gold); cursor: pointer; display: grid; place-items: center; }
.blog-search button .ico { width: 20px; height: 20px; }
.layout > div { min-width: 0; }
.post-cta {
	margin-top: 44px; padding: clamp(24px, 4vw, 40px); border: 1px solid var(--line); border-radius: 16px;
	background: linear-gradient(135deg, #17140e, #0f0f12); font-family: var(--font-sans);
}
.post-cta h2 { font-size: clamp(1.2rem, 2.4vw, 1.6rem); font-weight: 400; margin-bottom: .4em; }
.post-cta p { color: var(--muted); }
.prose .wp-block-table { overflow-x: auto; max-width: none; margin: 0 0 1.6em; }
.prose table { width: 100%; border-collapse: collapse; font-family: var(--font-sans); font-size: .92rem; line-height: 1.5; }
.prose th, .prose td { padding: 11px 14px; border: 1px solid var(--line-soft); text-align: left; vertical-align: top; }
.prose th { background: var(--surface-2); color: var(--gold-2); font-weight: 500; }
.prose ol { padding-left: 1.4em; }
.prose ol li { margin-bottom: .55em; padding-left: .3em; }
.prose ol li::marker { color: var(--gold); font-family: var(--font-sans); font-weight: 500; }

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
}
