/* ═══════════════════════════════════════════════════════════
   IM DIGITAL SOLUTIONS — Design System
   Conceito: "Do improviso à arquitetura."
   Base grafite-azulada · acento dourado champanhe · muito ar
   ═══════════════════════════════════════════════════════════ */

:root {
  /* — Cor — */
  --ink:        #05090f;   /* fundo base, quase preto com viés azul */
  --ink-soft:   #070d16;   /* variação p/ alternância de seções */
  --surface:    #0a111c;   /* painéis */
  --surface-2:  #101a29;   /* cards elevados */
  --line:       rgba(214, 226, 240, 0.08);
  --line-strong:rgba(214, 226, 240, 0.14);
  --text:       #e8ecf1;
  --muted:      #8b96a5;
  --faint:      #5d6774;
  --gold:       #c9a961;
  --gold-bright:#e2c987;
  --gold-dim:   rgba(201, 169, 97, 0.14);
  --gold-line:  rgba(201, 169, 97, 0.32);
  --whatsapp:   #22b667;

  /* — Tipo — */
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body:    'Instrument Sans', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, monospace;

  /* — Escala — */
  --step--1: clamp(0.8125rem, 0.79rem + 0.1vw, 0.875rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --step-1:  clamp(1.125rem, 1.05rem + 0.35vw, 1.3125rem);
  --step-2:  clamp(1.375rem, 1.2rem + 0.8vw, 1.75rem);
  --step-3:  clamp(1.75rem, 1.4rem + 1.6vw, 2.5rem);
  --step-4:  clamp(2.25rem, 1.7rem + 2.6vw, 3.5rem);
  --step-5:  clamp(2.75rem, 1.9rem + 4vw, 4.75rem);

  /* — Ritmo — */
  --space-section: clamp(96px, 7vw + 40px, 160px);
  --gutter: clamp(20px, 4vw, 48px);
  --container: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
}

/* ── Reset enxuto ── */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; overflow-x: hidden; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}
img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4, p { margin: 0; }

::selection { background: rgba(201, 169, 97, 0.35); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #1b2634; border-radius: 8px; border: 2px solid var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Grain cinematográfico sutil sobre tudo */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* ── Utilitários de composição ── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.eyebrow .n { color: var(--faint); letter-spacing: 0.1em; }
.eyebrow::after {
  content: '';
  flex: 0 0 48px;
  height: 1px;
  align-self: center;
  background: linear-gradient(90deg, var(--gold-line), transparent);
}

.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--text);
  text-wrap: balance;
}

.lead {
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--muted);
  max-width: 34em;
  text-wrap: pretty;
}

/* ── Botões ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 16px 30px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.22s, background 0.22s, border-color 0.22s;
  will-change: transform;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #14100a;
  box-shadow: 0 10px 32px rgba(201, 169, 97, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(201, 169, 97, 0.34), inset 0 1px 0 rgba(255,255,255,0.35); }
.btn-ghost {
  background: rgba(214, 226, 240, 0.04);
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--gold-dim); border-color: var(--gold-line); transform: translateY(-2px); }
.btn-sm { padding: 9px 16px; font-size: 13px; border-radius: 9px; }
.btn .arrow { transition: transform 0.22s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(5, 9, 15, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.site-header .bar {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand-name span {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--faint);
}
/* ── Menu lateral (drawer) — todas as larguras ── */
.site-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 88vw);
  background: rgba(7, 13, 22, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--line);
  padding: 104px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.38s cubic-bezier(0.25, 0.8, 0.3, 1), visibility 0.38s;
  z-index: 150;
  overflow-y: auto;
}
.site-nav.open { transform: none; visibility: visible; }
.site-nav a {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--muted);
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
  transition: color 0.18s, padding-left 0.18s;
}
.site-nav a:hover, .site-nav a[aria-current] { color: var(--gold-bright); padding-left: 8px; }
.site-nav .nav-cta {
  margin-top: auto;
  border-bottom: none;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 16px 24px;
  text-align: center;
}
.site-nav .nav-cta:hover { padding-left: 24px; color: #14100a; }
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 10, 0.62);
  backdrop-filter: blur(2px);
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.nav-overlay.on { opacity: 1; visibility: visible; }
.nav-toggle {
  display: inline-flex;
  background: rgba(214, 226, 240, 0.03);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  width: 46px; height: 46px;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 160;
  transition: border-color 0.2s;
}
.nav-toggle:hover { border-color: var(--gold-line); }

/* atalhos visíveis na barra superior */
.header-actions { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.header-link { font-size: 14.5px; font-weight: 500; color: var(--muted); transition: color 0.18s; }
.header-link:hover, .header-link[aria-current] { color: var(--gold-bright); }
.header-login { color: var(--text); font-weight: 600; }
.header-cta { white-space: nowrap; }
@media (max-width: 719px) {
  .site-header .bar { gap: 10px; }
  .header-news { display: none; }
  /* barra de topo limpa no mobile: só logo + menu — Entrar/Começar
     entram no drawer (injetados por JS) para parecer um app, não uma
     barra de navegador cheia de botões pequenos */
  .header-actions { display: none; }
}
.site-nav a.nav-login {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* trava de scroll do body enquanto o drawer mobile está aberto */
html.nav-locked, html.nav-locked body { overflow: hidden; height: 100%; overscroll-behavior: none; }

/* IM CRM — produto principal */
.hero-kicker { margin-bottom: 18px; font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-bright); }
.crm-showcase { position: relative; padding-block: clamp(88px, 9vw, 148px); overflow: hidden; background: radial-gradient(circle at 85% 35%, rgba(24,132,255,.14), transparent 32%), var(--ink-soft); border-bottom: 1px solid var(--line); }
.crm-showcase-grid { display: grid; grid-template-columns: minmax(0,.88fr) minmax(480px,1.12fr); align-items: center; gap: clamp(52px,7vw,96px); }
.crm-copy h2 { font-size: var(--step-4); margin-bottom: 24px; }
.crm-proof-list { list-style: none; margin: 38px 0 34px; padding: 0; display: grid; gap: 18px; }
.crm-proof-list li { position: relative; padding-left: 32px; }
.crm-proof-list li::before { content: '✓'; position: absolute; left: 0; top: 1px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: rgba(34,182,103,.14); color: #4ade80; font-size: 12px; font-weight: 800; }
.crm-proof-list b,.crm-proof-list span { display: block; }
.crm-proof-list b { color: var(--text); font-size: 15px; }
.crm-proof-list span { margin-top: 2px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.crm-login-link { align-self: center; color: var(--muted); font-size: 14px; border-bottom: 1px solid var(--line-strong); transition: color .2s; }
.crm-login-link:hover { color: var(--text); }
.crm-product { position: relative; min-width: 0; border: 1px solid rgba(82,155,255,.22); border-radius: 20px; background: #080d14; box-shadow: 0 36px 90px rgba(0,0,0,.5), 0 0 70px rgba(16,112,255,.1); transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); }
.crm-window-bar { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 15px; border-bottom: 1px solid var(--line); }
.crm-window-bar i { width: 8px; height: 8px; border-radius: 50%; background: #273242; }.crm-window-bar i:first-child{background:#f87171}.crm-window-bar i:nth-child(2){background:#fbbf24}.crm-window-bar i:nth-child(3){background:#34d399}
.crm-window-bar span { margin-left: 8px; font: 10px var(--font-mono); color: var(--faint); }
.crm-ui { display: grid; grid-template-columns: 148px minmax(0,1fr); min-height: 390px; }
.crm-ui aside { padding: 22px 12px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 5px; }
.crm-ui aside strong { padding: 0 10px 18px; color: #43a3ff; font-family: var(--font-display); }
.crm-ui aside span { padding: 9px 10px; border-radius: 7px; color: #788596; font-size: 11px; }.crm-ui aside span.on{background:rgba(24,132,255,.14);color:#68b6ff}
.crm-main { min-width: 0; padding: 30px 26px; }.crm-main small{font:10px var(--font-mono);letter-spacing:.16em;color:#399cff}.crm-main h3{margin-top:8px;font:700 21px var(--font-display)}
.crm-metrics { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; margin-top: 28px; }.crm-metrics b{min-width:0;padding:16px 13px;border:1px solid var(--line);border-radius:10px;background:#0d141f;color:#7f8a99;font-size:10px}.crm-metrics em{display:block;margin-bottom:5px;color:#f4f7fb;font:700 23px var(--font-display);font-style:normal}
.crm-pipeline { display: grid; gap: 9px; margin-top: 20px; }.crm-pipeline span{display:flex;align-items:center;gap:10px;padding:12px 14px;border-radius:9px;background:#0d141f;color:#9ba5b2;font-size:11px}.crm-pipeline i{display:grid;place-items:center;width:24px;height:24px;border-radius:7px;background:rgba(24,132,255,.14);color:#55aaff;font-style:normal;font-weight:700}
.crm-float-card { position: absolute; right: -24px; bottom: -28px; display: flex; align-items: center; gap: 12px; padding: 14px 18px; border: 1px solid rgba(74,222,128,.25); border-radius: 12px; background: rgba(10,18,27,.96); box-shadow: 0 18px 42px rgba(0,0,0,.4); }.crm-float-card>span{color:#4ade80}.crm-float-card b,.crm-float-card small{display:block}.crm-float-card b{font-size:12px}.crm-float-card small{margin-top:2px;color:var(--muted);font-size:10px}
.crm-benefits { background: var(--ink); }.life-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1px;background:var(--line);border:1px solid var(--line);border-radius:18px;overflow:hidden}.life-grid article{min-width:0;padding:34px;background:var(--surface)}.life-grid article>span{font:11px var(--font-mono);color:var(--gold)}.life-grid h3{margin-top:20px;font:700 var(--step-1) var(--font-display);line-height:1.25}.life-grid p{margin-top:12px;color:var(--muted);font-size:14px;line-height:1.65}

@media (max-width: 960px) { .crm-showcase-grid{grid-template-columns:1fr}.crm-product{width:min(100%,680px);margin-inline:auto;transform:none}.life-grid{grid-template-columns:repeat(2,minmax(0,1fr))} }
@media (max-width: 620px) { .crm-showcase{padding-block:76px}.crm-ui{grid-template-columns:1fr;min-height:330px}.crm-ui aside{display:none}.crm-main{padding:22px 14px}.crm-main h3{font-size:17px}.crm-metrics{grid-template-columns:1fr}.crm-metrics b{display:flex;align-items:center;gap:8px;padding:10px}.crm-metrics em{display:inline;margin:0;font-size:18px}.crm-pipeline{display:none}.crm-float-card{right:10px;bottom:-34px}.life-grid{grid-template-columns:1fr}.life-grid article{padding:28px}.crm-copy .hero-ctas{align-items:flex-start} }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  overflow: clip;
  padding-block: 140px 100px;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media .hero-photo,
.hero-media canvas,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media video { opacity: 0; transition: opacity 1.2s ease; }
.hero-media video.ready { opacity: 1; }
.hero-media .veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 90% at 18% 45%, rgba(5, 9, 15, 0.88) 0%, rgba(5, 9, 15, 0.45) 55%, rgba(5, 9, 15, 0.15) 100%),
    linear-gradient(180deg, rgba(5, 9, 15, 0.55) 0%, rgba(5, 9, 15, 0) 30%, rgba(5, 9, 15, 0) 62%, var(--ink) 100%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 9px 16px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: rgba(201, 169, 97, 0.06);
  margin-bottom: 34px;
}
.hero-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.hero h1 {
  font-size: var(--step-5);
  max-width: 13em;
  margin-bottom: 28px;
}
.hero h1 .accent {
  background: linear-gradient(100deg, var(--gold-bright), var(--gold) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead { margin-bottom: 42px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.hero-meta span { display: flex; align-items: center; gap: 9px; }
.hero-meta i {
  font-style: normal;
  color: var(--gold);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--gold-line), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50%      { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}

/* ── Seções genéricas ── */
.section { padding-block: var(--space-section); position: relative; }
.section.alt { background: var(--ink-soft); border-block: 1px solid var(--line); }
.section-head { max-width: 720px; margin-bottom: clamp(48px, 5vw, 72px); }
.section-head h2 { font-size: var(--step-4); margin-bottom: 20px; }
.section-head .lead { font-size: var(--step-1); }

/* ── 02 · Crescimento vs Operação ── */
.evo { overflow: hidden; overflow: clip; }
.evo-stage-wrap { position: relative; }
.evo-track { position: relative; }

/* modo pinado (aplicado via JS no desktop) */
.evo-stage-wrap.pinned .evo-track {
  height: min(72vh, 560px);
  min-height: 440px;
}
.evo-stage-wrap.pinned .evo-stage { min-height: 0; height: 100%; }
.evo-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: 420px;
}
.evo-copy .evo-step-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.evo-copy h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-3);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.evo-copy p { color: var(--muted); max-width: 30em; }
.evo-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.evo-visual svg { width: 100%; height: 100%; overflow: visible; }
.evo-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.evo-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.evo-visual .device-line {
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
.evo-visual .device-gold {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
.evo-visual .device-fill { fill: rgba(214, 226, 240, 0.03); }
.evo-visual .noise-bit { fill: var(--faint); opacity: 0.7; }
.evo-progress {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}
.evo-progress b {
  width: 34px; height: 2px;
  background: var(--line-strong);
  border-radius: 2px;
  transition: background 0.4s;
}
.evo-progress b.on { background: var(--gold); }
.evo-conclusion {
  margin-top: clamp(56px, 6vw, 88px);
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  background:
    radial-gradient(120% 140% at 85% 0%, rgba(201, 169, 97, 0.09), transparent 60%),
    var(--surface);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.evo-conclusion h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-2);
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 20em;
}
.evo-conclusion p { color: var(--muted); margin-top: 10px; max-width: 36em; }

/* ── 03 · Serviços ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.service-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(170deg, var(--surface-2), var(--surface) 65%);
  padding: clamp(28px, 3.5vw, 44px);
  overflow: hidden;
  overflow: clip;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-5px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

.service-card .kind {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-2);
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 14px;
}
.service-card > p { color: var(--muted); margin-bottom: 26px; max-width: 34em; }
.service-card ul {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.service-card ul li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text);
  align-items: baseline;
}
.service-card ul li::before {
  content: '◆';
  font-size: 9px;
  color: var(--gold);
  flex: none;
  transform: translateY(-1px);
}
.service-visual {
  margin: 0 0 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--ink);
  aspect-ratio: 21 / 9;
  overflow: hidden;
  overflow: clip;
  position: relative;
}
.service-visual svg { width: 100%; height: 100%; }
.service-visual { position: relative; }
.service-visual img,
.service-visual video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-visual video { opacity: 0; transition: opacity 0.8s ease; }
.service-visual video.playing { opacity: 1; }
.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--gold-bright);
}
.service-link .arrow { transition: transform 0.22s; }
.service-card:hover .service-link .arrow { transform: translateX(5px); }

.service-consulting {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 28px;
  align-items: center;
  border: 1px dashed var(--gold-line);
  border-radius: var(--radius);
  background: rgba(201, 169, 97, 0.04);
  padding: clamp(20px, 2.6vw, 28px) clamp(24px, 3vw, 36px);
}
.consulting-photo {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--gold-line);
  aspect-ratio: 16 / 10;
}
.consulting-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 28% 22%;
}
.service-consulting h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-1);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.service-consulting p { color: var(--muted); font-size: 15px; max-width: 44em; }

/* ── 04 · Processo ── */
.method-photo {
  margin: 0 0 clamp(28px, 4vw, 48px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 21 / 9;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.method-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}
.process-step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 28px 26px;
  transition: border-color 0.3s, background 0.3s;
}
.process-step:hover { border-color: var(--gold-line); background: var(--surface-2); }
.process-step .num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold);
  display: block;
  margin-bottom: 40px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17.5px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.process-step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── 05 · Transformações ── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.case-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(26px, 3vw, 36px);
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.case-card:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.case-card .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
.case-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-1);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.case-flow {
  display: grid;
  gap: 12px;
  font-size: 14px;
}
.case-flow .from, .case-flow .to {
  display: flex;
  gap: 12px;
  align-items: baseline;
  line-height: 1.55;
}
.case-flow .from { color: var(--faint); }
.case-flow .to { color: var(--text); }
.case-flow .k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex: 0 0 58px;
  transform: translateY(-1px);
}
.case-flow .from .k { color: var(--faint); }
.case-flow .to .k { color: var(--gold); }

/* ── 06 · Diferenciais ── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  overflow: clip;
  background: var(--surface);
}
.diff-item {
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.6vw, 36px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.diff-item:hover { background: var(--surface-2); }
.diff-item:nth-child(3n) { border-right: none; }
.diff-item:nth-last-child(-n+3) { border-bottom: none; }
.diff-item .glyph {
  width: 34px; height: 34px;
  margin-bottom: 22px;
  color: var(--gold);
}
.diff-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.diff-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── 07 · Quem está por trás ── */
.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.founder-photo {
  margin: 0;
  position: relative;
  max-width: 400px;
  justify-self: center;
}
.founder-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--gold-line);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.founder-photo::after {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  z-index: -1;
}
.founder-copy h2 { font-size: var(--step-4); margin-bottom: 18px; }
.founder-points {
  list-style: none;
  margin: 28px 0 34px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.founder-points li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 15.5px;
  color: var(--text);
}
.founder-points li::before {
  content: '◆';
  font-size: 9px;
  color: var(--gold);
  flex: none;
  transform: translateY(-1px);
}
.founder-sign {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.founder-sign b {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.founder-sign span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ── 08 · CTA final ── */
.final-cta {
  position: relative;
  overflow: hidden;
  overflow: clip;
  text-align: center;
  padding-block: clamp(120px, 12vw, 200px);
}
.final-cta .glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(880px, 100vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 62%);
  pointer-events: none;
}
.final-cta .cta-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.final-cta .cta-media img,
.final-cta .cta-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.final-cta .cta-media video { opacity: 0; transition: opacity 1s ease; }
.final-cta .cta-media video.playing { opacity: 0.55; }
.final-cta .cta-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 50% 42%, rgba(5, 9, 15, 0.55) 0%, rgba(5, 9, 15, 0.1) 70%),
    linear-gradient(180deg, var(--ink) 0%, rgba(5, 9, 15, 0) 22%, rgba(5, 9, 15, 0) 72%, var(--ink) 100%);
}
.final-cta .inner { position: relative; max-width: 760px; margin-inline: auto; }
.final-cta h2 { font-size: var(--step-4); margin-bottom: 22px; }
.final-cta .lead { margin-inline: auto; margin-bottom: 44px; }
.final-cta .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink-soft);
  padding-block: 64px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.footer-about p {
  font-size: 14px;
  color: var(--muted);
  max-width: 30em;
  margin: 18px 0 22px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer-col nav { display: grid; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: color 0.18s; }
.footer-col a:hover { color: var(--text); }
.footer-base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 26px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--faint);
}

/* ── WhatsApp flutuante ── */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(160deg, #2ad171, #17915a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(23, 145, 90, 0.45);
  transition: transform 0.22s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }

/* ── Reveals (JS adiciona .is-in) ── */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.65, 0.25, 1), transform 0.9s cubic-bezier(0.2, 0.65, 0.25, 1);
  transition-delay: var(--rv-delay, 0s);
}
.rv.is-in { opacity: 1; transform: none; }

/* ── Blog / Radar / Artigos ── */
.page-hero {
  padding: 160px 0 64px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(80% 120% at 85% -20%, rgba(201, 169, 97, 0.07), transparent 60%),
    var(--ink);
}
.page-hero h1 { font-size: var(--step-4); margin-bottom: 16px; }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.article-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(24px, 2.6vw, 34px);
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.article-card:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.article-card .tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.article-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-1);
  letter-spacing: -0.02em;
  line-height: 1.22;
  margin-bottom: 12px;
}
.article-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.article-card .service-link { margin-top: auto; }

/* — Radar: portal de notícias — */
.news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.news-meta time { color: var(--faint); letter-spacing: 0.06em; }
.news-meta .src { color: var(--muted); }

.topic-tag {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: 5px;
}
.t-brasil   { color: #5fd18c; background: rgba(63, 174, 106, 0.14); }
.t-mundo    { color: #7cb0e8; background: rgba(79, 143, 209, 0.14); }
.t-economia { color: var(--gold-bright); background: var(--gold-dim); }
.t-tech     { color: #6fe0d4; background: rgba(95, 201, 192, 0.14); }
.t-esportes { color: #f0985e; background: rgba(226, 121, 63, 0.16); }

/* manchetes coloridas por categoria (padrão portal: G1/Globo) */
.t-color-brasil   { color: #5fd18c; }
.t-color-mundo    { color: #7cb0e8; }
.t-color-economia { color: var(--gold-bright); }
.t-color-tech     { color: #6fe0d4; }
.t-color-esportes { color: #f0985e; }
a.t-color-brasil:hover, a.t-color-mundo:hover, a.t-color-economia:hover,
a.t-color-tech:hover, a.t-color-esportes:hover { text-decoration: underline; }

.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ef4b3c;
  animation: livePulse 1.4s infinite;
  flex: 0 0 auto;
}
.live-txt { color: #ef6a5c; font-weight: 700; }
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.75); }
}

/* — Ticker de manchetes ao vivo — */
.news-ticker {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: 9px 0;
  margin-bottom: 24px;
  overflow: hidden;
}
.ticker-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 16px;
  padding: 5px 13px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ef6a5c, #c9382a);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ticker-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: livePulse 1.4s infinite; }
.ticker-viewport { flex: 1; overflow: hidden; position: relative; height: 18px; }
.ticker-track {
  position: absolute;
  left: 0; top: 0;
  display: flex;
  gap: 52px;
  white-space: nowrap;
  animation: tickerScroll 55s linear infinite;
}
.news-ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.ticker-track a:hover { color: var(--gold-bright); }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; overflow-x: auto; } }

/* — Layout hero: carrossel + "mais lidas" — */
.news-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.news-hero-grid .news-carousel { margin-bottom: 0; }

.news-sidebar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px 20px 8px;
  height: 100%;
}
.sidebar-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 4px;
}
.sidebar-list { list-style: none; margin: 0; padding: 0; }
.sidebar-list li { border-bottom: 1px solid var(--line); }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
}
.sidebar-list .rank {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--line-strong);
  line-height: 1;
  min-width: 20px;
}
.sidebar-list a:hover .rank { color: var(--gold-line); }
.sidebar-list .txt { min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.sidebar-list h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.sidebar-list a:hover h4 { color: var(--gold-bright); }

/* — Seções por categoria — */
.news-section { margin-top: 40px; }
.news-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}
.news-section-head h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.news-section-head .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.dot.t-brasil   { background: #5fd18c; }
.dot.t-mundo    { background: #7cb0e8; }
.dot.t-economia { background: var(--gold); }
.dot.t-tech     { background: #6fe0d4; }
.dot.t-esportes { background: #f0985e; }
.pill-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.pill-link:hover { color: var(--gold-bright); border-color: var(--gold-line); }
.news-latest-head { margin-top: 40px; margin-bottom: 0; }
.news-latest-head h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.news-grid-4 { grid-template-columns: repeat(4, 1fr); }
.news-grid-4 .news-card .body { padding: 14px 16px 18px; gap: 8px; }
.news-grid-4 .news-card h3 { font-size: 14.5px; -webkit-line-clamp: 3; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }

/* — Blocos de notícia estilo portal: manchete colorida + bullets, denso — */
.news-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.news-block { border-top: 2px solid var(--line-strong); padding-top: 14px; }
.news-block-lead { display: block; }
.news-block-lead .thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  background: var(--surface);
}
.news-block-lead .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-block-lead:hover .thumb img { transform: scale(1.04); }
.news-block-lead h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.015em;
  line-height: 1.22;
}
.news-block-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 7px 0 0;
}
.news-block-list { list-style: none; margin: 10px 0 0; padding: 10px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 9px; }
.news-block-list li { position: relative; padding-left: 14px; }
.news-block-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--faint);
}
.news-block-list a {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: #c6cdd6;
  line-height: 1.4;
}
.news-block-list a:hover { color: var(--gold-bright); }

.news-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  margin-bottom: 18px;
  transition: border-color 0.3s;
}
.news-feature:hover { border-color: var(--gold-line); }
.news-feature .thumb {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.news-feature .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.news-feature:hover .thumb img { transform: scale(1.035); }
.news-feature .body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(24px, 3vw, 40px);
  justify-content: center;
}
.news-feature h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-2);
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-wrap: balance;
}
.news-feature h3 a:hover { color: var(--gold-bright); }
.news-feature p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.news-feature .go {
  font-weight: 600;
  font-size: 14px;
  color: var(--gold-bright);
  display: inline-flex;
  gap: 8px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.news-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.news-card:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.news-card .thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}
.news-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.news-card:hover .thumb img { transform: scale(1.045); }
.news-card .body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px 22px;
  flex: 1;
}
.news-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.015em;
  line-height: 1.32;
}
.news-card h3 a:hover { color: var(--gold-bright); }
.news-card .exc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list { margin-top: 26px; border-top: 1px solid var(--line); }
.news-list a {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.news-list a:hover { background: rgba(214, 226, 240, 0.025); }
.news-list .news-meta { flex: 0 0 190px; white-space: nowrap; padding-top: 2px; }
.news-list .txt { flex: 1; min-width: 0; }
.news-list h4 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.news-list .exc {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-list a:hover h4 { color: var(--gold-bright); }

.news-status {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--faint);
  padding: 30px 0;
}

/* — Cards de artigo com imagem — */
.article-card { padding: 0; overflow: hidden; }
.article-card .thumb { aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink); }
.article-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.article-card:hover .thumb img { transform: scale(1.045); }
.article-card .body { display: flex; flex-direction: column; flex: 1; padding: clamp(20px, 2.4vw, 28px); }
.card-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.card-author img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold-line); }

.article-hero {
  margin: 30px 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.article-hero img { width: 100%; height: auto; }

/* — Artigo — */
.article-body { max-width: 720px; margin-inline: auto; padding-block: 56px var(--space-section); }
.article-body h2 { font-family: var(--font-display); font-weight: 700; font-size: var(--step-2); letter-spacing: -0.02em; margin: 44px 0 14px; text-wrap: balance; }
.article-body p { margin-bottom: 18px; color: #c6cdd6; }
.article-body ul { color: #c6cdd6; margin: 0 0 18px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--text); }
.byline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.byline img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold-line); }
.byline b { display: block; font-size: 14.5px; }
.byline span { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.06em; }
.article-cta {
  margin-top: 48px;
  padding: 28px;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  background: rgba(201, 169, 97, 0.05);
}
.article-cta .cta-face {
  width: 76px;
  height: auto;
  margin-bottom: 4px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}
.article-cta h3 { font-family: var(--font-display); font-weight: 700; font-size: var(--step-1); margin-bottom: 8px; }
.article-cta p { margin-bottom: 18px; }

/* — Compartilhar no Instagram — */
.share-mini {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: rgba(214, 226, 240, 0.04);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 7px 12px;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}
.share-mini:hover { color: var(--gold-bright); border-color: var(--gold-line); }
.feature-wrap { position: relative; }
.feature-wrap .share-mini {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(5, 9, 15, 0.72);
  backdrop-filter: blur(6px);
}
#imToast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 16px);
  z-index: 400;
  background: var(--surface-2);
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  padding: 12px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  max-width: min(92vw, 420px);
  text-align: center;
}
#imToast.on { opacity: 1; transform: translate(-50%, 0); }

/* — Hero de Parceiros com mídia — */
.parceiros-hero {
  position: relative;
  overflow: hidden;
  overflow: clip;
  min-height: min(78vh, 640px);
  display: flex;
  align-items: center;
}
.parceiros-hero .ph-media { position: absolute; inset: 0; }
.parceiros-hero .ph-media img,
.parceiros-hero .ph-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.parceiros-hero .ph-media video { opacity: 0; transition: opacity 1s ease; }
.parceiros-hero .ph-media video.playing { opacity: 1; }
.parceiros-hero .ph-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 9, 15, 0.92) 0%, rgba(5, 9, 15, 0.55) 46%, rgba(5, 9, 15, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 9, 15, 0.6) 0%, rgba(5, 9, 15, 0) 30%, rgba(5, 9, 15, 0) 70%, var(--ink) 100%);
}
.parceiros-hero .container { position: relative; z-index: 1; width: 100%; }

/* — Leitor de notícia (resumo no site) — */
.reader-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 6, 10, 0.85);
  backdrop-filter: blur(8px);
}
.reader-modal.open { display: flex; }
.reader-box {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  max-width: 640px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  animation: ncFade 0.3s ease;
}
.reader-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(5, 9, 15, 0.8);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.reader-close:hover { border-color: var(--gold-line); color: var(--gold-bright); }
.reader-img { aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.reader-img img { width: 100%; height: 100%; object-fit: cover; }
.reader-body { padding: 24px 26px 28px; }
.reader-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-2);
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 10px 0 14px;
}
.reader-body > p { color: #c6cdd6; font-size: 15px; line-height: 1.7; }
.reader-credit {
  font-family: var(--font-mono);
  font-size: 11px !important;
  color: var(--faint) !important;
  margin-top: 14px;
}
.reader-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* — Carrossel de notícias — */
.news-carousel { position: relative; }
.nc-slide { display: none; }
.nc-slide.on { display: block; animation: ncFade 0.55s ease; }
@keyframes ncFade { from { opacity: 0; } to { opacity: 1; } }
.nc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(5, 9, 15, 0.75);
  backdrop-filter: blur(6px);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: border-color 0.2s, color 0.2s;
}
.nc-arrow:hover { border-color: var(--gold-line); color: var(--gold-bright); }
.nc-prev { left: 14px; }
.nc-next { right: 14px; }
.nc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.nc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--line-strong);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.nc-dot.on { background: var(--gold); transform: scale(1.3); }

/* — Cabeçalho do Radar com "pular" — */
.radar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.radar-head .eyebrow { margin-bottom: 0; }

/* — Filtros do Radar — */
.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.filter-pill {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 16px;
  min-height: 38px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.filter-pill:hover { color: var(--text); border-color: var(--gold-line); }
.filter-pill.on {
  color: #14100a;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border-color: transparent;
  font-weight: 500;
}
.news-more { text-align: center; margin-top: 26px; }

/* — Skeleton — */
.sk-shimmer {
  position: relative;
  overflow: hidden;
  background: rgba(214, 226, 240, 0.05);
}
.sk-shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(214, 226, 240, 0.06), transparent);
  animation: skSlide 1.4s infinite;
}
@keyframes skSlide { to { transform: translateX(100%); } }
.sk .sk-line { height: 13px; border-radius: 6px; margin-bottom: 10px; }
.sk .thumb.sk-shimmer { min-height: 200px; }
.news-feature.sk .body { gap: 6px; }

/* — Compartilhar — */
.byline .share { margin-left: auto; display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: rgba(214, 226, 240, 0.04);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 7px 13px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.share-btn:hover { color: var(--gold-bright); border-color: var(--gold-line); }

/* — Leia também — */
.related { margin-top: clamp(48px, 6vw, 72px); }
.related-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-2);
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.related-grid { grid-template-columns: 1fr 1fr; }

/* — Newsletter — */
.newsletter {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(70% 130% at 80% 0%, rgba(201, 169, 97, 0.07), transparent 60%),
    var(--ink-soft);
  padding-block: clamp(48px, 6vw, 80px);
}
.nl-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.nl-box h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-2);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.nl-box > div > p { color: var(--muted); font-size: 15px; }
.nl-form { display: flex; flex-wrap: wrap; gap: 10px; }
.nl-form input {
  flex: 1 1 220px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
}
.nl-form input:focus { border-color: var(--gold-line); }
.nl-form input::placeholder { color: var(--faint); }
.nl-msg { width: 100%; font-size: 13.5px; color: var(--muted); min-height: 1.2em; margin: 2px 0 0; }
.nl-msg a { color: var(--gold-bright); text-decoration: underline; }

/* ═══════════════ RESPONSIVO ═══════════════ */
@media (max-width: 960px) {
  .evo-stage { grid-template-columns: 1fr; min-height: 0; gap: 28px; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo { max-width: 320px; justify-self: start; }
  .founder-photo::after { display: none; }
  .evo-visual { max-width: 480px; }
  .evo-conclusion { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-consulting { grid-template-columns: 1fr; }
  .consulting-photo { max-width: 100%; aspect-ratio: 16 / 9; }
  .method-photo { aspect-ratio: 16 / 10; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .news-blocks { grid-template-columns: repeat(2, 1fr); }
  .news-feature { grid-template-columns: 1fr; }
  .news-feature .thumb { min-height: 0; aspect-ratio: 16 / 9; }
  .news-list .news-meta { flex-basis: 118px; flex-direction: column; align-items: flex-start; gap: 2px; white-space: normal; }
  .news-hero-grid { grid-template-columns: 1fr; }
  .news-sidebar { height: auto; }
  .ticker-badge { margin: 0 12px; }
  .nl-box { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .byline { flex-wrap: wrap; }
  .byline .share { margin-left: 0; width: 100%; }
  .cases-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-item:nth-child(3n) { border-right: 1px solid var(--line); }
  .diff-item:nth-child(2n) { border-right: none; }
  .diff-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .diff-item:nth-last-child(-n+2) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 620px) {
  .hero { padding-top: 120px; }
  .brand-name span { display: none; }

  /* cards de serviço compactos */
  .service-card { padding: 22px; }
  .service-visual { margin-bottom: 18px; }
  .service-card h3 { font-size: 21px; }
  .service-card > p {
    font-size: 14px;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .service-card ul { gap: 8px; margin-bottom: 20px; }
  .service-card ul li { font-size: 13.5px; }
  .service-card ul li:nth-child(n+4) { display: none; }
  .hero-ctas .btn { width: 100%; }
  .hero-scroll-hint { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-grid-4 { grid-template-columns: 1fr; }
  .news-blocks { grid-template-columns: 1fr; gap: 20px; }
  .news-section-head { flex-wrap: wrap; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-item { border-right: none !important; border-bottom: 1px solid var(--line) !important; }
  .diff-item:last-child { border-bottom: none !important; }
  .case-flow .k { flex-basis: 48px; }
}

@media (max-width: 719px) {
  /* — Filtros do Radar como abas de app: 1 linha, rolagem horizontal,
     grudados no topo ao rolar (em vez de quebrar em várias linhas) — */
  .news-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: sticky;
    top: 72px;
    z-index: 60;
    background: var(--ink);
    margin-inline: calc(var(--gutter) * -1);
    padding: 10px var(--gutter) 14px;
  }
  .news-filters::-webkit-scrollbar { display: none; }
  .news-ticker { margin-inline: 0; }

  /* — Newsletter: campos empilhados e maiores, fáceis de tocar — */
  .nl-form { flex-direction: column; align-items: stretch; }
  .nl-form input, .nl-form button { width: 100%; }
  .nl-form input { padding: 15px 18px; font-size: 16px; }

  /* — Botão do WhatsApp: menor e fora da área segura do sistema — */
  .wa-float {
    width: 50px; height: 50px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 430px) {
  .site-header .bar { height: 64px; }
  .brand-name { display: none; }
  .brand img { width: 35px; height: auto; }
  .nav-toggle { width: 42px; height: 42px; }
  .news-filters { top: 64px; }
}

/* ═══════════════ MOVIMENTO REDUZIDO ═══════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .rv { opacity: 1; transform: none; }
  .hero-scroll-hint::after { animation: none; }
}
