/* ============================================================
   NG Billing v2 — style-v2.css
   Diretrizes: Relatório de Estrutura e Conteúdo
   Cores: definidas em assets/css/tokens.css (Design System v1)
   ============================================================ */

@import url('assets/css/tokens.css');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font:           'Poppins', system-ui, sans-serif;
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --tr:             0.25s var(--ease);
}

/* ============================================================
   ACESSIBILIDADE — Foco visível obrigatório
   WCAG 2.1 AA · Lei Brasileira de Inclusão (Lei 13.146/2015)
   Cor: --focus-ring (laranja queimado, passa 3:1 em qualquer fundo).
   Espessura: 2px (alinhada com Design System v1 §3.1).
   ============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible,
.btn:focus-visible,
.btn-nav-cta:focus-visible,
.btn-nav-outline:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-hero-ghost:focus-visible,
.btn-drawer-cta:focus-visible,
.btn-submit:focus-visible {
  outline: var(--focus-ring-width) solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Estado :active dos botões CTA primário — texto branco sobre laranja terra
   (5.76:1 PASS; texto preto reprovaria — 2.69:1) */
.btn-primary:active,
.btn-nav-cta:active,
.btn-drawer-cta:active,
.btn-submit:active {
  background: var(--cta-primary-active);
  color: var(--cta-primary-text-active);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--color-white); color: var(--text-primary); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-brand-black); }
::-webkit-scrollbar-thumb { background: var(--color-brand-orange); border-radius: 3px; }

/* ============================================================
   NAVBAR — Glassmorphism permanente
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; display: flex; align-items: center; padding: 0 1.5rem;
  background: var(--overlay-dark-7);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--overlay-white-07);
  transition: background var(--tr), box-shadow var(--tr);
}
.navbar.scrolled { background: var(--overlay-dark-97); box-shadow: 0 4px 32px var(--shadow-black-soft); }

.nav-container {
  max-width: 1280px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 2rem;
}
.nav-logo img { height: 30px; width: auto; }

.nav-links {
  display: flex; align-items: center; justify-content: center;
  gap: 0.25rem; list-style: none;
}
.nav-links a {
  color: var(--overlay-white-75); text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  padding: 0.4rem 0.75rem; border-radius: 6px;
  transition: color var(--tr), background var(--tr);
}
.nav-links a:hover { color: var(--color-white); background: var(--overlay-white-08); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn-nav-outline {
  color: rgba(255,255,255,0.85); font-size: 0.875rem; font-weight: 600;
  padding: 0.45rem 1rem; border-radius: 8px;
  border: 1.5px solid var(--overlay-white-25); text-decoration: none;
  transition: border-color var(--tr), background var(--tr);
}
.btn-nav-outline:hover { border-color: var(--overlay-white-6); background: var(--overlay-white-06); color: var(--color-white); }

.btn-nav-cta {
  background: var(--color-brand-orange); color: var(--cta-primary-text);
  font-size: 0.875rem; font-weight: 700;
  padding: 0.5rem 1.25rem; border-radius: 8px; text-decoration: none; white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(240,120,0,0);
  transition: background var(--tr), box-shadow var(--tr), transform var(--tr);
}
.btn-nav-cta:hover { background: var(--cta-primary-hover); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(240,120,0,0.4); }

.menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: transparent; }
.menu-btn span { display: block; width: 24px; height: 2px; background: var(--color-white); border-radius: 2px; transition: transform var(--tr), opacity var(--tr); }
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(29,37,46,0.99); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft-on-dark); z-index: 999;
  padding: 1.5rem; transform: translateY(-110%); opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-drawer.open { transform: translateY(0); opacity: 1; }
.mobile-drawer a { display: block; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 1rem; font-weight: 500; padding: 0.85rem 0; border-bottom: 1px solid var(--border-soft-on-dark); transition: color var(--tr); }
.mobile-drawer a:hover { color: var(--color-brand-orange); }
.mobile-drawer .btn-drawer-cta { display: block; margin-top: 1.25rem; background: var(--color-brand-orange); color: var(--cta-primary-text); text-align: center; padding: 0.85rem; border-radius: 8px; font-weight: 700; border-bottom: none; }
.mobile-drawer .btn-drawer-cta:hover { background: var(--cta-primary-hover); color: var(--cta-primary-text); }

/* ============================================================
   UTILITÁRIOS GERAIS
   ============================================================ */
.section-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-brand-orange); margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800;
  line-height: 1.15; color: var(--text-primary); letter-spacing: -0.02em; margin-bottom: 1rem;
}
.section-title.light { color: var(--color-white); }
.section-subtitle { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; max-width: 560px; margin: 0 auto; }
.section-subtitle.light { color: rgba(255,255,255,0.65); }
.section-header { text-align: center; margin-bottom: 3.5rem; padding: 0 1.5rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--color-brand-orange); color: var(--cta-primary-text); font-weight: 700; font-size: 1rem;
  padding: 0.9rem 1.85rem; border-radius: 10px; text-decoration: none;
  box-shadow: 0 4px 24px rgba(240,120,0,0.35);
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
}
.btn-primary:hover { background: var(--cta-primary-hover); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(240,120,0,0.5); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--text-primary); font-weight: 600; font-size: 1rem;
  padding: 0.9rem 1.85rem; border-radius: 10px; text-decoration: none;
  border: 1.5px solid var(--border-soft-on-light); transition: border-color var(--tr), background var(--tr);
}
.btn-secondary:hover { border-color: var(--color-brand-navy); background: rgba(29,37,46,0.04); }
.btn-secondary.light { color: var(--color-white); border-color: var(--overlay-white-25); }
.btn-secondary.light:hover { border-color: var(--overlay-white-6); background: var(--overlay-white-05); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ============================================================
   HERO — Stripe-inspired: dark centered, animated gradient mesh
   ============================================================ */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: flex-start; padding-top: 72px;
  background: var(--color-brand-black);
}

/* Animated gradient orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: 0;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(235,118,1,0.14) 0%, transparent 70%);
  top: -220px; right: -180px;
  animation: orbFloat1 10s ease-in-out infinite;
}
.hero-orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(235,118,1,0.06) 0%, transparent 70%);
  bottom: -80px; left: -160px;
  animation: orbFloat2 13s ease-in-out infinite;
}
.hero-orb-3 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(242,240,235,0.04) 0%, transparent 70%);
  top: 55%; left: 42%; transform: translate(-50%,-50%);
  animation: orbFloat3 15s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,55px)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(50px,-40px)} }
@keyframes orbFloat3 { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.12)} }

/* Subtle grid overlay */
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 85% 65% at 50% 35%, black 25%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 65% at 50% 35%, black 25%, transparent 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 5.5rem 1.5rem 0;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(235,118,1,0.1); border: 1px solid rgba(235,118,1,0.28);
  color: var(--color-brand-orange);
  font-size: 0.73rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--color-brand-orange); border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* Title */
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem); font-weight: 800;
  line-height: 1.08; color: var(--color-white);
  margin-bottom: 1.5rem; letter-spacing: -0.03em; max-width: 900px;
}
.hero-title .accent { color: var(--color-brand-orange); }

/* Subtitle */
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.72; margin-bottom: 2.5rem; max-width: 600px;
}

/* Actions */
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  align-items: center; justify-content: center;
  margin-bottom: 2rem;
}

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.8); font-weight: 600; font-size: 1rem;
  padding: 0.9rem 1.85rem; border-radius: 10px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.18);
  transition: border-color var(--tr), background var(--tr), color var(--tr);
}
.btn-hero-ghost:hover { border-color: var(--overlay-white-5); background: var(--overlay-white-05); color: var(--color-white); }

/* Trust */
.hero-trust { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 3.5rem; }
.hero-trust-avatars { display: flex; }
.hero-trust-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  background: var(--color-brand-navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 800; color: var(--color-white);
  margin-left: -8px;
}
.hero-trust-avatars .hero-trust-avatar:first-child { margin-left: 0; }
.hero-trust-text { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.4; }
.hero-trust-text strong { color: rgba(255,255,255,0.82); }

/* ---- Browser / dashboard mockup ---- */
.hero-browser {
  width: 100%; max-width: 1060px;
  border-radius: 14px 14px 0 0; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1); border-bottom: none;
  box-shadow:
    0 -20px 60px rgba(0,0,0,0.25),
    0 40px 100px rgba(0,0,0,0.55),
    inset 0 1px 0 var(--overlay-white-08);
  background: var(--legacy-shade-deep);
}

.hero-browser-bar {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--overlay-white-06);
}
.browser-dots { display: flex; gap: 5px; }
.browser-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.browser-dot.red { background: var(--legacy-browser-red); }
.browser-dot.yellow { background: var(--legacy-browser-yellow); }
.browser-dot.green { background: var(--legacy-browser-green); }
.browser-url-bar {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--overlay-white-05); border: 1px solid var(--overlay-white-07);
  border-radius: 6px; padding: 0.26rem 0.75rem;
  font-size: 0.62rem; color: rgba(255,255,255,0.28); font-family: monospace;
  margin: 0 auto; max-width: 280px;
}

.hero-browser-content {
  display: grid; grid-template-columns: 54px 1fr; min-height: 380px;
}

/* Sidebar */
.dash-sidebar {
  background: rgba(0,0,0,0.22); border-right: 1px solid var(--overlay-white-05);
  display: flex; flex-direction: column; align-items: center;
  padding: 1rem 0; gap: 0.5rem;
}
.dash-sidebar-logo {
  width: 30px; height: 30px; border-radius: 7px;
  background: var(--color-brand-orange); color: var(--color-white);
  font-size: 0.58rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem;
}
.dash-sidebar-nav { display: flex; flex-direction: column; gap: 0.2rem; }
.dash-nav-item {
  width: 32px; height: 32px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.28); cursor: default;
  transition: background 0.2s, color 0.2s;
}
.dash-nav-item.active { background: rgba(235,118,1,0.15); color: var(--color-brand-orange); }
.dash-nav-item:not(.active):hover { background: var(--overlay-white-05); color: rgba(255,255,255,0.55); }

/* Main area */
.dash-main { display: flex; flex-direction: column; overflow: hidden; }

.dash-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.65rem 1.25rem;
  border-bottom: 1px solid var(--overlay-white-05);
  background: rgba(255,255,255,0.02);
}
.dash-topbar-title { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.65); }
.dash-topbar-actions { display: flex; align-items: center; gap: 0.65rem; }
.dash-topbar-period {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.6rem; color: rgba(255,255,255,0.35);
  background: var(--overlay-white-05); border: 1px solid var(--overlay-white-07);
  padding: 0.2rem 0.5rem; border-radius: 5px;
}
.dash-topbar-avatar {
  width: 24px; height: 24px; border-radius: 6px;
  background: linear-gradient(135deg, var(--color-brand-orange), var(--legacy-orange-deep));
  color: var(--color-white); font-size: 0.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* Stats grid */
.dash-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0.6rem;
  padding: 0.75rem 1.25rem;
}
.dash-stat-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--overlay-white-06);
  border-radius: 8px; padding: 0.6rem 0.7rem;
}
.dash-stat-label { font-size: 0.52rem; color: rgba(255,255,255,0.32); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.2rem; }
.dash-stat-value { font-size: 0.9rem; font-weight: 800; color: var(--color-white); margin-bottom: 0.18rem; }
.dash-stat-trend { font-size: 0.48rem; font-weight: 600; }
.dash-stat-trend.up { color: var(--legacy-feedback-up); }
.dash-stat-trend.good { color: var(--legacy-feedback-up); }

/* Bottom: chart + transactions */
.dash-bottom {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
  padding: 0 1.25rem 1rem; flex: 1;
}

/* Chart */
.dash-chart-wrap {
  background: rgba(255,255,255,0.02); border: 1px solid var(--overlay-white-05);
  border-radius: 8px; padding: 0.75rem;
  display: flex; flex-direction: column;
}
.dash-chart-header { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.65rem; }
.dash-chart-title { font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.58); }
.dash-chart-subtitle { font-size: 0.52rem; color: rgba(255,255,255,0.22); }
.dash-bars {
  display: flex; align-items: flex-end; gap: 4px; height: 80px; flex: 1;
}
.dash-bar { flex: 1; background: rgba(235,118,1,0.2); border-radius: 3px 3px 0 0; }
.dash-bar.active { background: var(--color-brand-orange); }
.dash-bars-labels {
  display: flex; justify-content: space-between; margin-top: 0.35rem;
  font-size: 0.43rem; color: rgba(255,255,255,0.2);
}

/* Transactions */
.dash-transactions {
  background: rgba(255,255,255,0.02); border: 1px solid var(--overlay-white-05);
  border-radius: 8px; padding: 0.75rem;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.dash-tx-header { font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.58); margin-bottom: 0.2rem; }
.dash-tx-row {
  display: flex; align-items: center; gap: 0.55rem;
  padding-top: 0.35rem; border-top: 1px solid rgba(255,255,255,0.04);
}
.dash-tx-avatar {
  width: 24px; height: 24px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.52rem; font-weight: 800; color: var(--color-white); flex-shrink: 0;
}
.dash-tx-info { flex: 1; min-width: 0; }
.dash-tx-name { font-size: 0.58rem; font-weight: 600; color: rgba(255,255,255,0.68); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-tx-sub { font-size: 0.48rem; color: rgba(255,255,255,0.28); }
.dash-tx-badge { font-size: 0.48rem; font-weight: 700; padding: 0.15rem 0.45rem; border-radius: 100px; white-space: nowrap; }
.dash-tx-badge.ok { background: var(--tint-feedback-up); color: var(--legacy-feedback-up); }
.dash-tx-badge.warn { background: var(--tint-feedback-warn); color: var(--legacy-feedback-warn); }

/* ============================================================
   PROOF BAR — Logos em cinza, hover = cor
   ============================================================ */
.proof-bar { background: var(--color-brand-offwhite); border-top: 1px solid var(--border-soft-on-light); border-bottom: 1px solid var(--border-soft-on-light); padding: 2rem 1.5rem; }
.proof-bar-inner { max-width: 1280px; margin: 0 auto; }
.proof-bar-label { text-align: center; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem; }
.proof-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.5rem 2.5rem; }
.proof-logo {
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--legacy-shade-quaternary); transition: color var(--tr); cursor: default; padding: 0.3rem 0;
}
.proof-logo:hover { color: var(--color-brand-navy); }

/* ============================================================
   SOLUTIONS GRID — 4 cards interativos
   ============================================================ */
.solutions {
  padding: 6rem 1.5rem; background: var(--color-white); position: relative; overflow: hidden;
}
/* Curvas marca d'água */
.solutions::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 700'%3E%3Cpath d='M0,350 C240,150 480,550 720,350 S1200,150 1440,350' fill='none' stroke='%231D252E' stroke-width='1.5' opacity='0.05'/%3E%3Cpath d='M0,450 C300,250 600,650 900,400 S1200,100 1440,300' fill='none' stroke='%231D252E' stroke-width='1' opacity='0.035'/%3E%3C/svg%3E");
  background-size: cover; background-position: center;
}
.solutions-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }

.solutions-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; margin-bottom: 2rem;
}
.solution-card {
  background: var(--color-white); border: 1.5px solid var(--border-soft-on-light); border-radius: 16px;
  padding: 2rem; cursor: pointer; position: relative; overflow: hidden;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.solution-card:hover { border-color: rgba(235,118,1,0.35); box-shadow: 0 8px 40px rgba(29,37,46,0.1); transform: translateY(-3px); }
.solution-card.active { border-color: var(--color-brand-orange); box-shadow: 0 8px 40px var(--tint-orange-soft); transform: translateY(-3px); }

.solution-icon {
  width: 50px; height: 50px; border-radius: 12px; margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--tint-orange-soft), rgba(240,120,0,0.05));
  border: 1px solid var(--tint-orange-mid);
  display: flex; align-items: center; justify-content: center; color: var(--color-brand-orange);
}
.solution-name { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.4rem; }
.solution-teaser { font-size: 0.855rem; color: var(--text-secondary); line-height: 1.6; }

.solution-arrow {
  position: absolute; bottom: 1.25rem; right: 1.25rem;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--color-brand-orange); display: flex; align-items: center; justify-content: center;
  color: var(--color-white); opacity: 0; transition: opacity var(--tr), transform var(--tr);
}
.solution-card:hover .solution-arrow,
.solution-card.active .solution-arrow { opacity: 1; transform: scale(1.05); }

/* Painel de detalhes */
.solution-detail {
  background: var(--color-brand-black);
  border-radius: 20px; padding: 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; min-height: 260px;
  transition: opacity 0.3s var(--ease);
}
.solution-detail-title { font-size: 1.35rem; font-weight: 800; color: var(--color-white); margin-bottom: 0.75rem; }
.solution-detail-desc { font-size: 0.9rem; color: var(--overlay-white-6); line-height: 1.7; margin-bottom: 1.5rem; }
.solution-features { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.solution-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.855rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.solution-features li::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--color-brand-orange); margin-top:0.42rem; flex-shrink:0; }
.solution-detail-visual { display: flex; align-items: center; justify-content: center; }
.solution-detail-icon { width: 110px; height: 110px; border-radius: 24px; background: rgba(240,120,0,0.1); border: 1px solid var(--tint-orange-mid); display: flex; align-items: center; justify-content: center; color: var(--color-brand-orange); }

/* ============================================================
   ROI — "Não é apenas software, é eficiência financeira"
   ============================================================ */
.roi {
  padding: 6rem 1.5rem;
  background: var(--color-brand-black);
  position: relative; overflow: hidden;
}
.roi::before {
  content:''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600'%3E%3Cpath d='M0,300 C360,100 720,500 1080,300 S1350,100 1440,250' fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.04'/%3E%3C/svg%3E");
  background-size: cover;
}
.roi-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }

.roi-header { text-align: center; margin-bottom: 3.5rem; }
.roi-header h2 { color: var(--color-white); margin-bottom: 0.75rem; }
.roi-header p { color: var(--overlay-white-6); font-size: 1.05rem; }

.roi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-bottom: 3rem; }
.roi-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--overlay-white-08);
  border-radius: 16px; padding: 2rem 1.5rem; text-align: center;
  transition: border-color var(--tr), background var(--tr);
}
.roi-card:hover { border-color: rgba(240,120,0,0.4); background: rgba(240,120,0,0.05); }
.roi-number { font-size: 2.4rem; font-weight: 800; color: var(--color-brand-orange); line-height: 1; margin-bottom: 0.5rem; }
.roi-label { font-size: 0.855rem; color: rgba(255,255,255,0.55); line-height: 1.4; }

.roi-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.roi-benefit {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem;
  background: rgba(255,255,255,0.03); border-radius: 12px; border: 1px solid var(--overlay-white-06);
}
.roi-benefit-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(240,120,0,0.15); display: flex; align-items: center; justify-content: center; color: var(--color-brand-orange); flex-shrink: 0; }
.roi-benefit-title { font-size: 0.875rem; font-weight: 700; color: var(--color-white); margin-bottom: 0.25rem; }
.roi-benefit-text { font-size: 0.78rem; color: var(--overlay-white-5); line-height: 1.5; }

/* ============================================================
   PLATFORM — "Dores" hierarchy
   ============================================================ */
.platform { padding: 6rem 1.5rem; background: var(--color-brand-offwhite); }
.platform-inner { max-width: 1280px; margin: 0 auto; }
.platform-dores { display: flex; flex-direction: column; gap: 5rem; }
.platform-dor { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.platform-dor.reverse { direction: rtl; }
.platform-dor.reverse > * { direction: ltr; }

.dor-question { font-size: 1.45rem; font-weight: 800; color: var(--text-primary); margin-bottom: 0.85rem; line-height: 1.3; }
.dor-question em { color: var(--color-brand-orange); font-style: normal; }
.dor-answer { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.5rem; }
.dor-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.dor-tag { display: inline-flex; align-items: center; gap: 0.35rem; background: rgba(29,37,46,0.06); border: 1px solid rgba(29,37,46,0.12); color: var(--color-brand-navy); font-size: 0.76rem; font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 100px; }
.dor-tag svg { color: var(--color-brand-orange); }

.dor-visual { background: var(--color-white); border-radius: 20px; padding: 2rem; box-shadow: 0 8px 40px var(--shadow-dark-mid); min-height: 200px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; }
.dor-visual-flow { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.dor-flow-step { background: var(--color-brand-offwhite); border: 1.5px solid var(--border-soft-on-light); border-radius: 10px; padding: 0.6rem 1rem; font-size: 0.78rem; font-weight: 600; color: var(--text-primary); text-align: center; }
.dor-flow-step.highlight { background: linear-gradient(135deg, var(--tint-orange-soft), rgba(240,120,0,0.05)); border-color: var(--tint-orange-border); color: var(--color-brand-orange); }
.dor-flow-arrow { color: var(--text-muted); font-size: 0.9rem; }

/* ============================================================
   NFCOM — Simulador + Tabela comparativa
   ============================================================ */
.nfcom { padding: 6rem 1.5rem; background: var(--color-white); position: relative; overflow: hidden; }
.nfcom::before {
  content:''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600'%3E%3Cpath d='M1440,200 C1100,50 800,500 500,250 S200,450 0,200' fill='none' stroke='%231D252E' stroke-width='1.5' opacity='0.04'/%3E%3C/svg%3E");
  background-size: cover;
}
.nfcom-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }

.nfcom-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }
.nfcom-copy .section-title { text-align: left; }
.nfcom-copy .section-subtitle { text-align: left; max-width: none; margin: 0; margin-bottom: 1.5rem; }

.nfcom-simulator {
  background: var(--color-brand-offwhite); border: 1.5px solid var(--border-soft-on-light);
  border-radius: 16px; padding: 2rem;
}
.simulator-header { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); margin-bottom: 1.25rem; }
.simulator-question { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.5rem; }
.simulator-range-wrap { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.simulator-range {
  flex: 1; -webkit-appearance: none; appearance: none;
  height: 6px; border-radius: 3px; outline: none; cursor: pointer;
  background: linear-gradient(to right, var(--color-brand-orange) 30%, var(--legacy-shade-200) 30%);
}
.simulator-range::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--color-brand-orange); box-shadow: 0 2px 8px rgba(240,120,0,0.4); cursor: pointer; }
.simulator-value { font-size: 1.4rem; font-weight: 800; color: var(--color-brand-orange); min-width: 80px; text-align: right; }
.simulator-labels { display: flex; justify-content: space-between; font-size: 0.68rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.simulator-result { background: var(--color-white); border-radius: 12px; padding: 1rem 1.25rem; border: 1px solid var(--border-soft-on-light); font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }
.simulator-result strong { color: var(--text-primary); }

/* Comparison table */
.comparison-wrap { overflow-x: auto; border-radius: 16px; box-shadow: 0 4px 32px var(--shadow-dark-mid); }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th { padding: 1.1rem 1.5rem; font-size: 0.875rem; font-weight: 700; text-align: left; }
.comparison-table th:first-child { background: var(--color-brand-offwhite); color: var(--text-secondary); width: 28%; }
.comparison-table th.manual-col { background: var(--legacy-shade-100); color: var(--text-secondary); }
.comparison-table th.ng-col { background: var(--color-brand-black); color: var(--color-white); }
.comparison-table th.ng-col .ng-badge { display: inline-block; background: var(--color-brand-orange); color: var(--color-white); font-size: 0.65rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 4px; margin-left: 0.5rem; vertical-align: middle; }
.comparison-table td { padding: 0.9rem 1.5rem; font-size: 0.855rem; border-top: 1px solid var(--legacy-shade-100); vertical-align: top; line-height: 1.5; }
.comparison-table tr:nth-child(even) td { background: var(--legacy-shade-50); }
.comparison-table td:first-child { font-weight: 600; color: var(--text-primary); }
.comparison-table td.manual { color: var(--legacy-shade-400); }
.comparison-table td.ng-cell { color: var(--color-brand-navy); font-weight: 600; }
.check { color: var(--color-brand-orange); margin-right: 0.25rem; }
.cross { color: var(--legacy-shade-300-cool); margin-right: 0.25rem; }

/* ============================================================
   CASES — Cards com títulos de resultado
   ============================================================ */
.cases { padding: 6rem 1.5rem; background: var(--color-brand-black); position: relative; overflow: hidden; }
.cases::before {
  content:''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600'%3E%3Cpath d='M0,300 C360,100 720,500 1080,300 S1350,100 1440,200' fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.04'/%3E%3C/svg%3E");
  background-size: cover;
}
.cases-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }

.clients-row { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 4rem; }
.client-chip {
  padding: 0.45rem 1.1rem; border-radius: 100px;
  background: var(--overlay-white-05); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55); font-size: 0.78rem; font-weight: 600;
  transition: background var(--tr), border-color var(--tr), color var(--tr);
}
.client-chip:hover { background: var(--tint-orange-soft); border-color: var(--tint-orange-border); color: var(--color-white); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--overlay-white-08);
  border-radius: 16px; padding: 2rem;
  transition: border-color var(--tr), background var(--tr), transform var(--tr);
}
.testimonial-card:hover { border-color: var(--tint-orange-border); background: rgba(240,120,0,0.04); transform: translateY(-4px); }

.testimonial-result {
  display: inline-block; background: rgba(240,120,0,0.15); color: var(--color-brand-orange);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.28rem 0.75rem; border-radius: 100px; margin-bottom: 0.85rem;
}
.testimonial-title { font-size: 0.95rem; font-weight: 700; color: var(--color-white); margin-bottom: 0.75rem; line-height: 1.4; }
.testimonial-quote { font-size: 0.855rem; color: var(--overlay-white-6); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,var(--color-brand-orange),var(--legacy-orange-mid)); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 800; color: var(--color-white); flex-shrink: 0; }
.testimonial-name { font-size: 0.855rem; font-weight: 700; color: var(--color-white); }
.testimonial-role { font-size: 0.72rem; color: rgba(255,255,255,0.4); }

/* ============================================================
   SOBRE — Ecossistema Grupo Objective
   ============================================================ */
.sobre { padding: 6rem 1.5rem; background: var(--color-brand-offwhite); }
.sobre-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.sobre-body { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; }
.sobre-body strong { color: var(--text-primary); }

.ecosystem { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.85rem; margin-top: 2rem; }
.ecosystem-card {
  background: var(--color-white); border-radius: 12px; padding: 1.1rem; text-align: center;
  border: 1.5px solid var(--border-soft-on-light);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.ecosystem-card:hover { border-color: var(--color-brand-orange); box-shadow: 0 4px 20px rgba(240,120,0,0.08); }
.ecosystem-icon { font-size: 1.4rem; margin-bottom: 0.4rem; }
.ecosystem-name { font-size: 0.75rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.2rem; }
.ecosystem-desc { font-size: 0.68rem; color: var(--text-muted); line-height: 1.4; }

.sobre-badges { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 2rem; }
.sobre-badge { display: flex; align-items: center; gap: 0.4rem; background: var(--color-white); border: 1.5px solid var(--border-soft-on-light); border-radius: 8px; padding: 0.45rem 0.8rem; font-size: 0.72rem; font-weight: 700; color: var(--text-secondary); }

.sobre-visual { background: var(--color-white); border-radius: 20px; padding: 2.5rem; box-shadow: 0 8px 40px var(--shadow-dark-soft); }
.sobre-timeline { display: flex; flex-direction: column; }
.timeline-item { display: flex; gap: 1rem; }
.timeline-dot-wrap { display: flex; flex-direction: column; align-items: center; }
.timeline-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--color-brand-orange); border: 2px solid var(--color-white); flex-shrink: 0; margin-top: 0.2rem; box-shadow: 0 0 0 3px var(--tint-orange-mid); }
.timeline-line { flex: 1; width: 2px; background: linear-gradient(to bottom, rgba(240,120,0,0.4), rgba(240,120,0,0.05)); margin: 4px 0; min-height: 2rem; }
.timeline-year { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.2rem; }
.timeline-text { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 1.5rem; }

/* ============================================================
   BLOG
   ============================================================ */
.blog { padding: 6rem 1.5rem; background: var(--color-white); }
.blog-inner { max-width: 1280px; margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card { border-radius: 16px; overflow: hidden; border: 1.5px solid var(--border-soft-on-light); text-decoration: none; color: inherit; background: var(--color-white); transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr); display: flex; flex-direction: column; }
.blog-card:hover { border-color: rgba(235,118,1,0.3); box-shadow: 0 8px 40px rgba(29,37,46,0.1); transform: translateY(-4px); }
.blog-card-img { height: 175px; overflow: hidden; background: var(--color-brand-black); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-brand-orange); margin-bottom: 0.5rem; }
.blog-card-title { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card-excerpt { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; flex: 1; }
.blog-read-more { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.78rem; font-weight: 700; color: var(--color-brand-orange); }

/* ============================================================
   FINAL CTA — Fundo com curvas
   ============================================================ */
.final-cta {
  padding: 6rem 1.5rem; text-align: center;
  background: var(--color-brand-black);
  position: relative; overflow: hidden;
}
.final-cta::before {
  content:''; position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,120,0,0.1) 0%, transparent 70%);
  top: -250px; left: 50%; transform: translateX(-50%); pointer-events: none;
}
.final-cta::after {
  content:''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 400'%3E%3Cpath d='M0,200 C360,0 720,400 1080,200 S1350,0 1440,100' fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.05'/%3E%3Cpath d='M0,280 C240,80 600,450 900,250 S1200,50 1440,180' fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.03'/%3E%3C/svg%3E");
  background-size: cover;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.final-cta h2 { color: var(--color-white); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.final-cta p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 2.5rem; }
.final-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTATO
   ============================================================ */
.contato { padding: 6rem 1.5rem; background: var(--color-brand-offwhite); }
.contato-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label { font-size: 0.78rem; font-weight: 600; color: var(--text-primary); }
.form-control { padding: 0.75rem 1rem; background: var(--color-white); border: 1.5px solid var(--border-soft-on-light); border-radius: 10px; font-size: 0.9rem; font-family: var(--font); color: var(--text-primary); outline: none; transition: border-color var(--tr); }
.form-control:focus { border-color: var(--color-brand-orange); }
textarea.form-control { resize: vertical; min-height: 110px; }
.btn-submit { width: 100%; padding: 0.9rem; background: var(--color-brand-orange); color: var(--cta-primary-text); font-family: var(--font); font-size: 1rem; font-weight: 700; border: none; border-radius: 10px; cursor: pointer; transition: background var(--tr), transform var(--tr); }
.btn-submit:hover { background: var(--cta-primary-hover); transform: translateY(-1px); }

.offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-top: 1.5rem; }
.office-card { background: var(--color-white); border: 1.5px solid var(--border-soft-on-light); border-radius: 12px; padding: 1.1rem; transition: border-color var(--tr); }
.office-card:hover { border-color: var(--color-brand-orange); }
.office-flag { font-size: 1.2rem; margin-bottom: 0.3rem; }
.office-city { font-size: 0.855rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.2rem; }
.office-addr { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; }

/* Mini-mapa de sedes */
.offices-map { background: var(--color-white); border: 1.5px solid var(--border-soft-on-light); border-radius: 16px; padding: 1.5rem; margin-top: 1rem; }
.offices-map-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); margin-bottom: 1rem; }

.social-row { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(29,37,46,0.06); border: 1px solid rgba(29,37,46,0.12); display: inline-flex; align-items: center; justify-content: center; color: var(--text-secondary); text-decoration: none; transition: background var(--tr), color var(--tr), border-color var(--tr); }
.social-btn:hover { background: var(--color-brand-orange); color: var(--color-white); border-color: transparent; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--color-brand-black); padding: 4rem 1.5rem 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border-soft-on-dark); margin-bottom: 2rem; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin: 1rem 0 1.25rem; }
.footer-socials { display: flex; gap: 0.5rem; }
.footer-socials .social-btn { background: var(--overlay-white-05); border-color: var(--overlay-white-08); color: rgba(255,255,255,0.4); }
.footer-socials .social-btn:hover { background: var(--color-brand-orange); color: var(--color-white); border-color: transparent; }
.footer-certs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.25rem; }
.footer-cert { display: flex; align-items: center; gap: 0.35rem; background: rgba(255,255,255,0.04); border: 1px solid var(--overlay-white-07); border-radius: 7px; padding: 0.35rem 0.7rem; font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.4); }

.footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.3); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a { font-size: 0.855rem; color: var(--overlay-white-5); text-decoration: none; transition: color var(--tr); }
.footer-col ul li a:hover { color: var(--color-brand-orange); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.28); text-decoration: none; transition: color var(--tr); }
.footer-legal a:hover { color: var(--overlay-white-6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .roi-grid { grid-template-columns: repeat(2,1fr); }
  .roi-benefits { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .nfcom-hero { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .menu-btn { display: flex; }

  .hero-content { padding: 3.5rem 1.25rem 0; }
  .hero-browser { display: none; }
  .hero-trust { flex-wrap: wrap; justify-content: center; }

  .solutions-grid { grid-template-columns: 1fr; }
  .solution-detail { grid-template-columns: 1fr; padding: 2rem; }
  .solution-detail-visual { display: none; }

  .roi-grid { grid-template-columns: 1fr 1fr; }
  .roi-benefits { grid-template-columns: 1fr; }

  .platform-dor, .platform-dor.reverse { grid-template-columns: 1fr; direction: ltr; }
  .dor-visual { display: none; }

  .sobre-inner { grid-template-columns: 1fr; }
  .ecosystem { grid-template-columns: 1fr 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contato-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .roi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ecosystem { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NAV DROPDOWN
   ============================================================ */
.nav-item-has-dropdown { position: relative; list-style: none; }
.nav-item-has-dropdown > a { display: inline-flex; align-items: center; gap: 0.28rem; }
.nav-chevron { transition: transform 0.2s ease; flex-shrink: 0; }
.nav-item-has-dropdown:hover .nav-chevron { transform: rotate(180deg); }
/* ponte invisível: mantém :hover ativo enquanto o mouse vai em direção ao dropdown */
.nav-item-has-dropdown::after {
  content: ''; position: absolute; top: 100%; left: -10px; right: -10px; height: 20px;
}

.nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(18,26,38,0.98); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  padding: 0.35rem; min-width: 210px; z-index: 200;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  box-shadow: 0 16px 48px var(--shadow-black-soft);
}
.nav-item-has-dropdown:hover .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}
.nav-dropdown::before {
  content:''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px; background: rgba(18,26,38,0.98);
  border-left: 1px solid rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown-item {
  display: block; color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 0.855rem; font-weight: 500; padding: 0.6rem 0.85rem;
  border-radius: 8px; transition: background var(--tr), color var(--tr);
  white-space: nowrap;
}
.nav-dropdown-item:hover { background: var(--overlay-white-08); color: var(--color-white); }
.nav-dropdown-item.active { color: var(--color-brand-orange); }
.nav-dropdown-sep { height: 1px; background: var(--overlay-white-07); margin: 0.3rem 0.5rem; }

/* ============================================================
   PAGE HERO — inner pages
   ============================================================ */
.page-hero {
  min-height: 54vh; position: relative; overflow: hidden;
  display: flex; align-items: center; padding-top: 72px;
  background: var(--color-brand-black);
}
.page-hero .hero-orb-1 { width: 560px; height: 560px; top: -180px; right: -80px; }
.page-hero .hero-orb-2 { width: 380px; height: 380px; bottom: -80px; left: -80px; }
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 4.5rem 1.5rem;
}
.page-hero-content.centered { text-align: center; }
.page-hero-content.centered .page-hero-title,
.page-hero-content.centered .page-hero-subtitle { margin-left: auto; margin-right: auto; }
.page-hero-content.centered .page-hero-actions { justify-content: center; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(235,118,1,0.1); border: 1px solid rgba(235,118,1,0.25);
  color: var(--color-brand-orange); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.page-hero-title {
  font-size: clamp(1.9rem, 4vw, 3.4rem); font-weight: 800;
  line-height: 1.1; color: var(--color-white); letter-spacing: -0.025em;
  margin-bottom: 1.25rem; max-width: 780px;
}
.page-hero-title .accent { color: var(--color-brand-orange); }
.page-hero-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.08rem); color: var(--overlay-white-5);
  line-height: 1.72; max-width: 580px; margin-bottom: 2.5rem;
}
.page-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.page-hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap; margin-top: 3rem;
  padding-top: 2.5rem; border-top: 1px solid var(--overlay-white-08);
}
.page-hero-stat-value { font-size: 2rem; font-weight: 800; color: var(--color-brand-orange); line-height: 1; margin-bottom: 0.3rem; }
.page-hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.4; }

/* ============================================================
   FEATURES GRID — reutilizável para páginas de produto
   ============================================================ */
.features-section { padding: 6rem 1.5rem; background: var(--color-white); }
.features-inner { max-width: 1280px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.feature-card {
  background: var(--color-brand-offwhite); border: 1.5px solid var(--border-soft-on-light);
  border-radius: 16px; padding: 2rem;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.feature-card:hover { border-color: rgba(235,118,1,0.4); box-shadow: 0 8px 40px rgba(29,37,46,0.1); transform: translateY(-3px); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(235,118,1,0.12), rgba(235,118,1,0.04));
  border: 1px solid rgba(235,118,1,0.2);
  display: flex; align-items: center; justify-content: center; color: var(--color-brand-orange);
}
.feature-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.feature-desc { font-size: 0.855rem; color: var(--text-secondary); line-height: 1.65; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-section { padding: 6rem 1.5rem; background: var(--color-brand-offwhite); }
.process-inner { max-width: 1280px; margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; }
.process-steps::before {
  content:''; position: absolute; top: 20px; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--color-brand-orange), transparent); opacity: 0.3;
  pointer-events: none;
}
.process-step { position: relative; }
.process-step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-brand-orange); color: var(--color-white);
  font-size: 0.9rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.process-step-title { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.4rem; }
.process-step-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   CASES PAGE
   ============================================================ */
.cases-page-section { padding: 6rem 1.5rem; background: var(--color-brand-offwhite); }
.cases-page-inner { max-width: 1280px; margin: 0 auto; }
.cases-grid-page { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.case-card {
  background: var(--color-white); border: 1.5px solid var(--border-soft-on-light);
  border-radius: 16px; padding: 2rem;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
  display: flex; flex-direction: column;
}
.case-card:hover { border-color: rgba(235,118,1,0.3); box-shadow: 0 8px 40px rgba(29,37,46,0.1); transform: translateY(-4px); }
.case-thumb { width: calc(100% + 4rem); margin: -2rem -2rem 1.5rem; height: 160px; overflow: hidden; border-radius: 14px 14px 0 0; background: var(--color-brand-black); }
.case-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s var(--ease); }
.case-card:hover .case-thumb img { transform: scale(1.04); }
.case-logo { font-size: 0.9rem; font-weight: 800; color: var(--color-brand-navy); margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 0.04em; }
.case-industry { font-size: 0.66rem; font-weight: 600; color: var(--color-brand-orange); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 1rem; }
.case-result { display: inline-block; background: rgba(235,118,1,0.08); color: var(--color-brand-orange); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.03em; padding: 0.25rem 0.7rem; border-radius: 100px; margin-bottom: 0.75rem; }
.case-title { font-size: 0.92rem; font-weight: 700; color: var(--text-primary); line-height: 1.4; flex: 1; margin-bottom: 1.25rem; }
.case-read { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.78rem; font-weight: 700; color: var(--color-brand-orange); text-decoration: none; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-page { padding: 5rem 1.5rem; background: var(--color-white); }
.blog-page-inner { max-width: 1280px; margin: 0 auto; }
.blog-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; margin-bottom: 5rem; padding-bottom: 5rem; border-bottom: 1px solid var(--border-soft-on-light); }
.blog-featured-img { height: 340px; border-radius: 20px; overflow: hidden; background: var(--color-brand-black); }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.blog-featured-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-brand-orange); }
.blog-featured-date { font-size: 0.72rem; color: var(--text-muted); }
.blog-featured-title { font-size: 1.65rem; font-weight: 800; color: var(--text-primary); line-height: 1.25; margin-bottom: 1rem; }
.blog-featured-excerpt { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.72; margin-bottom: 1.5rem; }
.blog-cats { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.blog-cat-btn {
  padding: 0.38rem 1rem; border-radius: 100px; font-size: 0.78rem; font-weight: 600;
  background: var(--color-brand-offwhite); border: 1.5px solid var(--border-soft-on-light); color: var(--text-secondary);
  cursor: pointer; transition: background var(--tr), border-color var(--tr), color var(--tr);
}
.blog-cat-btn:hover { background: var(--color-brand-black); border-color: var(--color-brand-black); color: var(--color-white); }
.blog-cat-btn.active { background: var(--color-brand-orange); border-color: var(--color-brand-orange); color: var(--color-white); }
.blog-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

/* ============================================================
   SOBRE — VALUES
   ============================================================ */
.values-section { padding: 6rem 1.5rem; background: var(--color-white); }
.values-inner { max-width: 1280px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 3.5rem; }
.value-card {
  background: var(--color-brand-offwhite); border: 1.5px solid var(--border-soft-on-light); border-radius: 16px; padding: 2rem;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.value-card:hover { border-color: var(--color-brand-orange); box-shadow: 0 4px 24px rgba(235,118,1,0.08); }
.value-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.value-name { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.4rem; }
.value-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; margin-top: 3.5rem; }
.benefits-group { background: var(--color-white); border-radius: 20px; padding: 2.5rem; border: 1.5px solid var(--border-soft-on-light); }
.benefits-group-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; flex-shrink: 0; font-size: 1.6rem; }
.benefits-group h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.75rem; }
.benefits-group ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.benefits-group li { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.5; display: flex; gap: 0.5rem; }
.benefits-group li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--color-brand-orange); margin-top: 0.5rem; flex-shrink: 0; }
.team-quote-stars { color: var(--legacy-feedback-amber); font-size: 0.85rem; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.benefits-group-title { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 1rem; }
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.benefits-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.855rem; color: var(--text-secondary); line-height: 1.5; }
.benefits-list li::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--color-brand-orange); margin-top: 0.45rem; flex-shrink: 0; }
.team-quotes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.team-quote-card { background: var(--color-white); border: 1.5px solid var(--border-soft-on-light); border-radius: 16px; padding: 2rem; }
.team-quote-text { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.72; font-style: italic; margin-bottom: 1.5rem; }
.team-quote-author { display: flex; align-items: center; gap: 0.75rem; }
.team-quote-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-white); font-size: 0.9rem; font-weight: 800; flex-shrink: 0; }
.team-quote-name { font-size: 0.855rem; font-weight: 700; color: var(--text-primary); }
.team-quote-role { font-size: 0.72rem; color: var(--text-muted); }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.produtos-section { padding: 6rem 1.5rem; background: var(--color-white); }
.produtos-inner { max-width: 1280px; margin: 0 auto; }
.produto-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  padding: 3.5rem; background: var(--color-brand-offwhite); border: 1.5px solid var(--border-soft-on-light);
  border-radius: 24px; margin-bottom: 2rem;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.produto-card:hover { border-color: rgba(235,118,1,0.3); box-shadow: 0 12px 50px rgba(29,37,46,0.1); }
.produto-card.dark { background: var(--color-brand-black); border-color: var(--overlay-white-08); }
.produto-card.dark:hover { border-color: rgba(235,118,1,0.35); }
.produto-badge {
  display: inline-block; background: rgba(235,118,1,0.1); color: var(--color-brand-orange);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.28rem 0.75rem; border-radius: 100px; margin-bottom: 1rem;
}
.produto-soon { background: rgba(251,191,36,0.12); color: var(--legacy-feedback-warn); border: 1px solid var(--tint-feedback-warn-border); }
.produto-name { font-size: 1.75rem; font-weight: 800; color: var(--text-primary); margin-bottom: 0.75rem; line-height: 1.2; }
.produto-card.dark .produto-name { color: var(--color-white); }
.produto-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.5rem; }
.produto-card.dark .produto-desc { color: rgba(255,255,255,0.58); }
.produto-features { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 2rem; }
.produto-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.855rem; color: var(--text-secondary); line-height: 1.5; }
.produto-card.dark .produto-features li { color: rgba(255,255,255,0.7); }
.produto-features li::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--color-brand-orange); margin-top: 0.45rem; flex-shrink: 0; }
.produto-visual {
  background: var(--color-white); border-radius: 20px; padding: 2.5rem;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1.5rem;
  min-height: 250px; box-shadow: 0 8px 40px var(--shadow-dark-mid);
  border: 1px solid var(--border-soft-on-light);
}
.produto-card.dark .produto-visual { background: rgba(255,255,255,0.04); border-color: var(--overlay-white-08); box-shadow: none; }
.produto-visual-icon { font-size: 3.5rem; }
.produto-visual-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); }
.produto-card.dark .produto-visual-label { color: rgba(255,255,255,0.3); }

/* ============================================================
   RESPONSIVE — NEW COMPONENTS
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .cases-grid-page { grid-template-columns: repeat(2,1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .team-quotes-grid { grid-template-columns: 1fr 1fr; }
  .produto-card { gap: 2.5rem; padding: 2.5rem; }
  .blog-full-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .page-hero-content { padding: 3rem 1.25rem; }
  .page-hero-stats { gap: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .cases-grid-page { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .team-quotes-grid { grid-template-columns: 1fr; }
  .blog-full-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .produto-card { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
  .produto-visual { min-height: 180px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .case-metrics { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   ARTICLE / BLOG POST PAGE
   ============================================================ */
.article-hero {
  background: var(--color-brand-black);
  padding: 7rem 1.5rem 3.5rem;
  position: relative; overflow: hidden;
}
.article-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(235,118,1,0.12), transparent 70%);
  pointer-events: none;
}
.article-hero-inner {
  max-width: 820px; margin: 0 auto; position: relative; z-index: 1;
}
.article-breadcrumb {
  font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.25rem;
}
.article-breadcrumb a { color: var(--color-brand-orange); text-decoration: none; }
.article-breadcrumb a:hover { text-decoration: underline; }
.article-cat-pill {
  display: inline-block; background: rgba(235,118,1,0.15); color: var(--color-brand-orange);
  border: 1px solid rgba(235,118,1,0.3); border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.3rem 0.9rem; margin-bottom: 1.25rem; text-transform: uppercase;
}
.article-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800;
  color: var(--color-white); line-height: 1.2; margin-bottom: 1.25rem;
}
.article-meta {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 2rem;
}
.article-meta span { display: flex; align-items: center; gap: 0.35rem; }
.article-hero-img {
  width: 100%; max-height: 420px; object-fit: cover;
  border-radius: 16px; border: 1px solid var(--overlay-white-08);
}

.article-section {
  padding: 4rem 1.5rem 5rem; background: var(--color-white);
}
.article-layout {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 300px; gap: 3.5rem; align-items: start;
}
.prose { color: var(--text-primary); }
.prose h2 {
  font-size: 1.45rem; font-weight: 700; color: var(--color-brand-black);
  margin: 2.5rem 0 1rem; padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(235,118,1,0.2);
}
.prose h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--color-brand-black);
  margin: 2rem 0 0.75rem;
}
.prose h4 {
  font-size: 1rem; font-weight: 700; color: var(--color-brand-orange);
  margin: 1.5rem 0 0.5rem; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.82rem;
}
.prose p {
  font-size: 1rem; line-height: 1.8; color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.prose ul, .prose ol {
  padding-left: 1.5rem; margin-bottom: 1.5rem;
}
.prose li {
  font-size: 1rem; line-height: 1.75; color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.prose strong { color: var(--color-brand-black); font-weight: 700; }
.prose blockquote {
  border-left: 4px solid var(--color-brand-orange); padding: 1rem 1.5rem;
  background: rgba(235,118,1,0.05); border-radius: 0 8px 8px 0;
  margin: 2rem 0; font-style: italic; color: var(--text-secondary);
}
.prose .highlight-box {
  background: rgba(235,118,1,0.07);
  border: 1px solid rgba(235,118,1,0.2); border-radius: 12px;
  padding: 1.5rem 2rem; margin: 2rem 0;
}
.prose .highlight-box p { margin-bottom: 0; }
.prose .highlight-box strong { color: var(--color-brand-orange); }

.article-sidebar {
  position: sticky; top: 100px;
}
.sidebar-cta-box {
  background: var(--color-brand-black); border-radius: 16px;
  padding: 2rem; border: 1px solid var(--overlay-white-08);
  margin-bottom: 1.5rem;
}
.sidebar-cta-box h3 {
  color: var(--color-white); font-size: 1.1rem; font-weight: 700;
  margin-bottom: 0.75rem; line-height: 1.35;
}
.sidebar-cta-box p {
  color: var(--text-muted); font-size: 0.88rem; line-height: 1.6;
  margin-bottom: 1.25rem;
}
.sidebar-cta-box .btn-primary { width: 100%; justify-content: center; font-size: 0.9rem; }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.sidebar-tag {
  font-size: 0.72rem; font-weight: 600; color: var(--text-muted);
  background: rgba(29,37,46,0.06); border: 1px solid var(--border-soft-on-light);
  padding: 0.3rem 0.75rem; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.04em;
}

/* ============================================================
   CASE STUDY PAGE
   ============================================================ */
.case-hero {
  background: var(--color-brand-black); padding: 7rem 1.5rem 3.5rem; position: relative; overflow: hidden;
}
.case-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 30%, rgba(235,118,1,0.06), transparent 70%);
  pointer-events: none;
}
.case-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.case-hero-breadcrumb { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.case-hero-breadcrumb a { color: var(--color-brand-orange); text-decoration: none; }
.case-hero-breadcrumb a:hover { text-decoration: underline; }
.case-hero-industry {
  display: inline-block; background: rgba(235,118,1,0.08); color: var(--color-brand-orange);
  border: 1px solid rgba(235,118,1,0.3); border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.9rem;
  margin-bottom: 1.25rem; letter-spacing: 0.04em; text-transform: uppercase;
}
.case-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800;
  color: var(--color-white); line-height: 1.2; margin-bottom: 2rem;
}
.case-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-bottom: 2rem;
}
.case-metric-box {
  background: var(--overlay-white-05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 1.25rem 1.5rem;
}
.case-metric-value {
  font-size: 1.75rem; font-weight: 800; color: var(--color-brand-orange);
  line-height: 1; margin-bottom: 0.35rem;
}
.case-metric-label { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }
.case-hero-img {
  width: 100%; max-height: 380px; object-fit: cover;
  border-radius: 16px; border: 1px solid var(--overlay-white-08);
}

.case-section { padding: 4rem 1.5rem 5rem; background: var(--color-white); }
.case-layout {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 300px; gap: 3.5rem; align-items: start;
}
.case-quote-block {
  background: linear-gradient(135deg, var(--color-brand-black) 0%, var(--legacy-shade-navy-mid) 100%);
  border-radius: 16px; padding: 2rem 2.5rem;
  border: 1px solid var(--overlay-white-08);
  margin: 2.5rem 0;
}
.case-quote-text {
  font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,0.9);
  line-height: 1.75; margin-bottom: 1.25rem;
}
.case-quote-text::before { content: '\201C'; color: var(--color-brand-orange); font-size: 2rem; line-height: 0; vertical-align: -0.5rem; margin-right: 0.2rem; }
.case-quote-author { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.case-quote-author strong { color: var(--color-white); }

.case-result-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem; margin: 2.5rem 0; padding: 2rem;
  background: rgba(235,118,1,0.05);
  border: 1px solid rgba(235,118,1,0.15); border-radius: 16px;
}
.result-item { text-align: center; }
.result-value { font-size: 1.5rem; font-weight: 800; color: var(--color-brand-orange); }
.result-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.25rem; }

@media (max-width: 768px) {
  .case-metrics { grid-template-columns: repeat(2, 1fr); }
  .case-layout { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}
}

/* ============================================================
   HOME · MOCKUP V5 — estilos escopados a body.home-page
   Não afetam outras páginas internas do site.
   Fonte: files.zip-atualizacao-site-ng/mockup-ngbilling-v5.html
   ============================================================ */

/* Eyebrow contextual — Decisão 4 da Tarefa B */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--_eyebrow-color, var(--text-eyebrow));
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
body.home-page { --_eyebrow-color: var(--text-eyebrow); }
body.home-page .section,
body.home-page .logos-strip,
body.home-page .cases-section,
body.home-page .blog-section {
  --_eyebrow-color: var(--text-eyebrow-on-light);
}

body.home-page { background: var(--surface-base); }
body.home-page .home-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

body.home-page h1, body.home-page h2, body.home-page h3 { letter-spacing: -0.5px; }
body.home-page h1 { font-weight: 700; letter-spacing: -1.5px; }
body.home-page h2 { font-weight: 700; letter-spacing: -1px; }
body.home-page h3 { font-weight: 600; }
body.home-page .text-accent { color: var(--text-accent); }
body.home-page .on-dark { color: var(--text-on-dark); }
body.home-page .center-wrap { text-align: center; }

/* Botões — override de tamanho escopado (mantém cores do sistema) */
body.home-page .btn-primary,
body.home-page .btn-secondary-on-dark {
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 6px;
  gap: 8px;
  font-weight: 600;
}
body.home-page .btn-secondary-on-dark {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--border-dark);
  font-family: var(--font);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  line-height: 1;
}
body.home-page .btn-secondary-on-dark:hover {
  background: var(--color-brand-navy-soft);
  border-color: var(--color-brand-navy-soft);
}

/* HERO — substitui visual do site original na home */
body.home-page .hero {
  background: linear-gradient(180deg, var(--surface-premium) 0%, var(--surface-deep) 100%);
  padding: 120px 0 80px;   /* +60px topo para compensar navbar fixa de 72px */
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
  min-height: auto;
}
body.home-page .hero::after {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--glow-orange-soft) 0%, transparent 60%);
  pointer-events: none;
}
body.home-page .hero-tags {
  display: flex; justify-content: center; gap: 12px;
  margin-bottom: 32px; flex-wrap: wrap;
}
body.home-page .hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-brand-navy-soft);
  border: 1px solid var(--border-dark);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--text-muted-on-dark);
}
body.home-page .hero-tag .dot {
  width: 6px; height: 6px;
  background: var(--color-brand-orange);
  border-radius: 50%;
}
body.home-page .hero h1 {
  font-size: 64px; line-height: 1.05;
  max-width: 920px; margin: 0 auto 24px;
  text-align: center; color: var(--text-on-dark);
}
body.home-page .hero-sub {
  font-size: 17px; color: var(--text-muted-on-dark);
  max-width: 680px; margin: 0 auto 36px;
  text-align: center; line-height: 1.6;
}
body.home-page .hero-ctas {
  display: flex; gap: 16px; justify-content: center;
  margin-bottom: 56px; flex-wrap: wrap;
}

body.home-page .dashboard-mock {
  background: var(--surface-premium);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  max-width: 980px; margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
body.home-page .dashboard-mock-top {
  background: var(--surface-elevated);
  padding: 12px 16px;
  display: flex; gap: 6px;
  border-bottom: 1px solid var(--border-dark);
}
body.home-page .dashboard-mock-top span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-dark);
}
body.home-page .dashboard-mock-body {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
}
body.home-page .dash-metric {
  background: var(--surface-deep);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 16px;
}
body.home-page .dash-metric .label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted-on-dark);
  margin-bottom: 8px;
}
body.home-page .dash-metric .value {
  font-size: 22px; font-weight: 700;
  color: var(--color-white);
}
body.home-page .dash-metric.accent .value { color: var(--color-brand-orange); }

body.home-page .hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
}
body.home-page .hero-split .hero-tags {
  justify-content: flex-start;
  margin-bottom: 24px;
}
body.home-page .hero-split h1 {
  text-align: left;
  margin: 0 0 20px;
  font-size: 56px;
  max-width: none;
}
body.home-page .hero-split .hero-sub {
  text-align: left;
  margin: 0 0 32px;
  max-width: none;
}
body.home-page .hero-split .hero-ctas {
  justify-content: flex-start;
  margin-bottom: 0;
}

body.home-page .hero-notebook {
  max-width: 520px;
  width: 100%;
  margin: 0;
  justify-self: end;
  display: flex;
  justify-content: center;
  position: relative;
  animation: heroNotebookFloat 4.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
}
body.home-page .hero-notebook img {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes heroNotebookFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  body.home-page .hero-notebook { animation: none; }
}
@media (max-width: 960px) {
  body.home-page .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  body.home-page .hero-split .hero-tags { justify-content: center; }
  body.home-page .hero-split h1 { text-align: center; font-size: 48px; }
  body.home-page .hero-split .hero-sub { text-align: center; margin-left: auto; margin-right: auto; max-width: 680px; }
  body.home-page .hero-split .hero-ctas { justify-content: center; }
  body.home-page .hero-notebook { justify-self: center; }
}

/* FAIXA DE LOGOS */
body.home-page .logos-strip {
  background: var(--surface-neutral);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}
body.home-page .logos-strip-inner {
  display: flex; justify-content: space-around;
  align-items: center; flex-wrap: wrap; gap: 32px;
}
body.home-page .client-logo {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
body.home-page .client-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}
body.home-page .client-logo[alt="Hughes"],
body.home-page .client-logo[alt="Vero"] { height: 32px; }
body.home-page .client-logo[alt="Ligga"] { height: 92px; }
body.home-page .client-logo[alt="Netserv"],
body.home-page .client-logo[alt="Petronect"] { height: 160px; }

/* BLOCO CADEIA DE CONSISTÊNCIA */
body.home-page .leakage-section {
  background: var(--surface-premium);
  padding: 80px 0;
  color: var(--text-on-dark);
  position: relative; overflow: hidden;
}
body.home-page .leakage-section::before {
  content: "";
  position: absolute;
  top: -200px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(235,118,1,0.08) 0%, transparent 60%);
  pointer-events: none;
}
body.home-page .leakage-section::after {
  content: "";
  position: absolute;
  bottom: -200px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(20,33,61,0.45) 0%, transparent 60%);
  pointer-events: none;
}
body.home-page .leakage-wrapper {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
body.home-page .leakage-left h2 {
  font-size: 38px; line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 20px;
}
body.home-page .leakage-left .sub {
  font-size: 15px; color: var(--text-muted-on-dark);
  line-height: 1.65; margin-bottom: 32px;
  max-width: 480px;
}
body.home-page .slider-group { margin-bottom: 24px; }
body.home-page .slider-group:last-of-type { margin-bottom: 28px; }
body.home-page .slider-head {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 10px;
}
body.home-page .slider-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-muted-on-dark);
  text-transform: uppercase; letter-spacing: 0.5px;
}
body.home-page .slider-value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px; font-weight: 600;
  color: var(--color-brand-orange);
}
body.home-page input[type="range"].leakage-slider {
  width: 100%; height: 4px;
  -webkit-appearance: none; appearance: none;
  background: var(--color-brand-navy-soft);
  border-radius: 3px;
  outline: none; cursor: pointer;
}
body.home-page input[type="range"].leakage-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--color-brand-orange);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(235,118,1,0.18);
  transition: transform 0.15s;
}
body.home-page input[type="range"].leakage-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
body.home-page input[type="range"].leakage-slider::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--color-brand-orange);
  cursor: pointer; border: none;
  box-shadow: 0 0 0 4px rgba(235,118,1,0.18);
}
body.home-page input[type="range"].leakage-slider:focus-visible {
  outline: var(--focus-ring-width) solid var(--focus-ring);
  outline-offset: 6px; border-radius: 4px;
}
body.home-page .slider-range {
  display: flex; justify-content: space-between;
  margin-top: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--text-muted-on-dark);
  opacity: 0.6;
}
body.home-page .leakage-source {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  color: var(--text-muted-on-dark);
  opacity: 0.7; line-height: 1.6;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
  margin-top: 24px;
}
body.home-page .leakage-right {
  background: var(--surface-deep);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 32px; position: relative;
}
body.home-page .leakage-right-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--text-muted-on-dark);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
body.home-page .leakage-right-label::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--signal-loss);
  border-radius: 50%;
  animation: leakagePulse 1.8s ease-in-out infinite;
}
@keyframes leakagePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}
body.home-page .kpi-stack {
  display: flex; flex-direction: column;
  gap: 16px; margin-bottom: 28px;
}
body.home-page .kpi-row {
  background: var(--surface-elevated);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 18px 20px;
  position: relative; overflow: hidden;
}
body.home-page .kpi-row::before {
  content: ""; position: absolute;
  top: 0; left: 0; bottom: 0; width: 3px;
}
body.home-page .kpi-row.red::before    { background: var(--signal-loss); }
body.home-page .kpi-row.amber::before  { background: var(--signal-risk); }
body.home-page .kpi-row.orange::before { background: var(--color-brand-orange); }
body.home-page .kpi-row .kpi-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--text-muted-on-dark);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 8px;
}
body.home-page .kpi-row .kpi-value {
  font-size: 32px; font-weight: 700;
  line-height: 1; letter-spacing: -1px;
  font-family: 'IBM Plex Mono', monospace;
}
body.home-page .kpi-row.red    .kpi-value { color: var(--signal-loss); }
body.home-page .kpi-row.amber  .kpi-value { color: var(--signal-risk); }
body.home-page .kpi-row.orange .kpi-value { color: var(--color-brand-orange); }
body.home-page .kpi-row.featured .kpi-value { font-size: 44px; }
body.home-page .kpi-row .kpi-sub {
  font-size: 11px;
  color: var(--text-muted-on-dark);
  margin-top: 4px;
}
body.home-page .leakage-cta-wrap { text-align: center; }
body.home-page .leakage-cta-hint {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--text-muted-on-dark);
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 14px; opacity: 0.7;
}

/* SEÇÕES GERAIS */
body.home-page .section { padding: 100px 0; }
body.home-page .section-title-home {
  text-align: center; font-size: 44px;
  line-height: 1.15; margin-bottom: 16px;
  color: var(--text-primary);
  font-weight: 700; letter-spacing: -1px;
}
body.home-page .section-sub-home {
  text-align: center;
  color: var(--text-secondary);
  max-width: 640px; margin: 0 auto 56px;
  font-size: 16px; line-height: 1.6;
}

/* PLATAFORMA — feature grid */
body.home-page .feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
body.home-page .feature-grid .feature-card {
  background: var(--surface-base);
  border: 1px solid var(--border-light);
  padding: 28px; border-radius: 10px;
  transition: all 0.3s;
  position: relative;
  display: flex; align-items: flex-start; gap: 20px;
  flex-direction: row;        /* reset do .feature-card global */
  text-align: left;
}
body.home-page .feature-grid .feature-card:hover {
  border-color: var(--color-brand-orange);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(20,33,61,0.08);
}
body.home-page .feature-card .icon-wrap {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--tint-orange-soft);
  color: var(--color-brand-orange);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
}
body.home-page .feature-card .icon-wrap svg {
  width: 22px; height: 22px; stroke-width: 1.8;
}
body.home-page .feature-card .content { flex: 1; }
body.home-page .feature-card h3 {
  font-size: 18px; margin-bottom: 6px;
  color: var(--text-primary);
}
body.home-page .feature-card p {
  color: var(--text-secondary);
  font-size: 14px; line-height: 1.55;
}
body.home-page .feature-card .arrow {
  position: absolute; top: 28px; right: 28px;
  color: var(--color-brand-orange);
  opacity: 0.5; transition: all 0.3s;
}
body.home-page .feature-card:hover .arrow {
  opacity: 1; transform: translateX(4px);
}
body.home-page .feature-spotlight {
  background: var(--surface-premium);
  color: var(--text-on-dark);
  border-radius: 12px;
  padding: 40px; margin-top: 28px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 40px;
  position: relative; overflow: hidden;
}
body.home-page .feature-spotlight::before {
  content: ""; position: absolute;
  top: 0; right: 0;
  width: 280px; height: 100%;
  background: linear-gradient(135deg, transparent 0%, var(--color-brand-navy) 100%);
  opacity: 0.55; z-index: 0;
}
body.home-page .feature-spotlight > * { position: relative; z-index: 1; }
body.home-page .feature-spotlight h3 {
  font-size: 22px; margin-bottom: 16px;
  color: var(--color-white);
}
body.home-page .feature-spotlight ul {
  list-style: none; display: grid;
  grid-template-columns: 1fr 1fr; gap: 8px 24px;
  padding: 0; margin: 0;
}
body.home-page .feature-spotlight ul li {
  font-size: 14px;
  color: var(--text-muted-on-dark);
  padding-left: 18px; position: relative;
}
body.home-page .feature-spotlight ul li::before {
  content: "•";
  color: var(--color-brand-orange);
  position: absolute; left: 0; font-weight: 700;
}
body.home-page .feature-spotlight .ico-circle {
  width: 80px; height: 80px;
  background: var(--surface-deep);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-brand-orange);
}
body.home-page .feature-spotlight .ico-circle svg { width: 36px; height: 36px; }

/* MÉTRICAS — navy + 4 blocks + 3 selos */
body.home-page .metrics-section {
  background: var(--surface-deep);
  padding: 100px 0;
  color: var(--text-on-dark);
}
body.home-page .metrics-section .section-title-home { color: var(--text-on-dark); }
body.home-page .metrics-section .section-sub-home { color: var(--text-muted-on-dark); }
body.home-page .metrics-section .eyebrow { color: var(--text-eyebrow); }
body.home-page .metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 32px;
}
body.home-page .metric-block {
  background: var(--surface-elevated);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center; transition: all 0.3s;
}
body.home-page .metric-block:hover {
  border-color: var(--color-brand-orange);
  transform: translateY(-3px);
}
body.home-page .metric-block .number {
  font-size: 48px; font-weight: 800;
  color: var(--color-brand-orange);
  letter-spacing: -2px; line-height: 1;
  margin-bottom: 12px;
}
body.home-page .metric-block .desc {
  font-size: 13px;
  color: var(--text-muted-on-dark);
  line-height: 1.5;
}
body.home-page .seals-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
body.home-page .seal-block {
  background: var(--surface-elevated);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: border-color 0.3s;
}
body.home-page .seal-block:hover { border-color: var(--color-brand-orange); }
body.home-page .seal-block .seal-icon {
  width: 36px; height: 36px;
  background: rgba(235,118,1,0.10);
  color: var(--color-brand-orange);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
body.home-page .seal-block .seal-icon svg { width: 18px; height: 18px; }
body.home-page .seal-block .seal-content h4 {
  font-size: 14px; font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
}
body.home-page .seal-block .seal-content p {
  font-size: 12px;
  color: var(--text-muted-on-dark);
  line-height: 1.5;
}

/* CASES — off-white + filtros + 3 cards pretos */
body.home-page .cases-section {
  background: var(--surface-neutral);
  padding: 100px 0;
}
body.home-page .cases-filters {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 8px;
  margin-bottom: 48px;
}
body.home-page .filter-pill {
  background: var(--surface-base);
  border: 1px solid var(--color-neutral-300);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
}
body.home-page .filter-pill:hover,
body.home-page .filter-pill.active {
  background: var(--color-brand-navy);
  color: var(--color-white);
  border-color: var(--color-brand-navy);
}
body.home-page .cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 48px;
}
body.home-page .cases-grid .case-card {
  background: var(--surface-premium);
  color: var(--text-on-dark);
  border-radius: 12px;
  padding: 28px;
  position: relative; overflow: hidden;
  border: none;
  border-top: 3px solid var(--color-brand-orange);
  display: block; text-align: left;
}
body.home-page .cases-grid .case-card::after {
  content: ""; position: absolute;
  bottom: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, var(--color-brand-navy) 0%, transparent 70%);
  opacity: 0.6;
}
body.home-page .cases-grid .case-card .tag {
  display: inline-block;
  background: var(--color-brand-navy);
  color: var(--text-muted-on-dark);
  padding: 4px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 16px;
}
body.home-page .cases-grid .case-card h3 {
  font-size: 18px; margin-bottom: 12px;
  line-height: 1.35;
  color: var(--color-white);
}
body.home-page .cases-grid .case-card p {
  font-size: 13px;
  color: var(--text-muted-on-dark);
  margin-bottom: 20px;
  line-height: 1.55;
}
body.home-page .cases-grid .case-card .author {
  display: flex; align-items: center; gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border-dark);
  position: relative; z-index: 1;
}
body.home-page .cases-grid .case-card .avatar {
  width: 32px; height: 32px;
  background: var(--color-brand-orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px;
  color: var(--cta-primary-text);
}
body.home-page .cases-grid .case-card .author-info { font-size: 12px; }
body.home-page .cases-grid .case-card .author-info .name {
  font-weight: 600; color: var(--color-white);
}
body.home-page .cases-grid .case-card .author-info .role {
  color: var(--text-muted-on-dark); font-size: 11px;
}

/* BLOG */
body.home-page .blog-section { padding: 100px 0; }
body.home-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
body.home-page .blog-grid .blog-card {
  background: var(--surface-base);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
body.home-page .blog-grid .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(20,33,61,0.1);
  border-color: var(--color-brand-orange);
}
body.home-page .blog-grid .blog-card .img {
  height: 180px; position: relative; overflow: hidden;
}
body.home-page .blog-grid .blog-card .img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s var(--ease);
}
body.home-page .blog-grid .blog-card:hover .img img {
  transform: scale(1.05);
}
body.home-page .blog-grid .blog-card .img.v1 {
  background:
    radial-gradient(circle at 20% 30%, rgba(235,118,1,0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(31,45,82,0.6) 0%, transparent 50%),
    linear-gradient(135deg, var(--color-brand-black) 0%, var(--color-brand-navy) 100%);
}
body.home-page .blog-grid .blog-card .img.v2 {
  background:
    radial-gradient(ellipse at top right, rgba(235,118,1,0.3) 0%, transparent 60%),
    linear-gradient(135deg, var(--color-brand-navy) 0%, var(--color-brand-navy-deep) 100%);
}
body.home-page .blog-grid .blog-card .img.v3 {
  background:
    radial-gradient(circle at 50% 50%, rgba(235,118,1,0.5) 0%, transparent 40%),
    linear-gradient(180deg, var(--color-brand-navy-deep) 0%, var(--color-brand-navy-soft) 100%);
}
body.home-page .blog-grid .blog-card .body {
  padding: 24px; flex: 1;
  display: flex; flex-direction: column;
}
body.home-page .blog-grid .blog-card .meta {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--color-brand-orange);
  margin-bottom: 12px;
}
body.home-page .blog-grid .blog-card .meta .dot {
  color: var(--text-muted); margin: 0 4px;
}
body.home-page .blog-grid .blog-card h3 {
  font-size: 16px; line-height: 1.4;
  margin-bottom: 16px;
  color: var(--text-primary); flex: 1;
}
body.home-page .blog-grid .blog-card .read-more {
  color: var(--color-brand-orange);
  text-decoration: none; font-weight: 600;
  font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s; margin-top: auto;
}
body.home-page .blog-grid .blog-card .read-more:hover { gap: 10px; }
body.home-page .blog-section .link-arrow {
  color: var(--color-brand-orange);
  text-decoration: none; font-weight: 600;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
body.home-page .blog-section .link-arrow:hover { gap: 10px; }

/* CTA FINAL — escopado para sobrescrever o .final-cta global */
body.home-page .final-cta {
  background: var(--surface-deep);
  color: var(--text-on-dark);
  padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
body.home-page .final-cta::before {
  content: ""; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, var(--glow-orange-soft) 0%, transparent 70%);
  pointer-events: none;
}
body.home-page .final-cta > * { position: relative; z-index: 1; }
body.home-page .final-cta h2 {
  font-size: 44px; margin-bottom: 32px;
  line-height: 1.15;
  color: var(--text-on-dark);
}
body.home-page .final-cta-buttons {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}

/* FOOTER da home — navy-deep */
body.home-page .footer {
  background: var(--surface-elevated);
  color: var(--text-muted-on-dark);
}

/* Responsivo */
@media (max-width: 968px) {
  body.home-page .leakage-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  body.home-page .leakage-left h2 { font-size: 30px; }
}
@media (max-width: 768px) {
  body.home-page .hero { padding: 100px 0 60px; }
  body.home-page .hero h1 { font-size: 40px; }
  body.home-page .section-title-home { font-size: 30px; }
  body.home-page .final-cta h2 { font-size: 30px; }
  body.home-page .feature-grid,
  body.home-page .metrics-row,
  body.home-page .seals-row,
  body.home-page .cases-grid,
  body.home-page .blog-grid {
    grid-template-columns: 1fr;
  }
  body.home-page .dashboard-mock-body { grid-template-columns: 1fr 1fr; }
  body.home-page .hero-notebook { max-width: 360px; }
  body.home-page .hero-split h1 { font-size: 40px; }
  body.home-page .feature-spotlight { grid-template-columns: 1fr; }
  body.home-page .kpi-row .kpi-value { font-size: 26px; }
  body.home-page .kpi-row.featured .kpi-value { font-size: 34px; }
}
