@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Tektur:wght@800;900&display=swap');
/* =============================================
   CREATIVE CORE — DESIGN SYSTEM (style.css)
   Arquitetura: Brutalista Square · Zero arredondamentos
   Dark/Light token system · Design Harmony v2
   =============================================

   TABLE OF CONTENTS
   ─────────────────────────────────────────────
    §01  DESIGN TOKENS (CSS custom properties)  ~7
    §02  HEADER / NAV                           ~191
    §03  HERO V3 — Giant Typography             ~492
    §04  INFINITE MARQUEE                       ~719
    §05  SECTION SHARED STYLES                  ~754
    §06  CASES — Bento Square System            ~832
    §07  ESPECIALIDADES — Split Card            ~1032
    §08  HORIZONTAL SCROLL (Capabilities)       ~1244
    §09  PROCESSO — Red Design                  ~1424
    §10  3D TILT                                ~1587
    §11  FAQ                                    ~1593
    §12  BLOG SECTION                           ~1652
    §13  FORMULÁRIO DE CONTATO                  ~1740
    §14  INNER PAGES — Shared utilities         ~1940
    §15  FOOTER                                 ~2343
    §16  HERO DASHBOARD (visual block)          ~2414
    §17  DENSE DASHBOARD (KPI, Bar, Feed)       ~2645
    §18  SCROLL LAYERS — Creative v3            ~2867
    §19  RETRO GAME ENGINE — Arcade Mode        ~3065
    §20  UI MOCKUP CANVAS                       ~3316
    §21  GAME UI — Layer 2                      ~3465
    §22  GAME UI — Layer 3                      ~3880
    §23  HUD TOOLTIP                            ~4082
    §24  SPACE THEME — Intergalactic Layer      ~4187
    §25  TRABALHOS RECENTES (Works)             ~4453
    §26  SCI-FI HUD / Cyberpunk Accents         ~4621
    §27  HUD COMPONENTS (Gauge, Radar)          ~4761
    §28  SCATTERED HUD ELEMENTS                 ~4952
    §29  DARK THEME — Base token overrides      ~4982
    §30  TECH STACK                             ~5963
    §31  FOUNDER BLOCK                          ~6095
    §32  GARANTIA / Risk Reversal               ~6296
    §33  URGÊNCIA / Agenda do Mês               ~6448
    §34  COMPARATIVO                            ~6660
    §35  PRICING / Pacotes                      ~6838
    §36  STATS STRIP                            ~7077
    §37  UPGRADES (Grain, Marquee, Mobile Nav)  ~7920
    §38  DESIGN HARMONY v2 — Dark + Light       ~8182
   ─────────────────────────────────────────────
*/

/* §01 — DESIGN TOKENS ─────────────────────────
   CSS custom properties · Tokens semânticos
   ─────────────────────────────────────────────*/
:root {
  /* Marca e Destaques */
  --brand-primary:   var(--cor-primaria);
  --brand-accent:    var(--cor-secundaria);

  /* Fundo Semântico (Light) */
  --bg-base:         var(--cor-fundo);
  --bg-surface:      #f4f5f9;
  --bg-surface-alt:  #031152;
  
  /* Textos (Light) */
  --text-primary:    var(--cor-texto);
  --text-muted:      #475569;
  --text-on-dark:    #ffffff;
  
  /* Estrutura */
  --border-color:    rgba(3, 17, 82, 0.08);
  --border-strong:   rgba(3, 17, 82, 0.2);
  --raio-borda:      0px;
  --largura-maxima:  1280px;
  --gut:             clamp(22px, 2.4vw, 30px);

  /* Ritmo vertical — seções, cabeçalhos e blocos internos */
  --space-sec:       clamp(128px, 15vw, 176px);
  --space-sec-md:    clamp(96px, 11vw, 140px);
  --space-sec-sm:    clamp(72px, 8vw, 104px);
  --space-head-in:   clamp(56px, 6vw, 80px);
  --space-block:     clamp(48px, 5vw, 72px);
  --space-gap:       clamp(28px, 3vw, 40px);

  /* Botões laranja neo-brutalistas */
  --orange-brut-edge:  #05070f;
  --orange-brut-chad:  #ffffff;
  --orange-brut-depth: 6px;
  --orange-brut-glow:
    0 4px 18px rgba(255, 61, 20, 0.52),
    0 0 34px rgba(255, 61, 20, 0.34),
    0 0 72px rgba(255, 61, 20, 0.16);

  /* Texto secundário / labels */
  --text-secondary:  #475569;

  /* Bg-color fallback (alias de bg-base) */
  --bg-color:        #ffffff;

  /* CONTRATO DE TOKENS — origem da marca; o painel /preview controla estas.
     Os tokens internos (--brand-*, --bg-base, --text-primary) derivam daqui.
     Ver tokens/README.md */
  --cor-primaria:    #031152;
  --cor-secundaria:  #FF3D14;
  --cor-fundo:       #ffffff;
  --cor-texto:       #031152;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Mono', -apple-system, system-ui, sans-serif;
  background-color: var(--cor-fundo);
  color: var(--cor-texto);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
  transition: background-color 0.8s ease, color 0.8s ease;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* --- LAYOUT --- */
.container {
  max-width: var(--largura-maxima);
  margin: 0 auto;
  padding: 0 var(--gut);
}

@media (max-width: 768px) {
  .container { padding: 0 var(--gut); }}

/* ── SCROLL PROGRESS BAR ── */
#cc-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--cor-secundaria);
  z-index: 9999999;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ── CUSTOM SQUARE CURSOR ── */
#cc-ring {
  position: fixed;
  top: 0; left: 0;
  width: 28px; height: 28px;
  border: 2px solid var(--text-primary);
  pointer-events: none;
  z-index: 999998;
  opacity: 0;
  mix-blend-mode: difference;
  will-change: transform;
  transition: width  0.32s cubic-bezier(0.16,1,0.3,1),
              height 0.32s cubic-bezier(0.16,1,0.3,1),
              background 0.25s,
              border-color 0.25s;
}
#cc-dot {
  position: fixed;
  top: 0; left: 0;
  width: 5px; height: 5px;
  background: var(--bg-surface-alt);
  pointer-events: none;
  z-index: 999999;
  opacity: 0;
  mix-blend-mode: difference;
  will-change: transform;
}
#cc-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'DM Mono', sans-serif;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

/* Estados do cursor */
#cc-ring[data-state="view"] {
  width: 72px; height: 72px;
  background: rgba(3,17,82,0.85);
  border-color: var(--text-primary);
}
#cc-ring[data-state="view"] #cc-label   { opacity: 1; }
#cc-ring[data-state="read"] {
  width: 72px; height: 72px;
  background: rgba(3,17,82,0.85);
}
#cc-ring[data-state="read"] #cc-label  { opacity: 1; }
#cc-ring[data-state="send"] {
  width: 80px; height: 80px;
  background: var(--cor-secundaria);
  border-color: var(--cor-secundaria);
}
#cc-ring[data-state="send"] #cc-label  { opacity: 1; }
#cc-ring[data-state="open"] {
  width: 60px; height: 60px;
  background: rgba(3,17,82,0.7);
}
#cc-ring[data-state="open"] #cc-label  { opacity: 1; }
#cc-ring[data-state="link"] {
  width: 44px; height: 44px;
  background: var(--bg-surface-alt);
  border-color: var(--text-primary);
}
#cc-ring[data-state="link"] #cc-label  { opacity: 1; }
#cc-ring[data-state="cta"] {
  width: 84px; height: 84px;
  background: var(--cor-secundaria);
  border-color: var(--cor-secundaria);
}
#cc-ring[data-state="cta"] #cc-label   { opacity: 1; }
#cc-ring[data-state="hover"] {
  width: 52px; height: 52px;
  background: rgba(3,17,82,0.15);
}

/* --- GLOWING ORBS --- */
.glow-orb {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.orb-orange { background: var(--cor-secundaria); top: 12%; left: 8%; }
.orb-cyan   { background: #3b82f6; top: 40%; right: 5%; }
.orb-purple { background: #8b5cf6; bottom: 15%; left: 5%; }

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   HEADER / NAV
   ================================================ */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--border-color);
  padding: 24px 0;
  transition: background 0.3s ease, border-color 0.3s ease;
  overflow: hidden; /* clippa brackets e scanline */
}

/* ── SCAN LINE varrendo a borda inferior ── */
.nav-scanline {
  position: absolute;
  bottom: 0; left: -40%;
  width: 35%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cor-secundaria), transparent);
  animation: navScan 3.5s linear infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes navScan {
  0%   { left: -40%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

/* ── BRACKETS DE MIRA nos cantos do header ── */
.nav-bracket {
  position: absolute;
  width: 10px; height: 10px;
  border-color: var(--cor-secundaria);
  border-style: solid;
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
}
.nav-bracket--tl { top: 4px; left: 8px;  border-width: 1.5px 0 0 1.5px; }
.nav-bracket--tr { top: 4px; right: 8px; border-width: 1.5px 1.5px 0 0; }
.nav-bracket--bl { bottom: 4px; left: 8px;  border-width: 0 0 1.5px 1.5px; }
.nav-bracket--br { bottom: 4px; right: 8px; border-width: 0 1.5px 1.5px 0; }

/* ── STATUS SYS.ONLINE ── */
.nav-sys-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Courier New', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--cor-secundaria);
  opacity: 0.7;
  text-transform: uppercase;
  margin-left: 16px;
  flex-shrink: 0;
}

/* ── NAV LINKS — prefixo // no hover + flicker ── */
.nav-menu a::before {
  content: '//';
  font-family: 'Courier New', monospace;
  font-size: 9px;
  font-weight: 700;
  color: var(--cor-secundaria);
  opacity: 0;
  margin-right: 0;
  position: absolute;
  left: -18px; top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.15s, left 0.15s;
  pointer-events: none;
}
.nav-menu a:hover::before { opacity: 1; left: -16px; }

@keyframes navFlicker {
  0%,100% { opacity: 1; }
  20%     { opacity: 0.4; }
  40%     { opacity: 1; }
  60%     { opacity: 0.6; }
  80%     { opacity: 1; }
}
.nav-menu a:hover { animation: navFlicker 0.25s steps(1) 1; }

/* ── LOGO — glitch no hover ── */
@keyframes logoGlitch {
  0%        { transform: translate(0,0);    clip-path: none; }
  15%       { transform: translate(-2px,1px); filter: hue-rotate(80deg); }
  30%       { transform: translate(2px,-1px); filter: hue-rotate(-80deg); }
  50%       { transform: translate(-1px,0px); filter: none; }
  65%       { transform: translate(1px,1px); filter: hue-rotate(40deg); }
  100%      { transform: translate(0,0);    filter: none; }
}
.logo:hover { animation: logoGlitch 0.35s steps(2) 1; }

/* ── CTA BUTTON — fill animado com texto sempre visível ── */
.btn-nav-cta {
  position: relative;
  overflow: hidden;
  background: var(--bg-surface-alt);
  color: #fff;
}
.btn-nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cor-secundaria);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.btn-nav-cta:hover::before { transform: scaleX(1); }
.btn-inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  color: #fff;
}
/* Nav em seções escuras: inverte para fundo navy */
.nav-header.nav-dark {
  background: var(--bg-surface-alt);
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav-header.nav-dark .logo,
.nav-header.nav-dark .nav-menu a { color: #fff; }
.nav-header.nav-dark .nav-menu a:hover,
.nav-header.nav-dark .nav-menu a.active { color: var(--cor-secundaria); }
.nav-header.nav-dark .btn-nav-cta {
  background: var(--cor-fundo);
  color: var(--text-primary);
}
.nav-header.nav-dark .btn-nav-cta:hover {
  background: var(--cor-secundaria);
  color: #fff;
}
.logo {
  font-family: 'Tektur', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo .logo-core { color: var(--cor-secundaria) !important; }
.logo::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='7'%3E%3Crect x='12' y='42' width='46' height='46'/%3E%3Crect x='27' y='27' width='46' height='46'/%3E%3Crect x='42' y='12' width='46' height='46'/%3E%3C/g%3E%3Crect x='57' y='27' width='16' height='16' fill='%23FF3D14'/%3E%3C/svg%3E") center / contain no-repeat;
}
.nav-menu {
  display: flex;
  gap: 40px;
}
.nav-menu a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  transition: color 0.2s;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--cor-secundaria);
  transition: width 0.3s ease;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--text-primary); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

/* ── Ícone de início (casinha) ── */
.nav-home-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.nav-home-icon svg {
  display: block;
  transition: stroke 0.2s;
}
.nav-home-icon::after { display: none; } /* sem underline no ícone */
.nav-home-icon:hover svg,
.nav-home-icon.active svg { stroke: var(--cor-secundaria); }

.btn-nav-cta {
  background: var(--bg-surface-alt);
  color: #fff;
  padding: 18px 36px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.3s ease;
}
.btn-nav-cta:hover {
  background: var(--cor-secundaria) !important;
  color: #fff !important;
  transform: translateY(-4px);
  box-shadow:
    0 4px 16px rgba(255, 61, 20, 0.45),
    0 0 28px rgba(255, 61, 20, 0.25),
    0 0 60px rgba(255, 61, 20, 0.12);
}

/* Variante maior para o hero */
.btn-nav-cta.btn-hero {
  padding: 18px 40px;
  font-size: 14px;
  white-space: nowrap;
}

/* Legacy buttons */
.btn-cta {
  background: var(--cor-secundaria);
  color: #fff;
  padding: 12px 28px;
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: background 0.2s;
}
.btn-cta:hover { background: var(--bg-surface-alt); }

/* --- MAGNETIC BUTTONS --- */
.magnetic-wrap {
  display: inline-block;
  padding: 10px;
  margin: -10px;
}
.magnetic-btn {
  display: inline-flex;
  position: relative;
  transition: transform 0.1s linear;
}

/* ================================================
   HERO V3 — GIANT TYPOGRAPHY
   ================================================ */
.hero-v3 {
  background: var(--cor-fundo);
  width: 100%;
  padding-top: 64px;
  overflow: visible;
  position: relative;
  border-bottom: 2px solid var(--border-color);
}

/* ── FUNDO HERO 2026 ── grid + nós animados + glow ── */

/* Grid visível na hero — linha mais forte que o border-color padrão */
.hero-v3::before {
  content: '';
  position: absolute;
  inset: 0;
  /* sobrescreve o section::before { width:24px; height:24px } do HUD */
  width: 100% !important;
  height: 100% !important;
  background-image:
    linear-gradient(rgba(3,17,82,0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3,17,82,0.13) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Gradiente que respira — vermelho à esquerda, azul à direita */
.hero-bg__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 80% at 15% 50%, rgba(255, 61, 20,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 55% 70% at 85% 30%, rgba(14,165,233,0.09) 0%, transparent 60%);
  animation: heroBgBreathe 7s ease-in-out infinite alternate;
}
@keyframes heroBgBreathe {
  from { opacity: 0.55; transform: scale(1); }
  to   { opacity: 1;    transform: scale(1.08); }
}

/* Linha de scan — varre de cima a baixo, pulsa em vermelho */
.hero-bg__scan {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 61, 20,0.25) 20%,
    rgba(255, 61, 20,0.65) 50%,
    rgba(255, 61, 20,0.25) 80%,
    transparent 100%);
  top: 0%;
  box-shadow: 0 0 8px rgba(255, 61, 20,0.4);
  animation: heroScanDrop 5s linear infinite;
}
@keyframes heroScanDrop {
  0%   { top: 0%;    opacity: 0; }
  4%   { opacity: 1; }
  92%  { opacity: 0.8; }
  100% { top: 100%;  opacity: 0; }
}

/* Nós em % — visíveis em qualquer largura de tela */
.hero-bg__node {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cor-secundaria);
  opacity: 0;
  animation: nodeFlicker 4s ease-in-out infinite;
}
.hero-bg__node--1 { left: 12%;  top: 22%; animation-delay: 0s;    animation-duration: 3.8s; }
.hero-bg__node--2 { left: 28%;  top: 15%; animation-delay: 1.2s;  animation-duration: 4.5s; }
.hero-bg__node--3 { left: 44%;  top: 38%; animation-delay: 0.6s;  animation-duration: 3.2s; }
.hero-bg__node--4 { left: 62%;  top: 20%; animation-delay: 2.1s;  animation-duration: 5s;   }
.hero-bg__node--5 { left: 20%;  top: 60%; animation-delay: 1.7s;  animation-duration: 4.1s; }
.hero-bg__node--6 { left: 52%;  top: 65%; animation-delay: 0.9s;  animation-duration: 3.6s; }
.hero-bg__node--7 { left: 76%;  top: 45%; animation-delay: 2.8s;  animation-duration: 4.8s; }
.hero-bg__node--8 { left: 88%;  top: 70%; animation-delay: 1.4s;  animation-duration: 3.4s; }

@keyframes nodeFlicker {
  0%, 100% { opacity: 0;    transform: scale(1); }
  35%       { opacity: 0.9; transform: scale(2.2); box-shadow: 0 0 12px 3px var(--cor-secundaria); }
  55%       { opacity: 0.6; transform: scale(1.5); box-shadow: 0 0 6px var(--cor-secundaria); }
}

/* ── FIM FUNDO HERO ── */

.hero-container-v3 {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 60px 100px;
  position: relative;
  z-index: 1;
}

.hero-title-v3 {
  font-family: 'Tektur', sans-serif;
  font-size: var(--hero-fs-locked, 100px);
  font-weight: 900;
  line-height: var(--hero-lh-locked, 1);
  letter-spacing: -0.04em;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 28px;
  transition: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  overflow: visible;
}
.hero-title-v3 .hero-line + .hero-line {
  margin-top: calc(-1 * var(--hero-line-overlap, 0.045em));
}
.hero-title-v3 .hero-line.is-decoding {
  color: var(--cor-secundaria);
}
.hero-title-v3 .hero-line.is-decoding.accent {
  color: #05070f !important;
  -webkit-text-fill-color: #05070f !important;
}
/* Hero fit probe — sem brutalism (medição pura de texto) */
.hero-fit-probe .hero-line.accent {
  background: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}

/* ── Hero · glitter (quadrados neon) + faixa de scan sutil ── */
.hero-v3 .hero-glitter {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero-v3 .hero-glitter i {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--cor-secundaria);
  opacity: 0;
  box-shadow: 0 0 14px var(--cor-secundaria);
  animation: hero-glitter-blip 7s steps(1) infinite;
}
.hero-v3 .hero-glitter i:nth-child(1) { left: 8%;  top: 22%; animation-delay: 0.4s; }
.hero-v3 .hero-glitter i:nth-child(2) { left: 78%; top: 34%; background: var(--cyber-cyan, #00e5ff); box-shadow: 0 0 14px var(--cyber-cyan, #00e5ff); animation-delay: 2.1s; }
.hero-v3 .hero-glitter i:nth-child(3) { left: 52%; top: 68%; animation-delay: 3.8s; }
.hero-v3 .hero-glitter i:nth-child(4) { left: 22%; top: 58%; animation-delay: 1.3s; }
.hero-v3 .hero-glitter i:nth-child(5) { left: 88%; top: 72%; background: var(--cyber-cyan, #00e5ff); box-shadow: 0 0 14px var(--cyber-cyan, #00e5ff); animation-delay: 5.2s; }
.hero-v3 .hero-glitter i:nth-child(6) { left: 38%; top: 18%; animation-delay: 4.0s; }
@keyframes hero-glitter-blip {
  0%, 96% { opacity: 0; transform: scale(1); }
  97%, 99% { opacity: 0.85; transform: scale(1.15); }
  100% { opacity: 0; transform: scale(1); }
}
.hero-v3 .hero-glitter-band {
  position: absolute;
  left: 0;
  right: 0;
  height: 64px;
  top: -80px;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.55;
  background: linear-gradient(rgba(0, 229, 255, 0.05), rgba(255, 61, 20, 0.07), transparent);
  animation: hero-glitter-band 11s steps(36) infinite;
}
@keyframes hero-glitter-band {
  0%, 86% { top: -90px; opacity: 0; }
  88% { opacity: 0.55; }
  91% { top: 42%; opacity: 0.4; }
  94%, 100% { top: 108%; opacity: 0; }
}

.hero-title-v3 .hero-line {
  display: block;
  white-space: nowrap;
  width: fit-content;
  max-width: none;
  font-size: inherit;
  line-height: 1;
  margin: 0;
  overflow: visible;
  padding-right: 0.08em;
  box-sizing: content-box;
  position: relative;
  z-index: 1;
}
.hero-title-v3 .hero-line.accent {
  width: fit-content;
  max-width: none;
  z-index: 2;
}
.hero-v3 .hero-container-v3 {
  overflow-x: visible;
  max-width: 100%;
}
#hero-typewriter {
  max-width: none;
  overflow: visible;
}
.hero-title-v3 span.accent,
.hero-title-v3 .hero-line.accent { color: var(--cor-secundaria); }

/* cursor typewriter — mantido no CSS caso volte; rotator atual não usa */
.hero-cursor { display: none; }

.hero-sub-grid {
  display: grid;
  grid-template-columns: auto 1fr;  /* botão à esquerda, descrição à direita */
  gap: clamp(24px, 3.5vw, 48px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-sub-grid { grid-template-columns: 1fr; gap: 28px; }}

.hero-desc-v3 {
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 500;
  max-width: 100%;
}

/* ── Word-by-word reveal (entrada) ── */
.hero-desc-v3 .hw {
  display: inline;
  opacity: 0;
  animation: heroWordReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: opacity, transform, filter;
}
/* palavra sendo decriptografada — cor vermelha enquanto embaralha */
.hero-desc-v3 .hw.scrambling {
  color: var(--cor-secundaria);
  opacity: 0.75;
}
@keyframes heroWordReveal {
  from {
    opacity: 0;
    transform: translateY(6px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.hero-action-v3 { display: flex; align-items: center; flex-shrink: 0; }
.btn-nav-cta.btn-hero {
  padding: 18px 40px;
  font-size: 14px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .hero-action-v3 { justify-content: flex-start; }}
.marquee-track {
  display: inline-block;
  animation: marquee 15s linear infinite;
}
.marquee-track span {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border-color);
  margin: 0 40px;
  transition: all 0.3s;
  text-transform: uppercase;
}
.marquee-track span:hover {
  color: var(--cor-secundaria);
  -webkit-text-stroke: 0px;
}
@keyframes marquee {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* ================================================
   SECTION SHARED STYLES
   ================================================ */

/* ── Universal section header (.sec-head) ── */
/* Usado em: cases, faq, blog, e qualquer nova seção */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}
.sec-head__label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cor-secundaria);
  display: block;
  margin-bottom: 10px;
}
.sec-head__title {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  line-height: 1.0;
}
.sec-head__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 8px;
  max-width: 520px;
}
/* Variante para seções escuras */
.sec-head--light .sec-head__label { color: rgba(255,255,255,0.45); }
.sec-head--light .sec-head__title  { color: #fff; }
.sec-head--light .sec-head__desc,
.sec-head--light .sec-head__right  { color: rgba(255,255,255,0.5); }

/* ================================================
   CASES — BENTO SQUARE SYSTEM
   ================================================ */
.cases {
  padding: 120px 0;
  background: var(--cor-fundo);
  border-bottom: 2px solid var(--border-color);
}

/* ── Bento grid container ── */
.cases-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  background: var(--bg-surface-alt);
  border: 2px solid var(--text-primary);
  margin-top: 64px;
}

/* ── Card base ── */
.bento-case {
  padding: 48px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 320px;
  transition: filter 0.25s ease;
}
.bento-case:hover { filter: brightness(0.94); }

/* ── Icon stamp (quadrado, zero radius) ── */
.bento-stamp {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-case__num {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 0.9;
  color: inherit;
}

/* ── Bottom: title, desc, link ── */
.bento-case__bot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bento-case__link {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 2px;
  border-bottom: 1.5px solid currentColor;
  width: fit-content;
  text-decoration: none;
  color: inherit;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.bento-case__link:hover { opacity: 1; }
.bento-case__link svg { width: 11px; height: 11px; }

/* ── Decorative squares (quadrado puro, zero radius) ── */
.bento-deco {
  position: absolute;
  pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .cases-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
}
@media (max-width: 600px) {
  .cases-bento { grid-template-columns: 1fr; }
  .bento-case { padding: 36px 28px; min-height: 260px; }}

/* ================================================
   ESPECIALIDADES — SPLIT CARD SYSTEM
   ================================================ */
.spec {
  background: var(--cor-fundo);
  padding: 120px 0;
  border-bottom: 2px solid var(--border-color);
}

/* ── Header ── */
.spec-header {
  max-width: var(--largura-maxima);
  margin: 0 auto;
  padding: 0 var(--gut) 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid var(--border-color);
}
.spec-header__label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cor-secundaria);
  display: block;
  margin-bottom: 12px;
}
.spec-header__title {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  line-height: 1;
}
.spec-header__sub {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.65;
  text-align: right;
}

/* ── Card list ── */
.spec-list {
  max-width: var(--largura-maxima);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: flex;
  flex-direction: column;
}

/* ── Card ── */
.spec-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  border: 2px solid var(--border-color);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  border-top: none;
  overflow: hidden;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  position: relative;
  cursor: pointer;
}
.spec-list .spec-card:first-child { border-top: 2px solid var(--border-color); }
.spec-card:hover {
  box-shadow: 6px 6px 0 var(--cor-secundaria);
  transform: translate(-3px, -3px);
  z-index: 2;
}

/* Ícone-stamp quadrado 64×64, zero radius */
.spec-card__stamp {
  width: 64px;
  height: 64px;
  background: var(--cor-secundaria);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 1;
  transition: transform 0.22s ease;
  flex-shrink: 0;
}
.spec-card:hover .spec-card__stamp { transform: scale(1.06); }

/* Quadrado decorativo no canto */
.spec-card__deco {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.1);
  bottom: 18px;
  right: 18px;
  pointer-events: none;
}
.spec-card:hover .spec-card__tags span {
  border-color: var(--cor-secundaria);
  color: var(--cor-secundaria);
}
.spec-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  width: fit-content;
  margin-top: 4px;
  transition: color 0.2s;
}
.spec-card:hover .spec-card__cta { color: var(--cor-secundaria); }
.spec-card__cta svg { width: 12px; height: 12px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .spec-header { flex-direction: column; align-items: flex-start; gap: 16px; padding: 0 24px 40px; }
  .spec-header__sub { text-align: left; max-width: 100%; }
  .spec-list { padding: 0 24px; }
  .spec-card { grid-template-columns: 160px 1fr; }
}
@media (max-width: 600px) {
  .spec { padding: 80px 0; }
  .spec-card { grid-template-columns: 1fr; }}

/* ================================================
   HORIZONTAL SCROLL (Capabilities Showcase)
   ================================================ */
.horizontal-scroll-section {
  width: 100%;
  height: 560vh;
  position: relative;
  background: var(--bg-surface-alt);
  color: #fff;
}
.sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.horizontal-track {
  display: flex;
  gap: 64px;
  padding: 0 80px;
  height: 62vh;
  align-items: center;
}

/* ── Section label overlay ── */
.hz-section-label {
  position: absolute;
  top: 36px;
  left: 80px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hz-section-label span {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.hz-section-label__line {
  width: 80px;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

/* ── Base card ── */
.hz-card {
  min-width: 460px;
  height: 100%;
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(255,255,255,0.08);
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.hz-card:hover {
  border-color: var(--cor-secundaria);
  background: rgba(255,255,255,0.05);
}

/* ── Featured card (Sci-Fi) ── */
.hz-card--featured {
  border-color: rgba(255, 61, 20,0.35);
  background: rgba(255, 61, 20,0.04);
}
.hz-card--featured:hover {
  border-color: var(--cor-secundaria);
  background: rgba(255, 61, 20,0.08);
}

/* ── Card header: icon + number ── */
.hz-card__num {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
  margin-bottom: 28px;
}
.hz-card__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Title ── */
.hz-card-title {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(44px, 4vw, 56px);
  font-weight: 900;
  line-height: 0.9;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ── Description ── */
.hz-card-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  flex: 1;
}

/* ── Stat row ── */
.hz-card__stat {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hz-card__stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.hz-card__stat-val {
  font-family: 'DM Mono', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* ── Sci-Fi deco (card #05) ── */
.hz-card__deco {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 120px;
  height: 120px;
  opacity: 0.12;
  pointer-events: none;
}
.hz-card__deco-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--cor-secundaria);
}
.hz-card__deco-cross::before,
.hz-card__deco-cross::after {
  content: '';
  position: absolute;
  background: var(--cor-secundaria);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.hz-card__deco-cross::before { width: 100%; height: 1px; }
.hz-card__deco-cross::after  { width: 1px; height: 100%; }

@media (max-width: 900px) {
  .horizontal-scroll-section { height: auto; }
  .sticky-container { position: relative; height: auto; overflow: visible; padding: 80px 0 40px; }
  .horizontal-track { flex-direction: column; height: auto; padding: 0 24px; gap: 32px; }
  .hz-card { min-width: 100%; width: 100%; height: auto; min-height: 320px; }
  .hz-section-label { left: 24px; }}

/* ================================================
   PROCESSO — RED DESIGN
   ================================================ */
.proc {
  background: var(--cor-secundaria);
  color: #fff;
  border-bottom: 2px solid rgba(0,0,0,0.1);
}

/* ── Header ── */
.proc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: var(--largura-maxima);
  margin: 0 auto;
  padding: var(--space-sec) var(--gut) var(--space-head-in);
  border-bottom: 2px solid rgba(255,255,255,0.14);
}
.proc-header__label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 18px;
}
.proc-header__title {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.05;
}
.proc-header__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  max-width: 290px;
  line-height: 1.7;
  text-align: right;
}

/* ── Grid 4 colunas edge-to-edge ── */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.14); /* gap = white semi-trans */
  border-bottom: 2px solid rgba(0,0,0,0.08);
}

/* ── Step ── */
.proc-step {
  background: var(--cor-secundaria);
  padding: 52px 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: background 0.22s ease;
  min-height: 340px;
}

/* Número fantasma watermark */
.proc-step__ghost {
  position: absolute;
  font-family: 'DM Mono', sans-serif;
  font-size: 200px;
  font-weight: 900;
  color: rgba(255,255,255,0.045);
  line-height: 1;
  letter-spacing: -12px;
  bottom: -24px;
  right: -16px;
  user-select: none;
  pointer-events: none;
}

/* Top row: stamp + counter */
.proc-step__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Stamp quadrado — navy bg para contraste máximo no vermelho */
.proc-stamp {
  width: 52px;
  height: 52px;
  background: var(--bg-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.22s, transform 0.22s;
}
.proc-step:hover .proc-stamp {
  background: var(--cor-fundo);
  color: var(--cor-secundaria);
  transform: scale(1.05);
}
.proc-stamp svg { width: 22px; height: 22px; stroke-width: 2px; }

/* Número pequeno (top-right) */
.proc-step__num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

/* Título */
.proc-step__title {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Descrição */
.proc-step__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  flex: 1;
}

/* Barra de progresso */
.proc-bar {
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin-top: auto;
}
.proc-bar__fill {
  height: 100%;
  background: var(--cor-fundo);
  transition: width 1s ease 0.3s;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .proc-header { flex-direction: column; align-items: flex-start; gap: 16px; padding: 80px 24px 48px; }
  .proc-header__sub { text-align: left; max-width: 100%; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .proc-step { min-height: 260px; }
}
@media (max-width: 600px) {
  .proc-grid { grid-template-columns: 1fr; }
  .proc-step { min-height: unset; padding: 40px 28px; }}

/* ================================================
   FAQ
   ================================================ */
.faq-section {
  width: 100%;
  background: #f4f5f9;
  padding: 120px 0;
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
}
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; }}
.faq-item { border-top: 2px solid var(--cor-primaria); overflow: hidden; }
.faq-item:last-child { border-bottom: 2px solid var(--cor-primaria); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: none;
  font-family: 'DM Mono', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--text-primary);
  text-align: left;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--cor-secundaria); }
.faq-icon { width: 24px; height: 24px; position: relative; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--bg-surface-alt);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-icon::before { top: 11px; left: 0; width: 24px; height: 2px; }
.faq-icon::after  { top: 0; left: 11px; width: 2px; height: 24px; }
.faq-item.active .faq-icon::after { transform: scaleY(0); }
.faq-item.active .faq-icon::before { background: var(--cor-secundaria); }
.faq-answer {
  max-height: 0;
  opacity: 0;
  padding: 0;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.active .faq-answer { max-height: 500px; opacity: 1; padding: 0 0 32px 0; }

/* ================================================
   BLOG SECTION
   ================================================ */
/* ── Blog section ── */
.blog-sec {
  padding: 120px 0;
  background: var(--cor-fundo);
  border-bottom: 2px solid var(--border-color);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2px;
  background: var(--border-color);
  border: 2px solid var(--border-color);
}
.blog-card {
  background: var(--bg-surface);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  cursor: pointer;
}
.blog-card:hover {
  box-shadow: 6px 6px 0 var(--cor-secundaria);
  transform: translate(-3px, -3px);
  z-index: 1;
}
.blog-card__cat {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cor-secundaria);
}
.blog-card__title {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: -0.3px;
}
.blog-card__link {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  width: fit-content;
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.2s;
}
.blog-card:hover .blog-card__link { color: var(--cor-secundaria); }
.blog-card__link svg { width: 11px; height: 11px; }
.link-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--cor-secundaria);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================================================
   FORMULÁRIO DE CONTATO
   ================================================ */
.ctaform {
  background: #040e2a;
  border-top: 2px solid rgba(255,255,255,0.04);
}

/* ── Grid 40 / 60 ── */
.ctaform-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  max-width: var(--largura-maxima);
  margin: 0 auto;
  min-height: 680px;
}

/* ── Painel esquerdo ── */
.ctaform-panel {
  background: var(--bg-surface-alt);
  padding: 80px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-right: 2px solid rgba(255,255,255,0.06);
}
.ctaform-panel__deco--lg {
  width: 200px; height: 200px;
  border: 2px solid rgba(255,255,255,0.04);
  bottom: -50px; right: -50px;
}
.ctaform-panel__deco--sm {
  width: 72px; height: 72px;
  background: var(--cor-secundaria);
  opacity: 0.14;
  top: 72px; right: 52px;
}
.ctaform-panel__label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cor-secundaria);
  display: block;
  margin-bottom: 20px;
}
.ctaform-panel__title {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 24px;
}
.ctaform-panel__sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
}

/* ── Formulário direito ── */
.ctaform-form-wrap {
  background: var(--bg-surface);
  padding: 72px 64px;
  border-left: 2px solid rgba(255,255,255,0.04);
}
.ctaform-row { display: flex; gap: 24px; }
.ctaform-row--2 > * { flex: 1; min-width: 0; }
.ctaform-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.ctaform-label {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  opacity: 0.45;
}
.ctaform-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border-color);
  padding: 13px 0;
  font-size: 14px;
  font-family: 'DM Mono', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.ctaform-input:focus { border-bottom-color: var(--text-primary); }
.ctaform-input::placeholder { color: rgba(3,17,82,0.22); font-weight: 500; }
.ctaform-textarea { resize: none; height: 90px; line-height: 1.65; }

/* Chips */
.ctaform-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ctaform-chip {
  padding: 9px 18px;
  border: 1.5px solid var(--border-color);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  font-family: 'DM Mono', sans-serif;
}
.ctaform-chip:hover { border-color: var(--text-primary); color: var(--text-primary); }
.ctaform-chip.active {
  background: var(--bg-surface-alt);
  color: #fff;
  border-color: var(--text-primary);
}

/* Botão submit */
.ctaform-submit {
  width: 100%;
  padding: 22px 32px;
  background: var(--bg-surface-alt);
  color: #fff;
  border: none;
  font-family: 'DM Mono', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.22s;
  margin-top: 4px;
}
.ctaform-submit:hover { background: var(--cor-secundaria); }
.ctaform-submit svg { width: 20px; height: 20px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .ctaform-grid { grid-template-columns: 1fr; }
  .ctaform-panel { padding: 56px 32px; min-height: unset; }
  .ctaform-form-wrap { padding: 48px 32px; }
  .ctaform-row--2 { flex-direction: column; gap: 0; }
}
@media (max-width: 600px) {
  .ctaform-panel { padding: 48px 24px; }
  .ctaform-form-wrap { padding: 40px 24px; }}

/* ================================================
   INNER PAGES — Shared utilities
   ================================================ */

/* ── Page Hero (cabeçalho de página interna) ── */
.page-hero {
  padding: var(--space-sec-md) 0 var(--space-sec-sm);
  background: var(--cor-fundo);
  border-bottom: 2px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.page-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.page-hero__title {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 12px 0 0;
}
.page-hero__desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.7;
  align-self: flex-end;
}
body.dark-theme .page-hero { background: #05080c; }

/* ── Blog cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--border-color);
  border-left: 2px solid var(--border-color);
}
.blog-card {
  border-right: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--cor-fundo);
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { background: var(--bg-surface); }
.blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}
.blog-card--featured .blog-card__visual {
  background: var(--bg-surface-alt);
  min-height: 320px;
  border-right: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card--featured .blog-card__body { padding: 56px 48px; }
.blog-card__visual-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.blog-card__visual-label {
  position: relative;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px;
}
.blog-card__cat {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
}
.blog-card__title {
  font-family: 'DM Mono', sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.blog-card--featured .blog-card__title {
  font-size: clamp(24px, 2.5vw, 32px);
}
.blog-card__excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}
.blog-card__date {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.blog-card__read {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card--featured { grid-template-columns: 1fr; }
  .blog-card--featured .blog-card__visual { min-height: 200px; border-right: none; border-bottom: 2px solid var(--border-color); }}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { padding: 28px 24px; }}

/* ── Industry cards ── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--border-color);
  border-left: 2px solid var(--border-color);
}
.industry-card {
  border-right: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.25s;
}
.industry-card:hover { background: var(--bg-surface); }
.industry-card__icon {
  width: 52px; height: 52px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cor-secundaria);
  flex-shrink: 0;
}
.industry-card__icon svg { width: 22px; height: 22px; }
.industry-card__name {
  font-family: 'DM Mono', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.industry-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.industry-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}
.industry-card__tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 4px 8px;
}
@media (max-width: 900px) { .industry-grid { grid-template-columns: repeat(2, 1fr); }}
@media (max-width: 560px) { .industry-grid { grid-template-columns: 1fr; } .industry-card { padding: 36px 28px; }}

/* ── Team grid (sobre) ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--border-color);
  border-left: 2px solid var(--border-color);
}
.team-card {
  border-right: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.team-card__avatar {
  width: 64px; height: 64px;
  background: var(--bg-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  position: relative;
  margin-bottom: 4px;
}
.team-card__name {
  font-family: 'DM Mono', sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-transform: uppercase;
  line-height: 1.1;
}
.team-card__role {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
}
.team-card__bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); }}
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr 1fr; } .team-card { padding: 28px 20px; }}

/* ── Cases filter bar ── */
.cases-filter {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 0;
  overflow-x: auto;
}
.cases-filter__btn {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 16px 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-right: 1px solid var(--border-color);
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.cases-filter__btn:hover { color: var(--text-primary); background: var(--bg-surface); }
.cases-filter__btn.active {
  color: var(--cor-secundaria);
  border-bottom-color: var(--cor-secundaria);
  background: var(--bg-surface);
}

/* ── About values strip ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--border-color);
  border-left: 2px solid var(--border-color);
}
.value-card {
  border-right: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  padding: 40px 32px;
}
.value-card__num {
  font-family: 'DM Mono', sans-serif;
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--border-color);
  margin-bottom: 16px;
}
.value-card__title {
  font-family: 'DM Mono', sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.value-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); }}
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; }}

/* ── Article (post) ── */
.article-body {
  max-width: 720px;
  margin: 0 auto;
}
.article-body h2 {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 48px 0 16px;
  text-transform: uppercase;
}
.article-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.article-body blockquote {
  border-left: 3px solid var(--cor-secundaria);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
}
.article-body ul {
  margin: 0 0 24px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-body ul li {
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.article-body ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--cor-secundaria);
  font-size: 12px;
  top: 3px;
}
.article-callout {
  background: var(--bg-surface);
  border: 2px solid var(--border-color);
  border-left: 3px solid var(--cor-secundaria);
  padding: 24px 28px;
  margin: 32px 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--bg-surface-alt);
  color: #fff;
  padding: 100px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }}
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; }}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-links a:hover { color: var(--cor-secundaria); }



/* RESPONSIVE MISC */
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hero-v3 { padding: 64px 0 0 0; }
  .cases { padding: var(--space-sec-sm) 0; }
  .spec { padding: var(--space-sec-sm) 0; }
  .proc-step__ghost { font-size: 72px; }
  .faq-section { padding: var(--space-sec-sm) 0; }
  .ctaform-grid { min-height: unset; }
}
.hero-v3.anim-started .hmb-metric-card { opacity: 1; transform: translateY(0); }
.hmb-ring-fill {
  fill: none;
  stroke-width: 6;
  stroke-linecap: butt;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s);
}
.hero-v3.anim-started .hmb-ring--red   { stroke-dashoffset: 0 !important; }
.hero-v3.anim-started .hmb-ring--green { stroke-dashoffset: 4 !important; }
.hmb-ring-num {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}
.hmb-big-num .hmb-ring-num { font-size: clamp(2rem, 4vw, 3.5rem); }
.hero-v3.anim-started .hmb-spark-line { stroke-dashoffset: 0; }
.hero-v3.anim-started .hmb-bar-item::after {
  transform: scaleX(1);
  width: var(--w);
}


/* ================================================
   DENSE DASHBOARD — KPI, BAR CHART, FEED, STACK
   ================================================ */

/* KPI Pills Row */
.hmb-kpi-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.hmb-kpi__num {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}
.hmb-kpi__badge.red    { background: rgba(255, 61, 20,0.2);  color: var(--cor-secundaria); }
.hmb-kpi__badge.green  { background: rgba(16,185,129,0.2); color: #10b981; }
.hmb-kpi__badge.blue   { background: rgba(59,130,246,0.2); color: #3b82f6; }
.hmb-kpi__badge.purple { background: rgba(139,92,246,0.2); color: #8b5cf6; }
.hero-v3.anim-started .hmb-bc-bar { transform: scaleY(1); }

/* Activity Feed */
.hmb-feed {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.hmb-feed-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.hmb-feed-item:hover { background: rgba(255,255,255,0.07); }
.hmb-fi-new {
  border-color: rgba(16,185,129,0.3);
  background: rgba(16,185,129,0.05);
}
.hmb-fi-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hmb-fi-msg {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hmb-fi-msg b { color: rgba(255,255,255,0.85); font-weight: 700; }
.hmb-fi-time {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.hero-v3.anim-started .hmb-vital-fill { transform: scaleX(1); }
.hero-v3.anim-started .hmb-stack-item { opacity: 1; transform: translateX(0); }
.hero-v3.anim-started .hmb-stack-bar { transform: scaleX(1); }


/* ================================================
   SURREAL SCROLL LAYER — Creative Core v3
   (Camada sobre as 18 interações existentes)
   ================================================ */

/* ── 19. Cursor Ghost Trail ── */
.cc-ghost {
  position: fixed;
  top: 0; left: 0;
  border: 1.5px solid var(--text-primary);
  pointer-events: none;
  mix-blend-mode: difference;
  will-change: transform;
  z-index: 999989;
}

/* ── 20. Split-text — character spans ── */
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(90%) skewY(7deg);
  transition:
    opacity   0.65s cubic-bezier(0.16, 1, 0.3, 1) var(--cd, 0.3s),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) var(--cd, 0.3s);
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.char.is-space {
  display: inline;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.char.visible {
  opacity: 1;
  transform: translateY(0) skewY(0deg);
}

/* ── 21. Scroll Velocity Skew ── */
/* (aplicado inline via JS — sem classe extra necessária) */

/* ── 22. Metric Particles ── */
.cc-particle {
  position: fixed;
  pointer-events: none;
  z-index: 999002;
  animation: cc-pfly var(--dur, 0.65s) cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes cc-pfly {
  0%   { opacity: 1; transform: translate(0, 0) scale(1) rotate(0deg); }
  100% { opacity: 0; transform: translate(var(--tx, 0px), var(--ty, -55px)) scale(0) rotate(120deg); }
}

/* Blast ring */
.cc-blast {
  position: fixed;
  pointer-events: none;
  z-index: 999001;
  border: 2px solid var(--cor-secundaria);
  animation: cc-blast-anim 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes cc-blast-anim {
  0%   { opacity: 0.85; transform: translate(-50%, -50%) scale(0.1); }
  100% { opacity: 0;    transform: translate(-50%, -50%) scale(3); }
}

/* ── 23. Hero Glitch (única, on load) ── */
@keyframes cc-glitch {
  0%   { transform: skewX(-6deg) scaleX(1.02); color: var(--cor-secundaria); letter-spacing: -0.04em; }
  25%  { transform: skewX(3deg) scaleX(0.99); color: var(--text-primary); }
  50%  { transform: skewX(-2deg); color: var(--cor-secundaria); }
  75%  { transform: skewX(1deg); color: var(--text-primary); }
  100% { transform: none; letter-spacing: -0.04em; color: var(--text-primary); }
}
.cc-glitch-once {
  animation: cc-glitch 0.36s steps(2, end) forwards;
  pointer-events: none;
}

/* ── 24. Section Sweep Line ── */
.cc-sweep-line {
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: 9;
  pointer-events: none;
  background: linear-gradient(90deg, var(--cor-secundaria) 0%, var(--cor-primaria) 60%, transparent 100%);
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}
.cc-sweep-line.active {
  width: 100%;
}

/* ── 25. Marquee pausa no hover ── */
.marquee-track:hover {
  animation-play-state: paused;
}

/* ── 27. Click ripple — quadrado se expande no clique ── */
.cc-ripple {
  position: fixed;
  pointer-events: none;
  z-index: 999006;
  width: 6px; height: 6px;
  border: 2px solid var(--cor-secundaria);
  animation: cc-ripple-out 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes cc-ripple-out {
  0%   { transform: translate(-50%,-50%) scale(1);  opacity: 0.9; }
  100% { transform: translate(-50%,-50%) scale(80); opacity: 0;   }
}

/* ── 28. Cursor ring vira círculo no click ── */
#cc-ring {
  border-radius: 0;
  transition:
    width  0.32s cubic-bezier(0.16,1,0.3,1),
    height 0.32s cubic-bezier(0.16,1,0.3,1),
    background    0.25s,
    border-color  0.25s,
    border-radius 0.16s ease;
}
#cc-ring.cc-click-morph {
  border-radius: 50% !important;
  transform-origin: center;
}

/* ── 29. Ambient squares — drift no hero ── */
.cc-ambient {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border: 1.5px solid var(--text-primary);
  opacity: 0;
  animation: cc-ambient-in 1s ease forwards, cc-drift linear infinite;
}
@keyframes cc-ambient-in {
  to { opacity: var(--ao, 0.06); }
}
@keyframes cc-drift {
  0%   { transform: translate(0,0)                                        rotate(0deg);   }
  25%  { transform: translate(var(--dx), var(--dy))                       rotate(90deg);  }
  50%  { transform: translate(calc(var(--dx) * -0.6), var(--dy))          rotate(180deg); }
  75%  { transform: translate(var(--dx), calc(var(--dy) * -0.4))          rotate(270deg); }
  100% { transform: translate(0,0)                                        rotate(360deg); }
}

/* ── 30. FAQ wipe reveal ── */
/* default 112% = totalmente visível; o JS seta 0% e anima até 112% ao clicar.
   Com default 0%, o item que nasce .active no HTML ficava mascarado
   (texto invisível até fechar/reabrir). */
.faq-item.active .faq-answer {
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 calc(var(--faq-r, 112%) - 10%),
    transparent var(--faq-r, 112%)
  );
  mask-image: linear-gradient(
    90deg,
    #000 calc(var(--faq-r, 112%) - 10%),
    transparent var(--faq-r, 112%)
  );
}

/* ── 31. KPI live tick — micro-bounce ── */
.hmb-kpi__num.ticked {
  animation: cc-kpi-tick 0.28s cubic-bezier(0.16,1,0.3,1);
}
@keyframes cc-kpi-tick {
  0%   { transform: translateY(0)    scale(1);    }
  40%  { transform: translateY(-4px) scale(1.08); }
  100% { transform: translateY(0)    scale(1);    }
}

/* ── 32. Hero mouse spotlight ── suave sobre fundo escuro */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 600px 400px at var(--spotlight-x, 50%) var(--spotlight-y, 50%),
    rgba(255, 61, 20, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* ── 33. Nav links stagger on load ── */
.nav-menu a {
  will-change: opacity, transform;
}

/* ── 34. Bento num scramble flash ── */
.bento-case__num {
  cursor: default;
  transition: color 0.15s;
}
.bento-case__num.scrambling { color: var(--cor-secundaria); }

/* ── CRT Boot — página liga como monitor antigo ── */
@keyframes cc-crt-boot {
  0%   { clip-path: inset(49.9% 0 49.9% 0); filter: brightness(3) contrast(2.5); }
  45%  { clip-path: inset(0% 0 0% 0);        filter: brightness(1.8) contrast(1.4); }
  100% { clip-path: inset(0% 0 0% 0);        filter: brightness(1) contrast(1); }
}
body.crt-booting {
  animation: cc-crt-boot 1.0s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ── Screen Shake ── */
@keyframes cc-shake {
  0%,100% { transform: translate(0,0); }
  10%  { transform: translate(-5px,  2px); }
  20%  { transform: translate( 5px, -3px); }
  30%  { transform: translate(-4px,  4px); }
  40%  { transform: translate( 4px, -3px); }
  50%  { transform: translate(-3px,  3px); }
  60%  { transform: translate( 3px, -2px); }
  70%  { transform: translate(-2px,  2px); }
  80%  { transform: translate( 2px, -1px); }
  90%  { transform: translate(-1px,  1px); }
}

/* ── HUD ── */
.cc-hud {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999993;
  font-family: 'DM Mono', monospace;
  background: rgba(3, 17, 82, 0.92);
  border: 2px solid rgba(255, 255, 255, 0.12);
  padding: 14px 18px 12px;
  min-width: 152px;
  pointer-events: all;
  transition: opacity 0.4s, transform 0.4s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.cc-hud:hover {
  opacity: 0.12;
  transform: scale(0.92);
}
.cc-hud__snd.muted {
  color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.06);
}

/* ── 26. Proc-step depth pulse on enter ── */
@keyframes cc-depth-in {
  0%   { transform: scale(0.96); }
  60%  { transform: scale(1.01); }
  100% { transform: scale(1); }
}
.proc-step.depth-entered {
  animation: cc-depth-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-v3.anim-started .hmb-draw {
  opacity: 1;
  transform: scaleX(1);
}
.hero-v3.anim-started .hmb-ui-card {
  opacity: 1;
  transform: translateY(0);
}
.hero-v3.anim-started .hmb-ui-chart { opacity: 1 !important; }
.hero-v3.anim-started .hmb-ucb { transform: scaleY(1); }
.cc-mm-dot.active {
  background: var(--cor-secundaria);
  border-color: var(--cor-secundaria);
  transform: scale(1.5);
  box-shadow: 0 0 8px rgba(13,148,136,0.7);
}

/* ================================================
   HUD TOOLTIP — RETRO SPACESHIP DASHBOARD
   ================================================ */

.hud-tooltip {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  min-width: 260px;
  max-width: 300px;
  background: rgba(4, 7, 18, 0.97);
  border: 1px solid var(--cor-secundaria);
  font-family: 'Courier New', monospace;
  color: #c8d4ec;
  font-size: 11px;
  line-height: 1.5;
  /* Scan line sutil por cima */
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.012) 3px,
    rgba(255,255,255,0.012) 4px
  );
}
.hud-tooltip.hud-tooltip--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Seta apontando para o botão (padrão: tooltip acima → seta para baixo) */
.hud-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 6px;
  background: var(--cor-secundaria);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
/* Tooltip abaixo do botão → seta vira para cima */
.hud-tooltip--below::after {
  bottom: auto;
  top: -6px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

/* Brackets de mira nos cantos */
.hud-tooltip::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--cor-secundaria), var(--cor-secundaria)) top left / 10px 1px no-repeat,
    linear-gradient(var(--cor-secundaria), var(--cor-secundaria)) top left / 1px 10px no-repeat,
    linear-gradient(var(--cor-secundaria), var(--cor-secundaria)) top right / 10px 1px no-repeat,
    linear-gradient(var(--cor-secundaria), var(--cor-secundaria)) top right / 1px 10px no-repeat,
    linear-gradient(var(--cor-secundaria), var(--cor-secundaria)) bottom left / 10px 1px no-repeat,
    linear-gradient(var(--cor-secundaria), var(--cor-secundaria)) bottom left / 1px 10px no-repeat,
    linear-gradient(var(--cor-secundaria), var(--cor-secundaria)) bottom right / 10px 1px no-repeat,
    linear-gradient(var(--cor-secundaria), var(--cor-secundaria)) bottom right / 1px 10px no-repeat;
  pointer-events: none;
}

.hud-tip__header {
  background: var(--cor-secundaria);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 14px;
  text-transform: uppercase;
}
.hud-tip__body {
  padding: 12px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hud-tip__line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: #c8d4ec;
}
.hud-tip__marker {
  color: var(--cor-secundaria);
  flex-shrink: 0;
  margin-top: 1px;
}
.hud-tip__footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 7px 14px;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--cor-secundaria);
  opacity: 0.9;
}

/* ================================================
   SPACE THEME — INTERGALACTIC INTERFACE LAYER
   Starfield · Nebula · Sector Nav · Targeting
   Warp Speed · Cockpit HUD · Scan Lines
   (100% aditivo — zero remoção de estilos existentes)
   ================================================ */

/* ── Variáveis de espaço ── */
:root {
  --space-cyan:    #00e5ff;
  --space-purple:  #7c3aed;
  --space-nebula:  rgba(0, 229, 255, 0.06);
  --space-amber:   #f59e0b;
  --space-red-alt: #ff3b3b;
  --space-grid:    rgba(0, 229, 255, 0.04);
}

/* ── Upgrade visual no HUD — borda ciano ── */
.cc-hud {
  border-color: rgba(0, 229, 255, 0.2) !important;
  box-shadow: 0 0 20px rgba(0,229,255,0.08), inset 0 0 12px rgba(0,229,255,0.03) !important;
}

/* Cinematic scroll wipe — removido a pedido do cliente */


/* ================================================
   TRABALHOS RECENTES (WORKS)
   ================================================ */
.works-sec {
  padding: 120px 0;
  background-color: var(--bg-color);
  border-top: 2px solid var(--border-color);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media(max-width: 992px) { .works-grid { grid-template-columns: repeat(2, 1fr); }}
@media(max-width: 768px) { .works-grid { grid-template-columns: 1fr; }}

.work-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-color);
  border: 2px solid var(--border-color);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}
.work-card:hover {
  transform: translate(-3px, -8px);
  border-color: var(--cor-secundaria);
  box-shadow:
    4px 4px 0px var(--cor-secundaria),        /* offset brutalist */
    0 16px 40px rgba(255, 61, 20, 0.22),      /* elevação com neon */
    0 4px 12px rgba(255, 61, 20, 0.15),       /* sombra próxima */
    0 0 60px rgba(255, 61, 20, 0.07);         /* halo ambiente */
}

/* Visual placeholder for images - Brutalist style */
.work-card__visual {
  width: 100%;
  aspect-ratio: 4/3;
  border-bottom: 2px solid var(--border-color);
  position: relative;
  overflow: hidden;
  background-color: #f4f5f9;
}
.dark-theme .work-card__visual { background-color: #0d1117; }

.work-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--cor-secundaria);
  color: #fff;
  font-family: 'DM Mono', sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border: 2px solid var(--cor-secundaria);
}

/* Brutalist patterns */
.work-card__pattern { width: 100%; height: 100%; }
.work-card__pattern--1 {
  background-image: repeating-linear-gradient(45deg, var(--border-color) 0, var(--border-color) 2px, transparent 2px, transparent 12px);
}
.work-card__pattern--2 {
  background-size: 20px 20px;
  background-image: radial-gradient(circle, var(--border-color) 2px, transparent 2px);
}
.work-card__pattern--3 {
  background-image: linear-gradient(0deg, transparent 24%, var(--border-color) 25%, var(--border-color) 26%, transparent 27%, transparent 74%, var(--border-color) 75%, var(--border-color) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, var(--border-color) 25%, var(--border-color) 26%, transparent 27%, transparent 74%, var(--border-color) 75%, var(--border-color) 76%, transparent 77%, transparent);
  background-size: 40px 40px;
}

.work-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.work-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-color);
  opacity: 0.6;
  margin-bottom: 12px;
}
.work-card__dot {
  width: 4px; height: 4px;
  background: var(--cor-secundaria);
}

.work-card__title {
  font-family: 'DM Mono', sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-color);
  margin-bottom: 8px;
}

.work-card__desc {
  font-size: 14px;
  color: var(--text-color);
  opacity: 0.7;
  line-height: 1.5;
  margin-bottom: 24px;
}

.work-card__results {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 2px solid var(--border-color);
}
.work-card__result {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.work-card__result strong {
  font-family: 'DM Mono', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--text-color);
  line-height: 1;
}
.work-card__result span {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-color);
  opacity: 0.5;
}

.work-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-color);
  text-decoration: none;
  border-top: 2px solid transparent;
  padding-top: 8px;
}
.work-card:hover .work-card__link { color: var(--cor-secundaria); }
.work-card__link i { width: 16px; height: 16px; transition: transform 0.2s; }
.work-card:hover .work-card__link i { transform: translate(4px, -4px); }



/* =============================================
   SCI-FI HUD / CYBERPUNK BRUTALISM ACCENTS
   ============================================= */

/* 1. Global Background Grid (Subtle HUD Grid) */
body {
  background-image: 
    linear-gradient(var(--border-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
}

/* 2. Decorative Scanline Overlay */
body::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(3, 17, 82, 0.03) 50%);
  z-index: 99999;
  background-size: 100% 4px;
  pointer-events: none;
  opacity: 0.8;
}

/* 3. HUD Crosshairs on all major sections */
section {
  position: relative;
}
section::before, section::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  pointer-events: none;
  z-index: 10;
  opacity: 0.6;
}
section::before {
  top: 20px; left: 20px;
  border-top: 2px solid var(--cor-secundaria);
  border-left: 2px solid var(--cor-secundaria);
}
section::after {
  bottom: 20px; right: 20px;
  border-bottom: 2px solid var(--cor-secundaria);
  border-right: 2px solid var(--cor-secundaria);
}

/* 4. Glowing Neon Accents on Interactive Elements */
.btn-solid:hover, .spec-card__cta:hover, .work-card:hover {
  box-shadow: 0 0 12px rgba(255, 61, 20,0.4), 4px 4px 0px var(--cor-secundaria) !important;
  border-color: var(--cor-secundaria) !important;
}

/* 5. MIRA / Crosshair Cursor (reticle limpo, segue o mouse sem lag) */
#cc-ring {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  border: 1.5px solid var(--cor-secundaria) !important;
  box-shadow: 0 0 7px rgba(255, 61, 20,0.45);
  background: transparent !important;
}
#cc-dot {
  width: 4px !important; height: 4px !important;
  border-radius: 50% !important;
  background: var(--cor-secundaria) !important;
}
#cc-ring::before, #cc-ring::after {
  content: '';
  position: absolute;
  background: var(--cor-secundaria);
  box-shadow: 0 0 4px var(--cor-secundaria);
}
/* Ticks da mira: arms saindo do anel com GAP no centro */
#cc-ring::before {
  top: 50%; transform: translateY(-50%);
  left: -9px; width: 48px; height: 1.5px;
  background: linear-gradient(90deg, var(--cor-secundaria) 0 9px, transparent 9px 39px, var(--cor-secundaria) 39px 48px);
}
#cc-ring::after {
  left: 50%; transform: translateX(-50%);
  top: -9px; height: 48px; width: 1.5px;
  background: linear-gradient(180deg, var(--cor-secundaria) 0 9px, transparent 9px 39px, var(--cor-secundaria) 39px 48px);
}

/* 6. Fix for dark mode neon glow */
.dark-theme .btn-solid:hover {
  box-shadow: 0 0 15px var(--cor-secundaria), 6px 6px 0px var(--cor-secundaria) !important;
}

/* 7. HUD Status Line (Fixed Bottom Left) */
.hud-status-line {
  position: fixed;
  bottom: 30px;
  left: 30px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cor-secundaria);
  letter-spacing: 2px;
  z-index: 9999;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 0 6px rgba(255, 61, 20,0.6);
}
.hud-status-line::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--cor-secundaria);
  box-shadow: 0 0 8px var(--cor-secundaria);
  animation: hud-pulse 1.2s infinite;
}
@keyframes hud-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(0.8); box-shadow: none; }
}

.hud-coordinates {
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--text-color);
  opacity: 0.4;
  letter-spacing: 2px;
  z-index: 9999;
  pointer-events: none;
}

/* Fix cursor active states for HUD */
#cc-ring[data-state] {
  background: var(--cor-secundaria) !important;
  border-radius: 0 !important;
}
#cc-ring[data-state="view"], #cc-ring[data-state="open"] {
  background: var(--bg-surface-alt) !important;
  border-color: var(--cor-secundaria) !important;
}
#cc-ring[data-state]::before, #cc-ring[data-state]::after {
  opacity: 0; /* Hide crosshairs when interacting */
}


/* =============================================
   SPECIFIC HUD COMPONENTS (Gauge, Radar, Toggles)
   ============================================= */

.hud-interface {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 10px;
}
.hud-toggle.active .ht-knob {
  border-color: #10b981;
  box-shadow: 0 0 8px rgba(16,185,129,0.3);
}
.hud-toggle.active .ht-knob::after {
  bottom: 22px;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}
.hero-v3.anim-started .hg-fill, .reveal.active .hg-fill { stroke-dashoffset: 40; }
.hero-v3.anim-started .hv-anim, .reveal.active .hv-anim { height: var(--vh) !important; }
@keyframes radar-spin { 100% { transform: rotate(360deg); } }

/* We ensure sections have relative position so absolute works */
.cases, .spec, .proc, .faq-section, .works-sec, .ctaform {
  position: relative;
  overflow: hidden; /* Prevent HUD elements from creating horizontal scroll if they overflow */
}

/* Ensure content goes above the scattered HUD */
.container, .ctaform-grid, .proc-grid, .works-grid {
  position: relative;
  z-index: 2;
}

/* Dark Theme Overrides */
body.dark-theme {
  /* ── Canvas Premium Dark ── */
  --bg-base:         #06090f;   /* página — quase preto com azul profundo */
  --bg-surface:      #0b1018;   /* cards, painéis leves */
  --bg-surface-alt:  #111827;   /* painéis com destaque, nav-dark */

  /* ── Tipografia ── */
  --text-primary:    #e2e8f0;   /* branco suave — não cansa os olhos */
  --text-muted:      #64748b;   /* muted real */
  --text-on-dark:    #ffffff;

  /* ── Estrutura ── */
  --border-color:    rgba(255,255,255,0.055);  /* invisível quase */
  --border-strong:   rgba(255,255,255,0.09);   /* sutil */

  /* ── Texto secundário ── */
  --text-secondary:  #94a3b8;
  --bg-color:        var(--bg-surface);

  /* ── Legacy aliases ── */
  --cor-fundo:       var(--bg-base);
  --cor-texto:       var(--text-primary);
  --brand-primary:   #06090f;
}


body.dark-theme .faq-answer {
  color: var(--text-muted);
}





/* Additional Dark Mode Fixes */
body.dark-theme .btn-nav-cta {
  background: var(--brand-accent);
  color: #fff;
  border: none;
  box-shadow: 0 0 15px rgba(255, 61, 20,0.4);
}





/* Dark Mode HUD Enhancements */

body.dark-theme .btn-nav-cta:hover {
  background: var(--brand-accent);
  color: #fff;
  box-shadow: 0 0 20px var(--brand-accent);
}
body.dark-theme .proc-stamp {
  background: var(--bg-surface-alt);
  color: var(--brand-accent);
  border: 1px solid var(--brand-accent);
}

body.dark-theme .bento-stamp--white {
  background: var(--bg-surface);
  color: var(--text-primary);
}
body.dark-theme .bento-stamp--navy {
  background: var(--bg-surface-alt);
  color: var(--text-on-dark);
}

body.dark-theme .hc-proof {
  background: #0d1117;
}
body.dark-theme .hc-capture {
  background: #090c10;
}

body.dark-theme .hc-input-group {
  border-color: var(--border-color);
  background: #000;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

body.dark-theme .hc-submit {
  background: #1c2128;
  border-left-color: var(--border-color);
}

/* ─────────────────────────────────────────────
   CONVERSION OPTIMIZATION ELEMENTS
───────────────────────────────────────────── */

/* 1. Direct Connect Banner */
.direct-connect-banner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 100px auto;
  padding: 80px 40px;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-strong);
  text-align: center;
  overflow: hidden;
}

body.dark-theme .direct-connect-banner {
  background: #0d1117;
  border-color: var(--brand-accent);
}

.dcb-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dcb-title {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.dcb-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

.dcb-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 800px) {
  .dcb-actions {
    flex-direction: column;
    gap: 24px;
  }}

.dcb-btn-wa {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 18px 32px;
  font-family: var(--fonte-corpo);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.dcb-btn-wa:hover {
  background: #1ebc59;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.dcb-or {
  font-family: var(--fonte-corpo);
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.5;
}

.dcb-email-link {
  font-family: var(--fonte-corpo);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 2px solid var(--brand-accent);
  transition: color 0.3s ease;
}

.dcb-email-link:hover {
  color: var(--brand-accent);
}

/* Brutalist decor */
.dcb-decor {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 4px solid var(--brand-accent);
}
.dcb-decor--tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.dcb-decor--br { bottom: 0; right: 0; border-left: none; border-top: none; }

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

body.dark-theme .ctaform-fast-track {
  background: #000;
  border-color: var(--brand-accent);
}


/* ─────────────────────────────────────────────
   SCI-FI HERO DECORATIONS
───────────────────────────────────────────── */
.hero-v3 {
  position: relative;
}

body.dark-theme .hero-v3 {
  background: #05080c;
  /* shadow reduzida para não apagar o grid */
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.5);
}
body.dark-theme .hero-v3::before {
  width: 100% !important;
  height: 100% !important;
  background-image:
    linear-gradient(rgba(255,255,255,0.20) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.20) 1px, transparent 1px);
}
body.dark-theme .hero-bg__glow {
  background:
    radial-gradient(ellipse 65% 80% at 15% 50%, rgba(255, 61, 20,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 55% 70% at 85% 30%, rgba(14,165,233,0.15) 0%, transparent 60%);
}

/* CROSSHAIRS */
.sf-crosshair {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--brand-accent);
  opacity: 0.3;
  pointer-events: none;
  z-index: 5;
}
.sf-crosshair::after {
  content: '';
  position: absolute;
  background: var(--brand-accent);
}
.sf-crosshair::before {
  content: '';
  position: absolute;
  background: var(--brand-accent);
}

.sf-crosshair--tl { top: 40px; left: 40px; border-right: none; border-bottom: none; }
.sf-crosshair--tl::after { top: -2px; left: 50%; width: 2px; height: 10px; }
.sf-crosshair--tl::before { top: 50%; left: -2px; width: 10px; height: 2px; }

.sf-crosshair--tr { top: 40px; right: 40px; border-left: none; border-bottom: none; }
.sf-crosshair--tr::after { top: -2px; right: 50%; width: 2px; height: 10px; }
.sf-crosshair--tr::before { top: 50%; right: -2px; width: 10px; height: 2px; }

.sf-crosshair--bl { bottom: 40px; left: 40px; border-right: none; border-top: none; }
.sf-crosshair--bl::after { bottom: -2px; left: 50%; width: 2px; height: 10px; }
.sf-crosshair--bl::before { top: 50%; left: -2px; width: 10px; height: 2px; }

.sf-crosshair--br { bottom: 40px; right: 40px; border-left: none; border-top: none; }
.sf-crosshair--br::after { bottom: -2px; right: 50%; width: 2px; height: 10px; }
.sf-crosshair--br::before { top: 50%; right: -2px; width: 10px; height: 2px; }

@media (max-width: 900px) {
  .sf-crosshair { display: none; }}

/* TELEMETRY */
.sf-telemetry {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 160px);
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  font-family: var(--fonte-corpo);
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 5;
}

.sf-telemetry--top {
  top: 50px;
}

.sf-telemetry--bottom {
  bottom: 50px;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .sf-telemetry { width: calc(100% - 40px); font-size: 9px; }}

/* TERMINAL */
.sf-terminal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sf-term-cursor {
  animation: blink 1s step-end infinite;
}

/* RADAR CORE */
.sf-radar-core {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  border-radius: 50%;
  border: 1px solid var(--brand-accent);
  overflow: hidden;
}

body.dark-theme .sf-radar-core {
  opacity: 0.15;
}

.sf-radar-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed var(--brand-accent);
}

.sf-radar-circle--1 { width: 300px; height: 300px; }
.sf-radar-circle--2 { width: 150px; height: 150px; border-style: dotted; }

.sf-radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: conic-gradient(from 0deg, transparent 70%, rgba(255, 61, 20, 0.2) 100%);
  transform-origin: 0 0;
  animation: radar-spin 4s linear infinite;
}

@keyframes radar-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.sf-radar-target {
  position: absolute;
  top: 30%;
  left: 60%;
  width: 6px;
  height: 6px;
  background: var(--brand-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand-accent);
  animation: target-ping 4s infinite;
}

@keyframes target-ping {
  0%, 79% { opacity: 0; }
  80% { opacity: 1; transform: scale(2); }
  90% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; }
}

/* Adjust Z-indexes so text is above radar */
.hero-container-v3, .hero-conversion-block {
  position: relative;
  z-index: 2;
}

/* HEADER FIX: Prevent line breaking on medium screens */
@media (max-width: 1100px) {
  .nav-menu {
    gap: 16px !important;
  }
  .nav-menu a {
    font-size: 13px !important;
  }
  .nav-header .logo {
    font-size: 18px !important;
  }
  .btn-nav-cta {
    padding: 10px 16px !important;
    font-size: 13px !important;
  }
}
@media (max-width: 850px) {
  .nav-menu {
    display: none !important;
  }}
.nav-menu, .btn-nav-cta, .logo {
  white-space: nowrap !important;
  flex-shrink: 0;
}

/* HEADER OVERLAP FIX */
@media (max-width: 1024px) {
  .nav-menu {
    display: none !important; /* Hide menu earlier to prevent logo overlap */
  }
}

/* FORCE LOGO SPACING */
.nav-header .logo {
  margin-right: auto !important; /* Pushes everything else to the right */
}
.nav-menu {
  margin-right: 32px !important; /* Adds space between menu and CTA/Toggle */
}


/* ─────────────────────────────────────────────
   HEADER ALIGNMENT REFACTOR (GRID SYSTEM)
───────────────────────────────────────────── */
.nav-header .container.nav-grid {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  width: 100% !important;
  padding: 0 24px !important;
  gap: 20px !important;
}

/* Reset margin weirdness from previous patches */
.nav-header .logo { margin: 0 !important; font-size: 20px !important; }
.nav-menu { margin: 0 !important; display: flex !important; gap: 32px !important; }

/* Posicionamentos absolutos dentro do Grid */
.nav-left { display: flex; justify-content: flex-start; align-items: center; }
.nav-center { display: flex; justify-content: center; align-items: center; }
.nav-right { display: flex; justify-content: flex-end; align-items: center; gap: 16px; }

/* Tratamento de encolhimento para Telas Médias (Tablets) */
@media (max-width: 1200px) {
  .nav-menu { gap: 16px !important; }
  .nav-menu a { font-size: 14px !important; }
  .nav-header .logo { font-size: 18px !important; }
}

/* Mobile: menu some; logo no centro geométrico; hamburger à direita */
@media (max-width: 950px) {
  .nav-header .container.nav-grid {
    grid-template-columns: 1fr auto 1fr !important;
  }
  .nav-center {
    display: none !important;
  }
  .nav-left {
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
  }
  .nav-right {
    grid-column: 3;
    grid-row: 1;
  }
}



/* ─────────────────────────────────────────────
   1. CLIENTS SECTION
───────────────────────────────────────────── */
.clients-sec {
  padding: 80px 0 72px;
  border-bottom: 2px solid var(--border-color);
  background: var(--cor-fundo);
}

.clients-sec__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

@media (max-width: 768px) {
  .clients-sec__head { grid-template-columns: 1fr; gap: 24px; }}

.clients-sec__title {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: 12px;
}

.clients-sec__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.clients-sec__link {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Mono', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
  border-bottom: 2px solid var(--cor-secundaria);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.clients-sec__link:hover { color: var(--cor-secundaria); }

/* Grid de logos — 4 por linha */
.clients-sec__logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--border-color);
  border-left: 2px solid var(--border-color);
}
@media (max-width: 900px) {
  .clients-sec__logos { grid-template-columns: repeat(2, 1fr); }}
@media (max-width: 480px) {
  .clients-sec__logos { grid-template-columns: repeat(2, 1fr); }}

.clients-sec__logo-item {
  border-right: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  padding: 32px 24px;
  font-family: 'DM Mono', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.35;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 0.2s, background 0.2s;
  cursor: default;
}
.clients-sec__logo-item:hover {
  opacity: 1;
  background: var(--bg-surface);
}

/* ================================================
   TECH STACK
   ================================================ */
.techstack-sec {
  padding: 100px 0;
  background: var(--bg-surface);
  border-bottom: 2px solid var(--border-color);
}

/* ── Cabeçalho ── */
.techstack-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 2px solid var(--border-color);
}
.techstack-title {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-top: 12px;
}
.techstack-intro {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  align-self: end;
}

/* ── Linhas por categoria ── */
.techstack-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.techstack-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}
.techstack-row:last-child { border-bottom: none; }

.techstack-row__cat {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.techstack-row__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Chip individual ── */
.ts-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border-color);
  background: var(--cor-fundo);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  cursor: default;
}
.ts-chip:hover {
  border-color: var(--cor-secundaria);
  background: var(--bg-surface-alt, rgba(0,0,0,0.04));
  transform: translateY(-2px);
}
.ts-chip--highlight {
  border-color: rgba(255, 61, 20,0.3);
  background: rgba(255, 61, 20,0.04);
}
.ts-chip--highlight:hover {
  border-color: var(--cor-secundaria);
  background: rgba(255, 61, 20,0.08);
}

/* abreviação colorida */
.ts-chip__abbr {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  color: var(--tc, var(--cor-secundaria));
  letter-spacing: 0.5px;
  min-width: 18px;
  text-align: center;
  line-height: 1;
}

/* nome da tecnologia */
.ts-chip__name {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* dark theme */
body.dark-theme .techstack-sec { background: #060a10; }
body.dark-theme .ts-chip { background: rgba(255,255,255,0.02); }
body.dark-theme .ts-chip:hover { background: rgba(255,255,255,0.05); }
body.dark-theme .ts-chip--highlight { background: rgba(255, 61, 20,0.06); }

/* responsive */
@media (max-width: 900px) {
  .techstack-head { grid-template-columns: 1fr; gap: 24px; }
  .techstack-row { grid-template-columns: 100px 1fr; gap: 16px; }
}
@media (max-width: 560px) {
  .techstack-sec { padding: 72px 0; }
  .techstack-row { grid-template-columns: 1fr; gap: 12px; padding: 20px 0; }
  .techstack-row__cat { border-left: 2px solid var(--cor-secundaria); padding-left: 10px; }}

/* ================================================
   FOUNDER BLOCK
   ================================================ */
.founder-block {
  padding: 120px 0;
  background: var(--cor-fundo);
  border-bottom: 2px solid var(--border-color);
}
.founder-block__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 96px;
  align-items: center;
}

/* ── Frame visual ── */
.founder-block__visual {
  display: flex;
  justify-content: center;
}
.founder-block__frame {
  width: 320px;
  height: 360px;
  border: 2px solid var(--border-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  overflow: hidden;
}

/* cantoneiras HUD */
.fb-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 2;
}
.fb-corner--tl { top: -2px;  left: -2px;  border-top: 3px solid var(--cor-secundaria); border-left: 3px solid var(--cor-secundaria); }
.fb-corner--tr { top: -2px;  right: -2px; border-top: 3px solid var(--cor-secundaria); border-right: 3px solid var(--cor-secundaria); }
.fb-corner--bl { bottom: -2px; left: -2px;  border-bottom: 3px solid var(--cor-secundaria); border-left: 3px solid var(--cor-secundaria); }
.fb-corner--br { bottom: -2px; right: -2px; border-bottom: 3px solid var(--cor-secundaria); border-right: 3px solid var(--cor-secundaria); }

/* linha de scan */
.fb-scan {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(255, 61, 20,0.6) 40%, rgba(255, 61, 20,0.6) 60%, transparent);
  animation: fbScan 4s ease-in-out infinite;
  z-index: 2;
}
@keyframes fbScan {
  0%   { top: 0%;   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
@keyframes founderRing {
  to { transform: rotate(360deg); }
}

/* status badge */
.fb-status {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.fb-status__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: agendaDot 1.8s ease-in-out infinite;
}

/* ── Conteúdo ── */
.founder-block__quote {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--text-primary);
  border-left: 3px solid var(--cor-secundaria);
  padding-left: 24px;
  margin: 20px 0 36px;
  font-style: normal;
}

.founder-block__bio { margin-bottom: 32px; }
.founder-block__name-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.founder-block__name {
  font-family: 'DM Mono', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.founder-block__title {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.founder-block__creds {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.founder-block__creds li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* dark theme */
body.dark-theme .founder-block { background: #05080c; }

/* responsive */
@media (max-width: 1024px) {
  .founder-block__inner { grid-template-columns: 1fr; gap: 56px; }
  .founder-block__visual { justify-content: flex-start; }
  .founder-block__frame { width: 280px; height: 300px; }
}
@media (max-width: 600px) {
  .founder-block { padding: 80px 0; }
  .founder-block__frame { width: 240px; height: 260px; }
  .founder-block__quote { font-size: 1rem; }}

/* ================================================
   GARANTIA / RISK REVERSAL
   ================================================ */
.guarantee-sec {
  padding: 120px 0 100px;
  background: var(--bg-surface-alt);
  border-bottom: 2px solid var(--border-color);
  color: #fff;
}

/* ── Cabeçalho ── */
.guarantee-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 72px;
  padding-bottom: 64px;
  border-bottom: 2px solid rgba(255,255,255,0.08);
}
.guarantee-head__left { max-width: 560px; }

.guarantee-title {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.guarantee-title em {
  font-style: normal;
  color: var(--cor-secundaria);
}
.guarantee-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.guarantee-item {
  padding: 48px 40px;
  border-right: 2px solid rgba(255,255,255,0.08);
  border-bottom: 2px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s;
}
.guarantee-item:hover {
  background: rgba(255,255,255,0.03);
}
.guarantee-item__icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 61, 20,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cor-secundaria);
  flex-shrink: 0;
}
.guarantee-item__icon svg {
  width: 20px;
  height: 20px;
}
.guarantee-item__title {
  font-family: 'DM Mono', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.guarantee-item__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* label do sec-head dentro do guarantee */
.guarantee-sec .sec-head__label {
  color: var(--cor-secundaria);
}

/* responsive */
@media (max-width: 1024px) {
  .guarantee-head { flex-direction: column; gap: 40px; }
  .guarantee-head__left { max-width: 100%; }
}
@media (max-width: 600px) {
  .guarantee-sec { padding: 80px 0; }
  .guarantee-item { padding: 36px 24px; }
  .guarantee-title { font-size: 2.2rem; }}

/* ================================================
   URGÊNCIA / AGENDA DO MÊS
   ================================================ */
.agenda-sec {
  padding: 100px 0;
  background: var(--cor-fundo);
  border-bottom: 2px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
/* linha de acento no topo — vermelho pulsante */
.agenda-sec::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cor-secundaria);
  animation: agendaPulse 2.4s ease-in-out infinite;
}
@keyframes agendaPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.agenda-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Coluna esquerda ── */
.agenda-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
  margin-bottom: 24px;
}
.agenda-label__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cor-secundaria);
  animation: agendaDot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes agendaDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0.5; }
}

.agenda-title {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.agenda-title em {
  font-style: normal;
  color: var(--cor-secundaria);
}
.agenda-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
}

/* ── Coluna direita: slots ── */
.agenda-slots {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.agenda-slot {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.agenda-slot__bar {
  height: 6px;
  border-radius: 0;
  background: var(--border-color);
  position: relative;
  overflow: hidden;
}
.agenda-slot--taken .agenda-slot__bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--text-muted);
  opacity: 0.45;
  animation: slotFill 1s ease-out both;
}
.agenda-slot--open .agenda-slot__bar {
  border: 1px dashed var(--cor-secundaria);
  background: rgba(255, 61, 20,0.06);
}
.agenda-slot--open .agenda-slot__bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cor-secundaria), transparent);
  width: 35%;
  animation: slotOpenGlow 1.8s ease-in-out infinite alternate;
}
@keyframes slotFill {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}
@keyframes slotOpenGlow {
  from { opacity: 0.3; }
  to   { opacity: 0.7; }
}

.agenda-slot__label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}
.agenda-slot__status {
  color: var(--text-muted);
  opacity: 0.6;
}
.agenda-slot__status--open {
  color: var(--cor-secundaria);
  opacity: 1;
  font-weight: 800;
}

/* ── Medidor geral ── */
.agenda-meter {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.agenda-meter__track {
  height: 3px;
  background: var(--border-color);
  position: relative;
  overflow: hidden;
}
.agenda-meter__fill {
  height: 100%;
  background: var(--cor-secundaria);
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
}
.agenda-meter__label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── CTA ── */
.agenda-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--cor-secundaria);
  color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  transition: background 0.2s, transform 0.2s;
}
.agenda-cta:hover {
  background: #b91c1c;
  transform: translateX(4px);
}
.agenda-cta__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  animation: agendaDot 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

/* dark theme */
body.dark-theme .agenda-sec { background: #05080c; }

/* responsive */
@media (max-width: 900px) {
  .agenda-inner { grid-template-columns: 1fr; gap: 48px; }
  .agenda-desc { max-width: 100%; }
}
@media (max-width: 480px) {
  .agenda-sec { padding: 72px 0; }
  .agenda-title { font-size: 1.9rem; }}

/* ================================================
   COMPARATIVO
   ================================================ */
.compare-sec {
  padding: 120px 0 100px;
  background: var(--bg-surface);
  border-bottom: 2px solid var(--border-color);
}

.compare-table {
  border: 2px solid var(--border-color);
  overflow: hidden;
}

/* ── Linhas ── */
.compare-row {
  display: grid;
  grid-template-columns: 1fr repeat(3, 200px);
  border-bottom: 1px solid var(--border-color);
}
.compare-row:last-child { border-bottom: none; }
.compare-row--head { background: var(--cor-fundo); }
.compare-row--foot { background: var(--cor-fundo); border-top: 2px solid var(--border-color); }

/* ── Células ── */
.compare-cell {
  padding: 20px 28px;
  border-right: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.compare-cell:last-child { border-right: none; }

/* célula da feature (texto à esquerda) */
.compare-cell--feature {
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.2px;
  padding-left: 32px;
}

/* coluna destaque (Creative Core) */
.compare-cell--us {
  background: rgba(255, 61, 20,0.05);
  border-left: 2px solid var(--cor-secundaria);
  border-right: 2px solid var(--cor-secundaria);
  flex-direction: column;
  gap: 6px;
}
.compare-row--head .compare-cell--us {
  background: rgba(255, 61, 20,0.08);
  padding-top: 28px;
  padding-bottom: 28px;
}

/* label "Recomendado" */
.compare-us-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
  background: rgba(255, 61, 20,0.1);
  border: 1px solid rgba(255, 61, 20,0.25);
  padding: 3px 8px;
  border-radius: 2px;
}

/* nome da coluna no header */
.compare-col-name {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 900;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-align: center;
  line-height: 1.1;
}

/* hover nas linhas de feature */
.compare-row:not(.compare-row--head):not(.compare-row--foot):hover .compare-cell--feature {
  color: var(--text-primary);
}
.compare-row:not(.compare-row--head):not(.compare-row--foot):hover .compare-cell:not(.compare-cell--us):not(.compare-cell--feature) {
  background: var(--bg-surface-alt, rgba(0,0,0,0.03));
}

/* ícones de status */
.cmp-check {
  width: 18px; height: 18px;
  color: var(--cor-secundaria);
  flex-shrink: 0;
}
.cmp-x {
  width: 16px; height: 16px;
  color: var(--text-muted);
  opacity: 0.4;
  flex-shrink: 0;
}
.cmp-maybe {
  width: 16px; height: 16px;
  color: #f59e0b;
  flex-shrink: 0;
}

/* célula "Boa sorte." */
.compare-cell--dim {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.4;
}

/* CTA na coluna Creative Core */
.compare-cta {
  display: inline-block;
  padding: 12px 24px;
  background: var(--cor-secundaria);
  color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.compare-cta:hover { background: #b91c1c; }

/* legenda */
.compare-legend {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.compare-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* dark theme */
body.dark-theme .compare-sec { background: #060a10; }
body.dark-theme .compare-row--head { background: #05080c; }
body.dark-theme .compare-row--foot { background: #05080c; }

/* responsive */
@media (max-width: 900px) {
  .compare-row { grid-template-columns: 1fr repeat(3, 80px); }
  .compare-cell { padding: 16px 12px; }
  .compare-cell--feature { padding-left: 16px; font-size: 13px; }
  .compare-col-name { font-size: 13px; }
  .compare-legend { justify-content: flex-start; gap: 20px; }
}
@media (max-width: 560px) {
  .compare-sec { padding: 80px 0; }
  .compare-row { grid-template-columns: 1fr repeat(3, 56px); }
  .compare-cell { padding: 14px 8px; }
  .compare-cell--feature { font-size: 12px; padding-left: 12px; }
  .compare-cta { font-size: 9px; padding: 10px 12px; letter-spacing: 1px; }}

/* ================================================
   PRICING / PACOTES
   ================================================ */
.pricing-sec {
  padding: 120px 0 100px;
  background: var(--cor-fundo);
  border-bottom: 2px solid var(--border-color);
}
.pricing-sec__note {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 340px;
  text-align: right;
  align-self: flex-end;
}

/* ── Grid de 3 cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--border-color);
}

/* ── Card base ── */
.pricing-card {
  padding: 52px 44px 44px;
  border-right: 2px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: background 0.25s;
  background: var(--cor-fundo);
}
.pricing-card:last-child { border-right: none; }
.pricing-card:hover { background: var(--bg-surface); }

/* ── Card destaque (Growth) ── */
.pricing-card--featured {
  background: var(--bg-surface-alt);
  border-right: 2px solid var(--border-color);
  overflow: hidden;
}
.pricing-card--featured:hover { background: var(--bg-surface-alt); }

/* ── CTA ── */
.pricing-card__cta {
  display: block;
  text-align: center;
  padding: 15px 24px;
  border: 2px solid var(--border-color);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  margin-top: auto;
}
.pricing-card__cta:hover {
  background: var(--text-primary);
  color: var(--cor-fundo);
  border-color: var(--text-primary);
}

/* dark theme */
body.dark-theme .pricing-card { background: #05080c; }
body.dark-theme .pricing-card:hover { background: rgba(255,255,255,0.03); }
body.dark-theme .pricing-card--featured { background: rgba(255,255,255,0.04); }
body.dark-theme .pricing-card--featured:hover { background: rgba(255,255,255,0.04); }

/* responsive */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; border: 2px solid var(--border-color); }
  .pricing-card { border-right: none; border-bottom: 2px solid var(--border-color); }
  .pricing-card:last-child { border-bottom: none; }
  .pricing-sec__note { text-align: left; max-width: 100%; }
}
@media (max-width: 600px) {
  .pricing-sec { padding: 80px 0; }
  .pricing-card { padding: 40px 28px; }}

/* ================================================
   STATS STRIP — Barra de números
   ================================================ */
.stats-strip {
  background: var(--cor-fundo);
  border-bottom: 2px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
/* linha de acento vermelha no topo */
.stats-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--cor-secundaria) 25%,
    var(--cor-secundaria) 75%,
    transparent 100%
  );
  opacity: 0.7;
}
.stats-strip__inner {
  max-width: var(--largura-maxima);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-strip__item {
  padding: clamp(48px, 5vw, 72px) clamp(32px, 4vw, 52px);
  border-right: 2px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s;
  position: relative;
}
.stats-strip__item:last-child { border-right: none; }
.stats-strip__item:hover { background: var(--bg-surface); }

/* número + prefixo + sufixo */
.stats-strip__num-wrap {
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
}
.stats-strip__prefix {
  font-family: 'Tektur', sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--cor-secundaria);
  margin-right: 4px;
  letter-spacing: -0.01em;
}
.stats-strip__num {
  font-family: 'Tektur', sans-serif;
  font-size: clamp(58px, 6.5vw, 84px);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.04em;
  tabular-nums: normal;
}
.stats-strip__suffix {
  font-family: 'Tektur', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: var(--cor-secundaria);
  letter-spacing: -0.02em;
  margin-left: 2px;
}
.stats-strip__label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.6;
}

/* dark theme */
body.dark-theme .stats-strip { background: #05080c; }

/* responsive */
@media (max-width: 900px) {
  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .stats-strip__item { padding: 40px 32px; border-bottom: 2px solid var(--border-color); }
  .stats-strip__item:nth-child(2n) { border-right: none; }
}
@media (max-width: 480px) {
  .stats-strip__inner { grid-template-columns: 1fr 1fr; }
  .stats-strip__item { padding: 32px 24px; }
  .stats-strip__num { font-size: 52px; }}

.marquee-track {
  display: flex;
  width: 200%; /* For infinite scroll */
  animation: marquee-scroll 20s linear infinite;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

body.dark-theme .fv-frame {
  background: #0d1117;
  border-color: var(--brand-accent);
}

/* ─────────────────────────────────────────────
   3. TESTIMONIALS (IMPACT LOGS)
───────────────────────────────────────────── */
.testimonials-sec {
  padding: 120px 0;
  background: var(--bg-surface-alt);
}

body.dark-theme .testimonials-sec {
  background: #05080c; /* Deep space */
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .test-grid { grid-template-columns: 1fr; }}

.test-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
}

body.dark-theme .test-card {
  background: #0d1117;
  border-color: rgba(255,255,255,0.05);
}

.test-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-accent);
}

.tc-quote {
  color: var(--brand-accent);
  margin-bottom: 24px;
  opacity: 0.5;
}

.tc-text {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 40px;
  flex-grow: 1;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tca-avatar {
  width: 48px;
  height: 48px;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
}

.tca-info {
  display: flex;
  flex-direction: column;
}

.tca-info strong {
  font-size: 14px;
  color: var(--text-primary);
}

.tca-info span {
  font-size: 12px;
  color: var(--text-muted);
}

.tc-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--fonte-corpo);
  font-size: 10px;
  font-weight: 700;
  color: var(--brand-accent);
  background: rgba(255, 61, 20, 0.1);
  padding: 4px 8px;
  border: 1px solid var(--brand-accent);
  letter-spacing: 1px;
}

body.dark-theme .arsenal-item {
  background: #0d1117;
}

/* ─────────────────────────────────────────────
   ROI CALCULATOR
───────────────────────────────────────────── */
.roi-calc-sec {
  padding: 120px 0;
  background: var(--bg-surface-alt);
}
body.dark-theme .roi-calc-sec { background: #03060f; }

/* ── Painel principal ── */
.roi-calc {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid var(--border-strong);
  background: var(--bg-surface);
}
body.dark-theme .roi-calc {
  background: #080e1a;
  border-color: rgba(255,255,255,0.08);
}
@media (max-width: 900px) { .roi-calc { grid-template-columns: 1fr; }}

/* HUD corner brackets */
.roi-corner {
  position: absolute;
  width: 18px; height: 18px;
  border-color: var(--cor-secundaria);
  border-style: solid;
  pointer-events: none;
  z-index: 2;
}
.roi-corner--tl { top: -2px; left: -2px;   border-width: 2px 0 0 2px; }
.roi-corner--tr { top: -2px; right: -2px;  border-width: 2px 2px 0 0; }
.roi-corner--bl { bottom: -2px; left: -2px;  border-width: 0 0 2px 2px; }
.roi-corner--br { bottom: -2px; right: -2px; border-width: 0 2px 2px 0; }

/* ── Coluna inputs ── */
.roi-inputs {
  padding: 48px;
  border-right: 2px solid var(--border-strong);
  display: flex;
  flex-direction: column;
  gap: 36px;
}
body.dark-theme .roi-inputs { border-right-color: rgba(255,255,255,0.06); }
@media (max-width: 900px) {
  .roi-inputs { padding: 36px 28px; border-right: none; border-bottom: 2px solid var(--border-strong); }}

.roi-source-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.5;
}

.roi-input-block { display: flex; flex-direction: column; gap: 14px; }

.roi-input-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.roi-input-label {
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.roi-input-val {
  font-family: 'DM Mono', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--cor-secundaria);
  white-space: nowrap;
  letter-spacing: -0.03em;
}
.roi-input-val small {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0;
  margin-left: 2px;
}

/* Slider customizado */
.roi-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  background: var(--border-strong);
  outline: none;
  cursor: pointer;
  border-radius: 0;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  background: var(--cor-secundaria);
  cursor: pointer;
  border: 2px solid var(--bg-surface);
  box-shadow: 0 0 0 1px var(--cor-secundaria), 0 0 10px rgba(255, 61, 20,0.4);
  border-radius: 0;
}
.roi-slider::-moz-range-thumb {
  width: 16px; height: 16px;
  background: var(--cor-secundaria);
  cursor: pointer;
  border: 2px solid var(--bg-surface);
  box-shadow: 0 0 0 1px var(--cor-secundaria);
  border-radius: 0;
}

.roi-slider-scale {
  display: flex;
  justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  color: var(--text-muted);
  opacity: 0.45;
}

/* Contexto de CVR */
.roi-cvr-context {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  line-height: 1.55;
  color: var(--text-muted);
  padding: 14px 16px;
  border-left: 2px solid var(--cor-secundaria);
  background: rgba(255, 61, 20,0.04);
  transition: opacity 0.35s ease;
  opacity: 0;
  min-height: 52px;
}
.roi-cvr-context.active { opacity: 1; }

/* ── Coluna resultados ── */
.roi-results {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg-base);
}
body.dark-theme .roi-results { background: #040810; }
@media (max-width: 900px) { .roi-results { padding: 36px 28px; }}

.roi-res-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}
.roi-res-tag--proj { color: var(--cor-secundaria); opacity: 0.85; }

/* Receita atual (dimmed) */
.roi-res-current { opacity: 0.5; }
.roi-res-current-num {
  font-family: 'DM Mono', sans-serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  display: block;
}
.roi-res-current-sub {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  margin-top: 3px;
}

/* Seta divisória */
.roi-divider-arrow {
  display: flex;
  align-items: center;
  gap: 12px;
}
.roi-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border-strong);
}
.roi-divider-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
  white-space: nowrap;
  padding: 4px 10px;
  border: 1px solid rgba(255, 61, 20,0.3);
  background: rgba(255, 61, 20,0.06);
}

/* Receita projetada — foco principal */
.roi-res-big {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--text-primary);
  line-height: 1;
  margin: 6px 0 6px;
  transition: color 0.3s;
}
.roi-res-big.flash { color: var(--cor-secundaria); }
.roi-res-new-cvr {
  font-family: 'DM Mono', monospace;
  font-size: 11.5px;
  color: #22c55e;
  display: block;
}

/* Ganhos */
.roi-gains {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.roi-gain-item {
  padding: 16px 18px;
  border: 1px solid var(--border-strong);
}
.roi-gain-item--highlight {
  border-color: rgba(255, 61, 20,0.4);
  background: rgba(255, 61, 20,0.05);
}
.roi-gain-label {
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}
.roi-gain-val {
  font-family: 'DM Mono', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  letter-spacing: -0.03em;
}
.roi-gain-val--big {
  font-size: 22px;
  color: var(--cor-secundaria);
}

/* Payback */
.roi-payback {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11.5px;
  color: #22c55e;
  padding: 12px 16px;
  border: 1px solid rgba(34,197,94,0.22);
  background: rgba(34,197,94,0.04);
  line-height: 1.4;
}
.roi-payback strong { color: #22c55e; }
.roi-payback.roi-payback--warn {
  color: #f59e0b;
  border-color: rgba(245,158,11,0.22);
  background: rgba(245,158,11,0.04);
}
.roi-payback.roi-payback--warn strong { color: #f59e0b; }

/* CTA */
.roi-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  background: var(--cor-secundaria);
  color: #fff !important;
  font-family: 'DM Mono', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: auto;
}
.roi-cta-btn:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 61, 20,0.35);
}

/* ── Benchmarks strip ── */
.roi-benchmarks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--border-strong);
  border-top: none;
}
body.dark-theme .roi-benchmarks { border-color: rgba(255,255,255,0.06); }
@media (max-width: 900px) { .roi-benchmarks { grid-template-columns: repeat(2, 1fr); }}
@media (max-width: 480px) { .roi-benchmarks { grid-template-columns: 1fr; }}

.roi-bm-item {
  padding: 28px 24px;
  border-right: 2px solid var(--border-strong);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.dark-theme .roi-bm-item { border-right-color: rgba(255,255,255,0.06); }
.roi-bm-item:last-child { border-right: none; }
.roi-bm-item strong {
  font-family: 'DM Mono', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--cor-secundaria);
  line-height: 1;
}
.roi-bm-item span {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.roi-bm-item span em {
  font-style: normal;
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  opacity: 0.5;
  display: block;
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* =================================================
   UPGRADES — Grain, Marquee, Status, Mobile Nav,
               Social Proof Toast
   ================================================= */

/* ── 1. Hero grain texture ── */
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  animation: grainShift 0.5s steps(1) infinite;
}
body.dark-theme .hero-grain { opacity: 0.045; }
@keyframes grainShift {
  0%  { background-position: 0 0; }
  20% { background-position: -12px 8px; }
  40% { background-position: 6px -10px; }
  60% { background-position: -8px 4px; }
  80% { background-position: 10px -6px; }
  100%{ background-position: 0 0; }
}

/* ── 2. Marquee strip ── */
.marquee-strip {
  background: var(--bg-surface-alt);
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  overflow: hidden;
  padding: 0;
  height: 62px;
  display: flex;
  align-items: center;
  position: relative;
}
body.dark-theme .marquee-strip {
  background: #04070e;
  border-color: rgba(255,255,255,0.07);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 60s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 30px;
}
.marquee-track .mq-dot {
  color: var(--cor-secundaria);
  font-size: 7px;
  padding: 0;
  opacity: 1;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }

/* ── 3. "Disponível para projetos" na nav ── */
.nav-available {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #22c55e;
  white-space: nowrap;
}
.nav-available__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: availPulse 2s ease-out infinite;
}
@keyframes availPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70%  { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
@media (max-width: 1100px) { .nav-available { display: none; }}

/* ── 4. Hamburger button ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: 1.5px solid var(--border-strong);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 950px) {
  .nav-hamburger { display: flex; }
  .nav-menu { display: none; }                  /* links centrais migram para o menu hambúrguer */
  .nav-right .magnetic-wrap { display: none; }   /* esconde o "Fale Conosco" do header (redundante com o menu mobile) */
}

/* ── 5. Mobile menu overlay ── */
@media (max-width: 950px) {
  :root {
    --nav-bar-height: calc(86px + env(safe-area-inset-top, 0px));
  }
  /* Header acima do overlay; overlay acima do prompt dock (9995) */
  .nav-header {
    z-index: 10060;
  }
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: var(--cor-fundo);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-top: calc(var(--nav-bar-height, 86px) + 20px);
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
}
body.dark-theme .mobile-menu { background: #05080e; }
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  text-align: left;
  width: 100%;
  max-width: 100%;
  padding: 0 var(--gut);
  box-sizing: border-box;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}
.mobile-menu__nav a {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.1;
  text-align: left;
  width: 100%;
  transition: color 0.2s;
}
.mobile-menu__nav a:hover { color: var(--cor-secundaria); }
.mobile-menu__cta {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
  text-decoration: none;
  padding: 14px 32px;
  border: 2px solid var(--cor-secundaria);
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu__cta:hover {
  background: var(--cor-secundaria);
  color: #fff;
}
.mobile-menu__status {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #22c55e;
}
.mobile-menu__contacts {
  align-items: flex-start !important;
  width: 100%;
}
.mobile-menu__contacts a,
.mobile-menu__contacts > div {
  justify-content: flex-start !important;
  text-align: left !important;
}

/* Mobile megamenu acordeão Serviços — alinhado aos outros links */
.mobile-menu__nav .ccm-acc {
  width: 100%;
  text-align: left;
}
.mobile-menu__nav .ccm-acc__toggle {
  text-align: left;
  width: 100%;
}
.mobile-menu__nav .ccm-acc__panel,
.mobile-menu__nav .ccm-acc__div,
.mobile-menu__nav .ccm-acc__panel a {
  text-align: left;
}

/* ── 6. Social proof toast ── */
.sp-toast {
  position: fixed;
  bottom: 96px;
  left: 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-strong);
  border-left: 3px solid #22c55e;
  padding: 12px 16px;
  max-width: 280px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
body.dark-theme .sp-toast {
  background: #0d1117;
  border-color: rgba(255,255,255,0.1);
  border-left-color: #22c55e;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.sp-toast.visible { transform: translateX(0); }

/* =============================================
   DESIGN HARMONY v2 — Sistema definitivo
   Canvas unificado · Transições fluidas
   Hierarquia tipográfica · Ritmo consistente
   ============================================= */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   I. DARK — Canvas único premium
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.dark-theme { background-color: var(--bg-base) !important; }

/* Canvas A — tom base */
body.dark-theme .hero-v3,
body.dark-theme .stats-strip,
body.dark-theme .spec,
body.dark-theme .testimonials-sec,
body.dark-theme .compare-sec,
body.dark-theme .works-sec,
body.dark-theme .guarantee-sec,
body.dark-theme .techstack-sec,
body.dark-theme .ctaform { background: var(--bg-base) !important; }

/* Canvas B — 2% mais claro */
body.dark-theme .clients-sec,
body.dark-theme .cases,
body.dark-theme .horizontal-scroll-section,
body.dark-theme .pricing-sec,
body.dark-theme .roi-calc-sec,
body.dark-theme .agenda-sec,
body.dark-theme .founder-block,
body.dark-theme .faq-section { background: var(--bg-surface) !important; }

body.dark-theme .marquee-strip {
  background: var(--bg-base) !important;
  border-top: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
  height: 42px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   II. DARK — Zero bordas entre seções
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.dark-theme .hero-v3,
body.dark-theme .clients-sec,
body.dark-theme .stats-strip,
body.dark-theme .cases,
body.dark-theme .spec,
body.dark-theme .testimonials-sec,
body.dark-theme .pricing-sec,
body.dark-theme .compare-sec,
body.dark-theme .roi-calc-sec,
body.dark-theme .works-sec,
body.dark-theme .agenda-sec,
body.dark-theme .guarantee-sec,
body.dark-theme .founder-block,
body.dark-theme .techstack-sec,
body.dark-theme .faq-section,
body.dark-theme .ctaform {
  border-top: none !important;
  border-bottom: none !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   III. SEÇÕES VERMELHAS — Fade fluido
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.dark-theme .proc,
body.dark-theme .direct-connect-banner {
  position: relative;
  overflow: hidden;
  border-top: none !important;
  border-bottom: none !important;
}

body.dark-theme .proc::before,
body.dark-theme .direct-connect-banner::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 140px;
  background: linear-gradient(to bottom, #06090f 0%, transparent 100%);
  pointer-events: none; z-index: 3;
}
body.dark-theme .proc::after,
body.dark-theme .direct-connect-banner::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 140px;
  background: linear-gradient(to top, #06090f 0%, transparent 100%);
  pointer-events: none; z-index: 3;
}

body.dark-theme .testimonials-sec,
body.dark-theme .agenda-sec { position: relative; }
body.dark-theme .testimonials-sec::before,
body.dark-theme .agenda-sec::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to bottom, rgba(255, 61, 20,0.08) 0%, transparent 100%);
  pointer-events: none; z-index: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   IV. RITMO DE ESPAÇAMENTO — ver §SPACE-2026 (final do arquivo)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   V. BORDAS INTERNAS — Ultra sutis
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.dark-theme .cases-bento {
  background: rgba(255,255,255,0.025) !important;
  border-color: rgba(255,255,255,0.06) !important;
}
body.dark-theme .clients-sec__logos,
body.dark-theme .clients-sec__logo-item { border-color: rgba(255,255,255,0.05) !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VI. CARDS — Superfície coesa
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.dark-theme .work-card { background: var(--bg-surface) !important; border-color: var(--border-color) !important; }
body.dark-theme .work-card:hover { background: var(--bg-surface-alt) !important; border-color: var(--border-strong) !important; }
body.dark-theme .test-card { background: var(--bg-surface) !important; border-color: var(--border-color) !important; }
body.dark-theme .pricing-card { background: var(--bg-surface) !important; border-color: var(--border-color) !important; }
body.dark-theme .pricing-card--featured { background: var(--bg-surface-alt) !important; border-color: var(--brand-accent) !important; }
body.dark-theme .guarantee-item { background: var(--bg-surface) !important; border-color: var(--border-color) !important; }
body.dark-theme .ts-chip { background: var(--bg-surface) !important; border-color: var(--border-color) !important; }
body.dark-theme .ts-chip--highlight { background: var(--bg-surface-alt) !important; border-color: rgba(255,255,255,0.1) !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VII. TIPOGRAFIA — Hierarquia unificada
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sec-head__label,
.spec-header__label {
  font-family: 'DM Mono', monospace !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 3.5px !important;
  text-transform: uppercase !important;
  color: var(--brand-accent) !important;
  opacity: 1 !important;
  display: block !important;
  margin-bottom: 18px !important;
}
.sec-head__title,
.spec-header__title,
.clients-sec__title {
  font-family: var(--fonte-titulo) !important;
  font-weight: 900 !important;
  font-size: clamp(2rem, 4vw, 3.4rem) !important;
  letter-spacing: -0.04em !important;
  line-height: 1.05 !important;
}
.sec-head__desc,
.spec-header__sub { font-size: 15px !important; line-height: 1.75 !important; max-width: 520px !important; }
body.dark-theme .sec-head__desc,
body.dark-theme .spec-header__sub { color: var(--text-muted) !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VIII. NAV — Vidro premium
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.dark-theme .nav-header {
  background: rgba(6,9,15,0.82) !important;
  border-bottom: 1px solid rgba(255,255,255,0.045) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
}
body.dark-theme .nav-menu a { color: rgba(226,232,240,0.6) !important; }
body.dark-theme .nav-menu a:hover,
body.dark-theme .nav-menu a.active { color: var(--text-primary) !important; }
body.dark-theme .logo { color: var(--text-primary) !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   IX. FAQ + COMPARATIVO + BENTO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.dark-theme .faq-item { border-color: rgba(255,255,255,0.07) !important; }
body.dark-theme .faq-question { color: var(--text-primary) !important; }

body.dark-theme .compare-table,
body.dark-theme .compare-row,
body.dark-theme .compare-cell { border-color: rgba(255,255,255,0.06) !important; }
body.dark-theme .compare-row--head { background: var(--bg-surface) !important; }
body.dark-theme .compare-cell--us { background: rgba(255, 61, 20,0.07) !important; border-color: rgba(255, 61, 20,0.2) !important; }

body.dark-theme .bento-case--1 { background: #0e1828 !important; }
body.dark-theme .bento-case--2 { background: var(--bg-surface-alt) !important; }
body.dark-theme .bento-case--3 { background: var(--bg-surface) !important; }
body.dark-theme .bento-case--4 { background: var(--brand-accent) !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   X. FOOTER — Integrado ao canvas
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.dark-theme .footer { background: var(--bg-base) !important; border-top: 1px solid rgba(255,255,255,0.05) !important; }
body.dark-theme .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05) !important; color: rgba(255,255,255,0.3) !important; }

/* =============================================
   LIGHT HARMONY — Sistema completo modo claro
   Canvas definido · Bordas visíveis · Texto legível
   ============================================= */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LH-I. CANVAS — Alternância A/B nítida
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Sem bordas entre seções */
.hero-v3, .clients-sec, .stats-strip, .cases, .spec,
.testimonials-sec, .pricing-sec, .compare-sec,
.roi-calc-sec, .works-sec, .agenda-sec,
.guarantee-sec, .founder-block, .techstack-sec,
.faq-section, .ctaform {
  border-top: none;
  border-bottom: none;
}

/* Canvas A — branco puro */
.stats-strip, .spec, .compare-sec, .testimonials-sec,
.works-sec, .guarantee-sec, .ctaform {
  background: #ffffff;
}

/* Canvas B — azul-cinza suave (chips e cards ficam brancos e se destacam) */
.clients-sec, .cases, .pricing-sec, .roi-calc-sec,
.agenda-sec, .founder-block, .techstack-sec, .faq-section {
  background: #f2f5fc;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   XII. SCROLLBAR — Premium
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.dark-theme ::-webkit-scrollbar { width: 5px; background: var(--bg-base); }
body.dark-theme ::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); }
body.dark-theme ::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.15); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   XIII. SCROLL PROGRESS BAR
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--cor-secundaria);
  z-index: 99999;
  transition: width 0.05s linear;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(255, 61, 20,0.6);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   XIV. HERO SCROLL INDICATOR
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero-scroll-cta {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  animation: heroScrollFadeIn 1s 2s ease forwards;
  transition: opacity 0.4s ease;
}
.hero-scroll-cta__label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero-scroll-cta__arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid rgba(255,255,255,0.25);
  border-bottom: 1.5px solid rgba(255,255,255,0.25);
  transform: rotate(45deg);
  animation: heroScrollBounce 1.6s ease-in-out infinite;
}
@keyframes heroScrollFadeIn {
  to { opacity: 1; }
}
@keyframes heroScrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   XV. WORK CARD — Visual upgrades
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Richer colored backgrounds per project type */
body.dark-theme .work-card__pattern--1 {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 18px),
    linear-gradient(135deg, #0a1628 0%, #0e2040 50%, #091320 100%);
}
body.dark-theme .work-card__pattern--2 {
  background:
    radial-gradient(circle at 30% 40%, rgba(20,184,166,0.15) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(6,182,212,0.1) 0%, transparent 50%),
    linear-gradient(135deg, #081b1b 0%, #0e2424 100%);
  background-size: auto, auto, auto;
}
body.dark-theme .work-card__pattern--3 {
  background:
    radial-gradient(circle at 60% 30%, rgba(139,92,246,0.2) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(109,40,217,0.15) 0%, transparent 50%),
    linear-gradient(135deg, #100a22 0%, #1a0a30 100%);
}

/* Hover overlay — slides up from bottom */
.work-card__visual { overflow: hidden; }
.work-card:hover .work-card__hover-overlay { bottom: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   XVI. TESTIMONIAL — Star ratings
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.tc-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.tc-stars__star {
  width: 13px;
  height: 13px;
  fill: var(--cor-secundaria);
  color: var(--cor-secundaria);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   XVII. BACK TO TOP BUTTON
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  cursor: pointer;
  z-index: 9990;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.2s, background 0.2s;
  pointer-events: none;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover {
  background: var(--bg-surface-alt);
  border-color: var(--cor-secundaria);
}
#back-to-top svg {
  width: 16px; height: 16px;
  stroke: var(--text-primary);
  transition: stroke 0.2s;
}
#back-to-top:hover svg { stroke: var(--cor-secundaria); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   XVIII. NAV SCROLLSPY — Active underline
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav-menu a {
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--cor-secundaria);
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
  transform-origin: left;
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   XIX. SECTION NUMBERS — Decorative
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sec-head[data-num]::before {
  content: attr(data-num);
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 61, 20,0.5);
  margin-bottom: 6px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   XX. STATS STRIP — Dark premium
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.dark-theme .stats-strip__item {
  position: relative;
}
body.dark-theme .stats-strip__item + .stats-strip__item::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(255,255,255,0.06);
}
body.dark-theme .stats-strip__num {
  color: var(--text-primary) !important;
}
body.dark-theme .stats-strip__suffix,
body.dark-theme .stats-strip__prefix {
  color: var(--cor-secundaria) !important;
}
body.dark-theme .stats-strip__label {
  color: var(--text-muted) !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   XXI. AGENDA SLOT — Premium dark
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.dark-theme .agenda-slot--taken .agenda-slot__bar {
  background: rgba(255, 61, 20,0.7) !important;
}
body.dark-theme .agenda-slot--open .agenda-slot__bar {
  background: rgba(34,197,94,0.7) !important;
  animation: agendaBarPulse 2s ease-in-out infinite;
}
@keyframes agendaBarPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
body.dark-theme .agenda-meter__fill {
  background: linear-gradient(to right, var(--cor-secundaria) 0%, rgba(255, 61, 20,0.6) 100%) !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §39  SCROLL EXPERIENCE — 7 Premium Effects
   skew · clip-reveal · parallax · marquee
   magnetic · spring-counters · section-nav
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Clip-path reveal ── */
.cc-reveal {
  clip-path: inset(0 0 100% 0);
  will-change: clip-path;
  transition: clip-path 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}
.cc-reveal.is-visible {
  clip-path: inset(0 0 0% 0);
}
/* Stagger delays for sibling groups */
.cc-reveal:nth-child(2)  { transition-delay: 0.09s; }
.cc-reveal:nth-child(3)  { transition-delay: 0.18s; }
.cc-reveal:nth-child(4)  { transition-delay: 0.27s; }
.cc-reveal:nth-child(5)  { transition-delay: 0.36s; }
.cc-reveal:nth-child(6)  { transition-delay: 0.45s; }

/* ── Stats: spring land bounce ── */
@keyframes cc-stat-land {
  0%   { transform: scale(1.1); }
  60%  { transform: scale(0.97); }
  100% { transform: scale(1); }
}
.cc-stat-land {
  animation: cc-stat-land 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ── Hero parallax — will-change hints ── */
.hero-title-v3,
.hero-sub-grid,
.hero-bg,
.hero-grain { will-change: transform; }

/* ── Scroll velocity skew targets ── */
.sec-head,
.spec-header,
.hero-container-v3 { will-change: transform; }

/* ── Magnetic button — ensure overflow visible ── */
.magnetic-btn,
.btn-nav-cta,
.btn-hero { overflow: visible !important; }

/* ── Floating section indicator ── */
#section-indicator {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 200;
  pointer-events: none;
}
@media (max-width: 1199px) { #section-indicator { display: none; }}

.si-dot {
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: rgba(3, 17, 82, 0.18);
  cursor: pointer;
  pointer-events: all;
  position: relative;
  transition: background 0.35s, transform 0.35s, height 0.35s, border-radius 0.35s;
}
.si-dot.active {
  background: var(--brand-accent);
  height: 18px;
  transform: scaleX(1.2);
}
.si-dot::after {
  content: attr(data-label);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 9px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.si-dot:hover::after,
.si-dot.active::after { opacity: 1; }

body.dark-theme .si-dot { background: rgba(255,255,255,0.12); }
body.dark-theme .si-dot.active { background: var(--brand-accent); }
body.dark-theme .si-dot::after { color: rgba(226,232,240,0.45); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §40  ACESSIBILIDADE & PRODUÇÃO (WCAG 2.2 / 2026)
   sr-only · skip-link · focus-visible · reduced-motion
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Screen-reader only (visualmente oculto, lido por leitores) ── */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Skip-to-content link (cockpit style) ── */
.skip-link {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -150%);
  z-index: 100000;
  padding: 12px 22px;
  background: var(--cor-secundaria);
  color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 0 0 2px rgba(255, 61, 20,0.4), 0 8px 24px rgba(0,0,0,0.3);
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.skip-link:focus {
  transform: translate(-50%, 0);
  outline: none;
}

/* ── Focus-visible: anel de mira sci-fi em tudo que é interativo ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible,
.ctaform-chip:focus-visible,
.faq-question:focus-visible,
.si-dot:focus-visible,
.roi-slider:focus-visible {
  outline: 2px solid var(--cor-secundaria);
  outline-offset: 3px;
  border-radius: 1px;
  box-shadow: 0 0 0 4px rgba(255, 61, 20,0.18);
}
/* Remove o outline default em foco por mouse (mantém só p/ teclado) */
:focus:not(:focus-visible) { outline: none; }

body.dark-theme a:focus-visible,
body.dark-theme button:focus-visible,
body.dark-theme input:focus-visible,
body.dark-theme textarea:focus-visible,
body.dark-theme .ctaform-chip:focus-visible,
body.dark-theme .faq-question:focus-visible {
  box-shadow: 0 0 0 4px rgba(255, 61, 20,0.28), 0 0 18px rgba(255, 61, 20,0.25);
}

/* ── Alvo do skip-link: garante scroll-margin sob o header fixo ── */
#main-content { scroll-margin-top: 90px; }
:target { scroll-margin-top: 100px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PREFERS-REDUCED-MOTION — respeita usuários sensíveis
   Neutraliza movimento decorativo, mantém legibilidade
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  /* Garante que reveals nunca prendam conteúdo oculto */
  .reveal,
  .cc-reveal {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  [data-sc] { opacity: 1 !important; transform: none !important; }

  /* Para elementos puramente decorativos em loop */
  .marquee-track,
  .hr-sweep,
  .sf-radar-sweep,
  .nav-scanline,
  .fb-scan,
  .hero-bg__scan,
  .agenda-cta__pulse,
  .fwa-pulse,
  .nav-available__dot,
  .agenda-label__dot {
    animation: none !important;
  }

  /* Smooth scroll programático desligado */
  html { scroll-behavior: auto !important; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §41  FORM — Validação, foco sci-fi & sucesso
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Foco premium — linha de scan + glow vermelho */
.ctaform-field { position: relative; }
.ctaform-input:focus {
  border-bottom-color: var(--cor-secundaria);
  box-shadow: 0 2px 0 -1px var(--cor-secundaria);
}
.ctaform-field:focus-within .ctaform-label {
  opacity: 1;
  color: var(--cor-secundaria);
}

/* Estado de erro */
.ctaform-input--error {
  border-bottom-color: var(--cor-secundaria) !important;
  animation: ctaform-shake 0.4s cubic-bezier(0.36,0.07,0.19,0.97);
}
@keyframes ctaform-shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}
.ctaform-error {
  display: block;
  min-height: 0;
  max-height: 0;
  overflow: hidden;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.3px;
  color: var(--cor-secundaria);
  opacity: 0;
  transition: opacity 0.2s, max-height 0.2s, margin-top 0.2s;
}
.ctaform-error.visible {
  max-height: 40px;
  margin-top: 7px;
  opacity: 1;
}
.ctaform-error::before { content: '▸ '; }

/* Estado válido — checkmark sutil */
.ctaform-input--valid {
  border-bottom-color: #10b981 !important;
}

/* Botão em estado de envio */
.ctaform-submit[disabled] {
  opacity: 0.6;
  cursor: progress;
  pointer-events: none;
}

/* ── Painel de sucesso (cockpit confirmation) ── */
.ctaform-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 32px;
  border: 1.5px solid var(--border-color);
  background:
    repeating-linear-gradient(
      0deg, transparent, transparent 28px,
      rgba(255, 61, 20,0.025) 28px, rgba(255, 61, 20,0.025) 29px);
  position: relative;
  animation: ctaform-success-in 0.6s cubic-bezier(0.16,1,0.3,1) both;
}
.ctaform-success[hidden] { display: none; }

/* ── Aviso pré-envio (aguardando briefing) ── */
.ctaform-preflight {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 16px 20px;
  border: 1px dashed rgba(255, 61, 20, 0.3);
}
.ctaform-preflight[hidden] { display: none; }
.ctaform-preflight__dot {
  flex: 0 0 auto;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cor-secundaria);
  animation: ctaform-preflight-blink 1.6s ease-in-out infinite;
}
@keyframes ctaform-preflight-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.25; }
}
.ctaform-preflight__msg {
  font-family: 'DM Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}
.ctaform-preflight__msg strong { color: var(--text-primary); font-weight: 500; }
@keyframes ctaform-success-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ctaform-success__icon {
  width: 72px; height: 72px;
  display: grid; place-items: center;
  border: 2px solid var(--cor-secundaria);
  border-radius: 50%;
  color: var(--cor-secundaria);
  margin-bottom: 26px;
  box-shadow: 0 0 0 6px rgba(255, 61, 20,0.1);
  animation: ctaform-pulse-ring 2s ease-in-out infinite;
}
.ctaform-success__icon svg { width: 34px; height: 34px; }
@keyframes ctaform-pulse-ring {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255, 61, 20,0.1); }
  50%      { box-shadow: 0 0 0 12px rgba(255, 61, 20,0.04); }
}
.ctaform-success__title {
  font-family: 'DM Mono', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 0 0 14px;
}
.ctaform-success__msg {
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 380px;
  color: var(--text-muted);
  margin: 0 0 28px;
}
.ctaform-success__code {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
  padding: 8px 16px;
  border: 1px solid rgba(255, 61, 20,0.3);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §42  MICROINTERAÇÕES — copy email, hover polish
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Botão copiar (anexado aos e-mails via JS) ── */
.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  margin-left: 8px;
  padding: 0;
  vertical-align: middle;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s, background 0.18s, transform 0.12s;
}
.copy-btn:hover {
  border-color: var(--cor-secundaria);
  color: var(--cor-secundaria);
}
.copy-btn:active { transform: scale(0.9); }
.copy-btn svg { width: 13px; height: 13px; }
.copy-btn.copied {
  border-color: #10b981;
  color: #10b981;
}
body.dark-theme .copy-btn { border-color: rgba(255,255,255,0.15); }

/* ── Toast de clipboard (cockpit) ── */
#copy-toast {
  position: fixed;
  bottom: 92px;
  left: 50%;
  transform: translate(-50%, 16px);
  z-index: 100000;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  background: var(--cor-secundaria);
  color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 10px 34px rgba(0,0,0,0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s, transform 0.28s cubic-bezier(0.16,1,0.3,1);
}
#copy-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
#copy-toast svg { width: 15px; height: 15px; }

/* ── Comparativo: realce de linha no hover ── */
.compare-row:not(.compare-row--head):not(.compare-row--foot) {
  transition: background 0.2s;
}
.compare-row:not(.compare-row--head):not(.compare-row--foot):hover {
  background: rgba(255, 61, 20,0.04);
}
body.dark-theme .compare-row:not(.compare-row--head):not(.compare-row--foot):hover {
  background: rgba(255, 61, 20,0.07);
}
.compare-cell--feature { transition: color 0.2s; }
.compare-row:hover .compare-cell--feature { color: var(--text-primary); }

/* ── Tech chip: leitura de dados no hover ── */
.ts-chip {
  position: relative;
  transition: transform 0.2s cubic-bezier(0.16,1,0.3,1), border-color 0.2s, box-shadow 0.2s;
}
.ts-chip:hover {
  transform: translateY(-3px);
  border-color: var(--tc, var(--cor-secundaria));
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.ts-chip:hover .ts-chip__abbr { color: var(--tc); }
.ts-chip__abbr { transition: color 0.2s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §43  VISUAIS VIVOS — jornada de cor por scroll
   canópia HUD · grid · nebulosa · orbs · telemetria
   sweep · barra com matiz · zonas de cor
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Custom properties animáveis (transição suave de cor entre zonas) */
@property --zone-hue {
  syntax: '<number>';
  inherits: true;
  initial-value: 12;
}
:root {
  --zone-hue: 12;          /* matiz da zona atual (muda por seção) */
  --scroll-hue: 12;        /* matiz contínuo (muda a cada pixel rolado) */
  --scroll-pct: 0;         /* progresso 0-100 */
  --scroll-y: 0;           /* px rolados */
  transition: --zone-hue 0.9s ease;
}

/* ── Orbs: derivam + mudam de cor conforme o scroll ── */
.glow-orb {
  filter: blur(140px);
  opacity: 0.06;
}
.orb-orange { animation: orb-drift-a 22s ease-in-out infinite alternate; }
.orb-cyan   { animation: orb-drift-b 27s ease-in-out infinite alternate; }
.orb-purple { animation: orb-drift-c 24s ease-in-out infinite alternate; }
@keyframes orb-drift-a { from { transform: translate(-30px,-20px) scale(1); } to { transform: translate(50px,40px) scale(1.18); } }
@keyframes orb-drift-b { from { transform: translate(20px,30px) scale(1.1); }  to { transform: translate(-40px,-30px) scale(0.95); } }
@keyframes orb-drift-c { from { transform: translate(-20px,20px) scale(0.95); } to { transform: translate(40px,-30px) scale(1.2); } }

/* ── Canópia HUD: camada viva SEMPRE visível (acima do conteúdo) ── */
.hud-canopy {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  overflow: hidden;
}
/* Grid técnico (linhas finas que mudam de cor por zona) */
.hud-canopy__grid {
  position: absolute;
  inset: -64px;
  background-image:
    linear-gradient(hsl(var(--zone-hue) 85% 55% / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--zone-hue) 85% 55% / 0.045) 1px, transparent 1px);
  background-size: 68px 68px;
  mix-blend-mode: soft-light;
  animation: grid-drift 26s linear infinite;
  -webkit-mask-image: radial-gradient(ellipse 110% 75% at 50% 45%, #000 35%, transparent 78%);
          mask-image: radial-gradient(ellipse 110% 75% at 50% 45%, #000 35%, transparent 78%);
}
@keyframes grid-drift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 68px 68px, 68px 68px; }
}
/* Nebulosa pulsante (wash de cor que respira) */
.hud-canopy__nebula {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(38% 46% at 18% 28%, hsl(var(--zone-hue) 88% 56% / 0.10), transparent 70%),
    radial-gradient(44% 52% at 82% 72%, hsl(calc(var(--zone-hue) + 45) 88% 56% / 0.08), transparent 70%);
  filter: blur(30px);
  mix-blend-mode: screen;
  animation: nebula-breathe 15s ease-in-out infinite;
}
@keyframes nebula-breathe {
  0%, 100% { transform: scale(1)    translateY(0);    opacity: 0.75; }
  50%      { transform: scale(1.14) translateY(-1.5%); opacity: 1; }
}
body.dark-theme .hud-canopy__nebula { mix-blend-mode: screen; }
body.dark-theme .hud-canopy__grid   { mix-blend-mode: overlay; }

/* ── Telemetria de voo (altitude % que muda de cor) ── */
#flight-telemetry {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-family: 'DM Mono', monospace;
  pointer-events: none;
  color: hsl(var(--zone-hue) 80% 52%);
  transition: color 0.7s ease;
}
@media (max-width: 1199px) { #flight-telemetry { display: none; }}
.ft-label {
  font-size: 8px;
  letter-spacing: 2px;
  opacity: 0.7;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.ft-gauge {
  width: 4px;
  height: 130px;
  background: hsl(var(--zone-hue) 50% 50% / 0.14);
  position: relative;
  overflow: hidden;
}
.ft-gauge__fill {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 0%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
  transition: height 0.12s linear;
}
.ft-pct {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-variant-numeric: tabular-nums;
}
.ft-vel { font-size: 7.5px; letter-spacing: 1px; opacity: 0.6; }
.ft-vel b { font-weight: 500; }

/* ── Barra de progresso com matiz + ticks ── */
#scroll-progress {
  background: hsl(var(--scroll-hue) 88% 55%) !important;
  box-shadow: 0 0 10px hsl(var(--scroll-hue) 88% 55% / 0.7) !important;
}
#scroll-ticks {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 99998;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(127,127,127,0.18) 0, rgba(127,127,127,0.18) 1px,
    transparent 1px, transparent 10%);
}

/* ── Sweep de luz nos divisores de seção ── */
.zone-sweep {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, hsl(var(--zone-hue) 88% 58%), transparent);
  transform: translateX(-100%);
  opacity: 0;
}
.zone-sweep.run {
  animation: zone-sweep-run 1.05s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes zone-sweep-run {
  0%   { transform: translateX(-100%); opacity: 0; }
  18%  { opacity: 1; }
  100% { transform: translateX(100%);  opacity: 0; }
}

/* ── Reduced-motion: mantém cor, mata movimento ── */
@media (prefers-reduced-motion: reduce) {
  .hud-canopy__grid,
  .hud-canopy__nebula,
  .glow-orb { animation: none !important; }
  .zone-sweep { display: none !important; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §45  COCKPIT FOOTER — Painel de fim de missão
   Status bar viva · brand brutalista gigante · sitemap
   HUD · contato direto · newsletter · telemetria
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.footer.footer--cockpit {
  position: relative;
  background: var(--bg-surface-alt);
  color: #fff;
  padding: 0 0 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
body.dark-theme .footer.footer--cockpit { background: #06090f !important; }

/* ── Barra de status superior ── */
.footer-status {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.fst-grid {
  display: flex; gap: 30px; flex-wrap: wrap; align-items: center;
}
.fst-item { display: flex; align-items: center; gap: 9px; }
.fst-dot {
  width: 7px; height: 7px; background: #10b981;
  border-radius: 50%; box-shadow: 0 0 8px #10b981;
  animation: fst-pulse 1.6s ease-in-out infinite;
}
@keyframes fst-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.fst-clock { margin-left: auto; color: var(--cor-secundaria); }
@media (max-width: 800px) { .fst-clock { margin-left: 0; }}

/* ── Brand gigante brutalista ── */
.footer-hero {
  padding: 90px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.footer-hero__brand {
  font-family: 'DM Mono', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 13vw, 9.5rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  margin: 0;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.45) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-hero__dot {
  color: var(--cor-secundaria);
  -webkit-text-fill-color: var(--cor-secundaria);
}
.footer-hero__tagline {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 26px 0 0;
}

/* ── Grid principal 4 colunas ── */
.footer-grid--cockpit {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1.5fr;
  gap: 48px;
  padding: 72px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-top: none;
  margin: 0;
}
@media (max-width: 1100px) { .footer-grid--cockpit { grid-template-columns: 1fr 1fr; gap: 40px; }}
@media (max-width: 600px)  { .footer-grid--cockpit { grid-template-columns: 1fr; }}

.footer-col__label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
  margin-bottom: 22px;
}

/* Links com hover ▸ */
.footer--cockpit .footer-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 13px;
}
.footer--cockpit .footer-links a {
  font-family: 'DM Mono', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  position: relative;
  padding-left: 0;
  transition: color 0.2s, padding-left 0.2s;
}
.footer--cockpit .footer-links a::before {
  content: '▸';
  position: absolute;
  left: -14px;
  color: var(--cor-secundaria);
  opacity: 0;
  transition: opacity 0.2s, left 0.2s;
}
.footer--cockpit .footer-links a:hover {
  color: #fff;
  padding-left: 14px;
}
.footer--cockpit .footer-links a:hover::before { opacity: 1; left: 0; }

/* Coluna de contato direto */
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  flex-wrap: nowrap;
  margin-bottom: 14px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  font-size: 13.5px;
  font-weight: 500;
  font-family: 'DM Mono', sans-serif;
}
.footer-contact-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-contact-link span { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.footer-arr { opacity: 0.35; flex-shrink: 0; margin-left: auto; transition: opacity 0.2s, transform 0.2s; }
.footer-contact-link:hover {
  border-color: var(--cor-secundaria);
  background: rgba(255, 61, 20,0.07);
  transform: translateX(3px);
}
.footer-contact-link:hover .footer-arr { opacity: 1; transform: translate(2px,-2px); }
.footer-contact-link--wa { border-color: rgba(37,211,102,0.4); color: #25d366; }
.footer-contact-link--wa:hover { background: rgba(37,211,102,0.08); border-color: #25d366; }

.footer-social {
  display: flex; gap: 8px; margin-top: 20px;
}
.footer-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social a svg { width: 15px; height: 15px; }
.footer-social a:hover {
  border-color: var(--cor-secundaria);
  color: var(--cor-secundaria);
  transform: translateY(-2px);
}

/* Newsletter */
.footer-news-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin: 0 0 18px;
  max-width: 360px;
  font-family: 'DM Mono', sans-serif;
}
.footer-news-form {
  display: flex; gap: 0;
  margin-bottom: 16px;
  max-width: 380px;
}
.footer-news-form input {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: #fff;
  padding: 13px 16px;
  font-family: 'DM Mono', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.footer-news-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-news-form input:focus { border-color: var(--cor-secundaria); background: rgba(255,255,255,0.1); }
.footer-news-form button {
  background: var(--cor-secundaria);
  color: #fff;
  border: 1px solid var(--cor-secundaria);
  width: 52px;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-news-form button svg { width: 16px; height: 16px; }
.footer-news-form button:hover { background: #b3240c; }
.footer-news-meta {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 8px;
}
.fnm-dot {
  width: 6px; height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
  animation: fst-pulse 1.6s ease-in-out infinite;
}

/* Telemetria de rodapé (3 colunas) */
.footer-tele {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 32px;
}
@media (max-width: 800px) { .footer-tele { grid-template-columns: 1fr; gap: 16px; }}
.footer-tele__col { display: flex; flex-direction: column; gap: 6px; }
.fte-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
}
.fte-val {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.4px;
}

/* Brackets HUD nos cantos */
.footer-bracket {
  position: absolute;
  width: 22px; height: 22px;
  pointer-events: none;
  z-index: 2;
}
.footer-bracket--tl { top: 12px;    left: 12px;  border-top:    1px solid var(--cor-secundaria); border-left:  1px solid var(--cor-secundaria); }
.footer-bracket--tr { top: 12px;    right: 12px; border-top:    1px solid var(--cor-secundaria); border-right: 1px solid var(--cor-secundaria); }
.footer-bracket--bl { bottom: 12px; left: 12px;  border-bottom: 1px solid var(--cor-secundaria); border-left:  1px solid var(--cor-secundaria); }
.footer-bracket--br { bottom: 12px; right: 12px; border-bottom: 1px solid var(--cor-secundaria); border-right: 1px solid var(--cor-secundaria); }

/* Garante que overrides antigos do footer.bottom não atrapalhem o cockpit */
.footer.footer--cockpit .footer-bottom { display: none !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §46  COCKPIT CONTACT FORM — Protocolo de Transmissão
   Status bar · brand brutalista · 3 vias fast-track
   Trust badges · 3 grupos numerados · submit premium
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.ctaform.ctaform--cockpit {
  position: relative;
  background: var(--bg-base);
  padding: 0 0 100px;
  overflow: hidden;
}
body.dark-theme .ctaform.ctaform--cockpit { background: var(--bg-base) !important; }

/* ── Status bar topo ── */
.ctaform-status {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 64px;
}
body.dark-theme .ctaform-status {
  border-color: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
}
.cfs-grid {
  display: flex; gap: 28px; flex-wrap: wrap; align-items: center;
}
.cfs-item { display: flex; align-items: center; gap: 8px; }
.cfs-dot {
  width: 7px; height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: fst-pulse 1.6s ease-in-out infinite;
}
.cfs-slots { margin-left: auto; color: var(--cor-secundaria); }
.cfs-slots strong { font-weight: 700; }
@media (max-width: 800px) { .cfs-slots { margin-left: 0; }}

/* ── Grid cockpit ── */
.ctaform-grid--cockpit {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1100px) { .ctaform-grid--cockpit { grid-template-columns: 1fr; gap: 48px; }}

/* ── PAINEL ESQUERDO (Brand + Fast-track + Trust) ── */
.ctaform-panel--cockpit {
  background: var(--bg-surface-alt);
  color: #fff;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
body.dark-theme .ctaform-panel--cockpit { background: #0b1018 !important; }
@media (max-width: 600px) { .ctaform-panel--cockpit { padding: 40px 28px; }}

.ctaform-panel--cockpit .ctaform-panel__label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
  margin-bottom: 24px;
}
.ctaform-panel--cockpit .ctaform-panel__title {
  font-family: 'DM Mono', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0 0 22px;
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.ctaform-panel__highlight {
  color: var(--cor-secundaria);
  -webkit-text-fill-color: var(--cor-secundaria);
}
.ctaform-panel--cockpit .ctaform-panel__sub {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin: 0 0 36px;
}

/* Fast-track stack */
.ctaform-fast {
  margin-bottom: 36px;
}
.ctaform-fast__label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.ctaform-fast__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.cff-icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  flex-shrink: 0;
  color: rgba(255,255,255,0.75);
  transition: all 0.2s;
}
.cff-icon svg { width: 17px; height: 17px; }
.cff-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.cff-title {
  font-family: 'DM Mono', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
}
.cff-meta {
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.cff-arr {
  opacity: 0.35;
  width: 14px; height: 14px;
  transition: opacity 0.2s, transform 0.2s;
}
.ctaform-fast__item:hover {
  border-color: var(--cor-secundaria);
  background: rgba(255, 61, 20,0.06);
  transform: translateX(3px);
}
.ctaform-fast__item:hover .cff-icon { border-color: var(--cor-secundaria); color: var(--cor-secundaria); }
.ctaform-fast__item:hover .cff-arr { opacity: 1; transform: translate(2px,-2px); }
.ctaform-fast__item--wa { border-color: rgba(37,211,102,0.4); }
.ctaform-fast__item--wa .cff-icon { border-color: rgba(37,211,102,0.5); color: #25d366; }
.ctaform-fast__item--wa:hover { background: rgba(37,211,102,0.08); border-color: #25d366; }
.ctaform-fast__item--wa:hover .cff-icon { border-color: #25d366; color: #25d366; }

/* Trust badges */
.ctaform-trust {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.ctaform-trust__item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.ctaform-trust__item svg {
  width: 16px; height: 16px;
  color: var(--cor-secundaria);
  flex-shrink: 0;
  margin-top: 2px;
}
.ctaform-trust__item span { display: flex; flex-direction: column; gap: 2px; }
.ctaform-trust__item strong {
  font-family: 'DM Mono', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
}

/* ── FORMULÁRIO DIREITO ── */
.ctaform-form-wrap--cockpit {
  padding: 0;
}
.ctaform-form__label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
  margin-bottom: 32px;
}

/* Grupos numerados (01/02/03) */
.ctaform-group {
  margin-bottom: 40px;
}
.ctaform-group__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.ctaform-group__num {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--cor-secundaria);
  padding: 4px 10px;
  border: 1px solid var(--cor-secundaria);
}
.ctaform-group__title {
  font-family: 'DM Mono', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-transform: uppercase;
}
body.dark-theme .ctaform-group__title { color: var(--text-primary); }
.ctaform-group__line {
  flex: 1;
  height: 1px;
  background: var(--border-color);
}
body.dark-theme .ctaform-group__line { background: rgba(255,255,255,0.08); }

/* Submit cockpit */
.ctaform-submit--cockpit {
  display: block;
  width: 100%;
  padding: 0;
  background: var(--cor-secundaria);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'DM Mono', sans-serif;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.15s;
}
.ctaform-submit--cockpit .ctaform-submit__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 32px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.ctaform-submit--cockpit .ctaform-submit__inner svg { width: 18px; height: 18px; }
.ctaform-submit--cockpit .ctaform-submit__meta {
  display: block;
  padding: 11px 32px;
  background: rgba(0,0,0,0.22);
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.ctaform-submit--cockpit:hover { background: #b3240c; }
.ctaform-submit--cockpit:active { transform: scale(0.99); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §47  GUARANTEE COCKPIT — Protocolo Zero-Risk
   Status bar · brand brutalista · 6 cláusulas
   com métricas contratuais · contract bar
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.guarantee-sec.guarantee-sec--cockpit {
  position: relative;
  padding: 0 0 100px;
  overflow: hidden;
}

/* Status bar topo */
.gua-status {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 72px;
}
body.dark-theme .gua-status {
  border-color: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
}
.gua-status .cfs-grid { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.gua-status .cfs-item { display: flex; align-items: center; gap: 8px; }
.gua-status .cfs-dot { width: 7px; height: 7px; background: #10b981; border-radius: 50%; box-shadow: 0 0 8px #10b981; animation: fst-pulse 1.6s ease-in-out infinite; }
.gua-status .gua-status__right { margin-left: auto; color: var(--cor-secundaria); }
@media (max-width: 800px) { .gua-status .gua-status__right { margin-left: 0; }}

/* Hero do bloco (brand + badge) */
.guarantee-sec--cockpit .guarantee-head {
  margin-bottom: 64px;
  align-items: start;
}
.guarantee-sec--cockpit .sec-head__label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
  margin-bottom: 22px;
}
.guarantee-sec--cockpit .guarantee-title {
  font-family: 'DM Mono', sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin: 0 0 26px;
  color: var(--text-primary);
  text-transform: none;
}
.guarantee-sec--cockpit .guarantee-title em {
  font-style: normal;
  color: var(--cor-secundaria);
}
.guarantee-sec--cockpit .guarantee-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0;
}

/* ── Zero Risco RADAR — Mission Control completo ── */
.guarantee-sec--cockpit .guarantee-head__badge {
  position: relative;
  padding: 16px 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  perspective: 900px;
  flex-shrink: 0;
}

.guarantee-sec--cockpit .guarantee-head {
  align-items: center;
  gap: 32px;
}

.guarantee-sec--cockpit .guarantee-head__left {
  max-width: 480px;
}

/* ══════════════════════════════════════════════════════
   ZERO RISCO BADGE — limpo, premium, combinando com site
   ══════════════════════════════════════════════════════ */

.zr-badge-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  /* espaço extra ao redor para os dados orbitais */
  padding: 80px;
}

/* ── Dados em órbita ── */
.zr-orbit-data {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.zr-data {
  position: absolute;
  top: 50%; left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  /* desloca para fora do centro com base no ângulo */
  --r: min(230px, 30vw);
  transform:
    translate(-50%, -50%)
    rotate(var(--a))
    translateY(calc(-1 * var(--r)))
    rotate(calc(-1 * var(--a)));
}

.zr-data__key {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.65;
  white-space: nowrap;
}

.zr-data__val {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-primary);
  white-space: nowrap;
}
.zr-data__val--accent { color: var(--cor-secundaria); }
.zr-data__val--green  { color: #10b981; font-size: 10px; }

body.dark-theme .zr-data__val { color: #fff; }
body.dark-theme .zr-data__key { color: rgba(255,255,255,0.4); }

/* Anel de dados (entre o orbit e o ring interno) */
.zr-ring-data {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  border: 1px solid rgba(3, 17, 82, 0.07);
  pointer-events: none;
}

.zr-badge {
  position: relative;
  width: min(320px, 44vw);
  height: min(320px, 44vw);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: default;
  transform-style: preserve-3d;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Anel externo dashed rotativo — HUD sutil */
.zr-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(3, 17, 82, 0.18);
  animation: zr-spin 30s linear infinite;
  pointer-events: none;
}
.zr-orbit::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cor-secundaria);
  box-shadow: 0 0 8px var(--cor-secundaria);
}

/* Anel interno — borda limpa */
.zr-ring {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(3, 17, 82, 0.10);
  pointer-events: none;
}

/* Glow atrás do ícone — subtil */
.zr-glow {
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(255, 61, 20, 0.08) 0%,
    transparent 70%);
  animation: zr-breathe 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes zr-spin    { to { transform: rotate(360deg); } }
@keyframes zr-breathe {
  0%,100% { opacity: 0.5; transform: scale(0.95); }
  50%     { opacity: 1;   transform: scale(1.05); }
}

/* Núcleo */
.zr-core {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.zr-icon {
  width: 72px; height: 72px;
  color: var(--cor-secundaria);
  filter: drop-shadow(0 0 16px rgba(255, 61, 20, 0.30));
  animation: zr-icon-float 4s ease-in-out infinite;
}
@keyframes zr-icon-float {
  0%,100% { transform: translateY(0);    filter: drop-shadow(0 0 12px rgba(255,61,20,0.25)); }
  50%     { transform: translateY(-6px); filter: drop-shadow(0 0 22px rgba(255,61,20,0.45)); }
}

.zr-label {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-primary);
  text-align: center;
}
body.dark-theme .zr-label { color: #fff; }

.zr-sublabel {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}
body.dark-theme .zr-pillar__num { color: var(--cor-secundaria); }
body.dark-theme .zr-pillar       { border-color: rgba(255,255,255,0.06); }
body.dark-theme .zr-pillars      { border-color: rgba(255,255,255,0.06); }

@media (max-width: 900px) {
  .zr-badge  { width: min(260px, 80vw); height: min(260px, 80vw); }}

/* Forçar animações independente de prefers-reduced-motion */
.zr-orbit  { animation-name: zr-spin    !important; animation-duration: 30s !important;
             animation-timing-function: linear !important; animation-iteration-count: infinite !important;
             animation-play-state: running !important; }
.zr-glow   { animation-name: zr-breathe !important; animation-duration: 3.5s !important;
             animation-timing-function: ease-in-out !important; animation-iteration-count: infinite !important;
             animation-play-state: running !important; }
.zr-icon   { animation-name: zr-icon-float !important; animation-duration: 4s !important;
             animation-timing-function: ease-in-out !important; animation-iteration-count: infinite !important;
             animation-play-state: running !important; }

/* ── RADAR — (mantido por fallback, não usado neste layout) ──
.guarantee-sec--cockpit .guarantee-badge {
  position: relative;
  width: min(440px, 52vw);
  height: min(440px, 52vw);
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  background: transparent;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.22s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes badge-rotate-cw  { to { transform: rotate(360deg); } }
@keyframes badge-rotate-ccw { to { transform: rotate(-360deg); } }

/* Tick marks periféricos — muito sutis */
.guarantee-sec--cockpit .guarantee-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(3,17,82,0.22) 0deg, rgba(3,17,82,0.22) 0.5deg,
    transparent        0.5deg, transparent        6deg
  );
  -webkit-mask: radial-gradient(circle,
    transparent 0, transparent calc(50% - 7px),
    #000 calc(50% - 6px), #000 calc(50% - 1px),
    transparent 50%);
  mask: radial-gradient(circle,
    transparent 0, transparent calc(50% - 7px),
    #000 calc(50% - 6px), #000 calc(50% - 1px),
    transparent 50%);
  animation: badge-rotate-cw 60s linear infinite;
  pointer-events: none;
}
.guarantee-sec--cockpit .guarantee-badge__icon {
  color: var(--cor-secundaria);
  width: 48px; height: 48px;
  filter: drop-shadow(0 0 8px rgba(255,61,20,0.45));
  animation: badge-icon-pulse 3s ease-in-out infinite;
}
@keyframes badge-icon-pulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(255,61,20,0.35));  transform: scale(1); }
  50%      { filter: drop-shadow(0 0 14px rgba(255,61,20,0.65)); transform: scale(1.05); }
}
.guarantee-sec--cockpit .guarantee-badge__label {
  font-family: 'DM Mono', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.2;
  text-shadow: none;
}
body.dark-theme .guarantee-sec--cockpit .guarantee-badge__label { color: #fff; }
body.dark-theme .guarantee-badge__telemetry {
  background: #0b1018;
  border-color: rgba(255, 61, 20,0.32);
}
body.dark-theme .gbt-key { color: rgba(255,255,255,0.5); }
body.dark-theme .gbt-val { color: #fff; }

/* ── Segundo sweep (counter-rotating verde, multi-canal) ── */
.guarantee-badge__sweep--2 {
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 270deg,
    rgba(16,185,129,0.10) 295deg,
    rgba(16,185,129,0.40) 340deg,
    rgba(16,185,129,0.80) 358deg,
    transparent 360deg
  );
  animation: badge-rotate-ccw 7s linear infinite;
  opacity: 0.45;
}
.guarantee-badge__target.active { opacity: 1; }

/* Aim line mais grossa no hover */
.guarantee-sec--cockpit .guarantee-badge:hover .guarantee-badge__aim {
  opacity: 1;
  width: 2px;
}
body.dark-theme .radar-bearing {
  background: var(--bg-base);
  color: rgba(255,255,255,0.45);
}
body.dark-theme .gbt-big-grid {
  background: rgba(255, 61, 20,0.06);
  border-color: rgba(255, 61, 20,0.22);
}
body.dark-theme .gbt-big-key { color: rgba(255,255,255,0.55); }
.gbt-big-val {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(26px, 7vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cor-secundaria);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 61, 20,0.18);
  transition: transform 0.15s;
}
.gbt-big-val.flash {
  animation: gbt-big-flash 0.45s ease-out;
}
@keyframes gbt-big-flash {
  0%   { transform: scale(1.18); text-shadow: 0 0 20px rgba(255, 61, 20,0.9); }
  100% { transform: scale(1);    text-shadow: 0 0 12px rgba(255, 61, 20,0.18); }
}

/* Signal bars (equalizador) */
.gbt-bars {
  display: flex; align-items: flex-end;
  gap: 2px;
  height: 14px;
}
.gbt-bars span {
  width: 3px;
  background: #10b981;
  box-shadow: 0 0 4px #10b981;
  animation: gbt-bar-jump 0.9s ease-in-out infinite;
}
.gbt-bars span:nth-child(1) { animation-delay: 0s;    }
.gbt-bars span:nth-child(2) { animation-delay: 0.12s; }
.gbt-bars span:nth-child(3) { animation-delay: 0.24s; }
.gbt-bars span:nth-child(4) { animation-delay: 0.36s; }
.gbt-bars span:nth-child(5) { animation-delay: 0.48s; }
@keyframes gbt-bar-jump {
  0%, 100% { height: 25%; }
  50%      { height: 100%; }
}

/* Ticker (status scrolling) */
.gbt-ticker {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 61, 20,0.18);
  padding: 11px 0;
  position: relative;
}
.gbt-ticker::before,
.gbt-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 24px;
  z-index: 2;
  pointer-events: none;
}
.gbt-ticker::before { left: 0;  background: linear-gradient(to right, var(--bg-surface), transparent); }
.gbt-ticker::after  { right: 0; background: linear-gradient(to left,  var(--bg-surface), transparent); }
body.dark-theme .gbt-ticker::before { background: linear-gradient(to right, #0b1018, transparent); }
body.dark-theme .gbt-ticker::after  { background: linear-gradient(to left,  #0b1018, transparent); }
.gbt-ticker__track {
  display: inline-flex;
  gap: 36px;
  animation: gbt-ticker-scroll 28s linear infinite;
  padding-left: 18px;
}
.gbt-ticker__track span {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
  white-space: nowrap;
}
@keyframes gbt-ticker-scroll {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  /* Radar é feature central — mantém animações mesmo com reduced motion.
     Apenas elementos puramente decorativos são cancelados. */
  .gbt-bars span,
  .gbt-ticker__track { animation: none !important; }}
/* Badge transparente — sem pulse de box-shadow */
.guarantee-sec--cockpit .guarantee-badge {
  animation: none !important;
}
.guarantee-sec--cockpit .guarantee-badge::before {
  animation-name:            badge-rotate-cw   !important;
  animation-duration:        36s               !important;
  animation-timing-function: linear            !important;
  animation-iteration-count: infinite          !important;
  animation-play-state:      running           !important;
}
.guarantee-sec--cockpit .guarantee-badge__icon {
  animation-name:            badge-icon-pulse  !important;
  animation-duration:        2.8s              !important;
  animation-timing-function: ease-in-out       !important;
  animation-iteration-count: infinite          !important;
  animation-play-state:      running           !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §47b  FAIXA DE INSTRUMENTOS HORIZONTAL
   Substitui a telemetria vertical — fill width
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.guarantee-instruments {
  display: none; /* dados agora em órbita ao redor do badge */
  margin: 32px 0 56px;
  border: 1px solid rgba(255, 61, 20,0.20);
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
body.dark-theme .guarantee-instruments {
  background: #0b1018;
  border-color: rgba(255, 61, 20,0.28);
}
/* Corner brackets HUD nos cantos da faixa */
.guarantee-instruments::before,
.guarantee-instruments::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  pointer-events: none;
  z-index: 2;
}
.guarantee-instruments::before {
  top: -1px; left: -1px;
  border-top: 1.5px solid var(--cor-secundaria);
  border-left: 1.5px solid var(--cor-secundaria);
}
.guarantee-instruments::after {
  bottom: -1px; right: -1px;
  border-bottom: 1.5px solid var(--cor-secundaria);
  border-right: 1.5px solid var(--cor-secundaria);
}

.gins-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(255, 61, 20,0.14);
}
@media (max-width: 1100px) {
  .gins-grid { grid-template-columns: repeat(4, 1fr); }}
@media (max-width: 600px) {
  .gins-grid { grid-template-columns: repeat(2, 1fr); }}

.gins-cell {
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 61, 20,0.14);
  display: flex; flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.gins-cell:last-child { border-right: none; }
@media (max-width: 1100px) {
  .gins-cell:nth-child(4n) { border-right: none; }
  .gins-cell:nth-child(n+5) { border-top: 1px solid rgba(255, 61, 20,0.14); }}
@media (max-width: 600px) {
  .gins-cell:nth-child(2n) { border-right: none; }
  .gins-cell:nth-child(n+3) { border-top: 1px solid rgba(255, 61, 20,0.14); }}

.gins-key {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
body.dark-theme .gins-key { color: rgba(255,255,255,0.5); }

.gins-val {
  font-family: 'DM Mono', monospace;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.dark-theme .gins-val { color: #fff; }
.gins-val--accent { color: var(--cor-secundaria); }

/* Cells big (HEADING e PROFUND respondendo a mouse/scroll) */
.gins-cell--big {
  background: rgba(255, 61, 20,0.05);
}
body.dark-theme .gins-cell--big { background: rgba(255, 61, 20,0.08); }
.gins-cell--big .gins-val {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cor-secundaria);
  line-height: 1;
  text-shadow: 0 0 10px rgba(255, 61, 20,0.2);
  transition: transform 0.15s;
}
.gins-cell--big .gins-val.flash {
  animation: gbt-big-flash 0.45s ease-out;
}

/* Lock cell verde */
.gins-cell--lock .gins-val {
  color: #10b981;
  display: flex; align-items: center; gap: 6px;
}
.gins-cell--lock .gins-val::before {
  content: '';
  width: 6px; height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
  animation: fst-pulse 1.6s ease-in-out infinite;
}

/* Signal bars dentro do cell */
.gins-cell .gbt-bars { height: 16px; }

/* Ticker dentro de guarantee-instruments */
.guarantee-instruments .gbt-ticker {
  border-top: none;
  padding: 11px 0;
  background: rgba(255, 61, 20,0.025);
}
body.dark-theme .guarantee-instruments .gbt-ticker { background: rgba(255, 61, 20,0.04); }

/* Ajusta gradient do ticker pra combinar com o novo background */
.guarantee-instruments .gbt-ticker::before {
  background: linear-gradient(to right, var(--bg-surface), transparent);
}
.guarantee-instruments .gbt-ticker::after {
  background: linear-gradient(to left, var(--bg-surface), transparent);
}
body.dark-theme .guarantee-instruments .gbt-ticker::before {
  background: linear-gradient(to right, #0b1018, transparent);
}
body.dark-theme .guarantee-instruments .gbt-ticker::after {
  background: linear-gradient(to left, #0b1018, transparent);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §48  PRICING COCKPIT — Mission Packages
   Status bar · brand brutalista · 3 pacotes
   numerados com specs · CTA cockpit · contract bar
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pricing-sec.pricing-sec--cockpit {
  position: relative;
  padding: 0 0 100px;
  overflow: hidden;
}

/* Status bar topo */
.pricing-status {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 72px;
}
body.dark-theme .pricing-status {
  border-color: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
}
.pricing-status .cfs-grid { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.pricing-status .cfs-item { display: flex; align-items: center; gap: 8px; }
.pricing-status .cfs-dot {
  width: 7px; height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: fst-pulse 1.6s ease-in-out infinite;
}
.pricing-status .pricing-status__right { margin-left: auto; color: var(--cor-secundaria); }
@media (max-width: 800px) { .pricing-status .pricing-status__right { margin-left: 0; }}

/* Hero do bloco */
.pricing-sec--cockpit .sec-head { margin-bottom: 64px; }
.pricing-sec--cockpit .sec-head__label {
  display: block;
  font-family: 'DM Mono', monospace !important;
  font-size: 10px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: var(--cor-secundaria) !important;
  margin-bottom: 22px !important;
}
.pricing-sec--cockpit .sec-head__title {
  font-family: var(--fonte-titulo) !important;
  font-weight: 900 !important;
  font-size: clamp(2.6rem, 6vw, 4.6rem) !important;
  letter-spacing: -0.045em !important;
  line-height: 0.92 !important;
}
.pricing-sec--cockpit .sec-head__desc {
  font-size: 15.5px !important;
  line-height: 1.7 !important;
  color: var(--text-muted) !important;
  max-width: 540px !important;
}
.pricing-sec--cockpit .pricing-sec__note {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: right;
}

/* Grid */
.pricing-sec--cockpit .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin-inline: auto;
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 64px;
  align-items: start;
}
@media (max-width: 980px) {
  .pricing-sec--cockpit .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }}

/* Card cockpit */
.pricing-card--cockpit {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #ffffff;
  border: 1px solid rgba(3,17,82,0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
body.dark-theme .pricing-card--cockpit {
  background: var(--bg-surface);
  border-color: rgba(255,255,255,0.08);
}

/* Header */
.pc-head {
  padding: 26px 28px 22px;
  border-bottom: 1px solid rgba(3,17,82,0.07);
}
body.dark-theme .pc-head { border-bottom-color: rgba(255,255,255,0.06); }
.pc-head__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.pc-head__num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--cor-secundaria);
  padding: 4px 10px;
  border: 1px solid var(--cor-secundaria);
}
.pc-head__line { flex: 1; height: 1px; background: rgba(3,17,82,0.08); }
body.dark-theme .pc-head__line { background: rgba(255,255,255,0.08); }
.pc-head__status {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #10b981;
  display: flex; align-items: center; gap: 5px;
}
.pc-head__status::before {
  content: '';
  width: 5px; height: 5px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
  animation: fst-pulse 1.6s ease-in-out infinite;
}
.pc-name {
  font-family: 'DM Mono', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-transform: uppercase;
  margin: 0 0 12px;
  line-height: 1;
}
body.dark-theme .pc-name { color: #fff; }
.pc-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* Preço */
.pc-price {
  padding: 28px;
  background: rgba(255, 61, 20,0.03);
  border-bottom: 1px solid rgba(3,17,82,0.07);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.dark-theme .pc-price { background: rgba(255, 61, 20,0.07); border-bottom-color: rgba(255,255,255,0.06); }
.pc-price__from {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pc-price__val {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--cor-secundaria);
}
.pc-price__currency {
  font-family: 'DM Mono', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pc-price__amount {
  font-family: 'DM Mono', sans-serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 61, 20,0.18);
}
.pc-price__amount--custom {
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.05;
}
.pc-price__period {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Specs strip */
.pc-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(3,17,82,0.07);
}
body.dark-theme .pc-specs { border-bottom-color: rgba(255,255,255,0.06); }
.pc-spec {
  padding: 14px 12px;
  border-right: 1px solid rgba(3,17,82,0.07);
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  min-width: 0;
}
body.dark-theme .pc-spec { border-right-color: rgba(255,255,255,0.06); }
.pc-spec:last-child { border-right: none; }
.pc-spec__key {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pc-spec__val {
  font-family: 'DM Mono', monospace;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}
body.dark-theme .pc-spec__val { color: #fff; }

/* Features */
.pc-features {
  flex: 1;
  padding: 22px 28px 8px;
  margin: 0;
  list-style: none;
}
.pc-features__group {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
  margin: 0 0 12px;
}
.pc-features__group:not(:first-child) { margin-top: 20px; }
.pc-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text-primary);
}
body.dark-theme .pc-feat { color: rgba(255,255,255,0.85); }
.pc-feat::before {
  content: '▸';
  color: var(--cor-secundaria);
  flex-shrink: 0;
  font-weight: 700;
}
.pc-feat--off {
  color: var(--text-muted) !important;
  opacity: 0.55;
}
.pc-feat--off::before { content: '✕'; color: var(--text-muted); opacity: 0.7; }

/* CTA */
.pc-cta {
  display: block;
  margin: 18px 28px 26px;
  background: var(--bg-surface-alt);
  color: #fff;
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.15s;
}
.pc-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  font-family: 'DM Mono', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.pc-cta__inner svg { width: 15px; height: 15px; }
.pc-cta__meta {
  display: block;
  padding: 9px 24px;
  background: rgba(0,0,0,0.22);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.pc-cta:hover { background: #051d6e; }
.pc-cta:active { transform: scale(0.99); }

/* HUD brackets nos cantos */
.pc-bracket {
  position: absolute;
  width: 14px; height: 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 4;
}
.pricing-card--cockpit:hover .pc-bracket { opacity: 1; }
.pc-bracket--tl { top: 8px; left: 8px; border-top: 1.5px solid var(--cor-secundaria); border-left: 1.5px solid var(--cor-secundaria); }
.pc-bracket--tr { top: 8px; right: 8px; border-top: 1.5px solid var(--cor-secundaria); border-right: 1.5px solid var(--cor-secundaria); }
.pc-bracket--bl { bottom: 8px; left: 8px; border-bottom: 1.5px solid var(--cor-secundaria); border-left: 1.5px solid var(--cor-secundaria); }
.pc-bracket--br { bottom: 8px; right: 8px; border-bottom: 1.5px solid var(--cor-secundaria); border-right: 1.5px solid var(--cor-secundaria); }

/* Card featured */
.pricing-card--cockpit.pricing-card--featured {
  border-color: var(--cor-secundaria);
  box-shadow:
    0 0 0 1px var(--cor-secundaria),
    0 12px 40px rgba(255, 61, 20,0.25);
  transform: translateY(-12px);
  overflow: visible;
  z-index: 2;
}
.pricing-card--cockpit.pricing-card--featured .pc-cta { background: var(--cor-secundaria); }
.pricing-card--cockpit.pricing-card--featured .pc-cta:hover { background: #b3240c; }
.pricing-card--cockpit.pricing-card--featured .pc-bracket { opacity: 1; }
.pricing-card--cockpit.pricing-card--featured::before {
  content: '+ RECOMENDADO';
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #ff5e3a, #ff3d14);
  color: #fff;
  padding: 6px 18px;
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  z-index: 5;
  white-space: nowrap;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(255, 61, 20, 0.45);
  border: 1px solid rgba(255,255,255,0.18);
}
@media (max-width: 1100px) {
  .pricing-card--cockpit.pricing-card--featured { transform: none; }}

/* Hover lift */
.pricing-card--cockpit:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(3,17,82,0.10);
}
.pricing-card--cockpit.pricing-card--featured:hover {
  transform: translateY(-18px);
  box-shadow:
    0 0 0 1px var(--cor-secundaria),
    0 20px 50px rgba(255, 61, 20,0.32);
}

/* ── Textos do card featured (fundo navy) legíveis no light mode ── */
.pricing-card--cockpit.pricing-card--featured .pc-head {
  border-bottom-color: rgba(255,255,255,0.09);
}
.pricing-card--cockpit.pricing-card--featured .pc-head__line {
  background: rgba(255,255,255,0.09);
}
.pricing-card--cockpit.pricing-card--featured .pc-name {
  color: #ffffff;
}
.pricing-card--cockpit.pricing-card--featured .pc-desc {
  color: rgba(255,255,255,0.65);
}
.pricing-card--cockpit.pricing-card--featured .pc-price {
  background: rgba(255,255,255,0.05);
  border-bottom-color: rgba(255,255,255,0.09);
}
.pricing-card--cockpit.pricing-card--featured .pc-price__from,
.pricing-card--cockpit.pricing-card--featured .pc-price__period {
  color: rgba(255,255,255,0.50);
}
.pricing-card--cockpit.pricing-card--featured .pc-specs {
  border-bottom-color: rgba(255,255,255,0.09);
}
.pricing-card--cockpit.pricing-card--featured .pc-spec {
  border-right-color: rgba(255,255,255,0.09);
}
.pricing-card--cockpit.pricing-card--featured .pc-spec__key {
  color: rgba(255,255,255,0.50);
}
.pricing-card--cockpit.pricing-card--featured .pc-spec__val {
  color: #ffffff;
}
.pricing-card--cockpit.pricing-card--featured .pc-features__group {
  color: var(--cor-secundaria);
}
.pricing-card--cockpit.pricing-card--featured .pc-feat {
  color: rgba(255,255,255,0.82);
}
.pricing-card--cockpit.pricing-card--featured .pc-feat--off {
  color: rgba(255,255,255,0.30) !important;
}

body.dark-theme .pricing-card--cockpit:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

/* ===== PRICING COCKPIT · TRATAMENTO BRUTALISTA ===== */
:root { --bru-ink: #05070f; }
.pricing-card--cockpit {
  border: 2.5px solid var(--bru-ink) !important;
  border-radius: 0 !important;
  box-shadow: 8px 8px 0 var(--bru-ink) !important;
  transition: transform .14s ease, box-shadow .14s ease !important;
}
.pricing-card--cockpit:hover {
  transform: translate(-3px, -3px) !important;
  box-shadow: 12px 12px 0 var(--cor-secundaria) !important;
}
body.dark-theme .pricing-card--cockpit {
  border-color: #ffffff !important;
  box-shadow: 8px 8px 0 rgba(255,255,255,0.85) !important;
}
body.dark-theme .pricing-card--cockpit:hover {
  box-shadow: 12px 12px 0 var(--cor-secundaria) !important;
}
.pricing-card--cockpit .pc-head__num {
  border: 2px solid var(--bru-ink);
  border-radius: 0;
  font-weight: 700;
}
body.dark-theme .pricing-card--cockpit .pc-head__num { border-color: #fff; }
.pricing-card--cockpit .pc-cta {
  border: 2.5px solid var(--bru-ink);
  border-radius: 0;
  margin: 18px 24px 24px;
  box-shadow: 4px 4px 0 var(--bru-ink);
  transition: transform .12s ease, box-shadow .12s ease, background .2s ease;
}
.pricing-card--cockpit .pc-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--bru-ink);
}
.pricing-card--cockpit .pc-cta:active {
  transform: translate(0, 0);
  box-shadow: 0 0 0 var(--bru-ink);
}
.pricing-card--cockpit.pricing-card--featured {
  border-color: var(--cor-secundaria) !important;
  box-shadow: 10px 10px 0 var(--cor-secundaria) !important;
  transform: translateY(-10px) !important;
}
.pricing-card--cockpit.pricing-card--featured:hover {
  transform: translate(-3px, -13px) !important;
  box-shadow: 14px 14px 0 var(--bru-ink) !important;
}
.pricing-card--cockpit.pricing-card--featured .pc-cta {
  border-color: #ffffff;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.45);
}
.pricing-card--cockpit.pricing-card--featured::before {
  background: var(--cor-secundaria) !important;
  border: 2px solid var(--bru-ink) !important;
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 var(--bru-ink) !important;
  letter-spacing: 2px !important;
}
@media (max-width: 980px) {
  .pricing-card--cockpit.pricing-card--featured { transform: none !important; }
  .pricing-card--cockpit { box-shadow: 6px 6px 0 var(--bru-ink) !important; }
  body.dark-theme .pricing-card--cockpit { box-shadow: 6px 6px 0 rgba(255,255,255,0.85) !important; }}

/* Contract bar (rodapé) */
.pricing-contract {
  position: relative;
  background: var(--bg-surface-alt);
  color: #fff;
  padding: 28px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
body.dark-theme .pricing-contract { background: #0b1018 !important; }
@media (max-width: 900px) { .pricing-contract { grid-template-columns: 1fr; gap: 18px; padding: 24px 28px; }}
.pricing-contract__label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
}
.pricing-contract__items {
  display: flex;
  gap: 20px 28px;
  flex-wrap: wrap;
}
.pricing-contract__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: #fff;
  white-space: nowrap;
}
.pricing-contract__item svg { width: 16px; height: 16px; color: var(--cor-secundaria); flex-shrink: 0; }
.pricing-contract__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cor-secundaria);
  color: #fff;
  padding: 14px 22px;
  font-family: 'DM Mono', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--cor-secundaria);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.pricing-contract__cta:hover { background: #b3240c; }
.pricing-contract__cta:active { transform: scale(0.98); }
.pricing-contract__cta svg { width: 15px; height: 15px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §49  TESTIMONIALS COCKPIT — Field Reports
   Status bar · brand brutalista · 3 reports
   numerados com métrica gigante · meta-strip
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonials-sec.testimonials-sec--cockpit {
  position: relative;
  padding: 0 0 100px;
  overflow: hidden;
}

/* Status bar topo */
.test-status {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 72px;
}
body.dark-theme .test-status {
  border-color: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
}
.test-status .cfs-grid { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.test-status .cfs-item { display: flex; align-items: center; gap: 8px; }
.test-status .cfs-dot {
  width: 7px; height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: fst-pulse 1.6s ease-in-out infinite;
}
.test-status .test-status__right { margin-left: auto; color: var(--cor-secundaria); }
@media (max-width: 800px) { .test-status .test-status__right { margin-left: 0; }}

/* Hero do bloco */
.testimonials-sec--cockpit .sec-head {
  margin-bottom: 64px;
  text-align: left !important;
  align-items: start !important;
}
.testimonials-sec--cockpit .sec-head__label {
  display: block;
  font-family: 'DM Mono', monospace !important;
  font-size: 10px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: var(--cor-secundaria) !important;
  margin-bottom: 22px !important;
}
.testimonials-sec--cockpit .sec-head__title {
  font-family: var(--fonte-titulo) !important;
  font-weight: 900 !important;
  font-size: clamp(2.6rem, 6vw, 4.6rem) !important;
  letter-spacing: -0.045em !important;
  line-height: 0.92 !important;
}
.testimonials-sec--cockpit .test-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 540px;
  margin: 18px 0 0;
}

/* Grid */
.testimonials-sec--cockpit .test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 40px 0 56px;
}
@media (max-width: 1000px) { .testimonials-sec--cockpit .test-grid { grid-template-columns: 1fr; }}

/* Card cockpit */
.test-card--cockpit {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #ffffff;
  border: 1px solid rgba(3,17,82,0.08);
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s, border-color 0.2s;
}
body.dark-theme .test-card--cockpit {
  background: var(--bg-surface);
  border-color: rgba(255,255,255,0.08);
}
.test-card--cockpit:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(3,17,82,0.10);
}
body.dark-theme .test-card--cockpit:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

/* Header */
.tc-head {
  padding: 22px 26px 18px;
  border-bottom: 1px solid rgba(3,17,82,0.07);
}
body.dark-theme .tc-head { border-bottom-color: rgba(255,255,255,0.06); }
.tc-head__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.tc-head__num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--cor-secundaria);
  padding: 4px 10px;
  border: 1px solid var(--cor-secundaria);
}
.tc-head__line { flex: 1; height: 1px; background: rgba(3,17,82,0.08); }
body.dark-theme .tc-head__line { background: rgba(255,255,255,0.08); }
.tc-head__status {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #10b981;
  display: flex; align-items: center; gap: 5px;
}
.tc-head__status::before {
  content: '';
  width: 5px; height: 5px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
  animation: fst-pulse 1.6s ease-in-out infinite;
}
.tc-head__meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.tc-head__tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Métrica GIGANTE no destaque */
.tc-metric {
  padding: 26px;
  background: rgba(255, 61, 20,0.04);
  border-bottom: 1px solid rgba(3,17,82,0.07);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.dark-theme .tc-metric {
  background: rgba(255, 61, 20,0.08);
  border-bottom-color: rgba(255,255,255,0.06);
}
.tc-metric__label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.tc-metric__val {
  font-family: 'DM Mono', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 4.5vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--cor-secundaria);
  text-shadow: 0 0 14px rgba(255, 61, 20,0.22);
}
.tc-metric__unit {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
  font-weight: 600;
  margin-top: 4px;
}

/* Stars (override cores p/ cockpit) */
.test-card--cockpit .tc-stars {
  display: flex;
  gap: 3px;
  padding: 18px 26px 0;
}
.test-card--cockpit .tc-stars__star {
  width: 14px; height: 14px;
  fill: var(--cor-secundaria);
}

/* Quote */
.test-card--cockpit .tc-quote {
  padding: 16px 26px 0;
  color: var(--cor-secundaria);
  opacity: 0.4;
}
.test-card--cockpit .tc-quote svg { width: 28px; height: 28px; }
.test-card--cockpit .tc-text {
  padding: 14px 26px 22px;
  flex: 1;
  font-family: 'DM Mono', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-primary);
  font-style: italic;
  margin: 0;
}
body.dark-theme .test-card--cockpit .tc-text { color: rgba(255,255,255,0.85); }

/* Painel do autor */
.test-card--cockpit .tc-author {
  padding: 20px 26px;
  border-top: 1px solid rgba(3,17,82,0.07);
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(3,17,82,0.02);
}
body.dark-theme .test-card--cockpit .tc-author {
  border-top-color: rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.test-card--cockpit .tca-avatar {
  width: 44px; height: 44px;
  background: var(--bg-surface-alt);
  color: #fff;
  display: grid; place-items: center;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  flex-shrink: 0;
  border: 1px solid var(--cor-secundaria);
  position: relative;
}
.test-card--cockpit .tca-info {
  display: flex; flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.test-card--cockpit .tca-info__role-label {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
}
.test-card--cockpit .tca-info strong {
  font-family: 'DM Mono', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
body.dark-theme .test-card--cockpit .tca-info strong { color: #fff; }
.test-card--cockpit .tca-info span {
  font-family: 'DM Mono', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}

/* HUD brackets */
.tc-bracket {
  position: absolute;
  width: 14px; height: 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 4;
}
.test-card--cockpit:hover .tc-bracket { opacity: 1; }
.tc-bracket--tl { top: 8px; left: 8px; border-top: 1.5px solid var(--cor-secundaria); border-left: 1.5px solid var(--cor-secundaria); }
.tc-bracket--tr { top: 8px; right: 8px; border-top: 1.5px solid var(--cor-secundaria); border-right: 1.5px solid var(--cor-secundaria); }
.tc-bracket--bl { bottom: 8px; left: 8px; border-bottom: 1.5px solid var(--cor-secundaria); border-left: 1.5px solid var(--cor-secundaria); }
.tc-bracket--br { bottom: 8px; right: 8px; border-bottom: 1.5px solid var(--cor-secundaria); border-right: 1.5px solid var(--cor-secundaria); }

/* Meta strip de agregados */
.testimonials-meta {
  position: relative;
  background: var(--bg-surface-alt);
  color: #fff;
  padding: 28px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
body.dark-theme .testimonials-meta { background: #0b1018 !important; }
@media (max-width: 900px) { .testimonials-meta { grid-template-columns: 1fr; gap: 18px; padding: 24px 28px; }}
.testimonials-meta__label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
}
.testimonials-meta__items {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}
.testimonials-meta__item {
  display: flex; flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.testimonials-meta__key {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.testimonials-meta__val {
  font-family: 'DM Mono', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.testimonials-meta__val--accent { color: var(--cor-secundaria); }
.testimonials-meta__val--stars {
  display: flex; align-items: center; gap: 4px;
  color: #fff;
}
.testimonials-meta__val--stars svg { width: 18px; height: 18px; fill: var(--cor-secundaria); }
.testimonials-meta__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cor-secundaria);
  color: #fff;
  padding: 14px 22px;
  font-family: 'DM Mono', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--cor-secundaria);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.testimonials-meta__cta:hover { background: #b3240c; }
.testimonials-meta__cta:active { transform: scale(0.98); }
.testimonials-meta__cta svg { width: 15px; height: 15px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §50  AMBIENT HUD — Widgets UI vivos como decoração
   Pequenos elementos sutis posicionados absolutamente
   em seções, animados, em vários tamanhos. Reagem ao
   scroll via --scroll-pct (já setado pelo §17).
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.ahud {
  position: absolute;
  pointer-events: none;
  font-family: 'DM Mono', monospace;
  color: var(--cor-secundaria);
  opacity: 0.32;
  z-index: 1;
  transition: opacity 0.4s;
  user-select: none;
}
body.dark-theme .ahud { opacity: 0.42; }
.ahud--bright { opacity: 0.58; }
body.dark-theme .ahud--bright { opacity: 0.7; }

/* Reage ao scroll: a opacidade aumenta levemente quando a seção está ativa */
section:hover .ahud { opacity: 0.55; }
body.dark-theme section:hover .ahud { opacity: 0.7; }

/* ── 1. Mini telemetria horizontal (LABEL // VALOR) ── */
.ahud-readout {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.ahud-readout::before {
  content: '▸';
  font-weight: 700;
}
.ahud-readout__val {
  font-variant-numeric: tabular-nums;
}
.ahud-readout--green { color: #10b981; }

/* ── 2. Mini barras verticais (equalizador) ── */
.ahud-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
}
.ahud-bars span {
  display: block;
  width: 3px;
  background: var(--cor-secundaria);
  box-shadow: 0 0 4px var(--cor-secundaria);
  animation: ahud-bar 1.2s ease-in-out infinite;
}
.ahud-bars span:nth-child(1) { animation-delay: 0s; }
.ahud-bars span:nth-child(2) { animation-delay: 0.15s; }
.ahud-bars span:nth-child(3) { animation-delay: 0.30s; }
.ahud-bars span:nth-child(4) { animation-delay: 0.45s; }
.ahud-bars span:nth-child(5) { animation-delay: 0.60s; }
.ahud-bars span:nth-child(6) { animation-delay: 0.75s; }
.ahud-bars--md { height: 48px; }
.ahud-bars--lg { height: 72px; }
.ahud-bars--lg span { width: 4px; }
.ahud-bars--blue  span { background: #3b82f6; box-shadow: 0 0 5px #3b82f6; }
@keyframes ahud-bar {
  0%, 100% { height: 20%; }
  50%      { height: 100%; }
}
@keyframes ahud-rotate { to { transform: rotate(360deg); } }
@keyframes ahud-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.5); }
}

/* ── 4. Painel de targeting (brackets + label) ── */
.ahud-target {
  position: relative;
  width: 80px; height: 56px;
  display: grid; place-items: center;
}
.ahud-target--md { width: 120px; height: 80px; }
.ahud-target__corner {
  position: absolute;
  width: 12px; height: 12px;
}
.ahud-target__corner--tl { top: 0; left: 0; border-top: 1.2px solid currentColor; border-left: 1.2px solid currentColor; }
.ahud-target__corner--tr { top: 0; right: 0; border-top: 1.2px solid currentColor; border-right: 1.2px solid currentColor; }
.ahud-target__corner--bl { bottom: 0; left: 0; border-bottom: 1.2px solid currentColor; border-left: 1.2px solid currentColor; }
.ahud-target__corner--br { bottom: 0; right: 0; border-bottom: 1.2px solid currentColor; border-right: 1.2px solid currentColor; }
.ahud-target__label {
  font-size: 8.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  font-weight: 600;
}
.ahud-target__label small {
  display: block;
  font-size: 7px;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-top: 3px;
}
.ahud-target--blue  { color: #3b82f6; }

/* ── 5. Waveform (linha de sinal animada) ── */
.ahud-wave {
  width: 140px; height: 32px;
  position: relative;
}
.ahud-wave svg { width: 100%; height: 100%; }
.ahud-wave svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linejoin: round;
}
.ahud-wave--green { color: #10b981; }
.ahud-wave--md { width: 200px; height: 44px; }
.ahud-wave__pulse {
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  animation: ahud-wave-pulse 2.4s linear infinite;
}
@keyframes ahud-wave-pulse {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

/* ── 6. Grid scanner (mini matriz com célula varrendo) ── */
.ahud-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  width: 76px; height: 76px;
}
.ahud-grid--md { width: 110px; height: 110px; grid-template-columns: repeat(8, 1fr); }
.ahud-grid span {
  background: currentColor;
  opacity: 0.18;
  border-radius: 1px;
  animation: ahud-grid-scan 4.5s linear infinite;
}
@keyframes ahud-grid-scan {
  0%, 95% { opacity: 0.15; }
  6%      { opacity: 1; box-shadow: 0 0 6px currentColor; }
}
/* Cada célula tem delay sequencial via nth-child */
.ahud-grid span:nth-child(1)  { animation-delay: 0.0s; }
.ahud-grid span:nth-child(2)  { animation-delay: 0.12s; }
.ahud-grid span:nth-child(3)  { animation-delay: 0.24s; }
.ahud-grid span:nth-child(4)  { animation-delay: 0.36s; }
.ahud-grid span:nth-child(5)  { animation-delay: 0.48s; }
.ahud-grid span:nth-child(6)  { animation-delay: 0.60s; }
.ahud-grid span:nth-child(7)  { animation-delay: 0.72s; }
.ahud-grid span:nth-child(8)  { animation-delay: 0.84s; }
.ahud-grid span:nth-child(9)  { animation-delay: 0.96s; }
.ahud-grid span:nth-child(10) { animation-delay: 1.08s; }
.ahud-grid span:nth-child(11) { animation-delay: 1.20s; }
.ahud-grid span:nth-child(12) { animation-delay: 1.32s; }
.ahud-grid span:nth-child(13) { animation-delay: 1.44s; }
.ahud-grid span:nth-child(14) { animation-delay: 1.56s; }
.ahud-grid span:nth-child(15) { animation-delay: 1.68s; }
.ahud-grid span:nth-child(16) { animation-delay: 1.80s; }

/* ── 7. Coordenadas drifting ── */
.ahud-coords {
  display: flex; flex-direction: column;
  gap: 4px;
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.3;
}
.ahud-coords span { display: flex; align-items: center; gap: 6px; }
.ahud-coords small {
  font-size: 8px;
  letter-spacing: 1px;
  opacity: 0.55;
}

/* ── Posicionamento por seção: usa --scroll-pct pro parallax sutil ── */
section { position: relative; }

/* Garante que conteúdo principal fica acima */
section > .container { position: relative; z-index: 2; }

/* Ambient parallax muito sutil baseado em scroll */
.ahud--drift {
  transform: translateY(calc(var(--scroll-pct, 0) * -0.3px));
}

/* Reduced motion: para tudo */
@media (prefers-reduced-motion: reduce) {
  .ahud-bars span,
  .ahud-radar::after,
  .ahud-radar__dot,
  .ahud-grid span,
  .ahud-wave__pulse { animation: none !important; }
  .ahud--drift { transform: none !important; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §51  SPEC COCKPIT — Capability Modules
   Status bar · brand brutalista · 3 cards
   numerados com ícone HUD-framed · specs strip
   tags ▸ · CTA cockpit · coverage bar
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.spec.spec--cockpit {
  position: relative;
  padding-block: var(--space-sec);
  padding-inline: 0;
  overflow: hidden;
}

/* Status bar topo */
.spec-status {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-head-in);
}
body.dark-theme .spec-status {
  border-color: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
}
.spec-status .cfs-grid { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.spec-status .cfs-item { display: flex; align-items: center; gap: 8px; }
.spec-status .cfs-dot {
  width: 7px; height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: fst-pulse 1.6s ease-in-out infinite;
}
.spec-status .spec-status__right { margin-left: auto; color: var(--cor-secundaria); }
@media (max-width: 800px) { .spec-status .spec-status__right { margin-left: 0; }}

/* Hero */
.spec.spec--cockpit .spec-header {
  margin-bottom: var(--space-block);
  max-width: var(--largura-maxima);
  margin-inline: auto;
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}
@media (max-width: 800px) { .spec.spec--cockpit .spec-header { grid-template-columns: 1fr; gap: 18px; }}
.spec.spec--cockpit .spec-header__label {
  display: block;
  font-family: 'DM Mono', monospace !important;
  font-size: 10px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: var(--cor-secundaria) !important;
  margin-bottom: 22px !important;
  opacity: 1 !important;
}
.spec.spec--cockpit .spec-header__title {
  font-family: var(--fonte-titulo) !important;
  font-weight: 900 !important;
  font-size: clamp(2.6rem, 6vw, 4.6rem) !important;
  letter-spacing: -0.045em !important;
  line-height: 0.92 !important;
  margin: 0 !important;
}
.spec.spec--cockpit .spec-header__sub {
  font-family: 'DM Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  max-width: 280px !important;
  line-height: 1.7 !important;
}

/* Lista cards */
.spec.spec--cockpit .spec-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-gap);
  max-width: var(--largura-maxima);
  margin: var(--space-gap) auto var(--space-block);
  padding-inline: var(--gut);
}
@media (max-width: 1100px) { .spec.spec--cockpit .spec-list { grid-template-columns: 1fr; }}

/* Card cockpit (sobrescreve a estrutura visual mantendo o markup) */
.spec-card--cockpit {
  position: relative;
  display: flex !important;
  flex-direction: column;
  padding: 0 !important;
  background: #ffffff;
  border: 1px solid rgba(3,17,82,0.08);
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s, border-color 0.2s;
  overflow: hidden;
}
body.dark-theme .spec-card--cockpit {
  background: var(--bg-surface);
  border-color: rgba(255,255,255,0.08);
}
.spec-card--cockpit:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(3,17,82,0.10);
  border-color: rgba(255, 61, 20,0.3);
}
body.dark-theme .spec-card--cockpit:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

/* Header do card */
.spec-card--cockpit .sc-head {
  padding: 22px 26px 18px;
  border-bottom: 1px solid rgba(3,17,82,0.07);
}
body.dark-theme .spec-card--cockpit .sc-head { border-bottom-color: rgba(255,255,255,0.06); }
.spec-card--cockpit .sc-head__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.spec-card--cockpit .sc-head__num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--cor-secundaria);
  padding: 4px 10px;
  border: 1px solid var(--cor-secundaria);
}
.spec-card--cockpit .sc-head__line { flex: 1; height: 1px; background: rgba(3,17,82,0.08); }
body.dark-theme .spec-card--cockpit .sc-head__line { background: rgba(255,255,255,0.08); }
.spec-card--cockpit .sc-head__status {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #10b981;
  display: flex; align-items: center; gap: 5px;
}
.spec-card--cockpit .sc-head__status::before {
  content: '';
  width: 5px; height: 5px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
  animation: fst-pulse 1.6s ease-in-out infinite;
}

/* Ícone framed HUD */
.spec-card--cockpit .sc-icon {
  position: relative;
  width: 72px; height: 72px;
  margin-bottom: 18px;
  display: grid; place-items: center;
  background: rgba(255, 61, 20,0.06);
  border: 1px solid rgba(255, 61, 20,0.2);
}
body.dark-theme .spec-card--cockpit .sc-icon {
  background: rgba(255, 61, 20,0.1);
}
.spec-card--cockpit .sc-icon svg {
  width: 30px; height: 30px;
  color: var(--cor-secundaria);
}
/* Brackets dentro do icon frame */
.spec-card--cockpit .sc-icon::before,
.spec-card--cockpit .sc-icon::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
}
.spec-card--cockpit .sc-icon::before { top: 2px; left: 2px; border-top: 1px solid var(--cor-secundaria); border-left: 1px solid var(--cor-secundaria); }
.spec-card--cockpit .sc-icon::after { bottom: 2px; right: 2px; border-bottom: 1px solid var(--cor-secundaria); border-right: 1px solid var(--cor-secundaria); }
.spec-card--cockpit:hover .sc-icon { background: rgba(255, 61, 20,0.1); }
.spec-card--cockpit:hover .sc-icon svg {
  transform: scale(1.1);
  transition: transform 0.25s;
}

/* Título */
.spec-card--cockpit .sc-name {
  font-family: 'DM Mono', sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-transform: uppercase;
  margin: 0 0 12px;
  line-height: 1.05;
}
body.dark-theme .spec-card--cockpit .sc-name { color: #fff; }
.spec-card--cockpit .sc-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* Specs strip */
.spec-card--cockpit .sc-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(3,17,82,0.07);
}
body.dark-theme .spec-card--cockpit .sc-specs { border-bottom-color: rgba(255,255,255,0.06); }
.spec-card--cockpit .sc-spec {
  padding: 12px 10px;
  border-right: 1px solid rgba(3,17,82,0.07);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  min-width: 0;
}
body.dark-theme .spec-card--cockpit .sc-spec { border-right-color: rgba(255,255,255,0.06); }
.spec-card--cockpit .sc-spec:last-child { border-right: none; }
.spec-card--cockpit .sc-spec__key {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.spec-card--cockpit .sc-spec__val {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}
body.dark-theme .spec-card--cockpit .sc-spec__val { color: #fff; }

/* Tags */
.spec-card--cockpit .sc-tags {
  flex: 1;
  padding: 18px 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-content: flex-start;
}
.spec-card--cockpit .sc-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
  padding: 5px 9px;
  border: 1px solid rgba(255, 61, 20,0.3);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background 0.18s, border-color 0.18s;
}
.spec-card--cockpit .sc-tag::before { content: '▸'; opacity: 0.7; }
.spec-card--cockpit .sc-tag:hover {
  background: rgba(255, 61, 20,0.07);
  border-color: var(--cor-secundaria);
}

/* CTA */
.spec-card--cockpit .sc-cta {
  display: block;
  margin: 0 26px 24px;
  background: var(--bg-surface-alt);
  color: #fff;
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.15s;
}
.spec-card--cockpit .sc-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 22px;
  font-family: 'DM Mono', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.spec-card--cockpit .sc-cta__inner svg { width: 14px; height: 14px; }
.spec-card--cockpit .sc-cta__meta {
  display: block;
  padding: 8px 22px;
  background: rgba(0,0,0,0.22);
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.spec-card--cockpit .sc-cta:hover { background: #051d6e; }
.spec-card--cockpit .sc-cta:active { transform: scale(0.99); }

/* HUD brackets nos cantos do card */
.spec-card--cockpit .sc-bracket {
  position: absolute;
  width: 14px; height: 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 4;
}
.spec-card--cockpit:hover .sc-bracket { opacity: 1; }
.sc-bracket--tl { top: 6px; left: 6px; border-top: 1.5px solid var(--cor-secundaria); border-left: 1.5px solid var(--cor-secundaria); }
.sc-bracket--tr { top: 6px; right: 6px; border-top: 1.5px solid var(--cor-secundaria); border-right: 1.5px solid var(--cor-secundaria); }
.sc-bracket--bl { bottom: 6px; left: 6px; border-bottom: 1.5px solid var(--cor-secundaria); border-left: 1.5px solid var(--cor-secundaria); }
.sc-bracket--br { bottom: 6px; right: 6px; border-bottom: 1.5px solid var(--cor-secundaria); border-right: 1.5px solid var(--cor-secundaria); }

/* Coverage bar */
.spec-coverage {
  position: relative;
  background: var(--bg-surface-alt);
  color: #fff;
  padding: 28px var(--gut);
  max-width: var(--largura-maxima);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
body.dark-theme .spec-coverage { background: #0b1018 !important; }
@media (max-width: 900px) { .spec-coverage { grid-template-columns: 1fr; gap: 18px; padding: 24px 28px; }}
.spec-coverage__label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
}
.spec-coverage__items {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}
.spec-coverage__item {
  display: flex; flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.spec-coverage__key {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.spec-coverage__val {
  font-family: 'DM Mono', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.spec-coverage__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cor-secundaria);
  color: #fff;
  padding: 14px 22px;
  font-family: 'DM Mono', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--cor-secundaria);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.spec-coverage__cta:hover { background: #b3240c; }
.spec-coverage__cta svg { width: 15px; height: 15px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §52  CASES COCKPIT — Case Studies
   Status bar · brand brutalista · bento cards
   com badge numerada · status · tags ▸ · portfolio bar
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cases.cases--cockpit {
  position: relative;
  padding: 0 0 100px;
}

/* Status bar topo */
.cases-status {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 72px;
}
body.dark-theme .cases-status {
  border-color: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
}
.cases-status .cfs-grid { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.cases-status .cfs-item { display: flex; align-items: center; gap: 8px; }
.cases-status .cfs-dot {
  width: 7px; height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: fst-pulse 1.6s ease-in-out infinite;
}
.cases-status .cases-status__right { margin-left: auto; color: var(--cor-secundaria); }
@media (max-width: 800px) { .cases-status .cases-status__right { margin-left: 0; }}

/* Hero */
.cases.cases--cockpit .sec-head {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}
@media (max-width: 800px) { .cases.cases--cockpit .sec-head { grid-template-columns: 1fr; gap: 18px; }}
.cases.cases--cockpit .sec-head::before { display: none !important; }
.cases.cases--cockpit .sec-head__label {
  display: block;
  font-family: 'DM Mono', monospace !important;
  font-size: 10px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: var(--cor-secundaria) !important;
  margin-bottom: 22px !important;
}
.cases.cases--cockpit .sec-head__title {
  font-family: var(--fonte-titulo) !important;
  font-weight: 900 !important;
  font-size: clamp(2.6rem, 6vw, 4.6rem) !important;
  letter-spacing: -0.045em !important;
  line-height: 0.92 !important;
}
.cases.cases--cockpit .sec-head__desc {
  font-size: 15.5px !important;
  line-height: 1.7 !important;
  color: var(--text-muted) !important;
  max-width: 540px !important;
  margin-top: 18px !important;
}
.cases.cases--cockpit .link-more {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
  text-decoration: none;
  border: 1px solid var(--cor-secundaria);
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
}
.cases.cases--cockpit .link-more:hover {
  background: var(--cor-secundaria);
  color: #fff;
}

/* Bento cards cockpit — adiciona camadas HUD sem quebrar o layout */
.cases--cockpit .bento-case--cockpit {
  position: relative;
}

/* Tag refinada com prefixo ▸ */
.cases--cockpit .bento-case__tag {
  position: relative;
}
.cases--cockpit .bento-case__tag::before {
  content: '▸ ';
  font-weight: 700;
  opacity: 0.7;
}

/* Métrica realçada (mantém estrutura, só amplifica) */
.cases--cockpit .bento-case__metric {
  position: relative;
  z-index: 2;
}
body.dark-theme .cases--cockpit .bento-case__num {
  text-shadow: 0 0 16px currentColor;
}

/* Card hover lift sutil */
.cases--cockpit .bento-case {
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s;
}
.cases--cockpit .bento-case:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(3,17,82,0.15);
}
body.dark-theme .cases--cockpit .bento-case:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

/* Portfolio bar (rodapé) */
.cases-portfolio {
  position: relative;
  background: var(--bg-surface-alt);
  color: #fff;
  padding: 28px 40px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
body.dark-theme .cases-portfolio { background: #0b1018 !important; }
@media (max-width: 900px) { .cases-portfolio { grid-template-columns: 1fr; gap: 18px; padding: 24px 28px; }}
.cases-portfolio__label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
}
.cases-portfolio__items {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.cases-portfolio__item {
  display: flex; flex-direction: column;
  gap: 4px;
}
.cases-portfolio__key {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.cases-portfolio__val {
  font-family: 'DM Mono', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.cases-portfolio__val--accent { color: var(--cor-secundaria); }
.cases-portfolio__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cor-secundaria);
  color: #fff;
  padding: 14px 22px;
  font-family: 'DM Mono', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--cor-secundaria);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.cases-portfolio__cta:hover { background: #b3240c; }
.cases-portfolio__cta svg { width: 15px; height: 15px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §POLISH-CTA  Unifica TODOS os botões de ação como .btn-nav-cta
   Visual idêntico ao "Fale Conosco" do header — navy +
   tipografia + hover vermelho com glow
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gua-contract__cta,
.pricing-contract__cta,
.spec-coverage__cta,
.testimonials-meta__cta,
.cases-portfolio__cta,
.clients-registry__cta,
.pricing-card__cta,
.cases.cases--cockpit .link-more,
.clients-sec--cockpit .clients-sec__link,
.dcb-btn-wa,
.cft-wa,
.cs2-headlink,
.cs2-ledger__cta,
.proof__roster-cta,
.cs-cta {
  background: var(--bg-surface-alt) !important;
  color: #fff !important;
  padding: 18px 36px !important;
  font-family: var(--fonte-titulo) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border: none !important;
  border-radius: 0 !important;
  white-space: nowrap;
  /* transition NÃO !important — deixa JS §14e dono do transform */
  transition: background 0.3s ease, box-shadow 0.25s ease, color 0.3s ease;
}
.gua-contract__cta:hover,
.pricing-contract__cta:hover,
.spec-coverage__cta:hover,
.testimonials-meta__cta:hover,
.cases-portfolio__cta:hover,
.clients-registry__cta:hover,
.pricing-card__cta:hover,
.cases.cases--cockpit .link-more:hover,
.clients-sec--cockpit .clients-sec__link:hover,
.dcb-btn-wa:hover,
.cft-wa:hover,
.cs2-headlink:hover,
.cs2-ledger__cta:hover,
.proof__roster-cta:hover,
.cs-cta:hover {
  background: var(--cor-secundaria) !important;
  color: #fff !important;
  box-shadow:
    0 4px 16px rgba(255, 61, 20, 0.45),
    0 0 28px rgba(255, 61, 20, 0.25),
    0 0 60px rgba(255, 61, 20, 0.12) !important;
}
/* SVG dentro dos CTAs unificados */
.gua-contract__cta svg,
.pricing-contract__cta svg,
.spec-coverage__cta svg,
.testimonials-meta__cta svg,
.cases-portfolio__cta svg,
.clients-registry__cta svg,
.pricing-card__cta svg,
.cases.cases--cockpit .link-more svg,
.clients-sec--cockpit .clients-sec__link svg,
.dcb-btn-wa svg,
.cft-wa svg,
.cs2-headlink svg,
.cs2-headlink i,
.cs2-ledger__cta svg,
.cs2-ledger__cta i,
.proof__roster-cta svg,
.proof__roster-cta i,
.cs-cta svg,
.cs-cta i {
  width: 14px !important;
  height: 14px !important;
  color: currentColor !important;
}

/* CTAs cockpit com sub-meta (.pc-cta / .sc-cta / .ctaform-submit) ─
   o "inner" vira o botão idêntico; o "meta" desce como caption */
.pc-cta,
.sc-cta,
.ctaform-submit.ctaform-submit--cockpit {
  background: transparent !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0 !important;
  padding: 0 !important;
  border: none !important;
  text-decoration: none !important;
  box-shadow: none !important;
  /* transition NÃO !important — JS §14e gerencia o transform magnético */
}
.pc-cta__inner,
.sc-cta__inner,
.ctaform-submit--cockpit .ctaform-submit__inner {
  background: var(--bg-surface-alt) !important;
  color: #fff !important;
  padding: 18px 36px !important;
  font-family: var(--fonte-titulo) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.25s ease !important;
}
.pc-cta__inner svg,
.sc-cta__inner svg,
.ctaform-submit--cockpit .ctaform-submit__inner svg {
  width: 14px !important;
  height: 14px !important;
}
.pc-cta:hover .pc-cta__inner,
.sc-cta:hover .sc-cta__inner,
.ctaform-submit--cockpit:hover .ctaform-submit__inner {
  background: var(--cor-secundaria) !important;
  box-shadow:
    0 4px 16px rgba(255, 61, 20, 0.45),
    0 0 28px rgba(255, 61, 20, 0.25),
    0 0 60px rgba(255, 61, 20, 0.12) !important;
}
/* hover translateY removido: JS magnético gerencia o transform */
.pc-cta__meta,
.sc-cta__meta,
.ctaform-submit--cockpit .ctaform-submit__meta {
  background: transparent !important;
  color: var(--text-muted) !important;
  padding: 9px 0 0 !important;
  text-align: center !important;
}
body.dark-theme .pc-cta__meta,
body.dark-theme .sc-cta__meta,
body.dark-theme .ctaform-submit--cockpit .ctaform-submit__meta {
  color: rgba(255,255,255,0.55) !important;
}

/* CTA do card featured é laranja para se diferenciar dos outros */
.pricing-card--cockpit.pricing-card--featured .pc-cta__inner {
  background: var(--cor-secundaria) !important;
}
.pricing-card--cockpit.pricing-card--featured .pc-cta:hover .pc-cta__inner {
  background: #b3240c !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §53  CLIENTS COCKPIT — Client Registry
   Status bar · brand brutalista · logos HUD-framed
   numerados com indústria · registry bar
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.clients-sec.clients-sec--cockpit {
  position: relative;
  padding: 0 0 100px;
}

/* Status bar topo */
.clients-status {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 72px;
}
body.dark-theme .clients-status {
  border-color: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
}
.clients-status .cfs-grid { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.clients-status .cfs-item { display: flex; align-items: center; gap: 8px; }
.clients-status .cfs-dot {
  width: 7px; height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: fst-pulse 1.6s ease-in-out infinite;
}
.clients-status .clients-status__right { margin-left: auto; color: var(--cor-secundaria); }
@media (max-width: 800px) { .clients-status .clients-status__right { margin-left: 0; }}

/* Hero do bloco */
.clients-sec--cockpit .clients-sec__head {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 64px !important;
  align-items: end !important;
  margin-bottom: 56px !important;
  border: none !important;
}
@media (max-width: 900px) {
  .clients-sec--cockpit .clients-sec__head { grid-template-columns: 1fr !important; gap: 32px !important; }}
.clients-sec--cockpit .clients-sec__left { padding: 0 !important; }
.clients-sec--cockpit .sec-head__label {
  display: block;
  font-family: 'DM Mono', monospace !important;
  font-size: 10px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: var(--cor-secundaria) !important;
  margin-bottom: 22px !important;
  opacity: 1 !important;
}
.clients-sec--cockpit .clients-sec__title {
  font-family: var(--fonte-titulo) !important;
  font-weight: 900 !important;
  font-size: clamp(2.6rem, 6vw, 4.6rem) !important;
  letter-spacing: -0.045em !important;
  line-height: 0.92 !important;
  margin: 0 !important;
  color: var(--text-primary) !important;
}
body.dark-theme .clients-sec--cockpit .clients-sec__title { color: #fff !important; }
.clients-sec--cockpit .clients-sec__title em {
  font-style: normal;
  color: var(--cor-secundaria);
}
/* Títulos de seção: <em> sem itálico, com destaque na cor da marca */
.sec-head__title em,
.spec-header__title em,
.hero-title-v3 em {
  font-style: normal;
  color: var(--cor-secundaria);
}
.clients-sec--cockpit .clients-sec__right { padding: 0 !important; }
.clients-sec--cockpit .clients-sec__desc {
  font-size: 15.5px !important;
  line-height: 1.7 !important;
  color: var(--text-muted) !important;
  margin: 0 0 20px !important;
}
/* "Ver portfólio" usa o estilo de CTA unificado (bloco .clients-registry__cta acima):
   navy sólido + texto branco, igual aos demais CTAs. Removidos os overrides antigos
   (borda + texto vermelho) que conflitavam e geravam navy + borda vermelha. */

/* Grid de logos cockpit */
.clients-sec--cockpit .clients-sec__logos {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border: none !important;
  margin: 0 0 32px !important;
}
@media (max-width: 900px) {
  .clients-sec--cockpit .clients-sec__logos {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }}
@media (max-width: 600px) {
  .clients-sec.clients-sec--cockpit {
    padding: 48px 0 60px !important;
  }
  .clients-status {
    padding: 14px 0 !important;
    margin-bottom: 32px !important;
  }
  .clients-status .cfs-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    align-items: flex-start !important;
  }
  .clients-status .cfs-item {
    font-size: 9px !important;
    letter-spacing: 1.5px !important;
    width: 100% !important;
    justify-content: flex-start !important;
  }
  .clients-status .clients-status__right {
    margin-left: 0 !important;
    margin-top: 4px !important;
    color: var(--cor-secundaria) !important;
  }
  .clients-sec--cockpit .clients-sec__desc {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
  .clients-sec--cockpit .clients-sec__head {
    gap: 20px !important;
    margin-bottom: 36px !important;
  }
  .clients-sec--cockpit .clients-sec__logos {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    margin: 0 0 24px !important;
  }
  .clients-sec--cockpit .clients-sec__logo-item {
    padding: 12px 10px !important;
    min-height: 80px !important;
    gap: 6px !important;
  }
  .cl-name {
    font-size: 13.5px !important;
  }
  .cl-tag {
    font-size: 8px !important;
    letter-spacing: 0.5px !important;
  }
  .cl-status {
    font-size: 7.5px !important;
    letter-spacing: 0.5px !important;
  }
  .cl-num {
    font-size: 7.5px !important;
    padding: 1px 3px !important;
  }
  .cl-line {
    display: none !important;
  }
  .clients-registry,
  .cases-portfolio,
  .spec-coverage {
    padding: 20px 16px !important;
    gap: 16px !important;
  }
  .clients-registry__items,
  .cases-portfolio__items,
  .spec-coverage__items {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px 8px !important;
    width: 100% !important;
  }
  .clients-registry__val,
  .cases-portfolio__val,
  .spec-coverage__val {
    font-size: 18px !important;
  }
  .clients-registry__key,
  .cases-portfolio__key,
  .spec-coverage__key {
    font-size: 8px !important;
    letter-spacing: 0.8px !important;
  }
  .clients-registry__cta,
  .cases-portfolio__cta,
  .spec-coverage__cta,
  .gua-contract__cta,
  .pricing-contract__cta,
  .testimonials-meta__cta {
    width: 100% !important;
    justify-content: center !important;
    font-size: 11px !important;
    padding: 12px 16px !important;
    box-sizing: border-box !important;
  }}

/* Card-slot cockpit */
.clients-sec--cockpit .clients-sec__logo-item {
  position: relative;
  border: 1px solid rgba(3,17,82,0.08) !important;
  background: #fff !important;
  padding: 20px 18px !important;
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  text-align: left !important;
  color: var(--text-primary) !important;
  transition: transform 0.2s cubic-bezier(0.16,1,0.3,1), box-shadow 0.2s, border-color 0.2s !important;
  overflow: hidden;
  min-height: 100px;
  justify-content: space-between;
  cursor: pointer;
}
body.dark-theme .clients-sec--cockpit .clients-sec__logo-item {
  background: var(--bg-surface) !important;
  border-color: rgba(255,255,255,0.08) !important;
  color: #fff !important;
}
.clients-sec--cockpit .clients-sec__logo-item:hover {
  transform: translateY(-4px);
  border-color: var(--cor-secundaria) !important;
  box-shadow: 0 12px 30px rgba(3,17,82,0.10);
}
body.dark-theme .clients-sec--cockpit .clients-sec__logo-item:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* Head do slot: badge + status */
.cl-head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cl-num {
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--cor-secundaria);
  padding: 3px 8px;
  border: 1px solid var(--cor-secundaria);
}
.cl-line { flex: 1; height: 1px; background: rgba(3,17,82,0.08); }
body.dark-theme .cl-line { background: rgba(255,255,255,0.08); }
.cl-status {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #10b981;
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.cl-status::before {
  content: '';
  width: 4px; height: 4px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 5px #10b981;
  animation: fst-pulse 1.6s ease-in-out infinite;
}

/* Nome do cliente (logo text) */
.cl-name {
  font-family: 'DM Mono', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text-primary);
  text-transform: uppercase;
  margin: 0;
}
body.dark-theme .cl-name { color: #fff; }

/* Tag de indústria */
.cl-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.cl-tag::before { content: '▸'; color: var(--cor-secundaria); }

/* HUD brackets nos cantos do slot */
.cl-bracket {
  position: absolute;
  width: 10px; height: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.clients-sec--cockpit .clients-sec__logo-item:hover .cl-bracket { opacity: 1; }
.cl-bracket--tl { top: 4px; left: 4px; border-top: 1.2px solid var(--cor-secundaria); border-left: 1.2px solid var(--cor-secundaria); }
.cl-bracket--tr { top: 4px; right: 4px; border-top: 1.2px solid var(--cor-secundaria); border-right: 1.2px solid var(--cor-secundaria); }
.cl-bracket--bl { bottom: 4px; left: 4px; border-bottom: 1.2px solid var(--cor-secundaria); border-left: 1.2px solid var(--cor-secundaria); }
.cl-bracket--br { bottom: 4px; right: 4px; border-bottom: 1.2px solid var(--cor-secundaria); border-right: 1.2px solid var(--cor-secundaria); }
body.dark-theme .clients-registry { background: #0b1018 !important; }
@media (max-width: 900px) {}
.clients-registry__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cor-secundaria);
  color: #fff;
  padding: 14px 22px;
  font-family: 'DM Mono', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--cor-secundaria);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.clients-registry__cta:hover { background: #b3240c; }
.clients-registry__cta svg { width: 15px; height: 15px; }

/* Grid de cláusulas */
.guarantee-sec--cockpit .guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
@media (max-width: 980px) { .guarantee-sec--cockpit .guarantee-grid { grid-template-columns: repeat(2, 1fr); }}
@media (max-width: 600px) { .guarantee-sec--cockpit .guarantee-grid { grid-template-columns: 1fr; }}

/* Card cockpit */
.guarantee-item--cockpit {
  position: relative;
  padding: 32px 28px 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Header do card: número + icone + linha */
.gi-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.gi-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--cor-secundaria);
  padding: 4px 10px;
  border: 1px solid var(--cor-secundaria);
}
.gi-line {
  flex: 1;
  height: 1px;
  background: var(--border-color);
}
body.dark-theme .gi-line { background: rgba(255,255,255,0.08); }
.gi-status {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 5px;
}
.gi-status::before {
  content: '';
  width: 5px; height: 5px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
  animation: fst-pulse 1.6s ease-in-out infinite;
}

/* Icon + title */
.guarantee-item--cockpit .guarantee-item__icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border-color);
  background: var(--bg-base);
  color: var(--cor-secundaria);
  display: grid; place-items: center;
  margin-bottom: 16px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
body.dark-theme .guarantee-item--cockpit .guarantee-item__icon {
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
}
.guarantee-item--cockpit .guarantee-item__icon svg { width: 22px; height: 22px; }
.guarantee-item--cockpit:hover .guarantee-item__icon {
  border-color: var(--cor-secundaria);
  background: rgba(255, 61, 20,0.06);
}
.guarantee-item--cockpit .guarantee-item__title {
  font-family: 'DM Mono', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0 0 12px;
  text-transform: uppercase;
}
body.dark-theme .guarantee-item--cockpit .guarantee-item__title { color: #fff; }

.guarantee-item--cockpit .guarantee-item__desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 18px;
  flex: 1;
}
body.dark-theme .guarantee-item--cockpit .guarantee-item__desc { color: rgba(255,255,255,0.6); }

/* Métricas contratuais (bottom strip) */
.gi-metrics {
  border-top: 1px solid var(--border-color);
  margin: auto -28px 0;
  padding: 16px 28px;
  background: rgba(3,17,82,0.025);
  display: flex; flex-direction: column; gap: 6px;
}
body.dark-theme .gi-metrics {
  border-top-color: rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.015);
}
.gi-metric {
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}
body.dark-theme .gi-metric { color: rgba(255,255,255,0.78); }
.gi-metric::before {
  content: '▸';
  color: var(--cor-secundaria);
}
.gi-metric b {
  color: var(--cor-secundaria);
  font-weight: 700;
}

/* HUD brackets nos cantos do card */
.gi-bracket {
  position: absolute;
  width: 12px; height: 12px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.guarantee-item--cockpit:hover .gi-bracket { opacity: 1; }
.gi-bracket--tl { top: 6px;    left: 6px;  border-top:    1px solid var(--cor-secundaria); border-left:  1px solid var(--cor-secundaria); }
.gi-bracket--tr { top: 6px;    right: 6px; border-top:    1px solid var(--cor-secundaria); border-right: 1px solid var(--cor-secundaria); }
.gi-bracket--bl { bottom: 6px; left: 6px;  border-bottom: 1px solid var(--cor-secundaria); border-left:  1px solid var(--cor-secundaria); }
.gi-bracket--br { bottom: 6px; right: 6px; border-bottom: 1px solid var(--cor-secundaria); border-right: 1px solid var(--cor-secundaria); }

/* Contract bar (faixa de compromisso final) */
.gua-contract {
  position: relative;
  background: var(--bg-surface-alt);
  color: #fff;
  padding: 28px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}
body.dark-theme .gua-contract { background: #0b1018 !important; }
@media (max-width: 800px) { .gua-contract { grid-template-columns: 1fr; padding: 24px 28px; gap: 18px; }}
.gua-contract__label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
}
.gua-contract__text {
  font-family: 'DM Mono', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.gua-contract__sub {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-top: 6px;
}
.gua-contract__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cor-secundaria);
  color: #fff;
  padding: 14px 22px;
  font-family: 'DM Mono', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--cor-secundaria);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.gua-contract__cta:hover { background: #b3240c; }
.gua-contract__cta:active { transform: scale(0.98); }
.gua-contract__cta svg { width: 15px; height: 15px; }

/* ── RESPONSIVE HERO V3 OPTIMIZATIONS (MOBILE / TABLET) ── */
@media (max-width: 900px) {
  .hero-container-v3 {
    padding: 32px var(--gut) 48px !important;
  }
  .hero-title-v3 {
    /* font-size → herofit.js (--hero-fs) */
    line-height: var(--hero-lh-locked, 1) !important;
    margin-bottom: 20px !important;
  }
  .hero-sub-grid {
    gap: 18px !important;
  }
  .hero-desc-v3 {
    max-width: 100% !important;
    font-size: clamp(15px, 3.8vw, 16px) !important;
    line-height: 1.55 !important;
  }
}

@media (max-width: 600px) {
  .hero-container-v3 {
    padding: 24px var(--gut) 32px !important;
  }
  .hero-title-v3 {
    margin-bottom: 18px !important;
    line-height: var(--hero-lh-locked, 1) !important;
  }
  .hero-desc-v3 {
    font-size: clamp(15px, 4vw, 16px) !important;
    max-width: 38ch !important;
  }
  .hero-v3 .btn-nav-cta.btn-hero {
    width: auto !important;
    max-width: min(58vw, 220px) !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }
  .hero-v3 .hero-action-v3 {
    width: auto !important;
    align-self: flex-start !important;
  }
  .hero-v3 .hero-action-v3 .magnetic-wrap {
    width: auto !important;
    display: inline-block !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

/* ── RESPONSIVE UNIFIED STATUS BARS & RADAR OVERLAYS ── */
@media (max-width: 768px) {
  /* Hide decorative ambient HUD overlays on mobile/tablet to avoid overlapping text */
  .ahud {
    display: none !important;
  }

  /* Unify telemetry status grids */
  .cfs-grid,
  .clients-status .cfs-grid,
  .cases-status .cfs-grid,
  .spec-status .cfs-grid,
  .test-status .cfs-grid,
  .pricing-status .cfs-grid,
  .gua-status .cfs-grid,
  .ctaform-status .cfs-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    align-items: flex-start !important;
    width: 100% !important;
  }

  /* Standardize telemetry item layouts */
  .cfs-item,
  .clients-status .cfs-item,
  .cases-status .cfs-item,
  .spec-status .cfs-item,
  .test-status .cfs-item,
  .pricing-status .cfs-item,
  .gua-status .cfs-item,
  .ctaform-status .cfs-item {
    font-size: 9px !important;
    letter-spacing: 1.5px !important;
    width: 100% !important;
    justify-content: flex-start !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
  }

  /* Dot vertical alignment: align with the top line of text when it wraps */
  .cfs-dot,
  .clients-status .cfs-dot,
  .cases-status .cfs-dot,
  .spec-status .cfs-dot,
  .test-status .cfs-dot,
  .pricing-status .cfs-dot,
  .gua-status .cfs-dot,
  .ctaform-status .cfs-dot {
    margin-top: 2px !important;
    flex-shrink: 0 !important;
  }

  /* Reset right-aligned components so they stack left cleanly */
  .clients-status__right,
  .cases-status__right,
  .spec-status__right,
  .test-status__right,
  .pricing-status__right,
  .gua-status__right,
  .ctaform-status__right,
  .cfs-slots {
    margin-left: 0 !important;
    margin-top: 4px !important;
  }
}

/* ── RESPONSIVE 2-COLUMN FOOTER NAVIGATION ON MOBILE ── */
@media (max-width: 600px) {
  .footer-grid--cockpit,
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 36px 20px !important;
  }
  
  .footer-grid--cockpit .footer-col:nth-child(1),
  .footer-grid--cockpit .footer-col:nth-child(2),
  .footer-grid .footer-col:nth-child(1),
  .footer-grid .footer-col:nth-child(2) {
    grid-column: span 1 !important;
  }
  
  .footer-grid--cockpit .footer-col:nth-child(3),
  .footer-grid--cockpit .footer-col:nth-child(4),
  .footer-grid .footer-col:nth-child(3),
  .footer-grid .footer-col:nth-child(4) {
    grid-column: span 2 !important;
    margin-top: 12px !important; /* Suave separação extra para os blocos mais densos */
  }
}
body.dark-theme .hm-browser-wrap {
  background: #0e1420; border-color: rgba(255,255,255,.1);
  box-shadow: 0 4px 0 rgba(0,0,0,.3), 0 24px 56px rgba(0,0,0,.4);
}
@keyframes hmSweep {
  0%   { left:-140px; opacity:0; }
  5%   { opacity:1; }
  95%  { opacity:1; }
  100% { left:115%; opacity:0; }
}
@keyframes hmFlash {
  0%   { background: rgba(255,235,180,.7); }
  40%  { background: rgba(255,255,255,.25); }
  100% { background: transparent; }
}

/* Pop das badges ao entrar no after */
.hero-mockup.state-after .hm-badge {
  animation: hmBadgePop .5s cubic-bezier(.16,1,.3,1) forwards, hmB1 4.8s ease-in-out 0.5s infinite;
}
.hero-mockup.state-after .hm-badge--tr {
  animation: hmBadgePop .5s cubic-bezier(.16,1,.3,1) .08s forwards, hmB2 5.5s ease-in-out .58s infinite;
}
.hero-mockup.state-after .hm-badge--br {
  animation: hmBadgePop .5s cubic-bezier(.16,1,.3,1) .16s forwards, hmB3 4.3s ease-in-out .66s infinite;
}
@keyframes hmBadgePop {
  0%   { transform: scale(.88); }
  60%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}
/* Pulso do glow nos badges */
.hero-mockup.state-after .hm-badge__glow {
  animation: hmGlowPulse 2.8s ease-in-out infinite;
}
@keyframes hmGlowPulse {
  0%,100% { opacity:.7; }
  50%      { opacity:1; }
}
body.dark-theme .hm-chrome { background: #080d16; border-bottom-color: rgba(255,255,255,.07); }
body.dark-theme .hm-chrome__url { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.38); }
body.dark-theme .hm-chrome__status { color: rgba(255,255,255,.3); }
.hero-mockup.state-after .hm-cs-dot { background: #22c55e; }
/* AFTER — light mode: branco premium com acento laranja */
.hero-mockup.state-after .hm-site-hero {
  background: linear-gradient(150deg, #fff8f3 0%, #ffffff 55%, #f0f9ff 100%);
}
/* AFTER — dark mode: escuro com glow (só aqui) */
body.dark-theme .hero-mockup.state-after .hm-site-hero {
  background: #080e1c;
}
.hero-mockup.state-after .hm-site-hero::before {
  opacity: 1;
  animation: hmShimmerBar 2.5s linear infinite;
}
@keyframes hmShimmerBar { 0% { background-position:0% 0%; } 100% { background-position:200% 0%; } }
.hero-mockup.state-after .hm-site-glow { opacity: 1; }
.hero-mockup.state-after .hm-site-noise { opacity: 1; }
.hero-mockup.state-after .hm-site-logo { background: #1a2035; }
body.dark-theme .hero-mockup.state-after .hm-site-logo { background: rgba(255,255,255,.7); }
.hero-mockup.state-after .hm-site-links span { background: rgba(26,32,53,.25); }
body.dark-theme .hero-mockup.state-after .hm-site-links span { background: rgba(255,255,255,.25); }
.hero-mockup.state-after .hm-site-navbtn { background: var(--cor-secundaria,#f97316); box-shadow: 0 0 12px rgba(249,115,22,.5); }
.hero-mockup.state-after .hm-site-tag {
  background: rgba(249,115,22,.15); color: var(--cor-secundaria,#f97316);
  border-color: rgba(249,115,22,.35); box-shadow: 0 0 10px rgba(249,115,22,.2);
}
.hero-mockup.state-after .hm-tag-b { opacity:0; transform:translateY(-8px); }
.hero-mockup.state-after .hm-tag-a { opacity:1; transform:translateY(0); }
/* after light mode: título escuro bold */
.hero-mockup.state-after .hm-hl { background: #1a2035; box-shadow: none; }
.hero-mockup.state-after .hm-hl--2 { background: rgba(26,32,53,.5); }
/* after dark mode: título branco */
body.dark-theme .hero-mockup.state-after .hm-hl { background: rgba(255,255,255,.88); box-shadow: 0 0 16px rgba(255,255,255,.15); }
body.dark-theme .hero-mockup.state-after .hm-hl--2 { background: rgba(255,255,255,.5); }
.hero-mockup.state-after .hm-site-btn--p { background: var(--cor-secundaria,#f97316); box-shadow: 0 0 18px rgba(249,115,22,.55), 0 4px 12px rgba(249,115,22,.35); }
.hero-mockup.state-after .hm-site-btn--g { border-color: rgba(249,115,22,.5); box-shadow: 0 0 8px rgba(249,115,22,.2); }
body.dark-theme .hm-divider { background: rgba(255,255,255,.06); }
body.dark-theme .hm-metrics { background: #0e1420; }
body.dark-theme .hm-metric { border-right-color: rgba(255,255,255,.06); }
body.dark-theme .hm-metric__label { color: rgba(255,255,255,.28); }
.hero-mockup.state-after .hm-sp-b { opacity: 0; }
.hero-mockup.state-after .hm-sp-a { opacity: 1; }
.hero-mockup.state-after .hm-sp-area { opacity: 1; }
body.dark-theme .hm-metric--ring { border-right-color: rgba(255,255,255,.06); }
body.dark-theme .hm-ps-track { stroke: rgba(255,255,255,.08); }
.hero-mockup.state-after .hm-ps-arc { stroke: #22c55e; stroke-dashoffset: 1.2; }
.hero-mockup.state-after .hm-ps-num { color: #22c55e; }
body.dark-theme .hm-ps-sub { color: rgba(255,255,255,.25); }
body.dark-theme .hm-lcp-track { background: rgba(255,255,255,.08); }
.hero-mockup.state-after .hm-lcp-fill { width: 9%; background: #22c55e; }
body.dark-theme .hm-lcp-labels { color: rgba(255,255,255,.22); }
body.dark-theme .hm-badge {
  background: rgba(14,20,35,.78); border-color: rgba(255,255,255,.12);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-mockup.state-after .hm-badge {
  border-color: rgba(34,197,94,.35);
  box-shadow: 0 8px 32px rgba(0,0,0,.13), 0 0 0 1px rgba(34,197,94,.18), 0 0 20px rgba(34,197,94,.12), inset 0 1px 0 rgba(255,255,255,.9);
}
@keyframes hmB1 { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }
@keyframes hmB2 { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-11px); } }
@keyframes hmB3 { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-7px); } }
.hero-mockup.state-after .hm-badge__glow { opacity: 1; }
.hero-mockup.state-after .hm-badge__ico { background: rgba(34,197,94,.12); color: #22c55e; box-shadow: 0 0 12px rgba(34,197,94,.3); }
.hero-mockup.state-after .hm-badge__svg--b { opacity:0; transform:scale(.5); }
.hero-mockup.state-after .hm-badge__svg--a { opacity:1; transform:scale(1); }
.hero-mockup.state-after .hm-badge__needle--b { opacity:0; }
.hero-mockup.state-after .hm-badge__needle--a { opacity:1; }
.hero-mockup.state-after .hm-v-before { opacity:0; transform:translateY(-10px); }
.hero-mockup.state-after .hm-v-after  { opacity:1; transform:translateY(0); }
.hero-mockup.state-after .hm-l-before { opacity:0; transform:translateY(-7px); }
.hero-mockup.state-after .hm-l-after  { opacity:1; transform:translateY(0); }
body.dark-theme .hm-status-label { color: rgba(255,255,255,.38); }
.hero-mockup.state-after .hm-status-dot { background: #22c55e; }

/* ── NOVAS CLASSES ADICIONADAS PARA O BLOCO DE PREÇOS (MOCKUP COCKPIT) ── */
.pc-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 22px 28px 26px;
  gap: 12px;
}
.pc-btn-cta {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: var(--brand-primary);
  color: #fff !important;
  text-decoration: none;
  text-align: center;
  font-family: 'DM Mono', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 0;
  transition: background 0.2s, transform 0.15s;
}
.pc-btn-cta:hover {
  background: #051d6e;
}
.pc-btn-cta:active {
  transform: scale(0.99);
}
.pc-btn-cta--featured {
  background: var(--cor-secundaria) !important;
}
.pc-btn-cta--featured:hover {
  background: #b3240c !important;
}
.pc-cta-subtext {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}
.pricing-card--featured .pc-cta-subtext {
  color: rgba(255, 255, 255, 0.50);
}

/* Status danger badge HUD style */
.pc-head__status--danger {
  color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.06);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(239, 68, 68, 0.15);
  font-weight: 700;
}
.pc-head__status--danger::before {
  background: #ef4444 !important;
  box-shadow: 0 0 6px #ef4444 !important;
}

/* Legacy disabled button style */
.pc-btn-cta--disabled {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: rgba(0, 0, 0, 0.02) !important;
  color: #999999 !important;
  border: 1px dashed #d0d0d0 !important;
  text-align: center;
  font-family: 'DM Mono', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: not-allowed;
  pointer-events: none;
}
body.dark-theme .pc-btn-cta--disabled {
  background: rgba(255, 255, 255, 0.02) !important;
  color: rgba(255, 255, 255, 0.25) !important;
  border: 1px dashed rgba(255, 255, 255, 0.15) !important;
}

/* Premium card enhancements */
.pricing-card--featured .pc-price__amount {
  text-shadow: 0 0 15px rgba(255, 61, 20, 0.35);
}

/* Centering the section head of planos-lp */
#planos-lp .sec-head {
  justify-content: center;
  text-align: center;
}
#planos-lp .sec-head > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#planos-lp .sec-head__label {
  justify-content: center;
}
#planos-lp .sec-head__desc {
  margin-inline: auto;
}


/* ════════════════════════════════════════════════════════════════════
   HARMONY 2026 — HUD REFINADO + RESPIRO FORTE  (camada de override)
   Direção: Linear / Vercel / Stripe 2026 · alma techy mantida
   Mantém: mira, canópia HUD (contraste), big type, azul+laranja
   ════════════════════════════════════════════════════════════════════ */

/* ——— GLOBAL: ritmo, respiro e calma ——— */
:root { --h26-gut: var(--gut); }

/* Acalmar a cromática de fundo: presença, não distração (mantém o efeito) */
body.dark-theme .glow-orb { opacity: 0.07 !important; }
.hud-canopy__grid { opacity: 0.5; }

/* Chrome de HUD periférico → assinatura sutil, não ruído */
.nav-bracket { opacity: 0.28; }
#flight-telemetry { opacity: 0.5; }
#scroll-ticks { opacity: 0.4; }

/* ——— HERO: respiro forte + 1 toque de HUD ——— */
.hero-v3 { padding: 128px 0 112px; }
.hero-container-v3 { max-width: var(--largura-maxima); padding-left: var(--gut); padding-right: var(--gut); }
.hero-title-v3 {
  /* font-size → herofit.js */
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
}
.hero-sub-grid { gap: clamp(32px, 5vw, 64px); align-items: start; }
.hero-desc-v3 {
  font-size: clamp(1.22rem, 1.65vw, 1.5rem);
  line-height: 1.62;
  max-width: 48ch;
  font-weight: 500;
}

/* Calmar a decoração sci-fi do hero: 1 elemento de HUD, não 4 */
.sf-radar-core        { display: none !important; }   /* radar competia com o texto */
.sf-telemetry--bottom { display: none !important; }   /* terminal removido p/ respiro */
.sf-telemetry--top    { opacity: 0.42; font-size: 10px; letter-spacing: 2.5px; top: 38px; }
.sf-crosshair         { opacity: 0.22; }
.hero-grain           { opacity: 0.45; }

/* ——— SISTEMA DE INTRO DE SEÇÃO (eyebrow unificado) ——— */
.sec-head__label,
.spec-header__label,
.proc-header__label,
.ctaform-panel__label,
.section-label {
  font-family: 'DM Mono', monospace !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase;
}


/* ——— A11Y / REDUCED-MOTION: conteúdo sempre visível ——— */
@media (prefers-reduced-motion: reduce) {
  .hero-desc-v3 .hw { opacity: 1 !important; animation: none !important; }
  .hero-title-v3 .char,
  .sec-head__title .char,
  .spec-header__title .char,
  .proc-header__title .char,
  .ctaform-panel__title .char { opacity: 1 !important; transform: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}


/* ——— Retirar HUD chrome fixo redundante (respiro) ——— */
.hud-status-line,
.hud-coordinates { display: none !important; }

/* Scroll cue do hero: discreto, ancorado embaixo */
.hero-scroll-cta { opacity: 0.45; }


/* ════════════════════════════════════════════════════════════════════
   HARMONY 2026 — PARTE 2 · Channel rails + Scroll Reveal (scroll-driven)
   Mantém: quadrado (0 radius), azul+laranja, alma techy
   ════════════════════════════════════════════════════════════════════ */

/* —— Channel rail (.cfs-grid): mono, técnico, sem brilho excessivo —— */
.cfs-grid { gap: 24px 28px; }
.cfs-item { font-family: 'DM Mono', monospace; }

/* HUD ambiente flutuante: bem discreto no claro (assinatura, não ruído) */
body.dark-theme .ahud { opacity: 0.3; }

/* ═══ SCROLL REVEAL 2026 — tied to scroll, fallback seguro ═══ */
@keyframes h26-rise     { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: none; } }
@keyframes h26-slide    { from { opacity: 0; transform: translateX(-28px); } to { opacity: 1; transform: none; } }
@keyframes h26-wipe     { from { opacity: 0; clip-path: inset(0 100% 0 0); } to { opacity: 1; clip-path: inset(0 0 0 0); } }

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {

    /* Barras de canal: deslizam da esquerda ao entrar */
    .cfs-grid {
      animation: h26-slide linear both;
      animation-timeline: view();
      animation-range: entry 2% entry 40%;
    }

    /* Textos de apoio / descrições: sobem suave */
    .sec-head__desc, .sec-head__right, .spec-header__sub {
      animation: h26-rise linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 45%;
    }

    /* Faixas de estatística (navy): revelam com wipe quadrado da esquerda */
    .stats-strip, .clients-registry {
      animation: h26-wipe linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 16%;
    }

    /* Botões de CTA das seções: sobem por último, com leve atraso de range */
    .spec-card__cta, .link-more, .clients-sec__cta {
      animation: h26-rise linear both;
      animation-timeline: view();
      animation-range: entry 6% entry 50%;
    }
  }}

/* ════════════════════════════════════════════════════════════════════
   HARMONY 2026 — PARTE 3 · IMPRESSIVE (cinematográfico, always-on)
   Quadrado + azul/laranja · reveals visíveis mesmo em reduce-motion
   ════════════════════════════════════════════════════════════════════ */

@keyframes h26-in    { from { opacity:0; transform: translateY(70px) scale(.97); filter: blur(10px);} to { opacity:1; transform:none; filter:none; } }
@keyframes h26-in-x  { from { opacity:0; transform: translateX(-44px);} to { opacity:1; transform:none; } }
@keyframes h26-wipe2 { from { opacity:.001; clip-path: inset(0 100% 0 0);} to { opacity:1; clip-path: inset(0 0 0 0);} }
@keyframes h26-rise-load { from { opacity:0; transform: translateY(44px);} to {opacity:1; transform:none;} }
@keyframes h26-scan  { 0%{top:8%;} 50%{top:86%;} 100%{top:8%;} }

/* —— Reveals dramáticos ligados ao scroll (always-on) —— */
@supports (animation-timeline: view()) {
  .sec-head__desc, .sec-head__right, .spec-header__sub,
  .bento-case, .spec-card, .work-card, .clients-sec__logo-item,
  .pricing-card, .guarantee-item, .testimonial-card, .blog-card {
    animation: h26-in linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 48%;
  }
  .cases-bento > :nth-child(2), .spec-list > :nth-child(2) { animation-range: entry 7% entry 56%; }
  .cases-bento > :nth-child(3) { animation-range: entry 13% entry 62%; }
  .clients-sec__logo-item:nth-child(3n+2) { animation-range: entry 7% entry 56%; }
  .clients-sec__logo-item:nth-child(3n+3) { animation-range: entry 13% entry 62%; }
  .cfs-grid { animation: h26-in-x linear both; animation-timeline: view(); animation-range: entry 0% entry 38%; }
  .stats-strip, .clients-registry { animation: h26-wipe2 linear both; animation-timeline: view(); animation-range: entry 0% cover 18%; }
}

/* —— HERO cinematográfico —— */
.hero-v3 { min-height: 84vh; display: flex; align-items: center; padding: 44px 0 84px; }
.hero-container-v3 { width: 100%; }
.hero-title-v3 { /* font-size → herofit.js */ }
.hero-container-v3 > * { animation: h26-rise-load .9s cubic-bezier(.16,1,.3,1) both; }
.hero-container-v3 > .hero-sub-grid { animation-delay: .16s; }
.hero-container-v3 > .hero-scroll-cta { animation-delay: .32s; }

/* Assinatura geométrica — scanline only */
.h26-hero-fx { position:absolute; inset:0; pointer-events:none; z-index:0; overflow:hidden; }
.h26-scanbar { position:absolute; left:0; right:0; top:0; height:2px; background:linear-gradient(90deg, transparent, var(--cor-secundaria) 50%, transparent); opacity:.6; animation:h26-scan 6s ease-in-out infinite; }
.h26-edge { position:absolute; top:50%; font-family:'DM Mono',monospace; font-size:11px; letter-spacing:4px; color:var(--text-muted); opacity:.5; white-space:nowrap; }
.h26-edge--left  { left:20px;  transform:rotate(-90deg) translateX(-50%); transform-origin:left center; }
.h26-edge--right { right:20px; transform:rotate(90deg) translateX(-50%); transform-origin:right center; }
@media (max-width:1100px){ .h26-edge{ display:none; } }

/* Cards premium: hover quadrado com offset laranja */
.clients-sec__logo-item { transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s, border-color .25s; }
.clients-sec__logo-item:hover { transform: translateY(-4px); box-shadow: 7px 7px 0 var(--cor-secundaria); border-color: var(--cor-secundaria); }

/* Tags sociais do rodapé (substitui ícones de marca removidos do lucide) */
.footer-social__tag { font-family:'DM Mono',monospace; font-size:12px; font-weight:500; line-height:1; letter-spacing:.5px; text-transform:lowercase; }

/* ════ H26 · INTRO LOADER (assinatura premiada) ════ */
#h26-loader { position:fixed; inset:0; z-index:100000000; background:var(--cor-primaria); color:#fff;
  display:flex; flex-direction:column; justify-content:space-between; padding:clamp(20px,4vw,52px);
  font-family:'DM Mono',monospace; will-change:clip-path,opacity;
  transition:clip-path .95s cubic-bezier(.76,0,.24,1), opacity .45s ease .65s; }
#h26-loader.is-done { clip-path:inset(0 0 100% 0); opacity:0; pointer-events:none; }
.h26-loader__grid { position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:56px 56px; }
.h26-loader__top,.h26-loader__bottom { display:flex; justify-content:space-between; gap:16px;
  font-size:11px; letter-spacing:3px; position:relative; z-index:1; opacity:.72; text-transform:uppercase; }
.h26-loader__center { position:relative; z-index:1; }
.h26-loader__count { font-family:'DM Mono',sans-serif; font-weight:800; font-size:clamp(4.5rem,17vw,14rem);
  line-height:.86; letter-spacing:-.045em; display:flex; align-items:flex-start; }
.h26-loader__count i { font-size:.16em; font-style:normal; color:var(--cor-secundaria); margin-top:.7em; margin-left:.12em; }
.h26-loader__bar { height:3px; background:rgba(255,255,255,.16); margin-top:22px; max-width:560px; overflow:hidden; }
.h26-loader__fill { height:100%; width:0%; background:var(--cor-secundaria); }
.h26-loader__status { color:var(--cor-secundaria); }
@media (prefers-reduced-motion:reduce){ #h26-loader{ transition:opacity .4s ease; }}

/* ════════════════════════════════════════════════════════════════════
   PARTE 4 — CYBERPUNK BRUTALIST (amplificação da alma techy)
   Mantém: quadrado, azul+laranja · Adiciona: dark stage, neon, glitch, raw borders
   ════════════════════════════════════════════════════════════════════ */

:root { --cyber-neon: #FF3D14; --cyber-glow: rgba(255,61,20,.8); --cyber-cyan: #00e5ff; }

/* 1. HERO — dark stage sempre (mesmo no light mode) */
.hero-v3 { background: #04040f !important; color:#fff; }
.hero-title-v3 { color:#fff; }
.hero-title-v3 .accent {
  text-shadow: 0 0 24px var(--cyber-glow), 0 0 60px rgba(255,61,20,.35);
}
.hero-desc-v3 { color:rgba(255,255,255,.62) !important; }
.hero-v3 .hero-sub-grid .btn-nav-cta {
  background: var(--cor-secundaria) !important; color:#fff !important;
  box-shadow: 0 0 0 1px var(--cor-secundaria), 0 0 22px rgba(255,61,20,.55);
}
.hero-v3 .h26-scanbar { opacity:.8; background:linear-gradient(90deg,transparent,var(--cyber-cyan) 50%,transparent); }
.hero-v3 .h26-edge { color:rgba(255,255,255,.38); }
.hero-v3 .sf-telemetry--top { opacity:.6; color:var(--cor-secundaria); }
.hero-v3 .sf-crosshair { opacity:.45; border-color:var(--cor-secundaria); }

/* 2. MARQUEE — banda laranja choque / brutalist power move */
.marquee-strip { background:var(--cor-secundaria) !important; border-color:#000 !important; padding:0; height:62px; }
.marquee-strip .marquee-track span { color:#000 !important; -webkit-text-stroke:0px !important; font-weight:900; }
.marquee-strip .marquee-track .mq-dot { background:#000 !important; }

/* 3. MIRA — neon mais forte */
#cc-ring { box-shadow:0 0 10px var(--cyber-glow), 0 0 24px rgba(255,61,20,.3) !important; }
#cc-dot { box-shadow:0 0 6px var(--cyber-glow) !important; }

/* 4. BORDERS brutais — estrutura crua exposta */
.cases, .spec, .blog-sec, .clients-sec {
  border-top: 3px solid var(--cor-secundaria) !important;
  border-bottom: 3px solid var(--cor-secundaria) !important;
}

/* 5. SPEC CARDS — hover neon violento */
.spec-card:hover {
  box-shadow:8px 8px 0 var(--cor-secundaria), 0 0 28px rgba(255,61,20,.45) !important;
  transform:translate(-4px,-4px) !important;
  border-color:var(--cor-secundaria);
}

/* 6. BENTO CASES — hover glow neon */
.bento-case { border:2px solid transparent; transition:border-color .22s, box-shadow .22s; }
.bento-case:hover { border-color:var(--cor-secundaria) !important; box-shadow:0 0 20px rgba(255,61,20,.3) !important; }

/* 7. CLIENT CARDS — neon border on hover */
.clients-sec__logo-item:hover {
  border-color:var(--cor-secundaria) !important;
  box-shadow:7px 7px 0 var(--cor-secundaria), 0 0 18px rgba(255,61,20,.35) !important;
}

/* 8. STATS STRIP — neon accent no número */
.stats-strip__num, .stats-strip__num-wrap { color:var(--cor-secundaria); text-shadow:0 0 18px rgba(255,61,20,.5); }

/* 9. CTA BUTTONS — neon glow global */
.btn-nav-cta:hover, .ctaform-submit:hover {
  box-shadow:0 0 24px rgba(255,61,20,.55) !important;
}

/* 10. NAV — dark em todos os modos quando no hero */
.nav-header { background:rgba(4,4,15,.85) !important; backdrop-filter:blur(12px) !important;
  border-bottom:1px solid rgba(255,61,20,.22) !important; }
.logo { color:#fff !important; }
.nav-menu a { color:rgba(255,255,255,.65) !important; }
.nav-menu a:hover, .nav-menu a.active { color:#fff !important; }

/* 11. SCROLL PROGRESS — neon cyan contraste */
#cc-progress { background:var(--cyber-cyan) !important; height:3px !important; }

/* 12. SEÇÃO FOOTER — brutalist neon */
.footer-grid a:hover { color:var(--cor-secundaria) !important; }

@keyframes heroAccentGlow {
  0%, 100% {
    text-shadow: 0 0 18px var(--cyber-glow), 0 0 42px rgba(255, 61, 20, 0.26);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.55), 0 0 18px rgba(255, 61, 20, 0.22);
  }
  50% {
    text-shadow: 0 0 28px var(--cyber-glow), 0 0 64px rgba(255, 61, 20, 0.42);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.55), 0 0 36px rgba(255, 61, 20, 0.48);
  }
}
html.cc-brut body .hero-title-v3 .hero-line.accent {
  animation: heroAccentGlow 4.2s ease-in-out infinite !important;
}

/* 14. CLIENT GRID — borders cruas */
.clients-sec { background:#04040f !important; }
.cl-name { color:#fff; font-family:'DM Mono',monospace; font-weight:700; }
.cl-tag  { color:rgba(255,255,255,.5); font-family:'DM Mono',monospace; }
.cl-status { color:var(--cor-secundaria); }

/* 15. SECTION CHANNEL BARS — neon mono linha */
.cfs-item { color:rgba(255,255,255,.75); }
[class*='status__right'] { color:var(--cor-secundaria) !important;
  text-shadow:0 0 10px rgba(255,61,20,.5) !important; }

/* 16. CANAL bar bg dark */
[class*='-status'] { background:#0a0f1f !important; border-top:1px solid rgba(255,61,20,.2) !important;
  border-bottom:1px solid rgba(255,61,20,.2) !important; }

/* PARTE 4b — fixes de contraste cyberpunk */

/* Clientes section — textos brancos no bg dark */
.clients-sec .sec-head__title,
.clients-sec .section-title,
.clients-sec h2, .clients-sec h3 { color:#fff !important; }
.clients-sec .sec-head__desc,
.clients-sec .sec-head__right { color:rgba(255,255,255,.65) !important; }

/* Client cards — contraste no dark */
.clients-sec__logo-item {
  background:rgba(255,255,255,.04) !important;
  border:1.5px solid rgba(255,61,20,.22) !important;
}
.clients-sec__logo-item:hover {
  background:rgba(255,61,20,.06) !important;
}
.cl-name { font-size: clamp(14px,1.8vw,18px) !important; letter-spacing:2px !important; }

/* VER PORTFÓLIO — laranja no dark */
.clients-sec .btn-cta, .clients-sec a.btn-cta, .clients-sec .btn-nav-cta {
  background:var(--cor-secundaria) !important; color:#fff !important;
  box-shadow:0 0 0 2px var(--cor-secundaria), 0 0 20px rgba(255,61,20,.4) !important;
}

/* Seção clientes — heading do lado esquerdo */
.clients-sec .sec-head__label { color:var(--cor-secundaria) !important; }

/* Nav logo branca sempre */
.nav-header .logo { color:#fff !important; font-weight:800 !important; }
.nav-header .nav-menu a { color:rgba(255,255,255,.65) !important; }
.nav-header .nav-available { color:rgba(255,255,255,.6) !important; }
.nav-available__dot { background:var(--cor-secundaria) !important; box-shadow:0 0 8px var(--cor-secundaria) !important; }

/* PARTE 4c — override forte headings clientes no dark */
body.dark-theme .clients-sec .sec-head__title,
body.dark-theme .clients-sec .section-title,
body.dark-theme .clients-sec h2,
body.dark-theme .clients-sec h3 { color:#fff !important; }

body.dark-theme .clients-sec .sec-head__desc,
body.dark-theme .clients-sec .sec-head__right,
body.dark-theme .clients-sec p { color:rgba(255,255,255,.7) !important; }

/* Client card names e tags no dark bg */
body.dark-theme .cl-name { color:#fff !important; }
body.dark-theme .cl-tag  { color:rgba(255,255,255,.55) !important; }

/* Accent 'resultado real.' — laranja neon */
body.dark-theme .clients-sec .sec-head__title .accent,
body.dark-theme .clients-sec h2 span,
body.dark-theme .clients-sec h3 span {
  color:var(--cor-secundaria) !important;
  text-shadow:0 0 18px rgba(255,61,20,.55) !important;
}

/* PARTE 4d — client cards dark + readable */
body.dark-theme .clients-sec--cockpit .clients-sec__logo-item {
  background: #0a0f1a !important;
  border: 1.5px solid rgba(255,61,20,.22) !important;
  color: #fff !important;
}
body.dark-theme .clients-sec--cockpit .clients-sec__logo-item:hover {
  background: rgba(255,61,20,.08) !important;
  border-color: var(--cor-secundaria) !important;
}
body.dark-theme .clients-sec--cockpit .cl-name { color:#fff !important; font-family:'DM Mono',monospace !important; letter-spacing:2px !important; }
body.dark-theme .clients-sec--cockpit .cl-tag  { color:rgba(255,255,255,.5) !important; }

/* MARQUEE FIX — especificidade correta para vencer body.dark-theme */
body.dark-theme .marquee-strip,
body.dark-theme .marquee-strip {
  background:var(--cor-secundaria) !important;
  border-top-color:#000 !important;
  border-bottom-color:#000 !important;
}
body.dark-theme .marquee-strip .marquee-track span,
body.dark-theme .marquee-strip .marquee-track span { color:#000 !important; -webkit-text-stroke:0 !important; }

/* ════════════════════════════════════════════════════════════════════
   PARTE 5 — CYBERPUNK BRUTALIST · Seções restantes
   Cases · Serviços · Blog · Stats · Métricas
   ════════════════════════════════════════════════════════════════════ */

/* ——— CASES / BENTO ——— */
body.dark-theme .cases {
  background:#04040f !important;
  border-top:3px solid rgba(255,61,20,.35) !important;
  border-bottom:3px solid rgba(255,61,20,.35) !important;
}
body.dark-theme .cases .sec-head__title,
body.dark-theme .cases h2 { color:#fff !important; }
body.dark-theme .cases .sec-head__desc,
body.dark-theme .cases .sec-head__right { color:rgba(255,255,255,.65) !important; }
body.dark-theme .bento-case--2 { background:#0a0f1a !important; }
body.dark-theme .bento-case--3 { background:#0d1117 !important; }
body.dark-theme .bento-case--2 .bento-case__title,
body.dark-theme .bento-case--3 .bento-case__title { color:#fff !important; }
body.dark-theme .bento-case--2 .bento-case__desc,
body.dark-theme .bento-case--3 .bento-case__desc { color:rgba(255,255,255,.6) !important; }
body.dark-theme .bento-case--2 .bento-case__link,
body.dark-theme .bento-case--3 .bento-case__link { color:var(--cor-secundaria) !important; }
body.dark-theme .cases-bento { border-color:rgba(255,61,20,.4) !important; background:rgba(255,61,20,.12) !important; }
body.dark-theme .bento-case__num { text-shadow:0 0 20px rgba(255,61,20,.6) !important; }

/* ——— SPEC / SERVIÇOS ——— */
body.dark-theme .spec {
  background:#06060f !important;
  border-top:3px solid rgba(255,61,20,.35) !important;
  border-bottom:3px solid rgba(255,61,20,.35) !important;
}
body.dark-theme .spec-header__title { color:#fff !important; }
body.dark-theme .spec-header__sub  { color:rgba(255,255,255,.6) !important; }
body.dark-theme .spec-list .spec-card {
  background:#0a0f1a !important;
  border-bottom-color:rgba(255,61,20,.2) !important;
}
body.dark-theme .spec-list .spec-card:first-child { border-top-color:rgba(255,61,20,.2) !important; }
body.dark-theme .spec-card__title { color:#fff !important; }
body.dark-theme .spec-card__body p,
body.dark-theme .spec-card__desc { color:rgba(255,255,255,.62) !important; }
body.dark-theme .spec-card__deliver .spec-card__val,
body.dark-theme .spec-card__cycle .spec-card__val,
body.dark-theme .spec-card__output .spec-card__val { color:#fff !important; }
body.dark-theme .spec-card__deliver-row { border-color:rgba(255,61,20,.15) !important; }
body.dark-theme .spec-card__cta,
body.dark-theme .spec-card .btn-cta {
  background:var(--cor-secundaria) !important; color:#fff !important;
  box-shadow:0 0 18px rgba(255,61,20,.35) !important;
}
body.dark-theme .spec-tag {
  border-color:rgba(255,61,20,.4) !important;
  color:var(--cor-secundaria) !important;
}

/* ——— BLOG ——— */
body.dark-theme .blog-sec {
  background:#04040f !important;
  border-top:3px solid rgba(255,61,20,.35) !important;
  border-bottom:3px solid rgba(255,61,20,.35) !important;
}
body.dark-theme .blog-sec .sec-head__title,
body.dark-theme .blog-sec h2 { color:#fff !important; }
body.dark-theme .blog-sec .sec-head__desc { color:rgba(255,255,255,.65) !important; }
body.dark-theme .blog-card, body.dark-theme .work-card {
  background:#0a0f1a !important;
  border-color:rgba(255,61,20,.18) !important;
}
body.dark-theme .blog-card__title, body.dark-theme .work-card__title { color:#fff !important; }
body.dark-theme .blog-card__excerpt, body.dark-theme .work-card p,
body.dark-theme .blog-card p { color:rgba(255,255,255,.6) !important; }
body.dark-theme .blog-card__meta, body.dark-theme .work-card__meta { color:rgba(255,255,255,.4) !important; }
body.dark-theme .blog-card:hover, body.dark-theme .work-card:hover {
  border-color:var(--cor-secundaria) !important;
  box-shadow:6px 6px 0 var(--cor-secundaria), 0 0 22px rgba(255,61,20,.3) !important;
}

/* ——— STATS STRIP + LIVE METRICS ——— */
body.dark-theme .stats-strip {
  background:#04040f !important;
  border-color:rgba(255,61,20,.3) !important;
}
body.dark-theme .stats-strip__label { color:rgba(255,255,255,.5) !important; }
body.dark-theme .stats-strip__num { color:var(--cor-secundaria) !important; text-shadow:0 0 22px rgba(255,61,20,.55) !important; }
body.dark-theme .stats-strip__suffix { color:rgba(255,255,255,.7) !important; }
body.dark-theme .stats-strip__item { border-right-color:rgba(255,61,20,.2) !important; }

/* ——— PROC — mais neon no laranja ——— */
.proc-header__title, .proc-header__sub,
.proc-header__label { text-shadow:0 0 30px rgba(0,0,0,.4); }
.proc-step__num { color:rgba(255,255,255,.85) !important; }

/* ——— FAQ (se existir) ——— */
body.dark-theme .faq-section {
  background:#04040f !important;
  border-color:rgba(255,61,20,.3) !important;
}
body.dark-theme .faq-section .sec-head__title,
body.dark-theme .faq-section h2 { color:#fff !important; }
body.dark-theme .faq-question { color:#fff !important; border-bottom-color:rgba(255,61,20,.2) !important; }
body.dark-theme .faq-answer { color:rgba(255,255,255,.65) !important; }
body.dark-theme .faq-item { border-top-color:rgba(255,61,20,.15) !important; }

/* ——— SECTION BORDERS global ——— */
body.dark-theme .cases .link-more,
body.dark-theme .spec .link-more,
body.dark-theme .blog-sec .link-more { color:var(--cor-secundaria) !important; }

/* ════ PARTE 5b — Seções restantes no dark cyberpunk ════ */

/* ——— TESTIMONIALS ——— */
body.dark-theme .testimonials-sec {
  background:#04040f !important;
  border-top:3px solid rgba(255,61,20,.35) !important;
}
body.dark-theme .testimonials-sec h2,
body.dark-theme .testimonials-sec .sec-head__title { color:#fff !important; }
body.dark-theme .testimonials-sec .sec-head__desc { color:rgba(255,255,255,.65) !important; }
body.dark-theme .testimonial-card {
  background:#0a0f1a !important;
  border-color:rgba(255,61,20,.2) !important;
}
body.dark-theme .testimonial-card blockquote,
body.dark-theme .testimonial-card p,
body.dark-theme .ts-quote { color:rgba(255,255,255,.85) !important; }
body.dark-theme .ts-author-name { color:#fff !important; }
body.dark-theme .ts-author-role,
body.dark-theme .ts-company { color:rgba(255,255,255,.5) !important; }
body.dark-theme .ts-chip {
  background:rgba(255,61,20,.12) !important;
  border-color:rgba(255,61,20,.3) !important;
  color:var(--cor-secundaria) !important;
}

/* ——— PRICING ——— */
body.dark-theme .pricing-sec {
  background:#06060f !important;
  border-top:3px solid rgba(255,61,20,.35) !important;
  border-bottom:3px solid rgba(255,61,20,.35) !important;
}
body.dark-theme .pricing-sec h2,
body.dark-theme .pricing-sec .sec-head__title { color:#fff !important; }
body.dark-theme .pricing-sec .sec-head__desc { color:rgba(255,255,255,.65) !important; }
body.dark-theme .pricing-card {
  background:#0a0f1a !important;
  border-color:rgba(255,61,20,.2) !important;
}
body.dark-theme .pricing-card__name,
body.dark-theme .pricing-card h3 { color:#fff !important; }
body.dark-theme .pricing-card__price,
body.dark-theme .pricing-card .price-amount { color:var(--cor-secundaria) !important; text-shadow:0 0 18px rgba(255,61,20,.4) !important; }
body.dark-theme .pricing-card p,
body.dark-theme .pricing-card__desc { color:rgba(255,255,255,.6) !important; }
body.dark-theme .pricing-card__feature { color:rgba(255,255,255,.75) !important; border-bottom-color:rgba(255,61,20,.12) !important; }
body.dark-theme .pricing-card__cta {
  background:var(--cor-secundaria) !important; color:#fff !important;
  box-shadow:0 0 20px rgba(255,61,20,.35) !important;
}
body.dark-theme .pricing-card--featured,
body.dark-theme .pricing-card--highlight {
  border-color:var(--cor-secundaria) !important;
  box-shadow:0 0 30px rgba(255,61,20,.25) !important;
}

/* ——— GUARANTEE ——— */
body.dark-theme .guarantee-sec {
  background:#04040f !important;
  border-top:3px solid rgba(255,61,20,.35) !important;
}
body.dark-theme .guarantee-sec h2,
body.dark-theme .guarantee-sec .sec-head__title { color:#fff !important; }
body.dark-theme .guarantee-sec .sec-head__desc { color:rgba(255,255,255,.65) !important; }
body.dark-theme .guarantee-item {
  background:#0a0f1a !important;
  border-color:rgba(255,61,20,.2) !important;
}
body.dark-theme .guarantee-item h3 { color:#fff !important; }
body.dark-theme .guarantee-item p { color:rgba(255,255,255,.62) !important; }
body.dark-theme .guarantee-icon { color:var(--cor-secundaria) !important; }

/* ——— CTAFORM / CONTATO ——— */
body.dark-theme .ctaform {
  background:#04040f !important;
  border-top:3px solid rgba(255,61,20,.35) !important;
}
body.dark-theme .ctaform-panel {
  background:#0a0f1a !important;
  border-right-color:rgba(255,61,20,.2) !important;
}
body.dark-theme .ctaform-form-wrap { background:#06060f !important; }
body.dark-theme .ctaform-panel__title { color:#fff !important; }
body.dark-theme .ctaform-panel__desc { color:rgba(255,255,255,.65) !important; }
body.dark-theme .ctaform-contact-val { color:#fff !important; }
body.dark-theme .ctaform-contact-label { color:rgba(255,255,255,.45) !important; }
body.dark-theme .ctaform-input, body.dark-theme .ctaform-textarea {
  border-bottom-color:rgba(255,61,20,.25) !important;
  color:#fff !important;
}
body.dark-theme .ctaform-input::placeholder { color:rgba(255,255,255,.25) !important; }
body.dark-theme .ctaform-label { color:rgba(255,255,255,.45) !important; }
body.dark-theme .ctaform-submit { background:var(--cor-secundaria) !important; color:#fff !important;
  box-shadow:0 0 22px rgba(255,61,20,.35) !important; }
body.dark-theme .ctaform-chip {
  border-color:rgba(255,61,20,.3) !important;
  color:rgba(255,255,255,.7) !important;
}
body.dark-theme .ctaform-chip.active {
  background:var(--cor-secundaria) !important;
  color:#fff !important;
}

/* ════════════════════════════════════════════════════════════════════
   PARTE 6 — MAX BRUTAL · scanlines, RGB split, grade exposta, cyan
   ════════════════════════════════════════════════════════════════════ */

/* 1. CRT SCANLINES — tela toda */
.h26-crt {
  position:fixed; inset:0; z-index:99990; pointer-events:none;
  background:repeating-linear-gradient(0deg, rgba(0,0,0,.16) 0px, rgba(0,0,0,.16) 1px, transparent 1px, transparent 3px);
  mix-blend-mode:multiply; opacity:.5;
}
.h26-crt::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(rgba(255,61,20,.03), transparent 40%, rgba(0,229,255,.03));
  animation:h26-flicker 6s steps(60) infinite;
}
@keyframes h26-flicker { 0%,100%{opacity:.5;} 48%{opacity:.55;} 50%{opacity:.35;} 52%{opacity:.6;} }

/* 2. GRADE ESTRUTURAL exposta (brutalist skeleton) */
.h26-grid-overlay {
  position:fixed; inset:0; z-index:1; pointer-events:none;
  background-image:linear-gradient(rgba(255,61,20,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,61,20,.05) 1px, transparent 1px);
  background-size:72px 72px; mix-blend-mode:screen;
}

/* 3. VIGNETTE cinematográfico */
.h26-vignette {
  position:fixed; inset:0; z-index:2; pointer-events:none;
  background:radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,.55) 100%);
}

/* 4. RGB SPLIT / aberração cromática nos títulos */
.sec-head__title, .spec-header__title, .testimonials-sec h2,
.pricing-sec .sec-head__title, .guarantee-sec h2, .cases .sec-head__title,
.ctaform-panel__title, .proc-header__title {
  text-shadow: 2px 0 rgba(0,229,255,.45), -2px 0 rgba(255,61,20,.55) !important;
}
@keyframes h26-rgbshift {
  0%,90%,100% { text-shadow:2px 0 rgba(0,229,255,.45), -2px 0 rgba(255,61,20,.55); }
  92% { text-shadow:5px 0 rgba(0,229,255,.8), -5px 0 rgba(255,61,20,.8); transform:translate(-2px,0); }
  94% { text-shadow:-4px 0 rgba(0,229,255,.8), 4px 0 rgba(255,61,20,.8); transform:translate(2px,0); }
  96% { text-shadow:2px 0 rgba(0,229,255,.45), -2px 0 rgba(255,61,20,.55); transform:none; }
}
.cases .sec-head__title, .spec-header__title { animation:h26-rgbshift 9s ease-in-out infinite; }

/* 5. SEÇÕES — borders mais brutais + cyan numa borda */
.cases, .spec, .clients-sec, .testimonials-sec, .pricing-sec, .blog-sec, .faq-section {
  border-top-width:4px !important;
  position:relative;
}
.cases::before, .spec::before, .clients-sec::before, .testimonials-sec::before,
.pricing-sec::before, .faq-section::before {
  content:''; position:absolute; top:0; left:0; width:120px; height:4px;
  background:var(--cyber-cyan); box-shadow:0 0 14px var(--cyber-cyan); z-index:3;
}

/* 6. EYEBROWS / labels — brutalist mono caixa */
.sec-head__label, .spec-header__label, .ctaform-panel__label, .section-label {
  border:1px solid rgba(255,61,20,.4) !important;
  padding:5px 10px !important;
  display:inline-block !important;
  background:rgba(255,61,20,.06) !important;
}

/* 7. BOTÕES — brutalist square + glitch hover */
.btn-nav-cta, .ctaform-submit, .btn-cta {
  border:1.5px solid var(--cor-secundaria) !important;
  font-family:'DM Mono',monospace !important;
  letter-spacing:2px !important;
  text-transform:uppercase !important;
}
.btn-nav-cta:hover, .ctaform-submit:hover, .btn-cta:hover {
  box-shadow:4px 4px 0 var(--cyber-cyan), 0 0 24px rgba(255,61,20,.55) !important;
}

/* 8. NÚMEROS de seção — gigantes e crus */
.bento-case__num, .cl-num {
  font-family:'DM Mono',monospace !important;
}

/* 9. CURSOR mira — toque cyan no centro */
#cc-dot { background:var(--cyber-cyan) !important; box-shadow:0 0 8px var(--cyber-cyan) !important; }

/* 10. SELEÇÃO de texto — neon */
::selection { background:var(--cor-secundaria); color:#04040f; }

/* PARTE 6b — spec cards (.sc-*) legíveis no dark + CTA brutalist */
body.dark-theme .sc-name { color:#fff !important; }
body.dark-theme .sc-spec__val { color:#fff !important; }
body.dark-theme .sc-spec__key { color:rgba(255,255,255,.45) !important; }
body.dark-theme .sc-desc { color:rgba(255,255,255,.62) !important; }
body.dark-theme .sc-cta__meta { color:rgba(255,255,255,.4) !important; }
body.dark-theme .sc-spec { border-color:rgba(255,61,20,.15) !important; }
body.dark-theme .sc-spec__row, body.dark-theme .sc-spec__col { border-color:rgba(255,61,20,.15) !important; }
body.dark-theme .sc-tag { border-color:rgba(255,61,20,.4) !important; color:var(--cor-secundaria) !important; background:rgba(255,61,20,.06) !important; }
body.dark-theme .sc-cta, body.dark-theme .spec-card__cta, body.dark-theme a.sc-cta {
  background:var(--cor-secundaria) !important; color:#fff !important;
  border:1.5px solid var(--cor-secundaria) !important;
  font-family:'DM Mono',monospace !important; letter-spacing:2px !important;
  box-shadow:0 0 20px rgba(255,61,20,.35) !important;
}
body.dark-theme .sc-cta:hover { box-shadow:4px 4px 0 var(--cyber-cyan), 0 0 24px rgba(255,61,20,.5) !important; }
body.dark-theme .sc-icon, body.dark-theme .sc-visual { background:rgba(255,61,20,.08) !important; }
body.dark-theme .sc-name { text-shadow:1.5px 0 rgba(0,229,255,.4), -1.5px 0 rgba(255,61,20,.5) !important; }

/* PARTE 6c — fixes de contraste (verifier) */

/* 1. NAV — força dark com especificidade maior */
body.dark-theme .nav-header,
body.dark-theme .nav-header {
  background:rgba(4,4,15,.9) !important;
  backdrop-filter:blur(12px) !important;
  border-bottom:1px solid rgba(255,61,20,.22) !important;
}
body.dark-theme .nav-header .logo { color:#fff !important; }
body.dark-theme .nav-header .nav-menu a { color:rgba(255,255,255,.65) !important; }
body.dark-theme .nav-header .nav-menu a:hover,
body.dark-theme .nav-header .nav-menu a.active { color:#fff !important; }
body.dark-theme .nav-header .nav-available { color:rgba(255,255,255,.6) !important; }
body.dark-theme .nav-header .nav-home-icon svg { stroke:rgba(255,255,255,.7) !important; }

/* 2. BENTO cases 2 e 3 — num / num-label / tag brancos */
body.dark-theme .bento-case--2 .bento-case__num,
body.dark-theme .bento-case--3 .bento-case__num { color:#fff !important; text-shadow:0 0 18px rgba(255,61,20,.5) !important; }
body.dark-theme .bento-case--2 .bento-case__num-label,
body.dark-theme .bento-case--3 .bento-case__num-label { color:rgba(255,255,255,.6) !important; }
body.dark-theme .bento-case--2 .bento-case__tag,
body.dark-theme .bento-case--3 .bento-case__tag { color:var(--cor-secundaria) !important; }
body.dark-theme .bento-case--2 .bento-case__stat-label,
body.dark-theme .bento-case--3 .bento-case__stat-label { color:rgba(255,255,255,.55) !important; }

/* ════════════════════════════════════════════════════════════════════
   PARTE 7 — MAIS CYBER · HUD sistema, glitch hover, scrollbar neon,
   glitch band, noise, scan beam, link underline
   ════════════════════════════════════════════════════════════════════ */

/* 1. SYSTEM HUD fixo (canto inferior esquerdo) */
.h26-sys-hud {
  position:fixed; left:18px; bottom:18px; z-index:99991; pointer-events:none;
  font-family:'DM Mono',monospace; font-size:10px; letter-spacing:1.5px;
  color:rgba(255,255,255,.5); line-height:1.9; text-transform:uppercase;
  border-left:2px solid var(--cor-secundaria); padding-left:10px;
  text-shadow:0 0 8px rgba(0,0,0,.6);
}
.h26-sys-hud__row b { color:var(--cor-secundaria); font-weight:500; }
.h26-sys-hud__row--cyan { color:var(--cyber-cyan); opacity:.7; }
.h26-sys-dot {
  display:inline-block; width:7px; height:7px; margin-right:7px;
  background:var(--cor-secundaria); box-shadow:0 0 8px var(--cor-secundaria);
  animation:h26-sysblink 1.4s steps(2) infinite; vertical-align:middle;
}
@keyframes h26-sysblink { 0%,60%{opacity:1;} 61%,100%{opacity:.2;} }
@media (max-width:900px){ .h26-sys-hud{ display:none; }}

/* 2. GLITCH BAND — varre a tela ocasionalmente */
.h26-glitchband {
  position:fixed; left:0; right:0; height:80px; top:-100px; z-index:99989;
  pointer-events:none; mix-blend-mode:screen;
  background:linear-gradient(rgba(0,229,255,.06), rgba(255,61,20,.08), transparent);
  animation:h26-bandsweep 9s steps(40) infinite;
}
@keyframes h26-bandsweep {
  0%,82%{ top:-120px; opacity:0; }
  84%{ opacity:1; } 88%{ top:40%; opacity:.8; } 92%{ top:80%; opacity:.5; }
  94%,100%{ top:110%; opacity:0; }
}

/* 3. NOISE SQUARES — quadrados neon piscando (decorativo) */
.h26-noise { position:fixed; inset:0; z-index:1; pointer-events:none; }
.h26-noise i {
  position:absolute; width:8px; height:8px; background:var(--cor-secundaria);
  opacity:0; box-shadow:0 0 10px var(--cor-secundaria);
  animation:h26-blip 5s steps(1) infinite;
}
.h26-noise i:nth-child(1){ left:12%; top:24%; animation-delay:.3s; }
.h26-noise i:nth-child(2){ left:84%; top:38%; background:var(--cyber-cyan); box-shadow:0 0 10px var(--cyber-cyan); animation-delay:1.7s; }
.h26-noise i:nth-child(3){ left:46%; top:72%; animation-delay:3.1s; }
.h26-noise i:nth-child(4){ left:72%; top:18%; animation-delay:2.2s; }
.h26-noise i:nth-child(5){ left:24%; top:64%; background:var(--cyber-cyan); box-shadow:0 0 10px var(--cyber-cyan); animation-delay:4.0s; }
.h26-noise i:nth-child(6){ left:90%; top:80%; animation-delay:1.1s; }
@keyframes h26-blip { 0%,96%{opacity:0;} 97%,99%{opacity:.9;} }

/* 4. SCROLLBAR neon */
html::-webkit-scrollbar { width:12px; }
html::-webkit-scrollbar-track { background:#04040f; border-left:1px solid rgba(255,61,20,.2); }
html::-webkit-scrollbar-thumb { background:var(--cor-secundaria); box-shadow:0 0 10px var(--cor-secundaria) inset; }
html::-webkit-scrollbar-thumb:hover { background:#ff5a35; }
html { scrollbar-color:var(--cor-secundaria) #04040f; scrollbar-width:thin; }

/* 5. GLITCH HOVER nos cards — RGB split flick */
body.dark-theme .bento-case:hover,
body.dark-theme .spec-card:hover,
body.dark-theme .pricing-card:hover,
body.dark-theme .clients-sec__logo-item:hover,
body.dark-theme .testimonial-card:hover {
  animation:h26-cardglitch .3s steps(2) 1;
}
@keyframes h26-cardglitch {
  0%{ clip-path:inset(0 0 0 0); }
  30%{ clip-path:inset(8% 0 32% 0); transform:translate(-3px,0); }
  60%{ clip-path:inset(40% 0 12% 0); transform:translate(3px,0); }
  100%{ clip-path:inset(0 0 0 0); transform:none; }
}

/* 6. BOTÕES — scan fill no hover */
body.dark-theme .btn-nav-cta, body.dark-theme .ctaform-submit,
body.dark-theme .sc-cta, body.dark-theme .btn-cta { position:relative; overflow:hidden; }
body.dark-theme .btn-nav-cta::after, body.dark-theme .ctaform-submit::after,
body.dark-theme .sc-cta::after, body.dark-theme .btn-cta::after {
  content:''; position:absolute; inset:0; background:linear-gradient(90deg,transparent,rgba(0,229,255,.35),transparent);
  transform:translateX(-120%); transition:transform .5s ease; pointer-events:none;
}
body.dark-theme .btn-nav-cta:hover::after, body.dark-theme .ctaform-submit:hover::after,
body.dark-theme .sc-cta:hover::after, body.dark-theme .btn-cta:hover::after { transform:translateX(120%); }

/* 7. LINKS — underline neon que desenha */
body.dark-theme .bento-case__link, body.dark-theme .sc-cta__meta,
body.dark-theme .link-more { position:relative; }
body.dark-theme .footer-grid a, body.dark-theme .ctaform-contact-item {
  transition:color .2s, text-shadow .2s;
}
body.dark-theme .footer-grid a:hover { text-shadow:0 0 10px rgba(255,61,20,.6); }

/* 8. SCAN BEAM nas seções (intensifica cc-sweep-line) */
.cc-sweep-line {
  background:linear-gradient(90deg, transparent, var(--cor-secundaria) 50%, transparent) !important;
  box-shadow:0 0 14px var(--cor-secundaria); height:2px !important; opacity:.9 !important;
}

/* 9. HUD corner brackets animados nos cards (client cards já têm cl-bracket) */
body.dark-theme .cl-bracket {
  border-color:var(--cor-secundaria) !important;
  box-shadow:0 0 6px rgba(255,61,20,.5);
  opacity:.5; transition:opacity .2s;
}
body.dark-theme .clients-sec__logo-item:hover .cl-bracket { opacity:1; }

/* 10. SELEÇÃO + foco neon */
body.dark-theme *:focus-visible { outline:2px solid var(--cyber-cyan) !important; outline-offset:2px; }

/* ════════════════════════════════════════════════════════════════════
   PARTE 8 — POWER BRUTAL · seções de baixo com força total
   brackets de mira, borders neon grossas, footer terminal
   ════════════════════════════════════════════════════════════════════ */

/* 1. HUD CORNER BRACKETS — em todos os cards das seções de baixo */
body.dark-theme .guarantee-item,
body.dark-theme .pricing-card,
body.dark-theme .testimonial-card,
body.dark-theme .ctaform-contact-item { position:relative; }
body.dark-theme .guarantee-item::before, body.dark-theme .guarantee-item::after,
body.dark-theme .pricing-card::before, body.dark-theme .pricing-card::after,
body.dark-theme .testimonial-card::before, body.dark-theme .testimonial-card::after {
  content:''; position:absolute; width:16px; height:16px; pointer-events:none; z-index:3;
  border:2px solid var(--cor-secundaria); opacity:.55; transition:opacity .2s, width .2s, height .2s;
}
body.dark-theme .guarantee-item::before, body.dark-theme .pricing-card::before,
body.dark-theme .testimonial-card::before { top:-1px; left:-1px; border-right:0; border-bottom:0; }
body.dark-theme .guarantee-item::after, body.dark-theme .pricing-card::after,
body.dark-theme .testimonial-card::after { bottom:-1px; right:-1px; border-left:0; border-top:0; }
body.dark-theme .guarantee-item:hover::before, body.dark-theme .guarantee-item:hover::after,
body.dark-theme .pricing-card:hover::before, body.dark-theme .pricing-card:hover::after,
body.dark-theme .testimonial-card:hover::before, body.dark-theme .testimonial-card:hover::after {
  opacity:1; width:26px; height:26px; box-shadow:0 0 10px var(--cor-secundaria);
}

/* 2. GUARANTEE — borders grossas + glow + hover lift */
body.dark-theme .guarantee-item {
  background:#0a0f1a !important;
  border:2px solid rgba(255,61,20,.28) !important;
  transition:transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s, border-color .25s;
}
body.dark-theme .guarantee-item:hover {
  transform:translateY(-5px);
  border-color:var(--cor-secundaria) !important;
  box-shadow:8px 8px 0 var(--cor-secundaria), 0 0 30px rgba(255,61,20,.4) !important;
}
body.dark-theme .guarantee-item h3 { color:#fff !important; font-family:'DM Mono',sans-serif; }
body.dark-theme .gua-kv__val, body.dark-theme .guarantee-item b { color:var(--cor-secundaria) !important; }

/* 3. PRICING — featured com moldura neon pulsante */
body.dark-theme .pricing-card {
  border:2px solid rgba(255,61,20,.25) !important;
  transition:transform .25s, box-shadow .25s, border-color .25s;
}
body.dark-theme .pricing-card:hover {
  transform:translateY(-6px);
  box-shadow:0 0 36px rgba(255,61,20,.3) !important;
}
body.dark-theme .pricing-card--featured, body.dark-theme .pricing-card--highlight,
body.dark-theme .pricing-card.is-featured {
  border:2px solid var(--cor-secundaria) !important;
  box-shadow:0 0 0 1px var(--cor-secundaria), 0 0 40px rgba(255,61,20,.3) !important;
  animation:h26-pricepulse 2.6s ease-in-out infinite;
}
@keyframes h26-pricepulse {
  0%,100%{ box-shadow:0 0 0 1px var(--cor-secundaria), 0 0 30px rgba(255,61,20,.25); }
  50%{ box-shadow:0 0 0 1px var(--cor-secundaria), 0 0 50px rgba(255,61,20,.5); }
}

/* 4. CTAFORM — terminal neon brutal */
body.dark-theme .ctaform-contact-item {
  border:1.5px solid rgba(255,61,20,.25) !important;
  background:rgba(255,61,20,.03) !important;
  transition:border-color .2s, background .2s, transform .2s, box-shadow .2s;
}
body.dark-theme .ctaform-contact-item:hover {
  border-color:var(--cor-secundaria) !important;
  background:rgba(255,61,20,.08) !important;
  transform:translateX(4px);
  box-shadow:-4px 0 0 var(--cyber-cyan);
}
body.dark-theme .ctaform-form-wrap {
  border:2px solid rgba(255,61,20,.25) !important;
  position:relative;
}
body.dark-theme .ctaform-form-wrap::before {
  content:'> NEW_PROJECT.init'; position:absolute; top:-11px; left:20px;
  background:#06060f; padding:0 10px; font-family:'DM Mono',monospace;
  font-size:10px; letter-spacing:2px; color:var(--cor-secundaria);
}
body.dark-theme .ctaform-input, body.dark-theme .ctaform-textarea {
  background:rgba(0,0,0,.3) !important; border:1px solid rgba(255,61,20,.2) !important;
  padding:14px 14px !important; font-family:'DM Mono',monospace !important;
}
body.dark-theme .ctaform-input:focus, body.dark-theme .ctaform-textarea:focus {
  border-color:var(--cor-secundaria) !important; box-shadow:0 0 16px rgba(255,61,20,.3) inset !important;
}

/* Newsletter input dark */
body.dark-theme .ctaform-news input, body.dark-theme input[type='email'] {
  background:rgba(0,0,0,.3) !important; border:1px solid rgba(255,61,20,.25) !important;
  color:#fff !important; font-family:'DM Mono',monospace !important;
}

/* 5. FOOTER — cockpit terminal brutalista */
body.dark-theme .footer-grid, body.dark-theme footer {
  position:relative;
}
body.dark-theme [class*='footer']:not(.footer-social):not(.footer-social__tag) {
  border-color:rgba(255,61,20,.2) !important;
}
body.dark-theme .footer-social__tag {
  border:1.5px solid rgba(255,61,20,.3) !important; color:rgba(255,255,255,.7) !important;
  transition:all .2s;
}
body.dark-theme .footer-social a:hover .footer-social__tag {
  border-color:var(--cor-secundaria) !important; color:var(--cor-secundaria) !important;
  box-shadow:0 0 12px rgba(255,61,20,.5); background:rgba(255,61,20,.1) !important;
}

/* 6. NÚMEROS GIGANTES de seção (glitch, watermark) */
body.dark-theme .guarantee-sec, body.dark-theme .pricing-sec,
body.dark-theme .testimonials-sec, body.dark-theme .ctaform { position:relative; overflow:hidden; }
body.dark-theme .pricing-sec > .container::before,
body.dark-theme .guarantee-sec > .container::before {
  content:''; }

/* 7. SECTION LABEL — decode glitch hover já existe; reforça borda */
body.dark-theme .gua-status, body.dark-theme .pricing-status,
body.dark-theme .test-status, body.dark-theme .ctaform-status {
  border-top:2px solid rgba(255,61,20,.3) !important;
  border-bottom:2px solid rgba(255,61,20,.3) !important;
}

/* ════════════════════════════════════════════════════════════════════
   PARTE 9 — MAX BRUTAL · duro, cru, chapado, exposto
   ════════════════════════════════════════════════════════════════════ */

/* 1. EYEBROWS → blocos laranja sólidos invertidos (texto preto) */
body.dark-theme .sec-head__label, body.dark-theme .spec-header__label,
body.dark-theme .ctaform-panel__label, body.dark-theme .section-label,
body.dark-theme .proc-header__label {
  background:var(--cor-secundaria) !important; color:#000 !important;
  border:none !important; padding:6px 14px !important; font-weight:700 !important;
  box-shadow:5px 5px 0 #000 !important;
}

/* 2. SEÇÕES — borders SÓLIDAS e GROSSAS (sem transparência) */
body.dark-theme .cases, body.dark-theme .spec, body.dark-theme .clients-sec,
body.dark-theme .testimonials-sec, body.dark-theme .pricing-sec,
body.dark-theme .guarantee-sec, body.dark-theme .faq-section, body.dark-theme .ctaform {
  border-top:6px solid var(--cor-secundaria) !important;
  border-bottom:2px solid var(--cor-secundaria) !important;
}

/* 3. FAIXA DE ALERTA (caution stripe) no topo das seções */
body.dark-theme .cases::after, body.dark-theme .spec::after,
body.dark-theme .pricing-sec::after, body.dark-theme .guarantee-sec::after,
body.dark-theme .ctaform::after {
  content:''; position:absolute; top:0; left:0; right:0; height:6px; z-index:4;
  background:repeating-linear-gradient(135deg, var(--cor-secundaria) 0 14px, #000 14px 28px);
  opacity:.9;
}

/* 4. CARDS — borders duras + sombra chapada (brutalist, sem blur) */
body.dark-theme .bento-case, body.dark-theme .spec-card, body.dark-theme .pricing-card,
body.dark-theme .guarantee-item, body.dark-theme .testimonial-card,
body.dark-theme .clients-sec__logo-item {
  border:2px solid var(--cor-secundaria) !important;
}
body.dark-theme .pricing-card:hover, body.dark-theme .guarantee-item:hover,
body.dark-theme .testimonial-card:hover, body.dark-theme .clients-sec__logo-item:hover {
  box-shadow:10px 10px 0 var(--cor-secundaria) !important;
  transform:translate(-4px,-4px) !important;
}

/* 5. BOTÕES — slam brutalista: laranja sólido, borda preta, sombra chapada */
body.dark-theme .btn-nav-cta, body.dark-theme .ctaform-submit,
body.dark-theme .sc-cta, body.dark-theme .btn-cta, body.dark-theme .pricing-card__cta,
body.dark-theme .btn-wa-lp {
  background:var(--cor-secundaria) !important; color:#000 !important;
  border:2px solid #000 !important; font-weight:700 !important;
  box-shadow:6px 6px 0 #000 !important; transition:transform .08s, box-shadow .08s !important;
}
body.dark-theme .btn-nav-cta:hover, body.dark-theme .ctaform-submit:hover,
body.dark-theme .sc-cta:hover, body.dark-theme .btn-cta:hover, body.dark-theme .pricing-card__cta:hover,
body.dark-theme .btn-wa-lp:hover {
  transform:translate(3px,3px) !important; box-shadow:2px 2px 0 #000 !important;
}

/* 6. NÚMEROS GIGANTES expostos (watermark mono) por seção */
body.dark-theme .pricing-sec, body.dark-theme .guarantee-sec,
body.dark-theme .testimonials-sec, body.dark-theme .cases, body.dark-theme .spec {
  position:relative;
}
body.dark-theme .cases > .container, body.dark-theme .spec > .container,
body.dark-theme .pricing-sec > .container, body.dark-theme .guarantee-sec > .container,
body.dark-theme .testimonials-sec > .container { position:relative; z-index:2; }
body.dark-theme .pricing-sec::before {
  content:'/ 04'; position:absolute; top:30px; right:36px; z-index:1;
  font-family:'DM Mono',monospace; font-weight:700; font-size:clamp(4rem,10vw,9rem);
  color:rgba(255,61,20,.06); letter-spacing:-.04em; pointer-events:none;
}
body.dark-theme .guarantee-sec::before {
  content:'/ 06'; position:absolute; top:30px; right:36px; z-index:1;
  font-family:'DM Mono',monospace; font-weight:700; font-size:clamp(4rem,10vw,9rem);
  color:rgba(255,61,20,.06); letter-spacing:-.04em; pointer-events:none;
}

/* 7. TIPOGRAFIA — mais pesada e crua nos títulos */
body.dark-theme .sec-head__title, body.dark-theme .spec-header__title,
body.dark-theme .pricing-sec h2, body.dark-theme .guarantee-sec h2,
body.dark-theme .testimonials-sec h2 {
  font-weight:900 !important; letter-spacing:-.04em !important; text-transform:uppercase !important;
}

/* 8. CHANNEL STATUS bars — caution stripe brutalista na borda */
body.dark-theme [class*='-status'] {
  border-top:3px solid var(--cor-secundaria) !important;
  border-bottom:3px solid var(--cor-secundaria) !important;
  background:#000 !important;
}

/* 9. PRICING price — gigante e cru */
body.dark-theme .pricing-card__price, body.dark-theme .price-amount {
  font-weight:900 !important; letter-spacing:-.05em !important;
  text-shadow:4px 4px 0 #000 !important;
}

/* 10. FOOTER — borda topo brutal */
body.dark-theme footer, body.dark-theme .site-footer, body.dark-theme [class*='footer-cockpit'] {
  border-top:6px solid var(--cor-secundaria) !important;
}

/* ════════════════════════════════════════════════════════════════════
   PARTE 10 — TELEMETRIA VIVA · radares + contadores ascendentes
   ════════════════════════════════════════════════════════════════════ */
body.dark-theme .cyb-tel {
  position:absolute; z-index:2; pointer-events:none; font-family:'DM Mono',monospace;
  opacity:0; transition:opacity .6s ease; user-select:none;
}
body.dark-theme .cyb-tel.in { opacity:.6; }
body.dark-theme .cyb-tel--tr { top:128px; right:44px; text-align:right; }
body.dark-theme .cyb-tel--bl { bottom:70px; left:44px; }
@media (max-width:1024px){ body.dark-theme .cyb-tel{ display:none; }}
.cyb-tel__radar {
  width:58px; height:58px; position:relative; margin-bottom:12px; display:inline-block;
  border:1px solid rgba(255,61,20,.35);
  background:linear-gradient(rgba(255,61,20,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(255,61,20,.12) 1px,transparent 1px);
  background-size:14px 14px;
}
.cyb-tel--tr .cyb-tel__radar { float:right; }
.cyb-tel__radar::after { content:''; position:absolute; inset:0; background:conic-gradient(from 0deg, rgba(255,61,20,.45), transparent 70%); animation:cyb-sweep 3.2s linear infinite; mix-blend-mode:screen; }
@keyframes cyb-sweep { to { transform:rotate(360deg); } }
.cyb-tel__blip { position:absolute; top:50%; left:50%; width:6px; height:6px; margin:-3px 0 0 -3px; background:var(--cyber-cyan); border-radius:50%; box-shadow:0 0 8px var(--cyber-cyan); animation:cyb-orbit 4.5s linear infinite; }
@keyframes cyb-orbit { from{ transform:rotate(0) translateX(19px); } to{ transform:rotate(360deg) translateX(19px); } }
.cyb-tel__rows { clear:both; }
.cyb-tel__row { display:flex; justify-content:space-between; gap:22px; font-size:9.5px; letter-spacing:1.5px; line-height:2; text-transform:uppercase; color:rgba(255,255,255,.45); }
.cyb-tel--tr .cyb-tel__row { flex-direction:row-reverse; }
.cyb-tel__row .v { color:var(--cor-secundaria); font-variant-numeric:tabular-nums; text-shadow:0 0 8px rgba(255,61,20,.5); }
.cyb-tel__row .v.up { color:var(--cyber-cyan); text-shadow:0 0 8px rgba(0,229,255,.6); }
.cyb-tel__bar { height:3px; width:130px; background:rgba(255,255,255,.1); margin-top:8px; overflow:hidden; }
.cyb-tel--tr .cyb-tel__bar { margin-left:auto; }
.cyb-tel__bar i { display:block; height:100%; width:30%; background:var(--cor-secundaria); box-shadow:0 0 8px var(--cor-secundaria); transition:width .9s cubic-bezier(.16,1,.3,1); }

/* micro-interação: cards com tilt suave */
body.dark-theme .bento-case, body.dark-theme .pricing-card, body.dark-theme .guarantee-item,
body.dark-theme .testimonial-card { transform-style:preserve-3d; will-change:transform; }

/* telemetria nos cantos inferiores (zona de respiro) */
body.dark-theme .cyb-tel--br { bottom:40px; right:44px; text-align:right; top:auto; }
body.dark-theme .cyb-tel--bl { bottom:40px; left:44px; top:auto; }
body.dark-theme .cyb-tel--br .cyb-tel__radar { float:right; }
body.dark-theme .cyb-tel--br .cyb-tel__row { flex-direction:row-reverse; }
body.dark-theme .cyb-tel--br .cyb-tel__bar { margin-left:auto; }

/* ===== PRICING COCKPIT · BRUTALISTA (override final, alta especificidade) ===== */
.pricing-sec--cockpit .pricing-card.pricing-card--cockpit {
  border: 3px solid var(--bru-ink) !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  box-shadow: 8px 8px 0 var(--bru-ink) !important;
  transition: transform .14s ease, box-shadow .14s ease !important;
}
.pricing-sec--cockpit .pricing-card.pricing-card--cockpit:hover {
  transform: translate(-3px, -3px) !important;
  box-shadow: 12px 12px 0 var(--cor-secundaria) !important;
}
body.dark-theme .pricing-sec--cockpit .pricing-card.pricing-card--cockpit {
  border-color: #ffffff !important;
  background: #0b1018 !important;
  box-shadow: 8px 8px 0 rgba(255,255,255,0.85) !important;
}
body.dark-theme .pricing-sec--cockpit .pricing-card.pricing-card--cockpit:hover {
  box-shadow: 12px 12px 0 var(--cor-secundaria) !important;
}
/* Featured: realce duro, sem glow suave */
.pricing-sec--cockpit .pricing-card.pricing-card--cockpit.pricing-card--featured {
  border-color: var(--cor-secundaria) !important;
  background: var(--cor-primaria) !important;
  box-shadow: 10px 10px 0 var(--cor-secundaria) !important;
  transform: translateY(-10px) !important;
}
.pricing-sec--cockpit .pricing-card.pricing-card--cockpit.pricing-card--featured:hover {
  transform: translate(-3px, -13px) !important;
  box-shadow: 14px 14px 0 var(--bru-ink) !important;
}
body.dark-theme .pricing-sec--cockpit .pricing-card.pricing-card--cockpit.pricing-card--featured {
  border-color: var(--cor-secundaria) !important;
  background: var(--cor-primaria) !important;
  box-shadow: 10px 10px 0 var(--cor-secundaria) !important;
}
/* Badge RECOMENDADO: reto e sólido */
.pricing-sec--cockpit .pricing-card--cockpit.pricing-card--featured::before {
  background: var(--cor-secundaria) !important;
  border: 2px solid var(--bru-ink) !important;
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 var(--bru-ink) !important;
  letter-spacing: 2px !important;
}
/* Numeração: bloco reto */
.pricing-sec--cockpit .pricing-card--cockpit .pc-head__num {
  border: 2px solid currentColor !important;
  border-radius: 0 !important;
  font-weight: 700 !important;
}
/* CTA brutalista */
.pricing-sec--cockpit .pricing-card--cockpit .pc-cta {
  border: 2.5px solid var(--bru-ink) !important;
  border-radius: 0 !important;
  margin: 18px 24px 24px !important;
  box-shadow: 4px 4px 0 var(--bru-ink) !important;
  transition: transform .12s ease, box-shadow .12s ease, background .2s ease !important;
}
.pricing-sec--cockpit .pricing-card--cockpit .pc-cta:hover {
  transform: translate(-2px, -2px) !important;
  box-shadow: 6px 6px 0 var(--bru-ink) !important;
}
.pricing-sec--cockpit .pricing-card--cockpit .pc-cta:active {
  transform: translate(0, 0) !important;
  box-shadow: 0 0 0 var(--bru-ink) !important;
}
.pricing-sec--cockpit .pricing-card--cockpit.pricing-card--featured .pc-cta {
  border-color: #ffffff !important;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5) !important;
}
@media (max-width: 980px) {
  .pricing-sec--cockpit .pricing-card.pricing-card--cockpit { box-shadow: 6px 6px 0 var(--bru-ink) !important; }
  body.dark-theme .pricing-sec--cockpit .pricing-card.pricing-card--cockpit { box-shadow: 6px 6px 0 rgba(255,255,255,0.85) !important; }
  .pricing-sec--cockpit .pricing-card.pricing-card--cockpit.pricing-card--featured { transform: none !important; }}



/* ════ TÍTULOS — fonte de display (Archivo) ════
   Corpo, rótulos, nav e cards seguem em DM Mono; só os TÍTULOS GRANDES
   usam Archivo. Números/KPIs usam Tektur (--fonte-numero). */
:root {
  --fonte-corpo:   'DM Mono', 'Courier New', monospace;
  --fonte-titulo:  'Archivo', -apple-system, system-ui, sans-serif;
  --fonte-numero:  'Tektur', sans-serif;
}
h1, h2, h3,
.sec-head__title, .spec-header__title, .clients-sec__title,
.proc-header__title, .cs2-title, .proof__title,
.footer-hero__brand,
.guarantee-title, .pricing-sec--cockpit .sec-head__title,
.svp-sec__title, .svp-hero__title, .svp-cta__title {
  font-family: var(--fonte-titulo) !important;
}

/* ════ CORPO — DM Mono em textos corridos (neutraliza Plus Jakarta / sans soltas) ════ */
body,
p,
.sec-head__desc, .spec-header__sub, .proc-header__sub,
.faq-question, .faq-answer,
.proc-step__desc, .proc-step__title,
.sc-desc, .sc-tag, .sc-specs li,
.cs2-sub, .cs2-desc, .cs2-tag, .cs2-name, .cs2-kicker,
.cs2-year, .cs2-result, .cs2-feat, .cs2-registry-label,
.psc-problem__text, .psc-solution__text, .psc-note,
.cl-desc, .cl-name, .cl-tag,
.proof__desc, .proof__label, .proof__stat-label, .proof__stat-src,
.proof__quote-text, .proof__author-name, .proof__author-role,
.proof__roster-label, .proof__roster-name, .proof__roster-cta,
.proof__avatar, .proof__quote-mark,
.testimonial-text, .testimonial-author,
.guarantee-desc, .guarantee-item p,
.pricing-desc, .blog-card__excerpt,
.hz-card-desc, .hz-card-title,
.svp-hero__desc, .svp-dcard__d, .svp-rcard__d, .svp-cta__sub, .svp-sec__label,
.svp-sec blockquote p,
.cs-name, .cs-desc, .cs-metric__head span, .probsol-cta-bar__text,
.footer-hero__tagline, .footer-col__label, .footer-links a,
.hero-desc-v3, .nav-menu a, .btn-nav-cta {
  font-family: var(--fonte-corpo) !important;
}
.hero-title-v3 {
  font-family: 'Tektur', sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em;
}


/* ================================================
   HERO VIDEO DE FUNDO (media/hero-bg.mp4)
   ================================================ */
.hero-video {
  position: absolute; inset: 0;
  overflow: hidden; z-index: 0;
  pointer-events: none;
}
.hero-video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
}
/* tinta navy + vinheta para manter legibilidade e o tom do site */
.hero-video__tint {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 42%, transparent 0%, rgba(4,4,15,.55) 78%),
    linear-gradient(180deg, rgba(4,4,15,.62) 0%, rgba(4,4,15,.34) 45%, rgba(4,4,15,.88) 100%);
}
/* o video assume o papel dos nos animados (poupa GPU) */
.hero-v3 .hero-bg__node { display: none !important; }


/* ════════════════════════════════════════════════════════════════
   NÚMEROS GLOBAIS — Tektur (mesma fonte da logo · painel de nave)
   Todo display numérico do site herda a Tektur.
   ════════════════════════════════════════════════════════════════ */
.stats-strip__num, .stats-strip__prefix, .stats-strip__suffix,
.bento-case__num, .hmb-kpi__num, .hmb-ring-num, .value-card__num,
.ascend__num, .ascend__cur, .ascend__readout, .ascend__kpi-v, .aind__v, .ascend__flash,
.cs-metric__head b, .work-card__result strong,
.cases-portfolio__val, .testimonials-meta__val,
.tc-metric__val, .gbt-big-val,
.pc-price__amount, .pc-price__currency,
.roi-res-big, .roi-res-current-num, .roi-gain-val,
.svp-spec__val, .svp-hero__num,
.h26-loader__count, .ahud-readout__val, .cyb-tel__row .v,
.proc-step__num, .svc-division__num, .ctaform-group__num, .pc-head__num,
.tc-head__num, .bc-num, .cl-num, .gi-num, .cx-num, .brut-index,
.svp-dcard__num, .svp-step__num, .svp-rcard__num, .hz-card__num,
.proof__stat-num, .proof__stat-num b,
.cs2-gauge__val, .cs2-lstat b, .psc-metric__head b, .cl-bigstat b {
  font-family: var(--fonte-numero) !important;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §FIX-CTA-SHINE  Brilho contínuo nos CTAs
   Substitui o scan de hover antigo (vazava p/ fora do botão
   por causa do overflow:visible do magnético). Agora a faixa
   de luz anima via background-position — fica 100% contida
   no botão e passa em loop, sem precisar de hover.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.dark-theme .btn-nav-cta::after,
body.dark-theme .ctaform-submit::after,
body.dark-theme .sc-cta::after,
body.dark-theme .btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: none !important;
  transition: none !important;
  background-color: transparent !important;
  background-image: linear-gradient(105deg,
    transparent 40%,
    rgba(255,255,255,.22) 47%,
    rgba(255,255,255,.5) 50%,
    rgba(255,255,255,.22) 53%,
    transparent 60%) !important;
  background-size: 300% 100% !important;
  background-repeat: no-repeat !important;
  background-position: 0% 0;
  animation: cc-cta-shine 3.4s linear infinite !important;
  mix-blend-mode: screen;
  pointer-events: none;
}
body.dark-theme .btn-nav-cta:hover::after,
body.dark-theme .ctaform-submit:hover::after,
body.dark-theme .sc-cta:hover::after,
body.dark-theme .btn-cta:hover::after {
  transform: none !important;
}
@keyframes cc-cta-shine {
  0%   { background-position: 0% 0; }
  55%  { background-position: 100% 0; }
  100% { background-position: 100% 0; }
}
@media (prefers-reduced-motion: reduce) {
  /* Efeito pedido explicitamente pelo usuário → roda mesmo com
     "reduzir movimento", em variante mais suave (mesma convenção
     do btn-glitch.js). */
  body.dark-theme .btn-nav-cta::after,
  body.dark-theme .ctaform-submit::after,
  body.dark-theme .sc-cta::after,
  body.dark-theme .btn-cta::after { animation-duration: 5s !important; }
}


/* ═══════════════════════════════════════════════
   §EXTRA — ÁREA DO CLIENTE / CRM
   Botão de conta na nav + balão (popover),
   links no rodapé e mini CTA de cadastro
   ═══════════════════════════════════════════════ */

/* ── Botão "Entrar" na nav ── */
.nav-account { position: relative; display: inline-flex; flex-shrink: 0; }
.nav-account:hover .btn-nav-account,
.nav-account:focus-within .btn-nav-account {
  border-color: var(--cor-secundaria);
  color: var(--cor-secundaria);
}

/* O header tem overflow:hidden (clippa scanline/brackets) — libera o clip
   só enquanto o balão está aberto, p/ ele não ser cortado */
.nav-header:has(.nav-account:hover),
.nav-header:has(.nav-account:focus-within) {
  overflow: visible;
}

/* ── Balão (popover) ── */
.nav-account__pop {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 248px;
  padding: 18px;
  background: var(--bg-color);
  border: 1.5px solid var(--border-strong);
  box-shadow: 8px 8px 0 rgba(3, 17, 82, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 1200;
}
body.dark-theme .nav-account__pop { box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.45); }
/* ponte invisível — o hover não cai no vão entre botão e balão */
.nav-account__pop::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -14px; height: 14px;
}
/* setinha do balão */
.nav-account__pop::after {
  content: "";
  position: absolute;
  top: -7px; right: 22px;
  width: 12px; height: 12px;
  background: var(--bg-color);
  border-left: 1.5px solid var(--border-strong);
  border-top: 1.5px solid var(--border-strong);
  transform: rotate(45deg);
}
.nav-account:hover .nav-account__pop,
.nav-account:focus-within .nav-account__pop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-account__label {
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
}
.nav-account__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.2s ease, color 0.2s ease;
}
.nav-account__btn--primary {
  background: var(--cor-secundaria);
  color: #ffffff;
  border: 1.5px solid var(--cor-secundaria);
}
.nav-account__btn--primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 rgba(3, 17, 82, 0.25);
}
body.dark-theme .nav-account__btn--primary:hover { box-shadow: 3px 3px 0 rgba(255, 61, 20, 0.3); }
.nav-account__btn--ghost {
  border: 1.5px solid var(--border-strong);
  color: var(--text-primary);
}
.nav-account__btn--ghost:hover {
  border-color: var(--cor-secundaria);
  color: var(--cor-secundaria);
}
.nav-account__help {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-strong);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
}
.nav-account__help:hover { color: var(--cor-secundaria); }

@media (max-width: 600px) {
  .nav-account__pop { width: 220px; }
}

/* ── Rodapé: links da área do cliente ── */
.footer-links li.fl-sep {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-strong);
}
.footer-links a.fl-account::after {
  content: " ↗";
  color: var(--cor-secundaria);
}

/* ── Mini CTA de cadastro ── */
.signup-strip {
  position: relative;
  box-sizing: border-box;
  width: calc(100% - var(--gut) * 2);
  max-width: var(--largura-maxima);
  margin-inline: auto;
  margin-block: 0;
  border-top: 1.5px solid var(--border-strong);
  border-bottom: 1.5px solid var(--border-strong);
  background: var(--bg-surface);
  padding-block: var(--space-sec-sm);
  padding-inline: 0;
  overflow: hidden;
}
.signup-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent 0 10px, rgba(255, 61, 20, 0.04) 10px 11px);
  pointer-events: none;
}
.signup-strip__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
}
.signup-strip__copy { flex: 1 1 380px; min-width: 280px; }
.signup-strip__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
  margin-bottom: 10px;
}
.signup-strip__title {
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
  text-wrap: pretty;
}
.signup-strip__text {
  font-size: 13.5px;
  color: var(--text-secondary);
  max-width: 56ch;
  margin: 0;
}
.signup-strip__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.signup-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 26px;
  background: var(--cor-secundaria);
  color: #ffffff;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--cor-secundaria);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.signup-strip__btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 rgba(3, 17, 82, 0.3);
}
body.dark-theme .signup-strip__btn:hover { box-shadow: 5px 5px 0 rgba(255, 61, 20, 0.25); }
.signup-strip__login {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.signup-strip__login:hover { color: var(--cor-secundaria); }


/* ── Entrar como item de menu + ícones nos itens da nav ── */
.nav-menu a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-menu .nav-mi {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.8;
}
.nav-account--menu { position: relative; display: inline-flex; align-items: center; }
.nav-account__trigger { white-space: nowrap; }
.nav-account--menu:hover .nav-account__trigger,
.nav-account--menu:focus-within .nav-account__trigger { color: var(--cor-secundaria) !important; }

/* balão centralizado sob o item de menu */
.nav-account--menu .nav-account__pop {
  right: auto;
  left: 50%;
  transform: translate(-50%, -8px);
}
.nav-account--menu:hover .nav-account__pop,
.nav-account--menu:focus-within .nav-account__pop {
  transform: translate(-50%, 0);
}
.nav-account--menu .nav-account__pop::after {
  right: auto;
  left: 50%;
  margin-left: -6px;
}


/* ═══════════════════════════════════════════════
   NAV 2026 — "//" sempre visível + barra que
   enche no hover (micro efeito premium) + decode FX
   ═══════════════════════════════════════════════ */

/* "//" sempre visível */
.nav-menu a::before {
  opacity: 1;
  left: -16px;
}

/* barra de preenchimento: invisível em repouso.
   No hover, enche da esquerda → direita com easing
   luxuoso e ponta de luz; ao sair, esvazia pela direita */
.nav-menu a::after {
  width: 100%;
  height: 2px;
  opacity: 1;
  background: linear-gradient(90deg, var(--cor-secundaria) 0%, var(--cor-secundaria) 72%, #ffd9cf 94%, #ffffff 100%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, opacity 0.3s ease;
  animation: none;
  box-shadow: none;
}
.nav-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  box-shadow: 0 1px 14px rgba(255, 61, 20, 0.5);
}
/* item ativo (página atual): barra cheia, discreta */
.nav-menu a.active::after {
  transform: scaleX(1);
  opacity: 0.5;
}
.nav-menu a.active:hover::after { opacity: 1; }

/* a casinha (só ícone) fica sem // e sem sublinhado */
.nav-menu a.nav-home-icon::before,
.nav-menu a.nav-home-icon::after { display: none; }

/* ── ENTRAR como botão compacto ── */
body .nav-header .nav-menu a.nav-account__trigger {
  padding: 6px 14px;
  border: 1px solid rgba(255, 61, 20, 0.55);
  border-radius: 2px;
  background: rgba(255, 61, 20, 0.08);
  color: #fff !important;
  line-height: 1;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
/* sem prefixo // e sem barra de hover — é botão, não link */
.nav-menu a.nav-account__trigger::before,
.nav-menu a.nav-account__trigger::after { display: none; }

body .nav-header .nav-menu .nav-account--menu:hover a.nav-account__trigger,
body .nav-header .nav-menu .nav-account--menu:focus-within a.nav-account__trigger {
  background: var(--cor-secundaria);
  border-color: var(--cor-secundaria);
  color: #fff !important;
  box-shadow: 0 0 16px rgba(255, 61, 20, 0.45);
}

/* ── Manifesto sob os agentes (sobre) ── */
.agents-manifesto {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}
.agents-manifesto__quote {
  font-family: 'DM Mono', monospace;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: #fff;
  margin: 0;
}
.agents-manifesto__quote span { color: var(--cor-secundaria); }
.agents-manifesto__note {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin: 0;
  max-width: 480px;
}

/* ── Foto do fundador (sobre) ── */
.founder-block__frame { background: #0d1530; }
.fb-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
  filter: grayscale(1) contrast(1.1) brightness(0.92);
  mix-blend-mode: luminosity;
}
/* tinta HUD por cima: sombra azul na base, brilho laranja no canto + scanlines */
.fb-photo-tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(5, 9, 22, 0.18) 0px, rgba(5, 9, 22, 0.18) 1px, transparent 1px, transparent 4px),
    linear-gradient(200deg, rgba(255, 61, 20, 0.18) 0%, transparent 38%),
    linear-gradient(0deg, rgba(6, 10, 24, 0.65) 0%, transparent 55%);
}
.founder-block__frame .fb-status { z-index: 2; }


/* links dentro do balão: pop sem // nem sublinhado de menu */
.nav-account__pop a::before,
.nav-account__pop a::after {
  content: none !important;
  animation: none !important;
  box-shadow: none !important;
}


/* Marca gigante do rodapé — mesma fonte da logo (Tektur) */
.footer-hero__brand {
  font-family: 'Tektur', sans-serif !important;
  font-weight: 900;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §SPEC-DEPTH  Especialidades · cena 3D local
   Grade ciano em fuga + nebulosa vermelha/azul + anéis wireframe
   (referência Comando Central — linhas correndo como depth.js)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.spec.spec--cockpit {
  isolation: isolate;
}
.spec-depth {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  perspective: 720px;
  perspective-origin: 50% 36%;
}
.spec-depth__dust {
  position: absolute;
  inset: -20% -10%;
  opacity: 0.55;
  background-image:
    radial-gradient(1px 1px at 22% 38%, rgba(255,255,255,.5), transparent 60%),
    radial-gradient(1px 1px at 68% 22%, rgba(255,255,255,.35), transparent 60%),
    radial-gradient(1px 1px at 44% 72%, rgba(255,255,255,.4), transparent 60%),
    radial-gradient(1px 1px at 86% 58%, rgba(255,255,255,.3), transparent 60%);
  background-size: 320px 320px, 420px 420px, 360px 360px, 480px 480px;
}
.spec-depth__neb {
  position: absolute;
  inset: -18%;
  will-change: transform;
  background-image:
    radial-gradient(44% 36% at 14% 46%, rgba(255,61,20,.30), transparent 68%),
    radial-gradient(50% 40% at 90% 28%, rgba(40,96,210,.24), transparent 70%),
    radial-gradient(48% 44% at 70% 88%, rgba(0,210,220,.20), transparent 72%),
    radial-gradient(36% 32% at 8% 78%, rgba(255,61,20,.14), transparent 72%);
  animation: specNebDrift 26s ease-in-out infinite alternate;
}
@keyframes specNebDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(2%, -1.5%, 0) scale(1.05); }
}
.spec-depth__stars {
  position: absolute;
  inset: -10%;
  will-change: transform;
}
.spec-depth__stars i {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 5px rgba(255,255,255,.75);
  animation: specStarTw 3.4s ease-in-out infinite;
}
@keyframes specStarTw {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}
.spec-depth__grid-floor,
.spec-depth__grid-ceil {
  position: absolute;
  inset: 0;
  will-change: transform;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 34%, #000 68%, #000 100%);
          mask-image: linear-gradient(180deg, transparent 0%, transparent 34%, #000 68%, #000 100%);
}
.spec-depth__grid-floor {
  transform-origin: 50% 100%;
  transform: rotateX(76deg) translateY(42%) scale(2.55);
}
.spec-depth__grid-ceil {
  transform-origin: 50% 0%;
  transform: rotateX(-76deg) translateY(-42%) scale(2.55);
  opacity: 0.45;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 22%, transparent 52%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 22%, transparent 52%, transparent 100%);
}
.spec-depth__grid-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -72px;
  bottom: -72px;
  will-change: transform;
  backface-visibility: hidden;
}
.spec-depth__grid-floor .spec-depth__grid-bg {
  background:
    linear-gradient(rgba(0,210,220,.34) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(90deg, rgba(0,210,220,.34) 1px, transparent 1px) 0 0 / 52px 52px;
  animation: specGridRunDown 2.4s linear infinite;
}
.spec-depth__grid-ceil .spec-depth__grid-bg {
  background:
    linear-gradient(rgba(95,175,255,.22) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(90deg, rgba(95,175,255,.22) 1px, transparent 1px) 0 0 / 52px 52px;
  animation: specGridRunUp 3.1s linear infinite;
}
@keyframes specGridRunDown {
  from { transform: translateY(0); }
  to   { transform: translateY(52px); }
}
@keyframes specGridRunUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-52px); }
}
.spec-depth__shapes {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.spec-depth__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,61,20,.16);
  pointer-events: none;
}
.spec-depth__ring--a {
  width: clamp(220px, 34vw, 420px);
  height: clamp(220px, 34vw, 420px);
  left: 4%;
  top: 14%;
}
.spec-depth__ring--b {
  width: clamp(160px, 22vw, 300px);
  height: clamp(160px, 22vw, 300px);
  right: 6%;
  top: 38%;
  border-color: rgba(0,210,220,.14);
}
.spec.spec--cockpit > .spec-status,
.spec.spec--cockpit > .spec-header,
.spec.spec--cockpit > .spec-list,
.spec.spec--cockpit > .spec-techstack,
.spec.spec--cockpit > .spec-coverage,
.spec.spec--cockpit > .cc-corner {
  position: relative;
  z-index: 2;
}
html.cc-brut body.dark-theme .spec.spec--cockpit .spec-coverage {
  background: rgba(9, 12, 24, 0.42) !important;
  -webkit-backdrop-filter: blur(4px) saturate(1.08);
          backdrop-filter: blur(4px) saturate(1.08);
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
}
@media (prefers-reduced-motion: reduce) {
  .spec-depth__grid-bg,
  .spec-depth__neb,
  .spec-depth__stars i { animation: none !important; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §SPEC-HOVER  Especialidades · CTA estável (sem magnético/glitch)
   Transform 3D dos cards → §SPEC-3D + spec-fx.js
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.spec.spec--cockpit .spec-card--cockpit .sc-cta,
.spec.spec--cockpit .spec-card--cockpit .sc-cta:hover,
.spec.spec--cockpit .spec-card--cockpit .sc-cta:active {
  filter: none !important;
  will-change: auto !important;
}
.spec.spec--cockpit .spec-card--cockpit .sc-cta::after {
  display: none !important;
}
body.dark-theme .spec.spec--cockpit .spec-card--cockpit .sc-cta:hover {
  background: var(--bg-surface-alt) !important;
}
.spec.spec--cockpit .spec-card--cockpit .sc-cta.cc-btn-glitching {
  filter: none !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §ORANGE-BRUT  Botões laranja · chapado + sombra branca
   Estética neo-brutalista (sem alterar efeitos magnético/glitch)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.signup-strip__btn,
.psc-card-cta,
html.cc-brut body .probsol .psc-card-v2 .psc-card-cta,
.probsol-cta-bar__btn,
.btn-cta,
.pc-btn-cta--featured,
.pricing-card--cockpit.pricing-card--featured .pc-cta__inner,
.pricing-card--featured .pc-cta__inner,
.nav-account__btn--primary,
.mobile-menu__cta,
body.dark-theme .spec-card .btn-cta,
.ctaform-fasttrack__btn {
  position: relative !important;
  overflow: hidden !important;
  background: var(--cor-secundaria) !important;
  color: #fff !important;
  border: 2px solid var(--orange-brut-edge) !important;
  border-radius: 0 !important;
  box-shadow: var(--orange-brut-depth) var(--orange-brut-depth) 0 var(--orange-brut-chad) !important;
  font-family: var(--fonte-titulo) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  white-space: nowrap;
  filter: none !important;
  transition: box-shadow 0.28s ease, filter 0.28s ease !important;
}
/* varredura de brilho no hover */
.signup-strip__btn::after,
.psc-card-cta::after,
.probsol-cta-bar__btn::after,
.btn-cta::after,
.pc-btn-cta--featured::after,
.nav-account__btn--primary::after,
.mobile-menu__cta::after,
.ctaform-fasttrack__btn::after,
.pricing-card--cockpit.pricing-card--featured .pc-cta__inner::after,
.pricing-card--featured .pc-cta__inner::after {
  content: '' !important;
  display: block !important;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.42) 50%,
    transparent 62%
  );
  transform: translateX(-130%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 1;
}
.signup-strip__btn > *,
.psc-card-cta > *,
.probsol-cta-bar__btn > *,
.btn-cta > *,
.pc-btn-cta--featured > *,
.nav-account__btn--primary > *,
.mobile-menu__cta > *,
.ctaform-fasttrack__btn > *,
.pricing-card--cockpit.pricing-card--featured .pc-cta__inner > *,
.pricing-card--featured .pc-cta__inner > * {
  position: relative;
  z-index: 2;
}
.mobile-menu__cta {
  padding: 14px 32px !important;
  color: #fff !important;
}
.nav-account__btn--primary {
  padding: 12px 14px !important;
}
.signup-strip__btn:hover,
.psc-card-cta:hover,
html.cc-brut body .probsol .psc-card-v2 .psc-card-cta:hover,
.probsol-cta-bar__btn:hover,
.btn-cta:hover,
.pc-btn-cta--featured:hover,
.pricing-card--cockpit.pricing-card--featured:hover .pc-cta__inner,
.pricing-card--featured:hover .pc-cta__inner,
.nav-account__btn--primary:hover,
.mobile-menu__cta:hover,
body.dark-theme .spec-card .btn-cta:hover,
.ctaform-fasttrack__btn:hover {
  background: var(--cor-secundaria) !important;
  color: #fff !important;
  filter: brightness(1.07) !important;
  box-shadow:
    calc(var(--orange-brut-depth) + 2px) calc(var(--orange-brut-depth) + 2px) 0 var(--orange-brut-chad),
    var(--orange-brut-glow) !important;
}
.signup-strip__btn:hover::after,
.psc-card-cta:hover::after,
.probsol-cta-bar__btn:hover::after,
.btn-cta:hover::after,
.pc-btn-cta--featured:hover::after,
.nav-account__btn--primary:hover::after,
.mobile-menu__cta:hover::after,
.ctaform-fasttrack__btn:hover::after,
.pricing-card--cockpit.pricing-card--featured:hover .pc-cta__inner::after,
.pricing-card--featured:hover .pc-cta__inner::after {
  transform: translateX(130%);
}
.signup-strip__btn svg,
.psc-card-cta svg,
.psc-card-cta i,
.probsol-cta-bar__btn svg {
  width: 14px !important;
  height: 14px !important;
  color: currentColor !important;
}
.psc-card-cta {
  width: 100%;
  max-width: 320px;
  padding: 18px 36px !important;
}
/* vence bloco dark-theme que punha sombra preta nos laranjas */
body.dark-theme .btn-cta,
body.dark-theme .btn-wa-lp {
  color: #fff !important;
  border: 2px solid var(--orange-brut-edge) !important;
  box-shadow: var(--orange-brut-depth) var(--orange-brut-depth) 0 var(--orange-brut-chad) !important;
}
body.dark-theme .btn-cta:hover,
body.dark-theme .btn-wa-lp:hover {
  filter: brightness(1.07) !important;
  box-shadow:
    calc(var(--orange-brut-depth) + 2px) calc(var(--orange-brut-depth) + 2px) 0 var(--orange-brut-chad),
    var(--orange-brut-glow) !important;
}

/* Ledger Cases — coluna do CTA com magnetic-wrap */
.magnetic-wrap.cs2-ledger__cta-wrap {
  flex: none;
  display: flex;
  align-items: stretch;
  padding: 0;
  margin: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.magnetic-wrap.cs2-ledger__cta-wrap .cs2-ledger__cta {
  max-width: none;
  border-left: none !important;
  align-self: stretch;
  padding: 18px 28px !important;
}
@media (max-width: 1080px) {
  .magnetic-wrap.cs2-ledger__cta-wrap {
    width: 100%;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .magnetic-wrap.cs2-ledger__cta-wrap .cs2-ledger__cta {
    width: 100%;
    justify-content: center !important;
  }
}

/* CTAs magnéticos: hover translateY fica com o JS §14e / .magnetic-wrap */
.cs2-headlink:hover,
.cs2-ledger__cta:hover,
.proof__roster-cta:hover,
.cs-cta:hover,
.signup-strip__btn:hover,
.psc-card-cta:hover,
.spec-coverage__cta:hover,
.cases-portfolio__cta:hover,
.sc-cta:hover .sc-cta__inner,
.pc-cta:hover .pc-cta__inner {
  transform: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §SPACE-2026  Ritmo vertical harmonizado — site inteiro
   Escala única via --space-* (definida em :root)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Seções principais de conteúdo */
body.dark-theme .cases,
body.dark-theme .cs2,
body.dark-theme .spec,
body.dark-theme .spec.spec--cockpit,
body.dark-theme .faq-section,
body.dark-theme .proof,
body.dark-theme .blog-sec,
body.dark-theme .clients-sec,
body.dark-theme .testimonials-sec,
body.dark-theme .pricing-sec,
body.dark-theme .compare-sec,
body.dark-theme .roi-calc-sec,
body.dark-theme .works-sec,
body.dark-theme .agenda-sec,
body.dark-theme .guarantee-sec,
body.dark-theme .founder-block,
body.dark-theme .techstack-sec,
body.dark-theme .ctaform,
html.cc-brut .cs2,
html.cc-brut .spec.spec--cockpit,
html.cc-brut .proof,
html.cc-brut .faq-section {
  padding-block: var(--space-sec) !important;
  padding-inline: 0;
}

/* Faixas compactas (números, mini CTAs) */
body.dark-theme .stats-strip,
html.cc-brut .stats-strip {
  padding-block: var(--space-sec-sm) !important;
}

/* Processo — header + respiro inferior */
body.dark-theme .proc,
html.cc-brut .proc {
  padding-bottom: var(--space-sec) !important;
}

/* Diagnóstico — só fecha com respiro (scroll horizontal interno) */
body.dark-theme .probsol,
html.cc-brut .probsol {
  padding-bottom: var(--space-sec-md) !important;
}

/* Cabeçalhos internos — evita empilhar padding duplo com o da seção */
.cs2-head {
  padding-top: var(--space-head-in) !important;
  padding-bottom: var(--space-block) !important;
}
.proof__head {
  padding-top: var(--space-head-in) !important;
  margin-bottom: var(--space-block) !important;
}
.proof__board { margin-bottom: var(--space-block) !important; }
.proof__quotes { margin-bottom: var(--space-block) !important; }

/* Gaps internos recorrentes */
.cs2-mids { gap: var(--space-gap) !important; margin-bottom: var(--space-gap) !important; }
.cs2-grid { gap: var(--space-gap) !important; margin-bottom: var(--space-block) !important; }
.cs2-hero { margin-bottom: var(--space-gap) !important; }
.faq-grid { gap: var(--space-block) !important; }
.signup-strip__grid { gap: var(--space-gap) !important; }

/* Área do Cliente — faixa compacta + respiro entre seções vizinhas */
.signup-strip {
  padding-block: var(--space-sec-sm) !important;
}
.cs2 + .signup-strip {
  margin-top: var(--space-sec-md) !important;
  margin-bottom: var(--space-sec) !important;
}
.signup-strip + .spec {
  margin-top: var(--space-sec) !important;
}
.proc + .signup-strip {
  margin-top: var(--space-sec) !important;
  margin-bottom: var(--space-sec-md) !important;
}
.signup-strip + .proof,
.signup-strip + .faq-section,
.signup-strip + .testimonials-sec {
  margin-top: var(--space-sec-md) !important;
}

/* Páginas internas — seções cockpit com padding só embaixo */
body.dark-theme .cases.cases--cockpit,
body.dark-theme .clients-sec.clients-sec--cockpit,
body.dark-theme .testimonials-sec,
body.dark-theme .guarantee-sec,
body.dark-theme .pricing-sec {
  padding-block: var(--space-sec) !important;
}

.footer.footer--cockpit .footer-hero {
  padding-top: var(--space-sec-md) !important;
  padding-bottom: var(--space-block) !important;
}
.spec-coverage {
  margin-top: var(--space-gap) !important;
}

@media (max-width: 768px) {
  :root {
    --gut:           clamp(16px, 4.5vw, 22px);
    --space-sec:     clamp(56px, 14vw, 80px);
    --space-sec-md:  clamp(48px, 12vw, 72px);
    --space-sec-sm:  clamp(36px, 9vw, 52px);
    --space-head-in: clamp(28px, 6vw, 40px);
    --space-block:   clamp(24px, 5vw, 36px);
    --space-gap:     clamp(14px, 3.5vw, 20px);
  }
  .proc-header {
    padding-top: var(--space-sec-sm) !important;
    padding-bottom: var(--space-head-in) !important;
  }
}

/* §ORANGE-BRUT · reforço final — vence signup-strip e nav-account legados */
.signup-strip__btn,
.nav-account__btn--primary {
  border: 2px solid var(--orange-brut-edge) !important;
  box-shadow: var(--orange-brut-depth) var(--orange-brut-depth) 0 var(--orange-brut-chad) !important;
}
.signup-strip__btn:hover,
.nav-account__btn--primary:hover {
  filter: brightness(1.07) !important;
  box-shadow:
    calc(var(--orange-brut-depth) + 2px) calc(var(--orange-brut-depth) + 2px) 0 var(--orange-brut-chad),
    var(--orange-brut-glow) !important;
}
body.dark-theme .signup-strip__btn:hover,
body.dark-theme .nav-account__btn--primary:hover {
  filter: brightness(1.07) !important;
  box-shadow:
    calc(var(--orange-brut-depth) + 2px) calc(var(--orange-brut-depth) + 2px) 0 var(--orange-brut-chad),
    var(--orange-brut-glow) !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §PROC-3D  Processo · cards expandem para cima com perspectiva
   Complementa proc-fx.js — scanlines + sombra de profundidade
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.proc {
  overflow: visible !important;
}
.proc-grid {
  position: relative;
  perspective: 1400px;
  perspective-origin: 50% 88%;
  align-items: end;
  padding-top: clamp(32px, 5vw, 56px);
  overflow: visible;
}
.proc-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.07) 0 1px,
    transparent 1px 3px
  );
  mix-blend-mode: multiply;
  opacity: 0.55;
}
.proc-step {
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  z-index: 1;
  transition:
    transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.4s ease,
    background 0.28s ease;
  background-image: radial-gradient(
    280px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.14),
    transparent 62%
  );
}
.proc-step::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.09) 0 1px,
    transparent 1px 4px
  );
  background-size: 100% 4px;
  animation: proc-scan-drift 5s linear infinite;
}
@keyframes proc-scan-drift {
  from { background-position: 0 0; }
  to { background-position: 0 48px; }
}
.proc-step.is-lifted::after {
  opacity: 0.5;
}
.proc-step.is-lifted,
.proc-step:hover {
  z-index: 12;
  overflow: visible;
  background-color: #b3240c;
  box-shadow:
    0 -32px 56px rgba(0, 0, 0, 0.38),
    0 28px 52px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.proc-step.is-lifted .proc-step__ghost,
.proc-step:hover .proc-step__ghost {
  color: rgba(255, 255, 255, 0.075);
  transform: translateZ(12px) scale(1.04);
  transition: color 0.3s ease, transform 0.45s ease;
}
.proc-step.is-lifted .proc-stamp,
.proc-step:hover .proc-stamp {
  transform: scale(1.08) translateZ(16px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
.proc-step.is-lifted .proc-step__title,
.proc-step.is-lifted .proc-step__desc,
.proc-step.is-lifted .proc-bar {
  transform: translateZ(8px);
}
@media (max-width: 900px) {
  .proc-grid {
    perspective: none;
    padding-top: 0;
  }
  .proc-step.is-lifted {
    transform: translateY(-8px) !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .proc-step.is-lifted {
    transform: translateY(-10px) !important;
  }
  .proc-step.is-lifted .proc-stamp {
    transform: scale(1.04) !important;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §PROBSOL-3D  Diagnóstico · mesma elevação 3D do Processo
   Complementa probsol-fx.js
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
html.cc-brut body .probsol .psc-rail-wrap {
  perspective: 1400px;
  perspective-origin: 50% 88%;
}
html.cc-brut body .probsol .psc-rail .probsol-card {
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  position: relative;
  z-index: 1;
  transition:
    transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.4s ease,
    border-color 0.28s ease;
  background-image: radial-gradient(
    320px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.08),
    transparent 62%
  );
}
html.cc-brut body .probsol .psc-rail .probsol-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.05) 0 1px,
    transparent 1px 4px
  );
  background-size: 100% 4px;
  animation: proc-scan-drift 5s linear infinite;
}
html.cc-brut body .probsol .psc-rail .probsol-card.is-lifted {
  z-index: 14;
  overflow: visible !important;
  border-color: rgba(255, 61, 20, 0.38) !important;
  box-shadow:
    0 -32px 56px rgba(0, 0, 0, 0.48),
    0 28px 52px rgba(0, 0, 0, 0.52),
    9px 9px 0 0 #fff !important;
}
html.cc-brut body .probsol .psc-rail .probsol-card.is-lifted::before {
  opacity: 0.42;
}
html.cc-brut body .probsol .psc-rail .probsol-card.is-lifted .psc-icon {
  transform: translateZ(12px) scale(1.06);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
html.cc-brut body .probsol .psc-rail .probsol-card.is-lifted .psc-hud,
html.cc-brut body .probsol .psc-rail .probsol-card.is-lifted .psc-body {
  transform: translateZ(6px);
}
@media (min-width: 769px) {
  html.cc-brut body .probsol .psc-stage {
    overflow: visible !important;
  }
}
@media (max-width: 768px) {
  html.cc-brut body .probsol .psc-rail .probsol-card.is-lifted {
    transform: translateY(-8px) !important;
  }
  html.cc-brut body .probsol .psc-rail .probsol-card::before {
    animation: none !important;
    opacity: 0 !important;
  }
  html.cc-brut body .probsol .psc-rail .probsol-card.is-lifted::before {
    opacity: 0.16 !important;
  }
  html.cc-brut body .probsol .psc-rail .probsol-card {
    background-image: radial-gradient(
      200px circle at var(--mx, 50%) var(--my, 50%),
      rgba(255, 61, 20, 0.07),
      transparent 62%
    ) !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  html.cc-brut body .probsol .psc-rail .probsol-card.is-lifted {
    transform: translateY(-10px) !important;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §CS2-3D  Cases · repouso sutil + lift no hover (cases-fx.js)
   Mesma linguagem de §PROC-3D / §PROBSOL-3D
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
html.cc-brut body .cs2 .container {
  overflow: visible;
}
html.cc-brut body .cs2 .cs2-mids,
html.cc-brut body .cs2 .cs2-grid {
  perspective: 1400px;
  perspective-origin: 50% 88%;
  padding-top: clamp(8px, 1.2vw, 16px);
}
html.cc-brut body .cs2 .cs2-hero {
  perspective: 1400px;
  perspective-origin: 50% 88%;
  margin-top: clamp(8px, 1.2vw, 16px);
  transform: perspective(960px) rotateX(1.2deg) translateZ(12px);
}
html.cc-brut body .cs2 .cs2-card {
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  z-index: 1;
  transform: perspective(960px) rotateX(1.6deg) translateZ(8px);
  transition:
    transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.4s ease,
    border-color 0.28s ease !important;
  background-image:
    radial-gradient(320px circle at var(--mx, 50%) var(--my, 72%),
      rgba(255, 61, 20, 0.07),
      transparent 62%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.03), transparent 42%) !important;
  box-shadow:
    0 14px 36px -14px rgba(0, 0, 0, 0.55),
    0 2px 0 rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}
html.cc-brut body .cs2 .cs2-mids .cs2-card:first-child {
  transform: perspective(960px) rotateX(1.6deg) rotateY(-0.8deg) translateZ(10px);
}
html.cc-brut body .cs2 .cs2-mids .cs2-card:last-child {
  transform: perspective(960px) rotateX(1.6deg) rotateY(0.8deg) translateZ(10px);
}
html.cc-brut body .cs2 .cs2-grid .cs2-card:nth-child(odd) {
  transform: perspective(960px) rotateX(1.4deg) rotateY(-0.5deg) translateZ(6px);
}
html.cc-brut body .cs2 .cs2-grid .cs2-card:nth-child(even) {
  transform: perspective(960px) rotateX(1.4deg) rotateY(0.5deg) translateZ(6px);
}
html.cc-brut body .cs2 .cs2-card::after {
  content: '';
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.04) 0 1px,
    transparent 1px 4px
  );
  background-size: 100% 4px;
  animation: proc-scan-drift 5s linear infinite;
}
html.cc-brut body .cs2 .cs2-card.is-lifted,
html.cc-brut body .cs2 .cs2-card:hover {
  z-index: 14;
  overflow: visible !important;
  border-color: rgba(255, 61, 20, 0.38) !important;
  background-image:
    radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%),
      rgba(255, 61, 20, 0.14),
      transparent 62%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.05), transparent 42%) !important;
  box-shadow:
    0 -32px 56px rgba(0, 0, 0, 0.45),
    0 28px 52px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}
html.cc-brut body .cs2 .cs2-card.is-lifted::after {
  opacity: 0.38;
}
html.cc-brut body .cs2 .cs2-card.is-lifted .cs2-name,
html.cc-brut body .cs2 .cs2-card.is-lifted .cs2-gauge,
html.cc-brut body .cs2 .cs2-card.is-lifted .cs2-meta {
  transform: translateZ(8px);
}
html.cc-brut body .cs2 .cs2-card.is-lifted .cs2-gauge__val {
  text-shadow: 0 0 32px rgba(43, 213, 118, 0.45);
}
@media (max-width: 720px) {
  html.cc-brut body .cs2 .cs2-mids,
  html.cc-brut body .cs2 .cs2-grid,
  html.cc-brut body .cs2 .cs2-hero {
    perspective: none;
    padding-top: 0;
    margin-top: 0;
  }
  html.cc-brut body .cs2 .cs2-card {
    transform: none;
  }
  html.cc-brut body .cs2 .cs2-card.is-lifted {
    transform: translateY(-8px) !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  html.cc-brut body .cs2 .cs2-card {
    transform: none;
  }
  html.cc-brut body .cs2 .cs2-card.is-lifted {
    transform: translateY(-10px) !important;
  }
  html.cc-brut body .cs2 .cs2-card::after {
    animation: none;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §SPEC-3D  Especialidades · pilha de camadas (exclusivo)
   Repouso: vidro empilhado · Hover: expande em Z + scale (spec-fx.js)
   Diferente das outras seções (lift para cima)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.spec.spec--cockpit .spec-list {
  perspective: 1500px;
  perspective-origin: 50% 42%;
  overflow: visible;
}
.spec.spec--cockpit .spec-card--cockpit {
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  overflow: visible !important;
  z-index: 1;
  transition:
    transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.4s ease,
    border-color 0.28s ease !important;
  transform: perspective(980px) rotateX(2.2deg) scale(0.994);
  background-image: radial-gradient(
    340px circle at var(--mx, 50%) var(--my, 55%),
    rgba(255, 61, 20, 0.09),
    transparent 62%
  );
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}
.spec.spec--cockpit .spec-list .spec-card--cockpit:nth-child(1),
.spec.spec--cockpit .spec-slider__track .spec-card--cockpit:nth-child(4n+1) {
  transform: perspective(980px) rotateX(2.2deg) rotateY(-1.2deg) scale(0.994);
}
.spec.spec--cockpit .spec-list .spec-card--cockpit:nth-child(2),
.spec.spec--cockpit .spec-slider__track .spec-card--cockpit:nth-child(4n+2) {
  transform: perspective(980px) rotateX(2.4deg) rotateY(0deg) scale(0.994);
}
.spec.spec--cockpit .spec-list .spec-card--cockpit:nth-child(3),
.spec.spec--cockpit .spec-slider__track .spec-card--cockpit:nth-child(4n+3) {
  transform: perspective(980px) rotateX(2.2deg) rotateY(1.2deg) scale(0.994);
}
.spec.spec--cockpit .spec-slider__track .spec-card--cockpit:nth-child(4n) {
  transform: perspective(980px) rotateX(2.3deg) rotateY(1.4deg) scale(0.994);
}

/* Camadas internas — repouso empilhado */
.spec.spec--cockpit .spec-card--cockpit .sc-head,
.spec.spec--cockpit .spec-card--cockpit .sc-specs,
.spec.spec--cockpit .spec-card--cockpit .sc-tags,
.spec.spec--cockpit .spec-card--cockpit .sc-cta {
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s ease;
  position: relative;
}
.spec.spec--cockpit .spec-card--cockpit .sc-head {
  transform: translate3d(0, 0, 10px);
  box-shadow: 0 6px 14px -8px rgba(0, 0, 0, 0.45);
}
.spec.spec--cockpit .spec-card--cockpit .sc-specs {
  transform: translate3d(0, 0, 22px);
  box-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.07),
    0 8px 18px -10px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.015);
}
.spec.spec--cockpit .spec-card--cockpit .sc-tags {
  transform: translate3d(0, 0, 34px);
  box-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.06),
    0 6px 14px -8px rgba(0, 0, 0, 0.45);
}
.spec.spec--cockpit .spec-card--cockpit .sc-cta {
  transform: translate3d(0, 0, 48px);
  transform-style: preserve-3d;
  margin-top: 4px;
  box-shadow:
    0 10px 22px -8px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 61, 20, 0.18);
}
/* Botão em 3 camadas visíveis */
.spec.spec--cockpit .spec-card--cockpit .sc-cta::before {
  content: '';
  display: block !important;
  position: absolute;
  inset: 5px 5px -5px -5px;
  z-index: 0;
  pointer-events: none;
  background: rgba(255, 61, 20, 0.14);
  border: 1px solid rgba(255, 61, 20, 0.28);
  transform: translate3d(0, 0, -14px);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.spec.spec--cockpit .spec-card--cockpit .sc-cta__inner {
  position: relative;
  z-index: 2;
  transform: translate3d(0, 0, 6px);
  background: #031152;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.35);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.spec.spec--cockpit .spec-card--cockpit .sc-cta__meta {
  position: relative;
  z-index: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hover — holograma expande (centro, não sobe) */
.spec.spec--cockpit .spec-card--cockpit.is-stack-active {
  z-index: 24;
  border-color: rgba(255, 61, 20, 0.48) !important;
  box-shadow:
    0 36px 72px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(255, 61, 20, 0.12),
    0 0 0 1px rgba(255, 61, 20, 0.28) !important;
  background-image: radial-gradient(
    380px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 61, 20, 0.16),
    transparent 58%
  ) !important;
}
.spec.spec--cockpit .spec-card--cockpit.is-stack-active .sc-bracket {
  opacity: 1;
  transform: translateZ(120px);
}
.spec.spec--cockpit .spec-card--cockpit.is-stack-active .sc-cta::before {
  transform: translate3d(0, 0, -28px);
  background: rgba(255, 61, 20, 0.22);
}
.spec.spec--cockpit .spec-card--cockpit.is-stack-active .sc-cta:hover {
  background: var(--bg-surface-alt) !important;
}
.spec.spec--cockpit .spec-card--cockpit.is-stack-active .sc-cta:hover .sc-cta__inner {
  background: #051d6e !important;
}

/* Bordas de “lâmina” entre camadas */
.spec.spec--cockpit .spec-card--cockpit .sc-specs::before,
.spec.spec--cockpit .spec-card--cockpit .sc-tags::before {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  top: -2px;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 61, 20, 0.45), rgba(255, 255, 255, 0.12));
  opacity: 0.55;
  transform: translateZ(1px);
}
.spec.spec--cockpit .spec-card--cockpit.is-stack-active .sc-specs::before,
.spec.spec--cockpit .spec-card--cockpit.is-stack-active .sc-tags::before {
  opacity: 0.85;
}

html.cc-brut body.dark-theme .spec.spec--cockpit .spec-card--cockpit {
  animation: none !important;
  clip-path: none !important;
}

/* Neutraliza hover legado (translateY) — stack 3D assume no hover */
.spec.spec--cockpit .spec-card--cockpit:hover:not(.is-stack-active) {
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 61, 20, 0.2) !important;
  border-color: rgba(255, 61, 20, 0.38) !important;
}
.spec.spec--cockpit .spec-list .spec-card--cockpit:nth-child(1):hover:not(.is-stack-active),
.spec.spec--cockpit .spec-slider__track .spec-card--cockpit:nth-child(4n+1):hover:not(.is-stack-active) {
  transform: perspective(980px) rotateX(2.2deg) rotateY(-1.2deg) scale(0.994) !important;
}
.spec.spec--cockpit .spec-list .spec-card--cockpit:nth-child(2):hover:not(.is-stack-active),
.spec.spec--cockpit .spec-slider__track .spec-card--cockpit:nth-child(4n+2):hover:not(.is-stack-active) {
  transform: perspective(980px) rotateX(2.4deg) rotateY(0deg) scale(0.994) !important;
}
.spec.spec--cockpit .spec-list .spec-card--cockpit:nth-child(3):hover:not(.is-stack-active),
.spec.spec--cockpit .spec-slider__track .spec-card--cockpit:nth-child(4n+3):hover:not(.is-stack-active) {
  transform: perspective(980px) rotateX(2.2deg) rotateY(1.2deg) scale(0.994) !important;
}
.spec.spec--cockpit .spec-slider__track .spec-card--cockpit:nth-child(4n):hover:not(.is-stack-active) {
  transform: perspective(980px) rotateX(2.3deg) rotateY(1.4deg) scale(0.994) !important;
}

@media (max-width: 1100px) {
  .spec.spec--cockpit .spec-list {
    perspective: none;
  }
  .spec.spec--cockpit .spec-card--cockpit,
  .spec.spec--cockpit .spec-list .spec-card--cockpit:nth-child(n) {
    transform: none;
  }
  .spec.spec--cockpit .spec-card--cockpit .sc-head,
  .spec.spec--cockpit .spec-card--cockpit .sc-specs,
  .spec.spec--cockpit .spec-card--cockpit .sc-tags,
  .spec.spec--cockpit .spec-card--cockpit .sc-cta {
    transform: none;
    box-shadow: none;
  }
  .spec.spec--cockpit .spec-card--cockpit.is-stack-active {
    transform: scale(1.02) !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .spec.spec--cockpit .spec-card--cockpit,
  .spec.spec--cockpit .spec-list .spec-card--cockpit:nth-child(n) {
    transform: none !important;
  }
  .spec.spec--cockpit .spec-card--cockpit .sc-head,
  .spec.spec--cockpit .spec-card--cockpit .sc-specs,
  .spec.spec--cockpit .spec-card--cockpit .sc-tags,
  .spec.spec--cockpit .spec-card--cockpit .sc-cta,
  .spec.spec--cockpit .spec-card--cockpit .sc-cta__inner,
  .spec.spec--cockpit .spec-card--cockpit .sc-cta__meta {
    transform: none !important;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §SPEC-SLIDER  Especialidades · marquee infinito 3D
   Complementa spec-slider.js — palco inclinado + fade lateral
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.spec.spec--cockpit .spec-slider {
  position: relative;
  max-width: none;
  margin: var(--space-gap) 0 var(--space-block);
  padding-block: clamp(20px, 3vw, 40px);
  overflow: hidden;
}
.spec.spec--cockpit .spec-slider__viewport {
  perspective: 1600px;
  perspective-origin: 50% 38%;
  transform-style: preserve-3d;
  transform: rotateX(4.5deg);
  overflow: visible;
  padding-block: clamp(12px, 2vw, 28px);
}
.spec.spec--cockpit .spec-slider__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: var(--space-gap);
  width: max-content;
  transform-style: preserve-3d;
  will-change: transform;
  --spec-set-w: 1600px;
  --spec-marquee-dur: 42s;
}
@keyframes spec-slider-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--spec-set-w)), 0, 0); }
}
.spec.spec--cockpit .spec-slider__track--run {
  animation: spec-slider-marquee var(--spec-marquee-dur) linear infinite;
}
.spec.spec--cockpit .spec-slider.is-paused .spec-slider__track {
  animation-play-state: paused;
}
.spec.spec--cockpit .spec-slider .spec-card--cockpit {
  flex: 0 0 min(372px, 82vw);
  width: min(372px, 82vw);
  min-height: 520px;
  margin: 0;
}
.spec.spec--cockpit .spec-slider__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 8vw, 120px);
  z-index: 8;
  pointer-events: none;
}
.spec.spec--cockpit .spec-slider__fade--l {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 7, 14, 0.95) 15%, transparent);
}
.spec.spec--cockpit .spec-slider__fade--r {
  right: 0;
  background: linear-gradient(270deg, rgba(5, 7, 14, 0.95) 15%, transparent);
}
.spec.spec--cockpit .spec-card--clone .sc-cta {
  pointer-events: none;
}

@media (max-width: 1100px) {
  .spec.spec--cockpit .spec-slider__viewport {
    transform: none;
    perspective: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 61, 20, 0.35) transparent;
    padding-inline: var(--gut);
  }
  .spec.spec--cockpit .spec-slider__track {
    padding-inline: 0;
  }
  .spec.spec--cockpit .spec-slider .spec-card--cockpit {
    scroll-snap-align: center;
  }
  .spec.spec--cockpit .spec-slider__fade {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .spec.spec--cockpit .spec-slider__track--run {
    animation: none !important;
  }
  .spec.spec--cockpit .spec-slider__viewport {
    transform: none;
    overflow-x: auto;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §PROMPT-BRUT  Dock de prompt IA · fixo, neo-brutalista
   prompt-bar.js — sem seletor de modelo
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cc-prompt-dock {
  position: fixed;
  left: 50%;
  bottom: clamp(16px, 2.4vw, 28px);
  z-index: 9995;
  width: min(720px, calc(100vw - var(--gut) * 2));
  transform: translate(-50%, 0);
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.38s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.42s cubic-bezier(0.23, 1, 0.32, 1);
}
.cc-prompt-dock.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.cc-prompt-dock.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(100% + 28px));
}
.cc-prompt-dock__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cc-prompt-dock__tag {
  align-self: flex-start;
  margin-left: 4px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 61, 20, 0.85);
}
.cc-prompt {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  gap: 0;
  background: rgba(8, 10, 20, 0.96);
  border: 2px solid var(--orange-brut-edge);
  box-shadow: var(--orange-brut-depth) var(--orange-brut-depth) 0 var(--orange-brut-chad);
  min-height: 52px;
}
.cc-prompt--with-mascot {
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 0 10px;
}
.cc-prompt__attach,
.cc-prompt__send {
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  padding: 0;
}
.cc-prompt__attach {
  width: 48px;
  border-right: 2px solid rgba(255, 255, 255, 0.1);
}
.cc-prompt__attach:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.cc-prompt__send {
  width: 56px;
  background: var(--cor-secundaria);
  color: #fff;
  border-left: 2px solid var(--orange-brut-edge);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.cc-prompt__send:hover {
  filter: brightness(1.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 18px rgba(255, 61, 20, 0.45);
}
.cc-prompt__send svg,
.cc-prompt__attach svg {
  width: 18px;
  height: 18px;
}
.cc-prompt__field {
  display: flex;
  align-items: center;
  min-width: 0;
}
.cc-prompt__input {
  width: 100%;
  border: none;
  background: transparent;
  color: #fff;
  font-family: var(--fonte-corpo);
  font-size: 14px;
  line-height: 1.4;
  padding: 14px 16px;
  outline: none;
}
.cc-prompt__input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}
.cc-prompt__input:focus {
  outline: none;
}
.cc-prompt:focus-within {
  border-color: rgba(255, 61, 20, 0.65);
  box-shadow:
    calc(var(--orange-brut-depth) + 1px) calc(var(--orange-brut-depth) + 1px) 0 var(--orange-brut-chad),
    0 0 24px rgba(255, 61, 20, 0.22);
}

@media (max-width: 640px) {
  .cc-prompt-dock {
    width: calc(100vw - var(--gut) * 2);
    bottom: 14px;
  }
  .cc-prompt__attach { width: 42px; }
  .cc-prompt__send { width: 50px; }
  .cc-prompt__input {
    font-size: 13px;
    padding: 12px 10px;
  }
  #back-to-top.visible {
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }
}
@media (prefers-reduced-motion: reduce) {
  .cc-prompt-dock {
    transition: opacity 0.2s ease;
  }
  .cc-prompt-dock.is-hidden {
    transform: translate(-50%, 0);
    opacity: 0;
  }
}
@media (max-width: 950px) {
  body.menu-open .cc-prompt-dock {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   §HOME-MOBILE  Auditoria home · tipografia, ritmo e scroll
   Foco <768px — não altera desktop
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
  html { overflow-x: clip; }
  body {
    overflow-x: clip;
    cursor: auto !important;
  }
  a, button, .btn-nav-cta, .magnetic-btn {
    cursor: pointer !important;
  }
  .custom-cursor,
  #custom-cursor {
    display: none !important;
  }

  /* Ritmo vertical das seções principais */
  html.cc-brut .cs2,
  html.cc-brut .spec.spec--cockpit,
  html.cc-brut .proof,
  html.cc-brut .faq-section {
    padding-block: var(--space-sec-sm) !important;
  }
  html.cc-brut .stats-strip {
    padding-block: clamp(24px, 6vw, 36px) !important;
  }

  /* Hierarquia tipográfica — títulos de seção */
  .sec-head {
    margin-bottom: var(--space-block) !important;
    gap: 16px !important;
  }
  .sec-head__title,
  .spec-header__title,
  .proc-header__title,
  html.cc-brut body .cs2-title,
  html.cc-brut body .proof__title {
    font-size: clamp(1.65rem, 7.2vw, 2.25rem) !important;
    letter-spacing: -0.03em !important;
    line-height: 1.04 !important;
  }
  html.cc-brut body .probsol .sec-head__title {
    font-size: clamp(1.7rem, 7.5vw, 2.3rem) !important;
  }
  .sec-head__desc,
  .spec-header__sub,
  .proc-header__sub,
  html.cc-brut body .cs2-sub,
  html.cc-brut body .proof__desc {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  /* Hero mobile — 1ª dobra: título + subtítulo + CTA + prompt dock (herofit.js) */
  :root {
    --cc-prompt-dock-reserve: calc(88px + env(safe-area-inset-bottom, 0px));
    --cc-nav-height: 56px;
  }
  .hero-v3 {
    min-height: calc(100svh - var(--cc-nav-height)) !important;
    height: calc(100svh - var(--cc-nav-height)) !important;
    max-height: calc(100svh - var(--cc-nav-height)) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    padding: 0 !important;
    overflow: hidden !important;
    overflow-x: clip !important;
    box-sizing: border-box !important;
  }
  .hero-container-v3 {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 var(--gut) var(--cc-prompt-dock-reserve) !important;
    box-sizing: border-box !important;
    gap: 8px !important;
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: left !important;
  }
  .hero-title-v3,
  #hero-typewriter {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    box-sizing: border-box !important;
    min-height: 0 !important;
    flex: 0 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
  #hero-typewriter .hero-line {
    letter-spacing: -0.045em !important;
  }
  html.cc-brut body .hero-title-v3 .hero-line.accent,
  html.cc-brut body .hero-title-v3 .accent {
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.55) !important;
  }
  /* Subtítulo + CTA — na 1ª dobra, abaixo do título */
  .hero-sub-grid {
    display: flex !important;
    flex-direction: column !important;
    flex: 0 0 auto !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    border-top: none !important;
  }
  html.cc-brut body .hero-sub-grid {
    padding: 0 !important;
    gap: 10px !important;
    border-top: none !important;
  }
  .hero-desc-v3,
  html.cc-brut body .hero-desc-v3 {
    order: 1 !important;
    font-family: 'DM Mono', 'Courier New', monospace !important;
    font-size: clamp(14px, 3.8vw, 15px) !important;
    line-height: 1.45 !important;
    max-width: none !important;
    width: 100% !important;
    opacity: 0.82 !important;
    margin: 0 !important;
    display: block !important;
    overflow: visible !important;
    overflow-wrap: normal !important;
    word-wrap: normal !important;
    text-align: left !important;
    box-sizing: border-box !important;
  }
  .hero-action-v3 {
    order: 2 !important;
  }
  .hero-scroll-cta {
    display: none !important;
  }
  .hero-v3 .btn-nav-cta.btn-hero,
  html.cc-brut body .hero-v3 .btn-nav-cta.btn-hero {
    display: inline-flex !important;
    align-items: center !important;
    align-self: flex-start !important;
    width: auto !important;
    max-width: min(58vw, 220px) !important;
    justify-content: flex-start !important;
    padding: 11px 18px !important;
    font-size: 11px !important;
    letter-spacing: 0.08em !important;
    border: 2px solid var(--orange-brut-edge, #05070f) !important;
    border-radius: 0 !important;
    box-shadow: 4px 4px 0 var(--orange-brut-chad, #fff) !important;
  }
  .hero-v3 .btn-nav-cta.btn-hero .btn-inner svg,
  .hero-v3 .btn-nav-cta.btn-hero .btn-inner i,
  html.cc-brut body .hero-v3 .btn-nav-cta.btn-hero .btn-inner svg,
  html.cc-brut body .hero-v3 .btn-nav-cta.btn-hero .btn-inner i {
    width: 12px !important;
    height: 12px !important;
    margin-left: 6px !important;
  }
  .hero-v3 .btn-nav-cta.btn-hero:hover,
  html.cc-brut body .hero-v3 .btn-nav-cta.btn-hero:hover {
    box-shadow:
      5px 5px 0 var(--orange-brut-chad, #fff),
      var(--orange-brut-glow, 0 0 16px rgba(255, 61, 20, 0.45)) !important;
  }
  .hero-action-v3,
  .hero-action-v3 .magnetic-wrap {
    width: auto !important;
    max-width: 100% !important;
    align-self: flex-start !important;
    display: inline-block !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  /* HUD / decoração — fora da 1ª dobra */
  .hero-v3 .sf-crosshair,
  .hero-v3 .sf-telemetry,
  .hero-v3 .sf-radar-core,
  .hero-v3 .h26-edge,
  .hero-v3 .h26-scanbar {
    display: none !important;
  }

  /* Stats strip — números legíveis, menos padding */
  .stats-strip__item {
    padding: 22px 16px !important;
    gap: 10px !important;
  }
  .stats-strip__num {
    font-size: clamp(34px, 9.5vw, 46px) !important;
  }
  .stats-strip__suffix {
    font-size: clamp(16px, 4.5vw, 22px) !important;
  }
  .stats-strip__prefix {
    font-size: clamp(16px, 4vw, 20px) !important;
  }
  .stats-strip__label {
    font-size: 10px !important;
    letter-spacing: 1.2px !important;
    line-height: 1.45 !important;
  }

  /* Signup strip — faixa compacta */
  .signup-strip {
    padding-block: clamp(28px, 7vw, 44px) !important;
  }
  html.cc-brut .cs2 + .signup-strip {
    margin-top: var(--space-sec-sm) !important;
    margin-bottom: var(--space-sec-sm) !important;
  }
  .signup-strip + .spec,
  .proc + .signup-strip,
  .signup-strip + .proof,
  .signup-strip + .faq-section,
  .signup-strip + .testimonials-sec {
    margin-top: var(--space-sec-sm) !important;
  }
  .proc + .signup-strip {
    margin-bottom: var(--space-sec-sm) !important;
  }
  .signup-strip__grid {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .signup-strip__copy {
    min-width: 0 !important;
  }
  .signup-strip__title {
    font-size: clamp(17px, 4.8vw, 21px) !important;
  }
  .signup-strip__text {
    font-size: 13.5px !important;
  }
  .signup-strip__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .signup-strip__btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px !important;
  }

  /* Diagnóstico — rolagem vertical → trilho horizontal (probsol-fx.js) */
  html.cc-brut body .probsol {
    padding-bottom: var(--space-sec-sm) !important;
    overflow: visible !important;
  }
  html.cc-brut body .probsol .sec-head,
  html.cc-brut body .probsol .sec-head > div {
    text-align: left !important;
    align-items: flex-start !important;
  }
  html.cc-brut body .probsol .psc-stage {
    --psc-card-w: clamp(300px, 92vw, 360px);
    --psc-gap: 14px;
    position: sticky !important;
    top: 0;
    display: flex !important;
    align-items: center !important;
    height: min(90svh, 740px) !important;
    min-height: min(460px, 82svh) !important;
    max-height: 90svh !important;
    padding: 48px 0 28px !important;
    overflow: hidden !important;
    touch-action: pan-y;
    box-sizing: border-box;
  }
  html.cc-brut body .probsol .psc-rail-wrap {
    width: 100%;
    overflow: visible;
  }
  html.cc-brut body .probsol .psc-rail.probsol-grid {
    will-change: transform;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    max-width: none !important;
    padding: 0 var(--gut) !important;
    padding-right: max(var(--gut), calc(100vw - var(--psc-card-w) - var(--gut)));
    gap: var(--psc-gap) !important;
  }
  html.cc-brut body .probsol .psc-rail.probsol-grid .probsol-card {
    flex: 0 0 var(--psc-card-w) !important;
    width: var(--psc-card-w) !important;
    min-width: 300px !important;
    min-height: min(480px, 78svh) !important;
    opacity: 1 !important;
  }
  html.cc-brut body .probsol .probsol-grid {
    gap: 14px !important;
  }
  html.cc-brut body .probsol .psc-hud {
    padding: 12px 18px !important;
    gap: 8px !important;
  }
  html.cc-brut body .probsol .psc-hud__file {
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.72) !important;
    letter-spacing: 0.12em !important;
  }
  html.cc-brut body .probsol .psc-hud__status,
  html.cc-brut body .probsol .psc-hud__right {
    font-size: 11px !important;
  }
  html.cc-brut body .probsol .psc-col {
    padding: 20px 18px !important;
    gap: 16px !important;
  }
  html.cc-brut body .probsol .psc-card-v2 .psc-col__head {
    gap: 12px !important;
  }
  html.cc-brut body .probsol .psc-tag {
    font-size: 11px !important;
    letter-spacing: 0.14em !important;
    padding: 6px 12px !important;
  }
  html.cc-brut body .probsol .psc-problem__text {
    font-size: clamp(1.0625rem, 4.2vw, 1.125rem) !important;
    line-height: 1.5 !important;
    max-width: none !important;
    overflow-wrap: break-word !important;
  }
  html.cc-brut body .probsol .psc-solution__text {
    font-size: clamp(0.9375rem, 3.8vw, 1rem) !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.72) !important;
    max-width: none !important;
    overflow-wrap: break-word !important;
  }
  html.cc-brut body .probsol .psc-card-v2 .psc-note {
    font-size: 11px !important;
    color: rgba(255, 90, 54, 0.88) !important;
    letter-spacing: 0.1em !important;
  }
  html.cc-brut body .probsol .psc-card-v2 .psc-viz {
    max-width: none !important;
    padding: 14px 16px !important;
  }
  html.cc-brut body .probsol .psc-card-v2 .psc-viz__label {
    font-size: 10px !important;
    color: rgba(255, 255, 255, 0.58) !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 10px !important;
  }
  html.cc-brut body .probsol .psc-card-v2 .psc-kpis > div {
    padding: 10px 8px !important;
  }
  html.cc-brut body .probsol .psc-card-v2 .psc-kpis b {
    font-size: 1.2rem !important;
  }
  html.cc-brut body .probsol .psc-card-v2 .psc-kpis span {
    font-size: 10px !important;
    color: rgba(255, 255, 255, 0.58) !important;
    margin-top: 5px !important;
  }
  html.cc-brut body .probsol .psc-chips span {
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.78) !important;
    padding: 6px 10px !important;
  }
  html.cc-brut body .probsol .psc-metric__head span {
    font-size: 10px !important;
    color: rgba(255, 255, 255, 0.52) !important;
  }
  html.cc-brut body .probsol .psc-metric__head b {
    font-size: 1.15rem !important;
  }
  html.cc-brut body .probsol .psc-card-v2 .psc-gauge {
    width: 72px !important;
    height: 72px !important;
  }
  html.cc-brut body .probsol .psc-card-v2 .psc-gauge__val {
    font-size: 0.85rem !important;
  }
  html.cc-brut body .probsol .psc-bar span {
    font-size: 10px !important;
    color: rgba(255, 255, 255, 0.52) !important;
  }
  html.cc-brut body .probsol .psc-bar i {
    height: 4px !important;
  }
  html.cc-brut body .probsol .psc-metrics {
    gap: 12px !important;
    padding-top: 16px !important;
  }
  html.cc-brut body .probsol .psc-card-v2 .psc-metric__viz {
    gap: 16px !important;
  }
  html.cc-brut body .probsol .psc-card-cta {
    font-size: 11px !important;
    padding: 12px 16px !important;
  }
  html.cc-brut body .probsol .psc-ghost {
    font-size: clamp(3.5rem, 14vw, 4.5rem) !important;
    color: rgba(255, 255, 255, 0.025) !important;
  }
  html.cc-brut body .probsol .probsol-cta-bar {
    margin-top: 20px !important;
    margin-inline: var(--gut);
    padding: 18px 20px !important;
  }
  html.cc-brut body .probsol .probsol-cta-bar__text {
    font-size: clamp(0.92rem, 3.6vw, 1.05rem) !important;
  }

  /* Cases */
  html.cc-brut body .cs2-head {
    padding-top: var(--space-head-in) !important;
    padding-bottom: var(--space-gap) !important;
  }
  html.cc-brut body .cs2-hero {
    min-height: unset !important;
    margin-bottom: var(--space-gap) !important;
  }
  html.cc-brut body .cs2-mids .cs2-card,
  html.cc-brut body .cs2-grid .cs2-card {
    min-height: unset !important;
    padding: 20px 18px !important;
  }
  html.cc-brut body .cs2-hero .cs2-name {
    font-size: clamp(1.55rem, 6.8vw, 1.95rem) !important;
  }
  html.cc-brut body .cs2-mids .cs2-name {
    font-size: clamp(1.3rem, 5.2vw, 1.6rem) !important;
  }
  html.cc-brut body .cs2-grid .cs2-name {
    font-size: 1.15rem !important;
  }
  html.cc-brut body .cs2-desc,
  html.cc-brut body .cs2-grid .cs2-desc {
    font-size: 0.875rem !important;
    line-height: 1.58 !important;
  }
  html.cc-brut body .cs2-ghost {
    font-size: 3.8rem !important;
    bottom: -12px !important;
    opacity: 0.35 !important;
  }

  /* Processo */
  .proc-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }
  .proc-header__sub {
    text-align: left !important;
    max-width: none !important;
    font-size: 14px !important;
  }

  /* Serviços / Especialidades — cabeçalho à esquerda (não centralizado) */
  #servicos .spec-header,
  .spec.spec--cockpit .spec-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 14px !important;
  }
  #servicos .spec-header > div,
  #servicos .spec-header__label,
  #servicos .spec-header__title,
  .spec.spec--cockpit .spec-header__label,
  .spec.spec--cockpit .spec-header__title,
  .spec.spec--cockpit .spec-header__sub {
    text-align: left !important;
    align-self: flex-start !important;
    width: 100%;
    max-width: none !important;
  }
  .proc-step {
    min-height: unset !important;
    padding: 26px 18px 22px !important;
  }
  .proc-step__title {
    font-size: clamp(1rem, 4.2vw, 1.15rem) !important;
  }
  .proc-step__desc {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
  }

  /* Especialidades — cards menores, scroll horizontal contido */
  html.cc-brut body .spec.spec--cockpit .spec-slider {
    margin-block: var(--space-gap) !important;
    padding-block: 10px !important;
  }
  html.cc-brut body .spec.spec--cockpit .spec-slider .spec-card--cockpit {
    flex: 0 0 min(288px, calc(100vw - var(--gut) * 2 - 20px)) !important;
    width: min(288px, calc(100vw - var(--gut) * 2 - 20px)) !important;
    min-height: unset !important;
  }

  /* Scroll skew desligado — evita headers “tortos” no touch */
  .sec-head,
  .spec-header,
  .hero-container-v3 {
    transform: none !important;
  }

  /* Menu mobile */
  .mobile-menu {
    padding-top: calc(var(--nav-bar-height, 86px) + 16px);
  }
  .mobile-menu__inner {
    gap: 28px !important;
    padding: 8px var(--gut) 0 !important;
  }
  .mobile-menu__nav a {
    font-size: clamp(1.55rem, 7.5vw, 2.2rem) !important;
  }

  /* FAQ */
  .faq-question {
    font-size: 14px !important;
    padding: 18px 0 !important;
  }
  .faq-answer {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 480px) {
  .stats-strip__inner {
    grid-template-columns: 1fr 1fr !important;
  }
  .stats-strip__item {
    padding: 18px 14px !important;
  }
  .stats-strip__num {
    font-size: clamp(30px, 8.5vw, 40px) !important;
  }
}

