/* ============================================================
   GESTOR ESCOLTA — Site institucional
   Design system: defesa/tech premium · ciano + aço + cromado
   ============================================================ */

:root {
  /* Superfícies */
  --ink:      #070b13;   /* fundo escuro mais profundo  */
  --ink-2:    #0b111d;   /* seções escuras              */
  --ink-3:    #111a2b;   /* cards escuros               */
  --paper:    #ffffff;   /* fundo claro principal       */
  --paper-2:  #f4f7fb;   /* seções claras alternadas    */
  --paper-3:  #eaeff6;

  /* Marca — ciano elétrico + azul (circuitos do escudo) */
  --cyan:     #22d3ee;
  --cyan-br:  #5ee9ff;
  --cyan-dk:  #0aa9c7;
  --blue:     #2b8fe6;
  --blue-dk:  #1665c0;

  /* Texto */
  --t-light:  #eef3fa;   /* sobre escuro */
  --t-light-2:#9fb0c7;
  --t-light-3:#62748e;
  --t-dark:   #0d1726;   /* sobre claro  */
  --t-dark-2: #46586f;
  --t-dark-3: #7689a0;

  --line-light: rgba(255,255,255,.10);
  --line-dark:  rgba(13,23,38,.10);

  /* Gradientes */
  --grad-cyan: linear-gradient(135deg, #5ee9ff 0%, #22d3ee 40%, #2b8fe6 100%);
  --grad-steel: linear-gradient(180deg, #ffffff 0%, #cfd9e6 45%, #8595a8 55%, #e6edf5 100%);
  --grad-steel-dark: linear-gradient(180deg, #ffffff 0%, #d4deec 46%, #9fb0c6 54%, #eaf1fa 100%);
  --glow-cyan: 0 0 40px rgba(34,211,238,.45);

  --radius:   18px;
  --radius-sm:11px;
  --maxw: 1200px;

  --font:  "Manrope", system-ui, -apple-system, sans-serif;
  --display: "Sora", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--t-dark);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
section { position: relative; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display);
  font-size: 12.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cyan-dk);
}
.eyebrow.on-dark { color: var(--cyan-br); }
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--grad-cyan);
}
h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }

/* Título metálico cromado */
.metal {
  background: var(--grad-steel-dark);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,.04);
}
.sec-light .metal, .sec-paper .metal {
  background: linear-gradient(180deg, #2a3a52 0%, #4a5f7e 50%, #16243a 100%);
  -webkit-background-clip: text; background-clip: text;
}
.cyan-text {
  background: var(--grad-cyan);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: transform .18s, box-shadow .18s, background .18s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad-cyan); color: #042b35;
  box-shadow: 0 10px 30px -8px rgba(34,211,238,.6), inset 0 1px 0 rgba(255,255,255,.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(34,211,238,.75), inset 0 1px 0 rgba(255,255,255,.5); }
.btn-ghost {
  background: rgba(255,255,255,.04); color: var(--t-light);
  border-color: rgba(255,255,255,.22); backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--cyan); color: #fff; transform: translateY(-2px); }
.btn-dark {
  background: var(--t-dark); color: #fff; border-color: var(--t-dark);
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(13,23,38,.5); }
.btn-lg { padding: 17px 34px; font-size: 16.5px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, border-color .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,12,20,.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: rgba(255,255,255,.08);
  box-shadow: 0 10px 40px -20px rgba(0,0,0,.8);
}
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 14px 28px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 50px; width: auto; margin: -6px 0; filter: drop-shadow(0 2px 10px rgba(34,211,238,.45)); }
.brand-tx { font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: .04em; line-height: 1; color: #fff; }
.brand-tx small { display: block; font-size: 8.5px; font-weight: 600; letter-spacing: .22em; color: var(--cyan-br); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--t-light-2);
  padding: 9px 15px; border-radius: 9px; transition: color .15s, background .15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-cta { display: flex; align-items: center; gap: 12px; margin-left: 8px; }
.nav-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 6px; }
.nav-toggle svg { width: 28px; height: 28px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--ink);
  color: var(--t-light);
  padding: 158px 0 90px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-bg .glow {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
}
.hero-bg .g1 { width: 620px; height: 620px; background: radial-gradient(circle, rgba(34,211,238,.4), transparent 65%); top: -180px; right: -120px; }
.hero-bg .g2 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(43,143,230,.35), transparent 65%); bottom: -200px; left: -120px; }
.hero-bg .grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.28);
  color: var(--cyan-br); font-size: 13px; font-weight: 600;
  padding: 7px 15px 7px 11px; border-radius: 100px; margin-bottom: 26px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(34,211,238,.25); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100%{ box-shadow:0 0 0 0 rgba(34,211,238,.4);} 50%{ box-shadow:0 0 0 6px rgba(34,211,238,0);} }

.hero h1 { font-size: clamp(38px, 5.2vw, 62px); margin-bottom: 24px; }
.hero h1 .line2 { display: block; }
.hero-sub { font-size: clamp(16px, 1.8vw, 19px); color: var(--t-light-2); max-width: 540px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 22px; margin-top: 40px; flex-wrap: wrap; }
.hero-trust .ht { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--t-light-2); }
.hero-trust .ht svg { width: 17px; height: 17px; color: var(--cyan); }

/* Hero visual — escudo + janela de painel */
.hero-visual { position: relative; }
.hero-logo {
  width: 100%; max-width: 560px; margin: 0 auto;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,.55));
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }

/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-strip { background: var(--ink-2); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); padding: 40px 0; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -12px; top: 12%; height: 76%; width: 1px; background: var(--line-light); }
.stat .num { font-family: var(--display); font-weight: 700; font-size: clamp(30px, 4vw, 44px); line-height: 1; }
.stat .lbl { font-size: 13.5px; color: var(--t-light-2); margin-top: 8px; }

/* ============================================================
   SECTIONS genéricas
   ============================================================ */
.sec { padding: 100px 0; }
.sec-dark { background: var(--ink-2); color: var(--t-light); }
.sec-darker { background: var(--ink); color: var(--t-light); }
.sec-light { background: var(--paper); color: var(--t-dark); }
.sec-paper { background: var(--paper-2); color: var(--t-dark); }
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; }
.sec-head p { font-size: 18px; color: var(--t-dark-2); }
.sec-dark .sec-head p, .sec-darker .sec-head p { color: var(--t-light-2); }

/* ============================================================
   FEATURE BLOCKS (alternados)
   ============================================================ */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature + .feature { margin-top: 96px; }
.feature.reverse .feat-media { order: 2; }
.feat-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan-dk); margin-bottom: 16px;
}
.sec-dark .feat-tag, .sec-darker .feat-tag { color: var(--cyan-br); }
.feature h3 { font-size: clamp(24px, 3vw, 33px); margin-bottom: 16px; }
.feature p.lead { font-size: 17px; color: var(--t-dark-2); margin-bottom: 22px; }
.sec-dark .feature p.lead, .sec-darker .feature p.lead { color: var(--t-light-2); }
.feat-list { display: flex; flex-direction: column; gap: 14px; }
.feat-list li { display: flex; gap: 13px; list-style: none; font-size: 15.5px; }
.feat-list .ic {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px;
  display: grid; place-items: center; margin-top: 1px;
  background: rgba(34,211,238,.12); color: var(--cyan-dk); border: 1px solid rgba(34,211,238,.3);
}
.sec-dark .feat-list .ic, .sec-darker .feat-list .ic { color: var(--cyan-br); }
.feat-list .ic svg { width: 15px; height: 15px; }
.feat-list b { font-weight: 700; }
.feat-list span { color: var(--t-dark-2); }
.sec-dark .feat-list span, .sec-darker .feat-list span { color: var(--t-light-2); }

/* Mock window (painel) */
.mock {
  border-radius: 14px; overflow: hidden;
  background: #0b1322; border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.7), 0 0 0 1px rgba(34,211,238,.08);
}
.mock-bar { display: flex; align-items: center; gap: 8px; padding: 11px 15px; background: #0e1726; border-bottom: 1px solid rgba(255,255,255,.07); }
.mock-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.mock-bar .dot.r { background: #ff5f57; } .mock-bar .dot.y { background: #febc2e; } .mock-bar .dot.g { background: #28c840; }
.mock-bar .url { margin-left: 12px; font-size: 11.5px; color: var(--t-light-3); font-family: var(--display); }
.mock-body { padding: 18px; }
.feat-media .glow-wrap { position: relative; }
.feat-media .glow-wrap::before {
  content: ""; position: absolute; inset: -30px; z-index: 0;
  background: radial-gradient(ellipse at center, rgba(34,211,238,.22), transparent 70%); filter: blur(20px);
}
.feat-media .mock, .feat-media img.shot { position: relative; z-index: 1; }

/* Mini dashboard interno do mock */
.md-row { display: flex; gap: 12px; margin-bottom: 12px; }
.md-card { flex: 1; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 13px; }
.md-card .k { font-size: 10.5px; color: var(--t-light-3); text-transform: uppercase; letter-spacing: .05em; }
.md-card .v { font-family: var(--display); font-weight: 700; font-size: 22px; color: #fff; margin-top: 5px; }
.md-card .v.cy { color: var(--cyan-br); }
.md-bars { display: flex; align-items: flex-end; gap: 7px; height: 96px; padding-top: 6px; }
.md-bars .bar { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--cyan), var(--blue)); opacity: .85; }
.md-line { height: 9px; border-radius: 5px; background: rgba(255,255,255,.07); margin-bottom: 9px; }
.md-line.w70 { width: 70%; } .md-line.w50 { width: 50%; } .md-line.w85 { width: 85%; }

/* ============================================================
   MÓDULOS GRID
   ============================================================ */
.mod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mod {
  background: var(--paper); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 28px; transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.sec-dark .mod, .sec-darker .mod { background: var(--ink-3); border-color: rgba(255,255,255,.08); }
.mod:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -24px rgba(13,23,38,.28); border-color: rgba(34,211,238,.45); }
.sec-dark .mod:hover, .sec-darker .mod:hover { box-shadow: 0 24px 50px -20px rgba(0,0,0,.6); }
.mod .micon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(34,211,238,.16), rgba(43,143,230,.16));
  border: 1px solid rgba(34,211,238,.3); color: var(--cyan-dk);
}
.sec-dark .mod .micon, .sec-darker .mod .micon { color: var(--cyan-br); }
.mod .micon svg { width: 25px; height: 25px; }
.mod h3 { font-size: 19px; margin-bottom: 9px; }
.mod p { font-size: 14.5px; color: var(--t-dark-2); }
.sec-dark .mod p, .sec-darker .mod p { color: var(--t-light-2); }

/* ============================================================
   INTEGRAÇÕES
   ============================================================ */
.integ-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; margin-top: 10px; }
.integ {
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-sm); padding: 24px 16px; transition: border-color .2s, transform .2s;
}
.integ:hover { border-color: rgba(34,211,238,.45); transform: translateY(-3px); }
.integ .ilogo { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.25); color: var(--cyan-br); }
.integ .ilogo svg { width: 24px; height: 24px; }
.integ .iname { font-family: var(--display); font-weight: 600; font-size: 15px; color: #fff; }
.integ .idesc { font-size: 12px; color: var(--t-light-3); }

/* ============================================================
   COBERTURA (rede de cidades)
   ============================================================ */
.cover-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cover-net { position: relative; aspect-ratio: 1/.92; }
.cover-net svg { width: 100%; height: 100%; overflow: visible; }
.cover-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cover-pt { display: flex; gap: 13px; align-items: flex-start; background: var(--paper); border: 1px solid var(--line-dark); border-radius: var(--radius-sm); padding: 16px 18px; }
.sec-dark .cover-pt, .sec-darker .cover-pt { background: var(--ink-3); border-color: rgba(255,255,255,.08); }
.cover-pt .uf { font-family: var(--display); font-weight: 700; font-size: 22px; color: var(--cyan-dk); line-height: 1; flex-shrink: 0; }
.sec-dark .cover-pt .uf, .sec-darker .cover-pt .uf { color: var(--cyan-br); }
.cover-pt .nm { font-weight: 700; font-size: 14.5px; }
.cover-pt .ds { font-size: 12.5px; color: var(--t-dark-2); }
.sec-dark .cover-pt .ds, .sec-darker .cover-pt .ds { color: var(--t-light-2); }

/* ============================================================
   COMPLIANCE LISTA
   ============================================================ */
.comp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.comp {
  background: var(--paper); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 26px; border-top: 3px solid var(--cyan);
}
.comp .cic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px; background: rgba(34,211,238,.1); color: var(--cyan-dk); border: 1px solid rgba(34,211,238,.28); }
.comp .cic svg { width: 22px; height: 22px; }
.comp h3 { font-size: 17.5px; margin-bottom: 8px; }
.comp p { font-size: 14px; color: var(--t-dark-2); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta {
  background: linear-gradient(135deg, #0a1322 0%, #0d1a2e 55%, #0a2233 100%);
  color: var(--t-light); border-radius: 28px; padding: 64px 56px; position: relative; overflow: hidden;
  border: 1px solid rgba(34,211,238,.2);
}
.cta::before { content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(34,211,238,.3), transparent 65%); filter: blur(60px); top: -160px; right: -100px; }
.cta-inner { position: relative; z-index: 2; max-width: 660px; }
.cta h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 18px; }
.cta p { font-size: 18px; color: var(--t-light-2); margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--t-light-2); padding: 70px 0 30px; border-top: 1px solid var(--line-light); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.foot-brand img { height: 70px; margin: -6px 0 12px; filter: drop-shadow(0 2px 12px rgba(34,211,238,.35)); }
.foot-brand p { font-size: 14px; max-width: 280px; }
.foot-col h4 { font-family: var(--display); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.foot-col a, .foot-col p { display: block; font-size: 14.5px; color: var(--t-light-2); margin-bottom: 11px; transition: color .15s; }
.foot-col a:hover { color: var(--cyan-br); }
.foot-contact .ci { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 13px; font-size: 14px; }
.foot-contact .ci svg { width: 17px; height: 17px; color: var(--cyan); flex-shrink: 0; margin-top: 3px; }
.foot-bottom { border-top: 1px solid var(--line-light); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--t-light-3); }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: var(--t-light-2); transition: all .18s; }
.foot-social a:hover { color: #fff; border-color: var(--cyan); background: rgba(34,211,238,.12); }
.foot-social svg { width: 18px; height: 18px; }

/* ============================================================
   REVEAL animação (keyframe — imune ao quirk de start-frame;
   gated em html.js p/ degradar bem se o JS falhar)
   ============================================================ */
@keyframes revealIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
html.js .reveal { opacity: 0; }
html.js .reveal.in { animation: revealIn .7s cubic-bezier(.2,.7,.2,1) both; }
html.js .reveal.in.d1 { animation-delay: .08s; }
html.js .reveal.in.d2 { animation-delay: .16s; }
html.js .reveal.in.d3 { animation-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal, html.js .reveal.in { opacity: 1 !important; animation: none !important; transform: none !important; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 940px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .hero-grid, .feature, .feature.reverse .feat-media, .cover-wrap { grid-template-columns: 1fr; }
  .feature.reverse .feat-media { order: 0; }
  .hero-visual { order: -1; max-width: 380px; margin: 0 auto 10px; }
  .mod-grid, .comp-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat:nth-child(2)::after { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta { padding: 48px 30px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .sec { padding: 70px 0; }
  .mod-grid, .comp-grid, .cover-points { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero { padding: 130px 0 70px; }
  .cover-wrap { gap: 36px; }
}

/* Menu mobile aberto */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(7,11,19,.97); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--display); font-size: 22px; font-weight: 600; color: var(--t-light); padding: 12px 20px; }
.mobile-menu a:hover { color: var(--cyan-br); }
.mobile-menu .btn { margin-top: 18px; }
.mobile-close { position: absolute; top: 22px; right: 22px; background: none; border: none; color: #fff; cursor: pointer; }
.mobile-close svg { width: 32px; height: 32px; }

/* ============================================================
   SHOWCASE — telas reais do sistema
   ============================================================ */
.shot { border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); background: #0b1322; box-shadow: 0 40px 90px -34px rgba(0,0,0,.78), 0 0 0 1px rgba(34,211,238,.06); position: relative; }
.shot-feature { position: relative; }
.shot-feature::before { content: ""; position: absolute; inset: -34px; background: radial-gradient(ellipse at center, rgba(34,211,238,.18), transparent 70%); filter: blur(24px); z-index: 0; }
.shot-feature .shot { position: relative; z-index: 1; }
.shotbar { display: flex; align-items: center; gap: 8px; padding: 11px 15px; background: #0e1726; border-bottom: 1px solid rgba(255,255,255,.07); }
.shotbar .d { width: 11px; height: 11px; border-radius: 50%; }
.shotbar .d.r { background: #ff5f57; } .shotbar .d.y { background: #febc2e; } .shotbar .d.g { background: #28c840; }
.shotbar .u { margin-left: 12px; font-size: 11.5px; color: var(--t-light-3); font-family: var(--display); display: flex; align-items: center; gap: 7px; }
.shotbar .u svg { width: 13px; height: 13px; }
.shotbar .live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: #34d399; font-family: var(--display); }
.shotbar .live .pd { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 8px #34d399; animation: pulse 1.8s infinite; }
.shot img { width: 100%; display: block; }
.shot-cap { display: flex; align-items: center; gap: 9px; margin-top: 16px; font-size: 14px; color: var(--t-light-2); }
.shot-cap svg { width: 17px; height: 17px; color: var(--cyan-br); flex-shrink: 0; }
.show-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 26px; }
@media (max-width: 860px) { .show-grid { grid-template-columns: 1fr; } }

/* ============================================================
   APP DE CAMPO — mockup de celular (nativo)
   ============================================================ */
.fa-stage { position: relative; display: flex; justify-content: center; padding: 6px; }
.fa-stage::before { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 330px; height: 330px; background: radial-gradient(circle, rgba(234,88,12,.28), transparent 66%); filter: blur(46px); z-index: 0; }
.fa-phone { position: relative; z-index: 2; width: 300px; border-radius: 40px; background: #0b0f17; box-shadow: 0 0 0 11px #161b25, 0 0 0 13px #2a3140, 0 44px 80px -28px rgba(0,0,0,.8), 0 0 60px rgba(234,88,12,.14); overflow: hidden; }
.fa-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 24px; background: #0b0f17; border-radius: 0 0 15px 15px; z-index: 50; }
.fa-scr { background: #eef2f7; display: flex; flex-direction: column; font-family: "IBM Plex Sans", system-ui, sans-serif; }
.fa-status { display: flex; align-items: center; justify-content: space-between; padding: 10px 15px 7px; background: #0a0f1a; font-size: 10px; color: #8d97ab; font-family: "IBM Plex Mono", monospace; }
.fa-rt { display: flex; align-items: center; gap: 5px; }
.fa-rt::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #10b981; box-shadow: 0 0 8px #10b981; }
.fa-head { display: flex; align-items: center; gap: 10px; padding: 12px 13px; background: #0a0f1a; border-bottom: 1px solid #1c2533; }
.fa-head img { width: 32px; height: 32px; object-fit: contain; }
.fa-ti h4 { font-family: "Sora", sans-serif; font-size: 13px; font-weight: 700; color: #fff; line-height: 1.1; }
.fa-ti p { font-size: 9.5px; color: #8d97ab; }
.fa-ti { min-width: 0; }
.fa-os { margin-left: auto; flex-shrink: 0; white-space: nowrap; background: #ea580c; color: #fff; font-family: "IBM Plex Mono", monospace; font-weight: 600; font-size: 10px; padding: 4px 9px; border-radius: 20px; }
.fa-tabs { display: flex; background: #fff; border-bottom: 1px solid #e3e8ef; }
.fa-tabs span { flex: 1; text-align: center; padding: 10px 3px; font-size: 10px; font-weight: 600; color: #647088; border-bottom: 2.5px solid transparent; }
.fa-tabs span.on { color: #ea580c; border-bottom-color: #ea580c; }
.fa-body { padding: 13px; background: #eef2f7; }
.fa-card { background: #fff; border: 1px solid #e3e8ef; border-radius: 13px; overflow: hidden; margin-bottom: 11px; box-shadow: 0 6px 18px -14px rgba(16,32,58,.4); }
.fa-card:last-child { margin-bottom: 0; }
.fa-ch { display: flex; align-items: center; gap: 7px; background: #f7f9fc; border-bottom: 1px solid #e3e8ef; padding: 9px 12px; font-size: 11px; font-weight: 600; color: #16203a; }
.fa-ch svg { width: 13px; height: 13px; color: #ea580c; }
.fa-bd { padding: 12px; }
.fa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.fa-fld label { font-size: 8px; text-transform: uppercase; letter-spacing: .4px; color: #647088; display: block; margin-bottom: 3px; }
.fa-fld .v { background: #f4f7fb; border: 1px solid #e3e8ef; border-radius: 7px; padding: 7px 9px; font-size: 10.5px; font-weight: 600; color: #16203a; }
.fa-fld .v.mono { font-family: "IBM Plex Mono", monospace; }
.fa-ml { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 600; color: #16203a; margin-bottom: 9px; }
.fa-ml .dot { width: 8px; height: 8px; border-radius: 50%; }
.fa-gps { display: flex; align-items: center; gap: 6px; background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.3); color: #059669; border-radius: 7px; padding: 7px 9px; font-size: 9.5px; font-weight: 600; margin: 9px 0 10px; font-family: "IBM Plex Mono", monospace; }
.fa-gps svg { width: 12px; height: 12px; flex-shrink: 0; }
.fa-fotos { display: flex; gap: 7px; margin-bottom: 11px; }
.fa-fotos .ft { width: 52px; height: 52px; border-radius: 8px; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 7px; font-weight: 700; color: #fff; letter-spacing: .3px; line-height: 1.25; background: linear-gradient(135deg, #1f2937, #374151); border: 1px solid #e3e8ef; }
.fa-fotos .ft.b { background: linear-gradient(135deg, #7c2d12, #b45309); }
.fa-fotos .fadd { width: 52px; height: 52px; border-radius: 8px; border: 1.5px dashed #cfd9e6; background: #f7f9fc; display: flex; align-items: center; justify-content: center; font-size: 8px; color: #8597ab; font-weight: 600; text-align: center; }
.fa-save { width: 100%; display: flex; align-items: center; justify-content: center; gap: 7px; background: #ea580c; color: #fff; border: none; border-radius: 10px; padding: 11px; font-family: "Sora", sans-serif; font-weight: 600; font-size: 12px; box-shadow: 0 8px 16px -6px rgba(234,88,12,.5); cursor: pointer; }
.fa-save svg { width: 14px; height: 14px; }
