/* REFRIR — folha de estilos (migrada 1:1 do site Next.js original, sem Tailwind) */

/* ==================================================================
   SISTEMA DE TEMAS — transformação theme-only (DARK / LIGHT)
   Esquema de tokens semânticos IDÊNTICO nos dois temas.
   Estrutura, geometria e tipografia não mudam — só cor/superfície/contraste.
   Família de cor da marca: azul (#00A3E0 → #001F7F).
   ================================================================== */

/* ---- TEMA CLARO (padrão / sem data-theme / prefers light) ---- */
:root,
:root[data-theme="light"] {
  --background:#F4F7FA;
  --background-secondary:#E6EEF4;
  --surface-01:#FFFFFF;
  --surface-02:#EAF2F9;
  --surface-03:#DBE8F3;
  --surface-elevated:#FFFFFF;

  --border:#C6D3DF;
  --border-subtle:#E2E9F0;

  --text-primary:#0C1B2A;
  --text-secondary:#46586A;
  --text-muted:#59697B;
  --text-inverse:#FFFFFF;

  --primary:#0A63B5;
  --primary-hover:#0A579E;
  --primary-active:#094B88;
  --primary-contrast:#FFFFFF;

  --accent:#0879D9;

  --link:#0B67BE;
  --link-hover:#084E90;

  --focus-ring:#1173C6;

  --input-background:#FFFFFF;
  --input-border:#96A9BA;
  --input-border-focus:#0A63B5;

  --disabled-background:#E7ECF1;
  --disabled-text:#9AA8B4;

  --shadow-color:#16324A;
  --grid-line:rgba(12,27,42,.08);

  /* status (nunca dominantes sobre a marca) */
  --success:#167356;
  --warning:#8A5D00;
  --error:#B3261E;
  --error-surface:#FBECEC;

  /* extremos da marca — sempre literais (usados no degradê) */
  --brand-ice:#00A3E0;
  --brand-deep:#001F7F;
  --footer-bg:#DFE9F1;

  --font-display:Georgia,"Times New Roman",serif;
  --font-body:Arial,Helvetica,sans-serif;

  /* pontes para as classes já existentes — não alteram geometria.
     Resolvem em tempo de uso, então re-mapeiam sozinhas no tema escuro. */
  --paper:var(--background);
  --surface:var(--surface-01);
  --surface-2:var(--surface-02);
  --ink:var(--text-primary);
  --heading:var(--text-primary);
  --muted:var(--text-secondary);
  --line:var(--border);
  --blue-500:var(--primary);
  --blue-600:var(--accent);
  --ice-50:var(--background-secondary);
  --ice-100:var(--surface-02);
  --navy-950:#061426;
  --navy-900:#0A2038;
  --navy-800:#0E2C50;
}

/* ---- TEMA ESCURO ---- */
:root[data-theme="dark"] {
  --background:#0A1524;
  --background-secondary:#0E1B2D;
  --surface-01:#122236;
  --surface-02:#17293F;
  --surface-03:#1E3450;
  --surface-elevated:#223A59;

  --border:#2E4763;
  --border-subtle:#1E3049;

  --text-primary:#EAF1F8;
  --text-secondary:#A9BBCC;
  --text-muted:#879BAE;
  --text-inverse:#04131F;

  --primary:#12A5E0;
  --primary-hover:#38B4E8;
  --primary-active:#0B8DC4;
  --primary-contrast:#04131F;

  --accent:#35B7EF;

  --link:#5CC0EF;
  --link-hover:#86D2F4;

  --focus-ring:#6BC4FF;

  --input-background:#101E30;
  --input-border:#34506E;
  --input-border-focus:#38B4E8;

  --disabled-background:#182838;
  --disabled-text:#5A6A7A;

  --shadow-color:#00070F;
  --grid-line:rgba(150,190,225,.12);

  --success:#3FB985;
  --warning:#E0A94A;
  --error:#E88B8B;
  --error-surface:#241618;

  --footer-bg:#0A121D;

  /* seções hoje "navy" (heros, faixas) viram superfícies escuras do tema */
  --navy-950:#0E1B2D;
  --navy-900:#122236;
  --navy-800:#17293F;
}

/* Segue o dispositivo quando o visitante não escolheu manualmente */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --background:#0A1524;
    --background-secondary:#0E1B2D;
    --surface-01:#122236;
    --surface-02:#17293F;
    --surface-03:#1E3450;
    --surface-elevated:#223A59;
    --border:#2E4763;
    --border-subtle:#1E3049;
    --text-primary:#EAF1F8;
    --text-secondary:#A9BBCC;
    --text-muted:#879BAE;
    --text-inverse:#04131F;
    --primary:#12A5E0;
    --primary-hover:#38B4E8;
    --primary-active:#0B8DC4;
    --primary-contrast:#04131F;
    --accent:#35B7EF;
    --link:#5CC0EF;
    --link-hover:#86D2F4;
    --focus-ring:#6BC4FF;
    --input-background:#101E30;
    --input-border:#34506E;
    --input-border-focus:#38B4E8;
    --disabled-background:#182838;
    --disabled-text:#5A6A7A;
    --shadow-color:#00070F;
    --grid-line:rgba(150,190,225,.12);
    --success:#3FB985;
    --warning:#E0A94A;
    --error:#E88B8B;
    --error-surface:#241618;
    --footer-bg:#0A121D;
    --navy-950:#0E1B2D;
    --navy-900:#122236;
    --navy-800:#17293F;
  }
}

/* ===== Menos movimento (acessibilidade) ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after {
    animation-duration:.001ms !important; animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
}

/* ===== Botão de troca de tema ===== */
.theme-toggle { display:grid; place-items:center; width:44px; height:44px; border:1px solid var(--border); background:transparent; color:var(--text-secondary); cursor:pointer; }
.theme-toggle:hover { border-color:var(--text-secondary); background:var(--surface-02); }
.theme-toggle svg { width:20px; height:20px; }
.theme-toggle .icon-moon { display:none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display:none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display:block; }
.mobile-menu .theme-toggle { width:100%; height:52px; gap:10px; grid-auto-flow:column; font-family:var(--font-body); font-size:13px; font-weight:700; letter-spacing:.02em; }
.audience-header-actions { display:flex; align-items:center; gap:14px; }
* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { margin:0; background:var(--paper); color:var(--ink); font-family:var(--font-body); text-rendering:optimizeLegibility; -webkit-font-smoothing:antialiased; }
a { color:inherit; text-decoration:none; }
button,input,textarea,select { font:inherit; }
button,a { -webkit-tap-highlight-color:transparent; }
svg { display:block; }
:focus-visible { outline:3px solid var(--focus-ring); outline-offset:4px; }
.brand-mark { display:inline-flex; align-items:center; gap:11px; min-width:max-content; }
.brand-emblem { display:grid; place-items:center; width:43px; height:43px; flex:0 0 43px; }
.brand-emblem img { width:100%; height:100%; object-fit:contain; }
.brand-wording { display:flex; flex-direction:column; gap:1px; }
.brand-wording strong { font-family:var(--font-display); font-size:21px; letter-spacing:.11em; line-height:1; }
.brand-wording small { font-size:7px; font-weight:700; letter-spacing:.13em; }
.brand-mark-inverse { color:var(--text-primary); }
.eyebrow { margin:0 0 16px; color:var(--blue-600); font-size:11px; font-weight:800; letter-spacing:.15em; line-height:1.5; }
.eyebrow.on-dark { color:var(--accent); }
.button { display:inline-flex; min-height:50px; align-items:center; justify-content:center; gap:12px; padding:0 22px; border:1px solid transparent; font-size:14px; font-weight:800; transition:.2s ease; }
.button svg { width:19px; }
.button:hover { transform:translateY(-1px); }
.button-accent { background:var(--primary); color:var(--primary-contrast); }
.button-accent:hover { background:var(--primary-hover); }
.button-accent:active { background:var(--primary-active); }
.button:disabled,.button[aria-disabled="true"] { background:var(--disabled-background); color:var(--disabled-text); cursor:not-allowed; transform:none; }
.button-light { background:var(--primary); color:var(--primary-contrast); }
.button-light:hover { background:var(--primary-hover); }
.button-dark { background:var(--text-primary); color:var(--background); }
.button-dark:hover { background:var(--text-secondary); }
.button-ghost-light { border-color:var(--border); color:var(--text-primary); }
.button-ghost-light:hover { border-color:var(--text-primary); background:var(--surface-02); }
.button-small { min-height:42px; padding-inline:17px; font-size:12px; }
.quiet-link { font-size:13px; font-weight:700; text-decoration:underline; text-underline-offset:4px; }
.quiet-link.light { color:var(--link); }

.audience-page { position:relative; min-height:100svh; overflow:hidden; padding:max(22px,env(safe-area-inset-top)) 20px max(20px,env(safe-area-inset-bottom)); background:var(--background); color:var(--text-primary); }
.hero-grid-lines { position:absolute; inset:0; pointer-events:none; opacity:.16; background-image:linear-gradient(var(--grid-line) 1px,transparent 1px),linear-gradient(90deg,var(--grid-line) 1px,transparent 1px); background-size:52px 52px; mask-image:linear-gradient(to bottom,black,transparent 72%); }
.audience-grid { position:absolute; inset:0; pointer-events:none; opacity:.9; background-image:linear-gradient(var(--grid-line) 1px,transparent 1px),linear-gradient(90deg,var(--grid-line) 1px,transparent 1px); background-size:52px 52px; mask-image:linear-gradient(to bottom,black,transparent 72%); }
.audience-page::after { content:""; position:absolute; right:-120px; bottom:-140px; width:390px; height:390px; border:1px solid var(--border-subtle); border-radius:50%; box-shadow:0 0 0 70px rgba(49,159,225,.035),0 0 0 140px rgba(49,159,225,.025); }
.audience-header,.audience-intro,.audience-options,.audience-footer { position:relative; z-index:1; width:min(1180px,100%); margin-inline:auto; }
.audience-header { display:flex; align-items:center; justify-content:space-between; }
.audience-header .quiet-link { display:none; }
.audience-intro { margin-top:clamp(68px,11vh,118px); }
.audience-intro h1 { max-width:760px; margin:0; font-family:var(--font-display); font-size:clamp(2.35rem,11vw,4.8rem); font-weight:400; letter-spacing:-.045em; line-height:.98; text-wrap:balance; }
.audience-intro>p:last-child { max-width:590px; margin:24px 0 0; color:var(--text-secondary); font-size:16px; line-height:1.65; }
.audience-options { display:grid; gap:12px; margin-top:38px; }
.audience-card { position:relative; display:grid; grid-template-columns:42px 1fr 38px; align-items:start; gap:15px; min-height:154px; padding:23px 19px; border:1px solid var(--border); background:var(--surface-01); transition:.2s ease; }
.audience-card:hover { transform:translateY(-2px); border-color:var(--primary); background:var(--surface-02); }
.audience-card.is-remembered { border-color:var(--primary); background:var(--surface-02); }
.audience-icon { display:grid; place-items:center; width:42px; height:42px; border:1px solid var(--border); color:var(--accent); }
.audience-icon svg { width:25px; }
.audience-card-copy { display:flex; flex-direction:column; min-width:0; }
.audience-label { font-family:var(--font-display); font-size:22px; line-height:1.15; }
.audience-description { margin-top:9px; color:var(--text-muted); font-size:13px; line-height:1.55; }
.remembered-label { align-self:flex-start; margin-top:13px; color:var(--accent); font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.round-arrow { display:grid; place-items:center; width:38px; height:38px; border:1px solid var(--border); border-radius:50%; color:var(--text-secondary); }
.round-arrow svg { width:18px; }
.audience-footer { display:flex; flex-direction:column; gap:7px; margin-top:38px; padding-top:17px; border-top:1px solid var(--border); color:var(--text-muted); font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.audience-page .eyebrow.on-dark { color:var(--accent); }
.audience-page .quiet-link.light { color:var(--link); }
.audience-page .brand-mark-inverse { color:var(--text-primary); }

.site-header { position:sticky; top:0; z-index:40; background:var(--background); color:var(--text-primary); border-bottom:1px solid var(--border-subtle); }
.header-inner { display:flex; height:72px; align-items:center; justify-content:space-between; width:min(1240px,calc(100% - 40px)); margin-inline:auto; }
.desktop-nav,.header-actions>.button,.audience-switch { display:none; }
.header-actions { display:flex; align-items:center; }
.menu-button { display:grid; width:46px; height:46px; place-items:center; border:0; background:transparent; color:var(--text-primary); cursor:pointer; }
.menu-button svg { width:26px; }
.mobile-menu { position:fixed; inset:0; z-index:50; display:flex; visibility:hidden; flex-direction:column; padding:max(20px,env(safe-area-inset-top)) 20px max(26px,env(safe-area-inset-bottom)); background:var(--background); opacity:0; transform:translateX(100%); transition:.24s ease; }
.mobile-menu.is-open { visibility:visible; opacity:1; transform:translateX(0); }
.mobile-menu-top { display:flex; align-items:center; justify-content:space-between; }
.mobile-menu nav { display:flex; flex-direction:column; margin-top:42px; overflow-y:auto; }
.mobile-menu nav a { display:flex; align-items:center; gap:18px; min-height:58px; border-bottom:1px solid var(--border-subtle); font-family:var(--font-display); font-size:23px; }
.mobile-menu nav a span { color:var(--accent); font-family:var(--font-body); font-size:10px; font-weight:800; letter-spacing:.1em; }
.mobile-menu-actions { display:flex; flex-direction:column; gap:22px; margin-top:auto; padding-top:28px; }
.mobile-menu-actions .quiet-link { text-align:center; }

.business-hero { position:relative; overflow:hidden; min-height:calc(100svh - 72px); padding:64px 20px 0; background:var(--background); color:var(--text-primary); }
.business-hero::before { content:""; position:absolute; right:-220px; top:-160px; width:560px; height:560px; border:1px solid var(--border-subtle); border-radius:50%; box-shadow:0 0 0 90px rgba(63,176,244,.022),0 0 0 180px rgba(63,176,244,.018); }
.business-hero-copy,.hero-system,.hero-proof-strip { position:relative; z-index:1; width:min(1180px,100%); margin-inline:auto; }
.business-hero-copy h1 { max-width:830px; margin:0; font-family:var(--font-display); font-size:clamp(2.65rem,11vw,5.8rem); font-weight:400; letter-spacing:-.052em; line-height:.97; text-wrap:balance; }
.hero-lead { max-width:700px; margin:27px 0 0; color:var(--text-secondary); font-size:16px; line-height:1.65; }
.hero-actions { display:flex; flex-direction:column; gap:10px; margin-top:28px; }
.action-note { max-width:500px; margin:16px 0 0; color:var(--text-muted); font-size:12px; line-height:1.55; }
.hero-system { margin-top:45px; border:1px solid var(--border); background:var(--surface-01); }
.system-topline { display:flex; justify-content:space-between; padding:12px 14px; border-bottom:1px solid var(--border-subtle); color:var(--accent); font-size:9px; font-weight:800; letter-spacing:.11em; }
.system-center { padding:25px 18px 27px; }
.system-kicker { color:var(--accent); font-size:9px; font-weight:800; letter-spacing:.12em; }
.system-center strong { display:block; margin-top:11px; font-family:var(--font-display); font-size:24px; font-weight:400; line-height:1.2; }
.system-center p { margin:12px 0 0; color:var(--text-secondary); font-size:12px; }
.system-flow { display:grid; grid-template-columns:auto 1fr auto 1fr auto; align-items:center; gap:9px; padding:14px; border-top:1px solid var(--border-subtle); color:var(--text-secondary); font-size:10px; font-weight:700; }
.system-flow span { display:flex; flex-direction:column; gap:3px; }
.system-flow i { color:var(--accent); font-size:8px; font-style:normal; }
.system-flow b { height:1px; background:var(--border); }
.hero-proof-strip { display:grid; grid-template-columns:repeat(3,1fr); margin-top:28px; border-top:1px solid var(--border-subtle); }
.hero-proof-strip div { display:flex; min-width:0; flex-direction:column; gap:5px; padding:21px 6px 24px 0; }
.hero-proof-strip strong { font-family:var(--font-display); font-size:20px; font-weight:400; }
.hero-proof-strip span { color:var(--text-muted); font-size:8px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; }

.section { padding:76px 20px; }
.section-heading { width:min(1180px,100%); margin-inline:auto; }
.section-heading h2,.authority-copy h2,.pmoc-copy h2,.cta-section h2 { margin:0; font-family:var(--font-display); font-size:clamp(2rem,8vw,3.75rem); font-weight:400; letter-spacing:-.04em; line-height:1.04; text-wrap:balance; }
.section-heading>p:not(.eyebrow),.split-heading>p { color:var(--muted); font-size:15px; line-height:1.7; }
.split-heading { display:grid; gap:24px; }
.services-section { background:var(--ice-50); }
.service-list { width:min(1180px,100%); margin:42px auto 0; border-top:1px solid var(--border); }
.service-row { display:grid; grid-template-columns:30px 1fr 36px; align-items:center; gap:11px; min-height:118px; border-bottom:1px solid var(--border); transition:.2s ease; }
.service-row:hover { color:var(--blue-600); }
.service-number { align-self:start; padding-top:27px; color:var(--blue-600); font-size:10px; font-weight:800; }
.service-copy { display:flex; flex-direction:column; gap:8px; padding-block:24px; }
.service-copy strong { font-family:var(--font-display); font-size:21px; font-weight:400; line-height:1.15; }
.service-copy small { color:var(--muted); font-size:12px; line-height:1.5; }
.service-arrow { display:grid; place-items:center; width:36px; height:36px; border:1px solid var(--border); border-radius:50%; }
.service-arrow svg { width:17px; }
.text-link { display:flex; width:min(1180px,100%); align-items:center; gap:10px; margin:28px auto 0; color:var(--blue-600); font-size:13px; font-weight:800; }
.text-link svg { width:18px; }
.authority-section { display:grid; gap:48px; padding:76px 20px; background:var(--surface-02); color:var(--text-primary); }
.authority-copy,.authority-points { width:min(1180px,100%); margin-inline:auto; }
.authority-copy>p:not(.eyebrow) { margin:23px 0 28px; color:var(--text-secondary); font-size:15px; line-height:1.7; }
.authority-points { display:flex; flex-direction:column; }
.authority-points>div { display:grid; grid-template-columns:28px 1fr; gap:14px; padding:23px 0; border-top:1px solid var(--border); color:var(--text-secondary); font-size:13px; line-height:1.6; }
.authority-points svg { width:23px; color:var(--accent); }
.authority-points span { display:flex; flex-direction:column; gap:5px; }
.authority-points strong { color:var(--text-primary); font-family:var(--font-display); font-size:20px; font-weight:400; }
.trust-section { background:var(--surface); }
.compact-heading { max-width:810px; }
.client-names { display:grid; width:min(1180px,100%); margin:42px auto 0; border-top:1px solid var(--line); }
.client-names span { display:flex; min-height:86px; align-items:center; border-bottom:1px solid var(--line); color:var(--heading); font-family:var(--font-display); font-size:21px; }
.pmoc-callout { display:grid; gap:45px; background:var(--ice-100); }
.pmoc-index,.pmoc-copy { width:min(1180px,100%); margin-inline:auto; }
.pmoc-index { display:grid; place-items:center; min-height:260px; border:1px solid var(--border); background-image:linear-gradient(var(--grid-line) 1px,transparent 1px),linear-gradient(90deg,var(--grid-line) 1px,transparent 1px); background-size:32px 32px; }
.pmoc-index strong { grid-area:1/1; color:var(--heading); font-family:var(--font-display); font-size:clamp(4rem,22vw,8rem); font-weight:400; letter-spacing:-.07em; }
.pmoc-index span { grid-area:1/1; color:var(--blue-600); font-size:9px; font-weight:800; letter-spacing:.17em; }
.pmoc-index span:first-child { align-self:start; justify-self:start; padding:18px; }
.pmoc-index span:last-child { align-self:end; justify-self:end; padding:18px; }
.pmoc-copy>p:not(.eyebrow) { margin:22px 0 27px; color:var(--muted); font-size:15px; line-height:1.72; }
.cta-section { padding:76px 20px; background:var(--background); color:var(--text-primary); text-align:center; }
.cta-section h2 { max-width:760px; margin-inline:auto; }
.cta-section>p:not(.eyebrow) { max-width:560px; margin:20px auto 27px; color:var(--text-secondary); font-size:15px; line-height:1.65; }
.site-footer { padding:64px 20px 22px; background:var(--footer-bg); color:var(--text-primary); }
.footer-top { display:grid; gap:40px; width:min(1180px,100%); margin-inline:auto; }
.footer-brand p,.footer-column p { max-width:340px; margin:20px 0 0; color:var(--text-secondary); font-size:12px; line-height:1.65; }
.footer-column { display:flex; flex-direction:column; align-items:flex-start; gap:11px; }
.footer-column h2 { margin:0 0 7px; color:var(--accent); font-size:10px; letter-spacing:.14em; text-transform:uppercase; }
.footer-column a { color:var(--text-secondary); font-size:13px; }
.footer-column a:hover { color:var(--text-primary); text-decoration:underline; text-underline-offset:4px; }
.footer-column address { color:var(--text-secondary); font-size:12px; font-style:normal; line-height:1.65; }
.footer-bottom { display:flex; flex-direction:column; gap:8px; width:min(1180px,100%); margin:46px auto 0; padding-top:18px; border-top:1px solid var(--border); color:var(--text-muted); font-size:9px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }

@media(min-width:700px){
 .audience-page{padding-inline:36px}.audience-header .quiet-link{display:inline}.audience-options{grid-template-columns:repeat(2,1fr);gap:16px}.audience-card{min-height:190px;padding:28px}.audience-footer{flex-direction:row;justify-content:space-between}.hero-actions{flex-direction:row}.hero-actions .button{min-width:190px}.business-hero{padding-inline:36px}.hero-system{max-width:560px;margin-left:auto;margin-right:0}.hero-proof-strip{grid-template-columns:repeat(3,minmax(140px,1fr))}.section,.authority-section,.cta-section,.site-footer{padding-left:36px;padding-right:36px}.service-row{grid-template-columns:48px 1fr 44px}.service-copy strong{font-size:26px}.service-copy small{font-size:13px}.client-names{grid-template-columns:repeat(3,1fr);border-bottom:1px solid var(--line)}.client-names span{justify-content:center;padding:20px;border-right:1px solid var(--line);border-bottom:0;text-align:center}.client-names span:last-child{border-right:0}.footer-top{grid-template-columns:1.5fr 1fr 1fr}.footer-column:last-child{grid-column:2}.footer-bottom{flex-direction:row;justify-content:space-between}
}
@media(min-width:1024px){
 .audience-page{padding-inline:56px}.audience-intro{margin-top:clamp(82px,12vh,135px)}.audience-options{max-width:980px;margin-left:calc((100% - min(1180px,100%))/2)}.audience-card{grid-template-columns:52px 1fr 44px;min-height:206px;padding:32px}.audience-icon{width:52px;height:52px}.audience-label{font-size:29px}.audience-description{max-width:330px;font-size:14px}.header-inner{height:78px}.desktop-nav{display:flex;align-items:center;gap:clamp(18px,2.2vw,34px)}.desktop-nav a{color:var(--text-secondary);font-size:12px;font-weight:700}.desktop-nav a:hover{color:var(--text-primary)}.header-actions{gap:18px}.header-actions>.button,.audience-switch{display:inline-flex}.audience-switch{color:var(--text-muted);font-size:11px;font-weight:700}.menu-button{display:none}.business-hero{min-height:calc(100svh - 78px);padding:88px 56px 0}.business-hero-copy{padding-right:390px}.business-hero-copy h1{font-size:clamp(4rem,6.1vw,5.7rem)}.hero-system{position:absolute;right:max(56px,calc((100vw - 1180px)/2));top:96px;width:330px;margin:0}.hero-proof-strip{margin-top:80px}.hero-proof-strip div{padding-block:26px 30px}.hero-proof-strip strong{font-size:28px}.hero-proof-strip span{font-size:9px}.section{padding:112px 56px}.split-heading{grid-template-columns:1.25fr .75fr;align-items:end}.split-heading>p{margin:0 0 5px}.service-list{margin-top:62px}.service-row{grid-template-columns:70px 1fr 48px;min-height:130px}.service-row:hover{padding-left:10px}.service-copy{flex-direction:row;align-items:center;justify-content:space-between;gap:40px}.service-copy strong{font-size:30px}.service-copy small{width:430px;font-size:13px}.authority-section{grid-template-columns:1fr 1fr;gap:100px;padding:112px max(56px,calc((100vw - 1180px)/2))}.authority-copy,.authority-points{width:auto}.authority-points{align-self:center}.pmoc-callout{grid-template-columns:.9fr 1.1fr;align-items:center;gap:90px;padding:112px max(56px,calc((100vw - 1180px)/2))}.pmoc-index,.pmoc-copy{width:auto}.pmoc-index{min-height:420px}.cta-section{padding-block:105px}.footer-top{grid-template-columns:1.7fr 1fr 1fr 1fr}.footer-column:last-child{grid-column:auto}
}

/* Technical blog */
.blog-shell { width:min(1180px,calc(100% - 40px)); margin-inline:auto; }
.blog-hero,.blog-category-hero,.technical-article-hero { position:relative; overflow:hidden; background:var(--background); color:var(--text-primary); }
.blog-hero::after,.blog-category-hero::after,.technical-article-hero::after { content:""; position:absolute; width:480px; height:480px; right:-260px; bottom:-260px; border:1px solid var(--border-subtle); border-radius:50%; box-shadow:0 0 0 75px rgba(65,179,243,.025),0 0 0 150px rgba(65,179,243,.018); pointer-events:none; }
.blog-hero { padding:72px 0 64px; }
.blog-hero-grid { position:relative; z-index:1; display:grid; gap:44px; }
.blog-breadcrumbs { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:48px; color:var(--text-muted); font-size:11px; font-weight:700; }
.blog-breadcrumbs a:hover { color:var(--text-primary); text-decoration:underline; text-underline-offset:4px; }
.blog-hero h1,.blog-category-hero h1,.technical-article-hero h1 { margin:0; font-family:var(--font-display); font-weight:400; letter-spacing:-.05em; line-height:.98; text-wrap:balance; }
.blog-hero h1 { max-width:820px; font-size:clamp(3rem,13vw,6rem); }
.blog-hero-grid>div>p:last-child,.blog-category-hero .blog-shell>p:last-child { max-width:720px; margin:25px 0 0; color:var(--text-secondary); font-size:16px; line-height:1.72; }
.blog-editorial-note { align-self:end; padding:24px; border:1px solid var(--border); background:var(--surface-01); }
.blog-editorial-note>span { color:var(--accent); font-size:9px; font-weight:800; letter-spacing:.14em; }
.blog-editorial-note strong { display:block; margin:15px 0 12px; font-family:var(--font-display); font-size:23px; font-weight:400; line-height:1.25; }
.blog-editorial-note p { margin:0; color:var(--text-secondary); font-size:12px; line-height:1.6; }
.blog-intro,.blog-listing,.blog-category-content,.related-articles { padding:76px 0; }
.blog-intro { background:var(--surface); }
.blog-intro-grid { display:grid; gap:28px; }
.blog-intro h2,.blog-section-heading h2,.blog-category-content h2,.quick-summary h2,.article-section h2,.field-note h2,.article-faq h2,.article-references h2,.editorial-author h2,.article-contextual-cta h2 { margin:0; font-family:var(--font-display); font-weight:400; letter-spacing:-.035em; line-height:1.08; text-wrap:balance; }
.blog-intro h2,.blog-section-heading h2 { font-size:clamp(2.1rem,8vw,3.8rem); }
.blog-intro-grid>p { margin:0; color:var(--muted); font-size:15px; line-height:1.75; }
.blog-listing,.blog-category-content { background:var(--ice-50); }
.blog-section-heading { display:grid; gap:20px; margin-bottom:38px; }
.blog-section-heading>p { margin:0; color:var(--muted); font-size:13px; line-height:1.65; }
.blog-search-panel { padding:22px; border:1px solid var(--line); background:var(--surface); }
.blog-search-panel>label { display:block; margin-bottom:10px; color:var(--heading); font-size:11px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.blog-search-row { display:flex; gap:9px; }
.blog-search-row input { width:100%; min-height:52px; padding:0 15px; border:1px solid var(--input-border); border-radius:0; background:var(--input-background); color:var(--text-primary); font-size:16px; }
.blog-search-row input:focus { border-color:var(--input-border-focus); }
.blog-search-row button { flex:0 0 auto; min-width:75px; border:0; background:var(--primary); color:var(--primary-contrast); font-size:11px; font-weight:800; cursor:pointer; }
.blog-filter-list { display:flex; gap:8px; margin-top:16px; padding-bottom:4px; overflow-x:auto; scrollbar-width:thin; }
.blog-filter-list button { min-height:38px; flex:0 0 auto; padding:0 13px; border:1px solid var(--border); background:var(--surface); color:var(--text-secondary); font-size:10px; font-weight:800; cursor:pointer; }
.blog-filter-list button.is-active { border-color:var(--primary); background:var(--primary); color:var(--primary-contrast); }
.blog-result-count { margin:15px 0 0; color:var(--muted); font-size:11px; }
.blog-card-grid { display:grid; gap:18px; margin-top:26px; }
.blog-card { display:flex; min-width:0; flex-direction:column; border:1px solid var(--border); background:var(--surface); }
.blog-card-media { position:relative; display:grid; min-height:184px; overflow:hidden; padding:18px; background:var(--surface-02); color:var(--text-primary); isolation:isolate; }
.blog-card-media::before { content:""; position:absolute; inset:0; z-index:-1; opacity:.18; background-image:linear-gradient(var(--grid-line) 1px,transparent 1px),linear-gradient(90deg,var(--grid-line) 1px,transparent 1px); background-size:34px 34px; }
.blog-card-media::after { content:""; position:absolute; z-index:-1; width:190px; height:190px; right:-65px; bottom:-100px; border:1px solid var(--border-subtle); border-radius:50%; box-shadow:0 0 0 36px rgba(72,183,247,.04); }
.blog-card-media>span { align-self:start; justify-self:start; color:var(--accent); font-size:9px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
.blog-card-media>strong { align-self:center; justify-self:center; font-family:var(--font-display); font-size:38px; font-weight:400; letter-spacing:.12em; }
.blog-card-media>small { align-self:end; justify-self:end; color:var(--text-muted); font-size:8px; font-weight:800; letter-spacing:.12em; }
.blog-card-content { display:flex; flex:1; flex-direction:column; padding:23px 20px 21px; }
.blog-card-meta { display:flex; align-items:center; justify-content:space-between; gap:14px; color:var(--blue-600); font-size:9px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.blog-card-meta a:hover { text-decoration:underline; text-underline-offset:3px; }
.blog-card-meta span { color:var(--text-muted); white-space:nowrap; }
.blog-card h2 { margin:17px 0 12px; font-family:var(--font-display); font-size:25px; font-weight:400; letter-spacing:-.025em; line-height:1.18; }
.blog-card h2 a:hover { color:var(--blue-600); }
.blog-card-content>p { margin:0; color:var(--muted); font-size:13px; line-height:1.65; }
.blog-card-link { display:flex; align-items:center; gap:8px; margin-top:auto; padding-top:25px; color:var(--blue-600); font-size:12px; font-weight:800; }
.blog-card-link svg { width:17px; }
.blog-empty { margin-top:26px; padding:34px 24px; border:1px solid var(--line); background:var(--surface); text-align:center; }
.blog-empty strong { display:block; color:var(--heading); font-family:var(--font-display); font-size:24px; font-weight:400; }
.blog-empty p { max-width:560px; margin:12px auto 22px; color:var(--muted); font-size:13px; line-height:1.65; }
.blog-category-directory { padding:76px 0; background:var(--surface); }
.category-directory-grid { display:grid; border-top:1px solid var(--line); }
.category-directory-grid>a { display:grid; grid-template-columns:32px 1fr; gap:12px; padding:23px 0; border-bottom:1px solid var(--line); }
.category-directory-grid>a>span { padding-top:5px; color:var(--blue-600); font-size:9px; font-weight:800; }
.category-directory-grid h3 { margin:0; font-family:var(--font-display); font-size:22px; font-weight:400; }
.category-directory-grid p { margin:8px 0 0; color:var(--muted); font-size:12px; line-height:1.55; }
.category-directory-grid>a>strong { grid-column:2; color:var(--blue-600); font-size:9px; letter-spacing:.08em; text-transform:uppercase; }
.blog-category-hero { padding:72px 0 64px; }
.blog-category-hero .blog-shell { position:relative; z-index:1; }
.blog-category-hero h1 { max-width:900px; font-size:clamp(2.8rem,11vw,5.4rem); }

.technical-article-hero { padding:66px 0 58px; }
.article-hero-grid { position:relative; z-index:1; display:grid; gap:42px; }
.article-hero-grid-text-only { grid-template-columns:minmax(0,900px); }
.technical-article-hero h1 { max-width:900px; font-size:clamp(2.6rem,10.5vw,5.35rem); }
.article-deck { max-width:760px; margin:24px 0 0; color:var(--text-secondary); font-size:16px; line-height:1.72; }
.article-meta { display:flex; flex-wrap:wrap; gap:9px 18px; margin-top:28px; color:var(--text-muted); font-size:9px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.article-cover-placeholder { display:grid; min-height:245px; padding:19px; border:1px solid var(--border); background:var(--surface-01); }
.article-cover-placeholder>span { align-self:start; color:var(--accent); font-size:9px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
.article-cover-placeholder>strong { align-self:center; justify-self:center; font-family:var(--font-display); font-size:clamp(2.6rem,13vw,5rem); font-weight:400; letter-spacing:.1em; }
.article-cover-placeholder>small { align-self:end; justify-self:end; color:var(--text-muted); font-size:8px; font-weight:800; letter-spacing:.12em; }
.article-cover-image { margin:0; overflow:hidden; border:1px solid var(--border); background:var(--surface-01); }
.article-cover-image img { display:block; width:100%; height:auto; object-fit:cover; }
.article-layout { display:grid; gap:45px; padding-top:62px; padding-bottom:92px; }
.article-toc { align-self:start; padding:22px; border:1px solid var(--line); background:var(--ice-50); }
.article-toc>strong { color:var(--heading); font-size:10px; letter-spacing:.1em; text-transform:uppercase; }
.article-toc nav { display:flex; flex-direction:column; margin-top:14px; border-top:1px solid var(--line); }
.article-toc a { display:grid; grid-template-columns:34px 1fr; gap:8px; padding:12px 0; border-bottom:1px solid var(--line); color:var(--text-secondary); font-size:11px; line-height:1.45; }
.article-toc a:hover { color:var(--blue-600); }
.article-toc a span { color:var(--blue-600); font-size:8px; font-weight:800; letter-spacing:.06em; }
.article-content { min-width:0; }
.quick-summary { padding:27px 23px; border-left:4px solid var(--blue-600); background:var(--ice-100); }
.quick-summary h2 { font-size:30px; }
.quick-summary ul { margin:21px 0 0; padding-left:20px; }
.quick-summary li { margin:10px 0; color:var(--muted); font-size:14px; line-height:1.65; }
.article-intro { margin:34px 0 0; color:var(--heading); font-family:var(--font-display); font-size:21px; line-height:1.58; }
.article-section { scroll-margin-top:95px; padding-top:52px; }
.article-section h2,.field-note h2,.article-faq h2,.article-references h2,.editorial-author h2 { font-size:clamp(1.9rem,7vw,2.75rem); }
.article-section p,.article-section li,.field-note p,.article-faq p,.article-references p,.editorial-author p { color:var(--text-secondary); font-size:16px; line-height:1.82; }
.article-section ul { padding-left:21px; }
.article-section li { margin:9px 0; }
.article-inline-link { display:inline-flex; align-items:center; gap:9px; margin-top:11px; color:var(--blue-600); font-size:13px; font-weight:800; }
.article-inline-link svg { width:18px; }
.field-note { margin-top:58px; padding:28px 24px; border:1px dashed var(--border); background:var(--ice-50); }
.field-note p:last-child { margin-bottom:0; }
.article-faq,.article-references,.editorial-author { scroll-margin-top:95px; margin-top:64px; }
.article-faq details { border-top:1px solid var(--line); }
.article-faq details:last-child { border-bottom:1px solid var(--line); }
.article-faq summary { position:relative; padding:20px 38px 20px 0; color:var(--heading); font-family:var(--font-display); font-size:19px; line-height:1.35; cursor:pointer; }
.article-faq summary::marker { color:var(--blue-600); }
.article-faq details p { margin:0 0 20px; font-size:14px; }
.article-references ol { margin:26px 0 0; padding:0; list-style:none; border-top:1px solid var(--line); }
.article-references li { display:grid; grid-template-columns:36px 1fr; gap:10px; padding:18px 0; border-bottom:1px solid var(--line); }
.article-references li>span { color:var(--blue-600); font-size:9px; font-weight:800; }
.article-references li a { color:var(--heading); font-family:var(--font-display); font-size:18px; line-height:1.35; text-decoration:underline; text-decoration-color:var(--border); text-underline-offset:4px; }
.article-references li strong { display:block; margin-top:7px; color:var(--blue-600); font-size:9px; letter-spacing:.08em; text-transform:uppercase; }
.article-references li p { margin:8px 0 0; font-size:11px; line-height:1.55; }
.reference-note { margin-top:18px; font-size:11px!important; }
.editorial-author { padding:28px 24px; background:var(--surface-02); color:var(--text-primary); }
.editorial-author h2 { color:var(--text-primary); }
.editorial-author>p:not(.eyebrow) { color:var(--text-secondary); }
.editorial-author>div { display:flex; flex-direction:column; gap:7px; margin-top:22px; padding-top:20px; border-top:1px solid var(--border); }
.editorial-author>div strong { font-size:11px; letter-spacing:.08em; text-transform:uppercase; }
.editorial-author>div span { color:var(--text-secondary); font-size:12px; line-height:1.6; }
.article-contextual-cta { padding:82px 0; background:var(--background); color:var(--text-primary); text-align:center; }
.article-contextual-cta h2 { max-width:820px; margin-inline:auto; font-size:clamp(2.2rem,8vw,4rem); }
.article-contextual-cta .blog-shell>p:not(.eyebrow) { max-width:650px; margin:20px auto 28px; color:var(--text-secondary); font-size:15px; line-height:1.7; }
.related-articles { background:var(--ice-50); }
.seo-related-section { background:var(--ice-100); }
.seo-related-links { display:grid; width:min(1180px,100%); margin:34px auto 0; border-top:1px solid var(--border); }
.seo-related-links a { display:grid; grid-template-columns:1fr 24px; align-items:center; gap:18px; min-height:72px; padding:16px 0; border-bottom:1px solid var(--border); color:var(--heading); font-family:var(--font-display); font-size:18px; line-height:1.35; }
.seo-related-links a:hover { color:var(--blue-600); }
.seo-related-links svg { width:20px; color:var(--blue-600); }

@media(min-width:700px){
 .blog-shell{width:min(1180px,calc(100% - 72px))}.blog-hero,.blog-category-hero{padding-block:88px 76px}.blog-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.blog-card-media{min-height:205px}.blog-intro,.blog-listing,.blog-category-content,.blog-category-directory,.related-articles{padding-block:92px}.blog-section-heading{grid-template-columns:1.2fr .8fr;align-items:end}.blog-section-heading>p{margin-bottom:5px}.category-directory-grid{grid-template-columns:repeat(2,1fr);border-left:1px solid var(--line)}.category-directory-grid>a{padding:26px 22px;border-right:1px solid var(--line)}.technical-article-hero{padding-block:82px 70px}.article-cover-placeholder{min-height:320px}.article-layout{padding-top:76px}.quick-summary{padding:34px}.field-note,.editorial-author{padding:34px}.article-contextual-cta{padding-block:100px}
}
@media(min-width:1024px){
 .blog-hero{padding-block:112px 92px}.blog-hero-grid{grid-template-columns:1.45fr .55fr;align-items:end;gap:90px}.blog-editorial-note{margin-bottom:4px}.blog-intro-grid{grid-template-columns:1.1fr .9fr;align-items:end;gap:90px}.blog-card-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.blog-card{min-height:545px}.blog-card-media{min-height:220px}.blog-search-panel{padding:26px}.blog-filter-list{flex-wrap:wrap;overflow:visible}.category-directory-grid{grid-template-columns:repeat(2,1fr)}.category-directory-grid>a{grid-template-columns:44px 1fr auto;align-items:start}.category-directory-grid>a>strong{grid-column:3;white-space:nowrap;padding-top:5px}.article-hero-grid{grid-template-columns:1.4fr .6fr;align-items:end;gap:80px}.article-hero-grid.article-hero-grid-text-only{grid-template-columns:minmax(0,900px)}.technical-article-hero{padding-block:105px 88px}.technical-article-hero .blog-breadcrumbs{margin-bottom:58px}.article-cover-placeholder{min-height:390px}.article-layout{grid-template-columns:270px minmax(0,760px);justify-content:center;gap:80px;padding-top:96px}.article-toc{position:sticky;top:100px}.article-intro{font-size:24px}.article-section{padding-top:62px}
}
@media(max-width:420px){
 .blog-shell{width:calc(100% - 32px)}.blog-hero,.blog-category-hero,.technical-article-hero{padding-top:54px}.blog-breadcrumbs{margin-bottom:38px}.blog-search-panel{padding:17px}.blog-search-row{flex-direction:column}.blog-search-row button{min-height:44px}.blog-card-content{padding-inline:17px}.article-meta{flex-direction:column}.quick-summary,.field-note,.editorial-author{padding-inline:19px}
}
@media(max-width:340px){.audience-page,.business-hero,.section,.authority-section,.cta-section,.site-footer{padding-left:16px;padding-right:16px}.brand-emblem{width:38px;height:38px;flex-basis:38px}.brand-wording small{display:none}.audience-card{grid-template-columns:38px 1fr 34px;gap:11px;padding-inline:14px}.audience-icon{width:38px;height:38px}.round-arrow{width:34px;height:34px}.business-hero-copy h1{font-size:2.4rem}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}}

/* Shared inner pages */
.inner-hero { position:relative; overflow:hidden; min-height:620px; padding:74px 20px 58px; background:var(--background); color:var(--text-primary); }
.inner-hero::after { content:""; position:absolute; right:-170px; bottom:-260px; width:520px; height:520px; border:1px solid var(--border-subtle); border-radius:50%; box-shadow:0 0 0 74px rgba(50,166,235,.025),0 0 0 148px rgba(50,166,235,.018); }
.inner-hero.compact { min-height:490px; }
.inner-hero-copy { position:relative; z-index:2; width:min(1180px,100%); margin-inline:auto; }
.breadcrumbs { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:48px; color:var(--text-muted); font-size:11px; font-weight:700; }
.breadcrumbs a:hover { color:var(--text-primary); text-decoration:underline; text-underline-offset:4px; }
.inner-hero h1 { max-width:900px; margin:0; font-family:var(--font-display); font-size:clamp(2.6rem,11vw,5.5rem); font-weight:400; letter-spacing:-.05em; line-height:.98; text-wrap:balance; }
.inner-hero-copy>p:not(.eyebrow) { max-width:720px; margin:25px 0 0; color:var(--text-secondary); font-size:16px; line-height:1.72; }
.inner-hero-copy>.button { margin-top:29px; }
.inner-hero-code { position:relative; z-index:2; display:flex; width:min(1180px,100%); flex-direction:column; gap:10px; margin:60px auto 0; padding:20px 0; border-top:1px solid var(--border-subtle); border-bottom:1px solid var(--border-subtle); }
.inner-hero-code span,.inner-hero-code small { color:var(--accent); font-size:9px; font-weight:800; letter-spacing:.14em; }
.inner-hero-code strong { font-family:var(--font-display); font-size:34px; font-weight:400; }
.detail-intro { display:grid; gap:48px; width:min(1220px,100%); margin-inline:auto; background:var(--surface); }
.detail-question h2 { margin:0; font-family:var(--font-display); font-size:clamp(2rem,8vw,3.55rem); font-weight:400; letter-spacing:-.04em; line-height:1.04; }
.detail-question>p:not(.eyebrow) { margin:24px 0 0; color:var(--muted); font-size:15px; line-height:1.75; }
.scope-list { border-top:1px solid var(--line); }
.scope-list h3 { margin:0; padding:18px 0; color:var(--heading); font-size:11px; letter-spacing:.12em; text-transform:uppercase; }
.scope-list>div { display:grid; grid-template-columns:24px 1fr; gap:12px; padding:17px 0; border-top:1px solid var(--line); color:var(--text-secondary); font-size:14px; line-height:1.55; }
.scope-list svg { width:20px; color:var(--blue-600); }
.benefit-section { background:var(--ice-50); }
.benefit-grid { display:grid; width:min(1180px,100%); margin:44px auto 0; border-top:1px solid var(--border); }
.benefit-grid article { padding:27px 0; border-bottom:1px solid var(--border); }
.benefit-grid article>span,.delivery-grid article>span,.story-line article>span { color:var(--blue-600); font-size:10px; font-weight:800; letter-spacing:.12em; }
.benefit-grid h3,.delivery-grid h3,.story-line h3 { margin:14px 0 9px; font-family:var(--font-display); font-size:24px; font-weight:400; }
.benefit-grid p,.delivery-grid p,.story-line p { margin:0; color:var(--muted); font-size:13px; line-height:1.65; }
.process-section { background:var(--surface); }
.process-list { width:min(1180px,100%); margin:42px auto 0; padding:0; list-style:none; border-top:1px solid var(--line); }
.process-list li { display:grid; grid-template-columns:46px 1fr; align-items:center; gap:12px; min-height:84px; border-bottom:1px solid var(--line); }
.process-list span { color:var(--blue-600); font-size:10px; font-weight:800; }
.process-list p { margin:0; color:var(--heading); font-family:var(--font-display); font-size:18px; line-height:1.35; }
.services-catalog { background:var(--ice-50); }

/* Residential */
.residential-hero { position:relative; display:grid; gap:42px; overflow:hidden; min-height:calc(100svh - 72px); padding:72px 20px 54px; background:var(--background); color:var(--text-primary); }
.residential-hero::before { content:""; position:absolute; inset:0; opacity:.14; background-image:linear-gradient(var(--grid-line) 1px,transparent 1px),linear-gradient(90deg,var(--grid-line) 1px,transparent 1px); background-size:62px 62px; }
.residential-hero-copy,.comfort-panel { position:relative; z-index:1; width:min(1180px,100%); margin-inline:auto; }
.residential-hero h1 { max-width:800px; margin:0; font-family:var(--font-display); font-size:clamp(2.75rem,12vw,5.8rem); font-weight:400; letter-spacing:-.055em; line-height:.97; }
.residential-hero-copy>p:not(.eyebrow) { max-width:650px; margin:25px 0 29px; color:var(--text-secondary); font-size:16px; line-height:1.7; }
.comfort-panel { border:1px solid var(--border); background:var(--surface-01); }
.comfort-panel>span { display:block; padding:13px 16px; border-bottom:1px solid var(--border-subtle); color:var(--accent); font-size:9px; font-weight:800; letter-spacing:.13em; }
.comfort-panel>div { display:grid; grid-template-columns:40px 1fr; align-items:center; min-height:58px; padding:0 16px; border-bottom:1px solid var(--border-subtle); }
.comfort-panel>div:last-child { border-bottom:0; }
.comfort-panel strong { color:var(--accent); font-size:10px; }
.comfort-panel p { margin:0; font-family:var(--font-display); font-size:16px; }
.residential-services { background:var(--surface); }
.residential-grid { display:grid; width:min(1180px,100%); margin:44px auto 0; border-top:1px solid var(--line); }
.residential-grid article { display:flex; flex-direction:column; align-items:flex-start; min-height:210px; padding:24px 0; border-bottom:1px solid var(--line); }
.residential-grid article>span { color:var(--blue-600); font-size:10px; font-weight:800; }
.residential-grid h3 { margin:15px 0 22px; font-family:var(--font-display); font-size:26px; font-weight:400; line-height:1.15; }
.residential-whatsapp { display:flex; align-items:center; gap:9px; margin-top:auto; color:var(--blue-600); font-size:13px; font-weight:800; }
.residential-whatsapp svg,.residential-grid article> a:last-child svg { width:17px; }
.residential-grid article> a:last-child:not(.residential-whatsapp) { margin-top:15px; color:var(--muted); font-size:11px; font-weight:700; text-decoration:underline; text-underline-offset:4px; }
.residential-standard { display:grid; gap:40px; padding:76px 20px; background:var(--surface-02); color:var(--text-primary); }
.residential-standard>div { width:min(1180px,100%); margin-inline:auto; }
.residential-standard h2 { margin:0; font-family:var(--font-display); font-size:clamp(2rem,8vw,3.7rem); font-weight:400; letter-spacing:-.04em; line-height:1.04; }
.standard-points p { display:grid; grid-template-columns:24px 1fr; gap:13px; margin:0; padding:18px 0; border-top:1px solid var(--border); color:var(--text-secondary); font-size:14px; line-height:1.55; }
.standard-points svg { width:21px; color:var(--accent); }
.home-process { background:var(--ice-50); }

/* PMOC */
.pmoc-stamp { position:relative; z-index:2; display:grid; place-items:center; width:min(1180px,100%); min-height:210px; margin:55px auto 0; border:1px solid var(--border); background-image:linear-gradient(var(--grid-line) 1px,transparent 1px),linear-gradient(90deg,var(--grid-line) 1px,transparent 1px); background-size:30px 30px; }
.pmoc-stamp strong { grid-area:1/1; font-family:var(--font-display); font-size:clamp(4rem,22vw,8rem); font-weight:400; letter-spacing:-.08em; }
.pmoc-stamp small { position:absolute; top:16px; left:16px; color:var(--accent); font-size:9px; font-weight:800; letter-spacing:.14em; }
.pmoc-stamp span { position:absolute; right:16px; bottom:16px; color:var(--text-muted); font-size:8px; font-weight:800; line-height:1.5; text-align:right; }
.pmoc-explainer { display:grid; gap:45px; }
.plain-answer { align-self:start; padding:28px; border-left:4px solid var(--blue-600); background:var(--ice-100); }
.plain-answer strong { color:var(--blue-600); font-size:10px; letter-spacing:.12em; text-transform:uppercase; }
.plain-answer p { margin:18px 0; color:var(--heading); font-family:var(--font-display); font-size:24px; line-height:1.25; }
.plain-answer span { color:var(--muted); font-size:11px; font-weight:800; letter-spacing:.08em; }
.who-pmoc { background:var(--surface-02); color:var(--text-primary); }
.who-pmoc .section-heading>p { color:var(--text-secondary); }
.sector-line { display:grid; width:min(1180px,100%); margin:40px auto 0; border-top:1px solid var(--border); }
.sector-line span { padding:19px 0; border-bottom:1px solid var(--border); font-family:var(--font-display); font-size:19px; }
.legal-note,.source-date { width:min(1180px,100%); margin:18px auto 0; color:var(--text-muted); font-size:10px; line-height:1.5; }
.pmoc-delivery { background:var(--ice-50); }
.delivery-grid,.story-line { display:grid; width:min(1180px,100%); margin:44px auto 0; border-top:1px solid var(--border); }
.delivery-grid article,.story-line article { padding:27px 0; border-bottom:1px solid var(--border); }
.responsibility-note { display:grid; grid-template-columns:26px 1fr; gap:14px; width:min(1180px,100%); margin:35px auto 0; padding:23px; background:var(--surface-02); color:var(--text-secondary); font-size:12px; line-height:1.65; }
.responsibility-note svg { width:22px; color:var(--accent); }
.responsibility-note p { margin:0; }
.responsibility-note strong { display:block; margin-bottom:4px; color:var(--text-primary); font-size:14px; }
.evidence-section { background:var(--surface); }
.source-list { width:min(1180px,100%); margin:40px auto 0; border-top:1px solid var(--line); }
.source-list a { display:grid; grid-template-columns:26px 1fr 28px; gap:10px; align-items:center; min-height:105px; padding:18px 0; border-bottom:1px solid var(--line); }
.source-list a>span { color:var(--blue-600); font-size:10px; font-weight:800; }
.source-list strong { font-family:var(--font-display); font-size:18px; font-weight:400; }
.source-list small { grid-column:2; color:var(--muted); font-size:11px; line-height:1.5; }
.source-list svg { grid-row:1/3; grid-column:3; width:19px; }

/* About and content */
.history-mark { position:relative; z-index:2; display:flex; width:min(1180px,100%); flex-direction:column; margin:62px auto 0; padding-top:22px; border-top:1px solid var(--border); }
.history-mark strong { font-family:var(--font-display); font-size:clamp(4.5rem,25vw,9rem); font-weight:400; letter-spacing:-.08em; line-height:.9; }
.history-mark span { margin-top:14px; color:var(--accent); font-size:9px; font-weight:800; letter-spacing:.14em; }
.about-story { background:var(--ice-50); }
.about-values { background:var(--surface-02); }
.content-listing { background:var(--ice-50); }
.post-grid { display:grid; width:min(1180px,100%); margin:46px auto 0; border-top:1px solid var(--border); }
.post-grid>a { display:flex; flex-direction:column; min-height:265px; padding:26px 0; border-bottom:1px solid var(--border); }
.post-grid>a>span { color:var(--blue-600); font-size:9px; font-weight:800; letter-spacing:.11em; }
.post-grid h3 { margin:18px 0 13px; font-family:var(--font-display); font-size:25px; font-weight:400; line-height:1.2; }
.post-grid p { margin:0; color:var(--muted); font-size:13px; line-height:1.65; }
.post-grid strong { display:flex; align-items:center; gap:8px; margin-top:auto; padding-top:20px; color:var(--blue-600); font-size:12px; }
.post-grid svg { width:17px; }
.article-header { padding:70px 20px 62px; background:var(--background); color:var(--text-primary); }
.article-header>* { width:min(860px,100%); margin-left:auto; margin-right:auto; }
.article-header h1 { margin-top:0; font-family:var(--font-display); font-size:clamp(2.45rem,10vw,4.8rem); font-weight:400; letter-spacing:-.045em; line-height:1.02; }
.article-header>p:not(.eyebrow) { color:var(--text-secondary); font-size:17px; line-height:1.7; }
.article-header>div { display:flex; flex-direction:column; gap:7px; margin-top:30px; color:var(--text-secondary); font-size:10px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }
.article-body { width:min(760px,calc(100% - 40px)); margin:0 auto; padding:62px 0 90px; }
.article-body p,.article-body li { color:var(--text-secondary); font-size:16px; line-height:1.82; }
.article-body .article-lead { color:var(--heading); font-family:var(--font-display); font-size:22px; line-height:1.55; }
.article-body h2 { margin:52px 0 15px; font-family:var(--font-display); font-size:30px; font-weight:400; letter-spacing:-.025em; }
.article-body ul { padding-left:22px; }
.article-body li { margin:8px 0; }
.article-body blockquote { margin:45px 0; padding:25px 0 25px 24px; border-left:4px solid var(--blue-600); color:var(--heading); font-family:var(--font-display); font-size:23px; line-height:1.55; }
.article-sources { margin-top:56px; padding:28px; background:var(--ice-100); }
.article-sources h2 { margin-top:0; }
.article-sources a { display:block; padding:13px 0; border-top:1px solid var(--border); color:var(--blue-600); font-size:13px; font-weight:800; }
.article-sources p { font-size:11px; line-height:1.6; }

/* Form and privacy */
.form-page { display:grid; background:var(--background); }
.form-intro { padding:68px 20px 55px; color:var(--text-primary); }
.form-intro h1 { margin:0; font-family:var(--font-display); font-size:clamp(2.6rem,11vw,5rem); font-weight:400; letter-spacing:-.05em; line-height:1; }
.form-intro>p:not(.eyebrow) { color:var(--text-secondary); font-size:16px; line-height:1.65; }
.form-intro ol { margin:42px 0 0; padding:0; list-style:none; border-top:1px solid var(--border-subtle); }
.form-intro li { display:grid; grid-template-columns:36px 1fr; gap:10px; padding:19px 0; border-bottom:1px solid var(--border-subtle); }
.form-intro li>span { color:var(--accent); font-size:9px; font-weight:800; }
.form-intro li p { display:flex; flex-direction:column; gap:5px; margin:0; color:var(--text-secondary); font-size:12px; line-height:1.5; }
.form-intro li strong { color:var(--text-primary); font-family:var(--font-display); font-size:17px; font-weight:400; }
.form-panel { padding:22px 20px 72px; background:var(--ice-50); }
.request-form,.form-success { width:min(720px,100%); margin-inline:auto; padding:24px 18px; background:var(--surface); border:1px solid var(--line); }
.form-progress { display:flex; align-items:center; justify-content:space-between; margin-bottom:28px; padding-bottom:17px; border-bottom:1px solid var(--line); }
.form-progress span { color:var(--blue-600); font-size:9px; font-weight:800; letter-spacing:.12em; }
.form-progress strong { color:var(--heading); font-size:11px; }
.form-grid { display:grid; gap:20px; }
.form-grid label:not(.consent-field):not(.honeypot) { display:flex; flex-direction:column; gap:8px; }
.form-grid label>span { color:var(--heading); font-size:12px; font-weight:800; }
.form-grid input,.form-grid textarea,.form-grid select { width:100%; min-height:52px; border:1px solid var(--input-border); border-radius:0; background:var(--input-background); color:var(--text-primary); padding:13px 14px; font-size:16px; }
.form-grid input:focus,.form-grid textarea:focus,.form-grid select:focus { border-color:var(--input-border-focus); }
.form-grid textarea { resize:vertical; }
.form-grid input::placeholder,.form-grid textarea::placeholder { color:var(--text-muted); opacity:1; }
.form-grid label small { color:var(--muted); font-size:10px; line-height:1.5; }
.full-field { grid-column:1/-1; }
.honeypot { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.consent-field { display:grid; grid-column:1/-1; grid-template-columns:23px 1fr; gap:11px; align-items:start; margin-top:4px; }
.consent-field input { width:22px; height:22px; margin:0; accent-color:var(--primary); }
.consent-field span { color:var(--muted)!important; font-size:11px!important; font-weight:400!important; line-height:1.55; }
.consent-field a { color:var(--blue-600); font-weight:700; text-decoration:underline; text-underline-offset:3px; }
.form-error { margin-top:20px; padding:13px; border-left:4px solid var(--error); background:var(--error-surface); color:var(--error); font-size:12px; line-height:1.5; }
.form-submit { width:100%; margin-top:24px; border:0; cursor:pointer; }
.form-submit:disabled { cursor:wait; opacity:.65; }
.form-reassurance { margin:14px 0 0; color:var(--muted); font-size:10px; line-height:1.55; text-align:center; }
.form-success { padding:42px 22px; }
.success-icon { display:grid; width:50px; height:50px; place-items:center; margin-bottom:25px; background:var(--success); color:#fff; border-radius:50%; }
.success-icon svg { width:28px; }
.form-success h1 { margin:0; font-family:var(--font-display); font-size:clamp(2rem,8vw,3.2rem); font-weight:400; letter-spacing:-.04em; line-height:1.05; }
.form-success>p:not(.eyebrow) { color:var(--muted); font-size:14px; line-height:1.7; }
.protocol { display:flex; flex-direction:column; gap:8px; margin:28px 0; padding:20px; background:var(--ice-100); }
.protocol span,.protocol small { color:var(--muted); font-size:10px; }
.protocol strong { color:var(--heading); font-size:17px; letter-spacing:.05em; overflow-wrap:anywhere; }
.policy-body { width:min(760px,calc(100% - 40px)); margin-inline:auto; padding:55px 0 90px; }
.policy-date { color:var(--blue-600)!important; font-size:10px!important; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.policy-body h2 { margin:42px 0 12px; font-family:var(--font-display); font-size:28px; font-weight:400; }
.policy-body p,.policy-body li { color:var(--text-secondary); font-size:15px; line-height:1.75; }
.policy-body a { color:var(--blue-600); font-weight:800; }
.privacy-notice { position:fixed; right:14px; bottom:max(14px,env(safe-area-inset-bottom)); left:14px; z-index:80; display:flex; flex-direction:column; gap:16px; padding:18px; border:1px solid var(--border); background:var(--surface); box-shadow:0 18px 50px rgba(0,18,34,.22); }
.privacy-notice[hidden] { display:none; }
.privacy-notice strong { color:var(--heading); font-family:var(--font-display); font-size:18px; }
.privacy-notice p { margin:7px 0; color:var(--muted); font-size:11px; line-height:1.5; }
.privacy-notice a { color:var(--blue-600); font-size:10px; font-weight:800; text-decoration:underline; text-underline-offset:3px; }
.privacy-notice button { min-height:45px; border:0; background:var(--text-primary); color:var(--background); font-size:12px; font-weight:800; cursor:pointer; }

@media(min-width:700px){
 .inner-hero,.residential-hero,.article-header,.form-intro{padding-left:36px;padding-right:36px}.detail-intro{grid-template-columns:1.1fr .9fr;padding-left:36px;padding-right:36px}.benefit-grid,.delivery-grid,.story-line{grid-template-columns:repeat(3,1fr);border-bottom:1px solid var(--border)}.benefit-grid article,.delivery-grid article,.story-line article{padding:30px 24px;border-right:1px solid var(--border);border-bottom:0}.benefit-grid article:last-child,.delivery-grid article:last-child,.story-line article:last-child{border-right:0}.residential-grid{grid-template-columns:repeat(2,1fr);border-bottom:1px solid var(--line)}.residential-grid article{padding:28px;border-right:1px solid var(--line)}.residential-grid article:nth-child(2n){border-right:0}.residential-standard{padding-left:36px;padding-right:36px}.pmoc-explainer{grid-template-columns:1.2fr .8fr}.sector-line{grid-template-columns:repeat(5,1fr);border-bottom:1px solid var(--border)}.sector-line span{display:flex;align-items:center;padding:20px 14px;border-right:1px solid var(--border);border-bottom:0;font-size:16px}.source-list a{grid-template-columns:40px 1fr 36px}.source-list strong{font-size:21px}.post-grid{grid-template-columns:repeat(2,1fr);border-bottom:1px solid var(--border)}.post-grid>a{padding:28px;border-right:1px solid var(--border)}.post-grid>a:nth-child(2n){border-right:0}.article-header>div{flex-direction:row;justify-content:space-between}.form-panel{padding:45px 36px 90px}.request-form,.form-success{padding:38px}.form-grid{grid-template-columns:repeat(2,1fr)}.privacy-notice{right:24px;bottom:24px;left:auto;display:grid;grid-template-columns:1fr 100px;width:min(520px,calc(100% - 48px));align-items:center;padding:20px}.privacy-notice button{height:100%}
}
@media(min-width:1024px){
 .inner-hero{padding:100px 56px 76px}.inner-hero.compact{min-height:530px}.inner-hero-code{flex-direction:row;align-items:end;justify-content:space-between;margin-top:90px}.detail-intro{grid-template-columns:1.2fr .8fr;gap:100px;padding:112px max(56px,calc((100vw - 1180px)/2))}.benefit-grid{grid-template-columns:repeat(3,1fr);margin-top:60px}.benefit-grid article{min-height:250px;padding:35px}.process-list li{grid-template-columns:90px 1fr;min-height:102px}.process-list p{font-size:23px}.residential-hero{grid-template-columns:1.45fr .55fr;align-items:center;gap:90px;padding:100px max(56px,calc((100vw - 1180px)/2))}.residential-hero-copy,.comfort-panel{width:auto}.residential-grid{grid-template-columns:repeat(4,1fr)}.residential-grid article,.residential-grid article:nth-child(2n){min-height:310px;border-right:1px solid var(--line);border-bottom:0}.residential-grid article:last-child{border-right:0}.residential-standard{grid-template-columns:1.2fr .8fr;gap:100px;padding:112px max(56px,calc((100vw - 1180px)/2))}.residential-standard>div{width:auto}.pmoc-stamp{position:absolute;right:max(56px,calc((100vw - 1180px)/2));bottom:76px;width:380px;min-height:250px}.pmoc-hero .inner-hero-copy{padding-right:430px}.pmoc-explainer{grid-template-columns:1.25fr .75fr;gap:110px}.delivery-grid{grid-template-columns:repeat(4,1fr)}.delivery-grid article:last-child{border-left:1px solid var(--border)}.post-grid{grid-template-columns:repeat(3,1fr)}.post-grid>a,.post-grid>a:nth-child(2n){min-height:340px;border-right:1px solid var(--border);border-bottom:0}.post-grid>a:last-child{border-right:0}.form-page{grid-template-columns:.9fr 1.1fr;min-height:calc(100svh - 78px)}.form-intro{padding:85px 70px 80px max(56px,calc((100vw - 1180px)/2))}.form-panel{display:grid;place-items:center;padding:60px max(56px,calc((100vw - 1180px)/2)) 70px 70px}.request-form,.form-success{margin:0}.article-header{padding:96px 56px 78px}
}

/* Botão flutuante de WhatsApp (Fase 1) */
.whatsapp-fab{position:fixed;right:20px;bottom:20px;z-index:900;display:flex;align-items:center;justify-content:center;width:56px;height:56px;border-radius:50%;background:#25d366;color:#fff;box-shadow:0 6px 20px rgba(0,0,0,.25);transition:transform .15s ease,box-shadow .15s ease}
.whatsapp-fab:hover{transform:scale(1.06);box-shadow:0 8px 26px rgba(0,0,0,.32)}
.whatsapp-fab:focus-visible{outline:3px solid var(--focus-ring);outline-offset:3px}
@media (max-width:640px){.whatsapp-fab{right:14px;bottom:14px;width:52px;height:52px}}
@media print{.whatsapp-fab{display:none}}

/* Aviso de consentimento — botões Aceitar/Recusar */
.privacy-notice .privacy-actions{display:flex;gap:8px;flex-shrink:0;align-items:center}
.privacy-notice .privacy-btn-ghost{background:transparent;border:1px solid currentColor;opacity:.85}
.privacy-notice .privacy-btn-ghost:hover{opacity:1}
@media (max-width:640px){.privacy-notice .privacy-actions{width:100%}.privacy-notice .privacy-actions button{flex:1}}
