/* =========================================================
   ProspectaMax LP — Design tokens
   Paleta idêntica à identidade real do produto (popup.css):
   dark UI técnico, azul de marca. Sem gold/luxo — ferramenta
   de trabalho, não vitrine de luxo.
   ========================================================= */
:root {
	--bg: #0b0f1a;
	--bg-elevated: #0f1420;
	--panel: #161d2e;
	--panel-2: #1e2740;
	--border: #2a3450;
	--text: #e6ebf5;
	--muted: #8a95ad;
	--primary: #4f7cff;
	--primary-2: #3a63e0;
	--green: #22c55e;
	--red: #ef4444;
	--amber: #f59e0b;

	--font-display: "Sora", -apple-system, "Segoe UI", sans-serif;
	--font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
	--font-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 22px;
	--container: 1160px;
}

/* =========================================================
   Reset básico
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; margin: 0 0 .5em; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--muted); }

.pmax-container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}
.pmax-section { padding: 96px 0; }
.pmax-text-primary { color: var(--primary); }

.pmax-skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--primary); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.pmax-skip-link:focus { left: 0; }

.pmax-eyebrow {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 12.5px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--primary);
	background: rgba(79,124,255,.1);
	border: 1px solid rgba(79,124,255,.3);
	padding: 5px 12px;
	border-radius: 999px;
	margin-bottom: 18px;
}

.pmax-section__head { max-width: 640px; margin-bottom: 48px; }
.pmax-section__head--center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.pmax-section__head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

/* =========================================================
   Botões
   ========================================================= */
.pmax-btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 8px;
	font-family: var(--font-body);
	font-weight: 600;
	border-radius: var(--radius-sm);
	padding: 13px 24px;
	font-size: 15px;
	transition: transform .15s ease, background .15s ease, border-color .15s ease;
	cursor: pointer;
	border: 1px solid transparent;
}
.pmax-btn--primary { background: var(--primary); color: #fff; }
.pmax-btn--primary:hover { background: var(--primary-2); transform: translateY(-1px); }
.pmax-btn--ghost { background: transparent; border-color: var(--border); color: var(--text); }
.pmax-btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.pmax-btn--lg { padding: 16px 30px; font-size: 16px; }
.pmax-btn--sm { padding: 9px 16px; font-size: 13.5px; }
.pmax-btn--block { width: 100%; margin-top: 18px; }

/* =========================================================
   Header
   ========================================================= */
.pmax-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(11,15,26,.85);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
}
.pmax-header__inner { display: flex; align-items: center; gap: 32px; height: 76px; }
.pmax-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.pmax-brand__glyph { color: var(--primary); font-size: 22px; line-height: 1; }
.pmax-nav { flex: 1; }
.pmax-nav__list { display: flex; gap: 28px; font-size: 14.5px; color: var(--muted); }
.pmax-nav__list a:hover { color: var(--text); }
.pmax-header__cta { white-space: nowrap; }
.pmax-nav-toggle { display: none; }

@media (max-width: 860px) {
	.pmax-nav { display: none; }
	.pmax-header__cta { display: none; }
	.pmax-nav-toggle {
		display: flex; flex-direction: column; gap: 5px; margin-left: auto;
		background: none; border: none; padding: 8px;
	}
	.pmax-nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }
}

/* =========================================================
   Hero + Radar (elemento de assinatura)
   ========================================================= */
.pmax-hero {
	position: relative;
	overflow: hidden;
	padding: 96px 0 80px;
	background: radial-gradient(120% 100% at 50% -10%, #14203f 0%, var(--bg) 60%);
}
.pmax-hero__scene { position: absolute; inset: 0; z-index: 0; opacity: .9; }
.pmax-hero__inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; text-align: center; }
.pmax-hero__title { font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.15; margin-bottom: .5em; }
.pmax-hero__subtitle { font-size: 18px; max-width: 600px; margin: 0 auto 32px; }
.pmax-hero__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

/* Skyline adormecida */
.pmax-skyline {
	position: absolute; left: 0; right: 0; bottom: 0; height: 140px;
	display: flex; align-items: flex-end; justify-content: center; gap: 18px;
	opacity: .35;
}
.pmax-skyline span {
	display: block; width: 34px; background: var(--panel-2);
	border-top: 2px solid var(--border);
}
.pmax-skyline span:nth-child(1) { height: 60px; }
.pmax-skyline span:nth-child(2) { height: 100px; }
.pmax-skyline span:nth-child(3) { height: 75px; }
.pmax-skyline span:nth-child(4) { height: 130px; }
.pmax-skyline span:nth-child(5) { height: 90px; }
.pmax-skyline span:nth-child(6) { height: 115px; }
.pmax-skyline span:nth-child(7) { height: 65px; }

/* =========================================================
   Simulação do Hero: Busca no Google -> Extração -> Envio
   ========================================================= */
.pmax-flow-demo {
	position: relative; z-index: 1; margin-top: 48px;
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 28px 24px 22px;
	box-shadow: 0 30px 60px -30px rgba(79,124,255,.25);
}
.pmax-flow-demo__steps {
	display: flex; align-items: flex-start; justify-content: center; gap: 4px;
}
.pmax-flow-demo__step {
	flex: 1 1 0; max-width: 220px;
	opacity: .45; transform: scale(.97);
	transition: opacity .5s ease, transform .5s ease;
}
.pmax-flow-demo__step.is-active { opacity: 1; transform: scale(1); }
.pmax-flow-demo__head { text-align: center; margin-bottom: 10px; }
.pmax-flow-demo__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: 50%;
	background: var(--bg-elevated); border: 1px solid var(--border);
	font-size: 18px; margin-bottom: 8px;
	transition: border-color .4s ease, box-shadow .4s ease;
}
.pmax-flow-demo__step.is-active .pmax-flow-demo__icon {
	border-color: var(--primary);
	box-shadow: 0 0 0 6px rgba(79,124,255,.12);
}
.pmax-flow-demo__label {
	margin: 0; font-size: 12.5px; font-weight: 600; color: var(--muted);
}
.pmax-flow-demo__step.is-active .pmax-flow-demo__label { color: var(--text); }

.pmax-flow-demo__panel {
	background: var(--bg-elevated); border: 1px solid var(--border);
	border-radius: var(--radius-sm); padding: 10px; min-height: 108px;
}

/* Passo 1 — busca no Google */
.pmax-flow-demo__searchbar {
	display: flex; align-items: center; gap: 6px;
	font-family: var(--font-mono); font-size: 10.5px; color: var(--muted);
	background: var(--panel-2); border: 1px solid var(--border); border-radius: 999px;
	padding: 5px 10px; margin-bottom: 8px; white-space: nowrap; overflow: hidden;
}
.pmax-flow-demo__g {
	display: inline-flex; align-items: center; justify-content: center;
	width: 14px; height: 14px; border-radius: 50%; font-size: 9px; font-weight: 700;
	background: #fff; color: #4285F4; flex-shrink: 0;
}
.pmax-flow-demo__result { margin-bottom: 7px; display: flex; flex-direction: column; gap: 3px; }
.pmax-flow-demo__result-title, .pmax-flow-demo__result-url {
	display: block; height: 6px; border-radius: 3px; background: var(--border);
	width: 0%;
}
.pmax-flow-demo__result-url { height: 5px; width: 0%; opacity: .6; }
.pmax-flow-demo__step.is-active .pmax-flow-demo__result-title { animation: pmax-fill-line .7s ease forwards; }
.pmax-flow-demo__step.is-active .pmax-flow-demo__result-url { animation: pmax-fill-line-url .7s ease forwards; }
.pmax-flow-demo__result:nth-child(2) .pmax-flow-demo__result-title,
.pmax-flow-demo__result:nth-child(2) .pmax-flow-demo__result-url { animation-delay: .25s !important; }
.pmax-flow-demo__result:nth-child(3) .pmax-flow-demo__result-title,
.pmax-flow-demo__result:nth-child(3) .pmax-flow-demo__result-url { animation-delay: .5s !important; }
.pmax-flow-demo__result:nth-child(4) .pmax-flow-demo__result-title,
.pmax-flow-demo__result:nth-child(4) .pmax-flow-demo__result-url { animation-delay: .75s !important; }
@keyframes pmax-fill-line { from { width: 0%; background: var(--border); } to { width: 88%; background: var(--muted); } }
@keyframes pmax-fill-line-url { from { width: 0%; } to { width: 55%; background: var(--primary); opacity: .5; } }

/* Passo 2 — extração de dados */
.pmax-flow-demo__field {
	display: flex; align-items: center; gap: 8px;
	font-size: 11.5px; color: var(--muted);
	padding: 7px 8px; border-radius: 6px; margin-bottom: 5px;
	background: transparent; border: 1px dashed var(--border);
	opacity: 0; transform: translateX(-6px);
}
.pmax-flow-demo__field-ico { font-size: 12px; }
.pmax-flow-demo__step.is-active .pmax-flow-demo__field {
	animation: pmax-field-in .5s ease forwards;
}
.pmax-flow-demo__field:nth-child(1) { animation-delay: .05s !important; }
.pmax-flow-demo__field:nth-child(2) { animation-delay: .35s !important; }
.pmax-flow-demo__field:nth-child(3) { animation-delay: .65s !important; }
@keyframes pmax-field-in {
	to { opacity: 1; transform: translateX(0); border-style: solid; border-color: rgba(34,197,94,.35); color: var(--text); background: rgba(34,197,94,.06); }
}

/* Passo 3 — envio multi-canal */
.pmax-flow-demo__channel {
	display: flex; align-items: center; gap: 8px;
	font-size: 11.5px; color: var(--muted); font-weight: 600;
	padding: 8px 8px; border-radius: 6px; margin-bottom: 5px;
	border: 1px solid var(--border);
	opacity: 0; transform: scale(.9);
}
.pmax-flow-demo__step.is-active .pmax-flow-demo__channel {
	animation: pmax-channel-in .45s ease forwards;
}
.pmax-flow-demo__channel:nth-child(1) { animation-delay: .1s !important; }
.pmax-flow-demo__channel:nth-child(2) { animation-delay: .4s !important; }
.pmax-flow-demo__channel:nth-child(3) { animation-delay: .7s !important; }
@keyframes pmax-channel-in {
	to { opacity: 1; transform: scale(1); border-color: var(--primary); color: var(--text); background: rgba(79,124,255,.08); }
}

/* Setas conectando os passos, com pontinhos fluindo */
.pmax-flow-demo__arrow {
	flex: 0 0 auto; width: 34px; align-self: center;
	display: flex; align-items: center; justify-content: center; gap: 4px;
	margin-top: 34px;
}
.pmax-flow-demo__arrow i {
	width: 4px; height: 4px; border-radius: 50%; background: var(--primary);
	opacity: .25; animation: pmax-arrow-flow 1.8s ease-in-out infinite;
}
.pmax-flow-demo__arrow i:nth-child(2) { animation-delay: .2s; }
.pmax-flow-demo__arrow i:nth-child(3) { animation-delay: .4s; }
@keyframes pmax-arrow-flow {
	0%, 100% { opacity: .2; transform: translateX(0); }
	50% { opacity: 1; transform: translateX(3px); }
}

@media (prefers-reduced-motion: reduce) {
	.pmax-flow-demo__arrow i { animation: none; opacity: .6; }
	.pmax-flow-demo__result-title, .pmax-flow-demo__result-url,
	.pmax-flow-demo__field, .pmax-flow-demo__channel { animation: none !important; opacity: 1; transform: none; width: auto; }
}

@media (max-width: 760px) {
	.pmax-flow-demo { padding: 20px 14px; }
	.pmax-flow-demo__steps { flex-direction: column; gap: 14px; }
	.pmax-flow-demo__step { max-width: 100%; }
	.pmax-flow-demo__arrow { display: none; }
}

/* Live log simulado (reflete o log real do rodapé do produto) */
.pmax-live-log {
	display: flex; align-items: center; gap: 10px; justify-content: center;
	font-family: var(--font-mono); font-size: 12.5px; color: var(--muted);
	background: var(--bg-elevated); border: 1px solid var(--border);
	padding: 9px 16px; border-radius: 999px; margin-top: 18px;
}
.pmax-live-log__line { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pmax-live-log__dot {
	width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0;
	animation: pmax-blink 1.6s ease-in-out infinite;
}
@keyframes pmax-blink { 50% { opacity: .3; } }

/* =========================================================
   Dor / Problema
   ========================================================= */
.pmax-pain__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.pmax-pain__list li {
	padding: 16px 0; border-bottom: 1px solid var(--border); color: var(--text);
}
.pmax-pain__list li:first-child { padding-top: 0; }
.pmax-pain__list strong { color: var(--red); display: block; font-family: var(--font-display); font-size: 15px; margin-bottom: 2px; }
@media (max-width: 860px) { .pmax-pain__grid { grid-template-columns: 1fr; gap: 24px; } }

/* =========================================================
   Como funciona — steps
   ========================================================= */
.pmax-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pmax-step {
	background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-md);
	padding: 28px 24px;
}
.pmax-step__n { font-family: var(--font-mono); color: var(--primary); font-size: 13px; }
.pmax-step h3 { margin-top: 10px; font-size: 18px; }
.pmax-step p { margin-bottom: 0; font-size: 14.5px; }
@media (max-width: 960px) { .pmax-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pmax-steps { grid-template-columns: 1fr; } }

/* =========================================================
   Recursos — cards
   ========================================================= */
.pmax-features__group { margin-bottom: 40px; }
.pmax-features__group:last-child { margin-bottom: 0; }
.pmax-features__group-title {
	font-family: var(--font-mono); font-size: 13px; text-transform: uppercase;
	letter-spacing: .06em; color: var(--primary); margin-bottom: 16px;
}
.pmax-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pmax-card {
	background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-md);
	padding: 26px;
	transition: border-color .15s ease, transform .15s ease;
}
.pmax-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.pmax-card h3 { font-size: 17px; margin-bottom: 8px; }
.pmax-card p { font-size: 14.5px; margin-bottom: 0; }
@media (max-width: 960px) { .pmax-features__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pmax-features__grid { grid-template-columns: 1fr; } }

/* =========================================================
   Provedores de IA
   ========================================================= */
.pmax-providers { background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pmax-providers__list {
	display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 8px;
}
.pmax-providers__list li {
	font-family: var(--font-mono); font-size: 14px;
	background: var(--panel-2); border: 1px solid var(--border); border-radius: 999px;
	padding: 10px 20px; color: var(--text);
}

/* =========================================================
   Modo Seguro / aviso responsável
   ========================================================= */
.pmax-safe__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.pmax-safe__checks li {
	position: relative; padding: 10px 0 10px 26px; color: var(--text); font-size: 15px;
}
.pmax-safe__checks li::before {
	content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700;
}
.pmax-notice {
	display: flex; gap: 14px; align-items: flex-start;
	background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.35);
	border-radius: var(--radius-md); padding: 22px;
}
.pmax-notice__icon { font-size: 20px; color: var(--amber); }
.pmax-notice p { margin: 0; font-size: 14.5px; color: var(--text); }
.pmax-notice strong { color: var(--amber); }
@media (max-width: 860px) { .pmax-safe__grid { grid-template-columns: 1fr; gap: 28px; } }

/* =========================================================
   Depoimentos
   ========================================================= */
.pmax-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pmax-testimonial {
	background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-md);
	padding: 26px; margin: 0;
}
.pmax-testimonial blockquote { margin: 0 0 16px; font-size: 15px; color: var(--text); font-style: italic; }
.pmax-testimonial figcaption { font-size: 13px; color: var(--muted); }
.pmax-testimonial__tag { display: block; margin-top: 4px; font-family: var(--font-mono); font-size: 11px; color: var(--amber); font-style: normal; }
@media (max-width: 960px) { .pmax-testimonials__grid { grid-template-columns: 1fr; } }

/* =========================================================
   Pricing
   ========================================================= */
.pmax-countdown { text-align: center; margin-bottom: 36px; }
.pmax-countdown__label { display: block; font-family: var(--font-mono); font-size: 13px; color: var(--muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .05em; }
.pmax-countdown__timer { display: flex; justify-content: center; gap: 14px; }
.pmax-countdown__timer div {
	background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-sm);
	padding: 12px 16px; min-width: 68px; text-align: center;
}
.pmax-countdown__timer span { display: block; font-family: var(--font-mono); font-size: 26px; font-weight: 700; color: var(--primary); }
.pmax-countdown__timer small { display: block; font-size: 11px; color: var(--muted); text-transform: uppercase; margin-top: 2px; }

.pmax-price-card {
	max-width: 440px; margin: 0 auto;
	background: linear-gradient(180deg, var(--panel-2), var(--panel));
	border: 1px solid var(--primary); border-radius: var(--radius-lg);
	padding: 40px 36px; text-align: center;
	box-shadow: 0 0 0 1px rgba(79,124,255,.1), 0 30px 60px -30px rgba(79,124,255,.35);
}
.pmax-price-card__old { display: block; text-decoration: line-through; color: var(--muted); font-family: var(--font-mono); margin-bottom: 8px; }
.pmax-price-card__now { display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.pmax-price-card__currency { font-family: var(--font-mono); font-size: 22px; color: var(--text); }
.pmax-price-card__amount { font-family: var(--font-mono); font-size: 56px; font-weight: 700; color: var(--text); line-height: 1; }
.pmax-price-card__period { font-size: 16px; color: var(--muted); }
.pmax-price-card__badge {
	display: inline-block; margin-top: 14px; font-size: 12.5px; font-family: var(--font-mono);
	color: var(--green); background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3);
	padding: 5px 12px; border-radius: 999px;
}
.pmax-price-card__list { text-align: left; margin: 28px 0; }
.pmax-price-card__list li { position: relative; padding: 8px 0 8px 26px; font-size: 14.5px; color: var(--text); }
.pmax-price-card__list li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.pmax-price-card__guarantee { font-size: 12.5px; color: var(--muted); margin: 14px 0 0; }

/* Formulário de checkout (InfinitePay) */
.pmax-checkout-form { text-align: left; margin-top: 8px; }
.pmax-checkout-form__field { margin-bottom: 12px; }
.pmax-checkout-form__field label {
	display: block; font-size: 12.5px; color: var(--muted); margin-bottom: 5px;
}
.pmax-checkout-form__field input {
	width: 100%; background: var(--bg-elevated); border: 1px solid var(--border);
	border-radius: var(--radius-sm); padding: 11px 14px; color: var(--text);
	font-family: var(--font-body); font-size: 14.5px;
}
.pmax-checkout-form__field input:focus {
	outline: none; border-color: var(--primary);
}
.pmax-checkout-form__error {
	color: var(--red); font-size: 13px; margin: 10px 0 0; text-align: center;
}

/* =========================================================
   FAQ / Accordion
   ========================================================= */
.pmax-faq__wrap { max-width: 760px; }
.pmax-accordion__item {
	border-bottom: 1px solid var(--border); padding: 18px 0;
}
.pmax-accordion__item summary {
	cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--text);
	list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.pmax-accordion__item summary::-webkit-details-marker { display: none; }
.pmax-accordion__item summary::after { content: "+"; font-size: 20px; color: var(--primary); }
.pmax-accordion__item[open] summary::after { content: "–"; }
.pmax-accordion__item p { margin-top: 12px; font-size: 14.5px; }

/* =========================================================
   CTA final
   ========================================================= */
.pmax-final-cta { background: radial-gradient(80% 140% at 50% 100%, #14203f 0%, var(--bg) 65%); text-align: center; }
.pmax-final-cta__inner h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); max-width: 600px; margin: 0 auto .3em; }
.pmax-final-cta__inner p { max-width: 480px; margin: 0 auto 28px; }

/* =========================================================
   Footer
   ========================================================= */
.pmax-footer { background: var(--bg-elevated); border-top: 1px solid var(--border); padding: 64px 0 0; }
.pmax-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 48px; }
.pmax-footer__tagline { font-size: 14px; margin-top: 12px; }
.pmax-footer__eco { font-size: 13px; color: var(--muted); }
.pmax-footer__col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 14px; }
.pmax-footer__col ul li { margin-bottom: 10px; font-size: 14.5px; }
.pmax-footer__col ul li a:hover { color: var(--primary); }
.pmax-footer__bottom {
	border-top: 1px solid var(--border); padding: 22px 0; display: flex; justify-content: space-between;
	gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--muted);
}
@media (max-width: 860px) { .pmax-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pmax-footer__grid { grid-template-columns: 1fr; } }

/* =========================================================
   Breadcrumb
   ========================================================= */
.pmax-breadcrumbs { margin-bottom: 24px; }
.pmax-breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; padding: 0; margin: 0; list-style: none; }
.pmax-breadcrumbs li { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; }
.pmax-breadcrumbs a { color: var(--muted); }
.pmax-breadcrumbs a:hover { color: var(--primary); }
.pmax-breadcrumbs span[aria-current] { color: var(--text); font-weight: 500; }
.pmax-breadcrumbs__sep { color: var(--border); }

/* =========================================================
   Páginas simples (page.php / single.php / archive.php / 404)
   ========================================================= */
.pmax-simple-page { padding: 72px 0 100px; }
.pmax-simple-page__inner--narrow { max-width: 760px; margin: 0 auto; }
.pmax-page__title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.pmax-page__thumb { margin: 24px 0; border-radius: var(--radius-md); overflow: hidden; }
.pmax-page__content :is(h2, h3) { margin-top: 1.4em; }
.pmax-page__content a { color: var(--primary); text-decoration: underline; }
.pmax-post__meta { font-family: var(--font-mono); font-size: 13px; color: var(--muted); }
.pmax-post-nav { display: flex; justify-content: space-between; margin-top: 48px; border-top: 1px solid var(--border); padding-top: 24px; font-size: 14.5px; }
.pmax-post-nav a:hover { color: var(--primary); }

.pmax-archive__header { margin-bottom: 40px; }
.pmax-archive__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pmax-card--post h2 { font-size: 17px; margin: 10px 0 6px; }
.pmax-card__thumb img { border-radius: var(--radius-sm); margin-bottom: 6px; }
.pmax-card__link { color: var(--primary); font-size: 13.5px; font-weight: 600; }
.pmax-pagination { margin-top: 40px; display: flex; justify-content: center; gap: 12px; }
@media (max-width: 960px) { .pmax-archive__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pmax-archive__grid { grid-template-columns: 1fr; } }

/* =========================================================
   Footer Sitemap — links de palavras-chave por categoria
   ========================================================= */
.pmax-footer-sitemap { border-top: 1px solid var(--border); padding: 32px 0; }
.pmax-footer-sitemap__title {
	font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted);
	margin-bottom: 16px;
}
.pmax-footer-sitemap__groups {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 24px;
}
.pmax-footer-sitemap__group {
	border-bottom: 1px solid var(--border); padding: 10px 0;
}
.pmax-footer-sitemap__group summary {
	cursor: pointer; list-style: none; font-size: 13.5px; color: var(--text); font-weight: 600;
	display: flex; justify-content: space-between; align-items: center;
}
.pmax-footer-sitemap__group summary::-webkit-details-marker { display: none; }
.pmax-footer-sitemap__group summary::after { content: "+"; color: var(--primary); font-size: 15px; }
.pmax-footer-sitemap__group[open] summary::after { content: "–"; }
.pmax-footer-sitemap__group summary a { color: inherit; }
.pmax-footer-sitemap__group summary a:hover { color: var(--primary); }
.pmax-footer-sitemap__list {
	margin-top: 10px; column-count: 2; column-gap: 20px;
}
.pmax-footer-sitemap__list li { break-inside: avoid; margin-bottom: 6px; }
.pmax-footer-sitemap__list a {
	font-size: 12.5px; color: var(--muted); line-height: 1.4;
}
.pmax-footer-sitemap__list a:hover { color: var(--primary); }
@media (max-width: 960px) { .pmax-footer-sitemap__groups { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
	.pmax-footer-sitemap__groups { grid-template-columns: 1fr; }
	.pmax-footer-sitemap__list { column-count: 1; }
}

/* Página de Contato */
.pmax-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0 36px; }
.pmax-contact-card h3 { margin-bottom: 6px; }
.pmax-contact-card p { margin-bottom: 0; }
@media (max-width: 600px) { .pmax-contact-grid { grid-template-columns: 1fr; } }

.pmax-404 { text-align: center; padding: 120px 0; }
.pmax-404__inner { max-width: 560px; margin: 0 auto; position: relative; }
.pmax-404__icon {
	width: 72px; height: 72px; margin: 0 auto 20px;
	display: flex; align-items: center; justify-content: center;
	font-size: 30px; border-radius: 50%;
	background: var(--panel); border: 1px solid var(--border);
	animation: pmax-404-pulse 2.2s ease-in-out infinite;
}
@keyframes pmax-404-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(79,124,255,.25); }
	50% { box-shadow: 0 0 0 12px rgba(79,124,255,0); }
}
@media (prefers-reduced-motion: reduce) {
	.pmax-404__icon { animation: none; }
}
