/* ============================================================
   InoSeg — Site institucional
   Sistema visual: corporativo claro (azul InoSeg) + seção REI dark/tech
   ============================================================ */

:root {
  /* Brand — light/corporate */
  --c-ink:      #0d2336;
  --c-ink-soft: #244159;
  --c-muted:    #5d7894;
  --c-line:     #e3ecf4;
  --c-line-2:   #d3e0ec;
  --c-bg:       #ffffff;
  --c-bg-soft:  #f4f8fc;
  --c-bg-tint:  #e9f3fb;
  --c-cyan:     #29b4e6;
  --c-cyan-600: #1496c9;
  --c-blue:     #1c6cab;
  --c-navy:     #103f66;
  --c-navy-900: #0a2c49;

  /* Accent (tweakable) */
  --accent:     #1c6cab;
  --accent-2:   #29b4e6;

  /* REI dark/tech */
  --rei-bg:    #050a17;
  --rei-bg-2:  #081328;
  --rei-panel: #0b1a37;
  --rei-panel-2:#0e2146;
  --rei-line:  rgba(70,140,235,.30);
  --rei-line-strong: rgba(90,165,255,.55);
  --rei-glow:  #2f86ff;
  --rei-cyan:  #3ec8ff;
  --rei-text:  #d4e3f7;
  --rei-muted: #87a2c6;

  /* Type */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;
  --font-tech:    'Rajdhani', system-ui, sans-serif;

  /* Shape */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;

  --shadow-sm: 0 2px 8px rgba(15,63,102,.06);
  --shadow-md: 0 10px 30px rgba(15,63,102,.10);
  --shadow-lg: 0 24px 60px rgba(15,63,102,.16);

  --wrap: 1180px;
  --gut: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }

.wrap { width: min(var(--wrap), 100% - 2*var(--gut)); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-tech); font-weight: 600;
  font-size: 14px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: linear-gradient(90deg, var(--accent-2), var(--accent)); }
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section-soft { background: var(--c-bg-soft); }

/* Buttons ------------------------------------------------- */
.btn {
  --bg: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 14px 24px; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--bg); color: #fff; transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 8px 22px rgba(28,108,171,.28);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(28,108,171,.36); }
.btn svg { width: 18px; height: 18px; }
.btn-ghost {
  background: transparent; color: var(--c-ink);
  border: 1.5px solid var(--c-line-2); box-shadow: none; font-weight: 600;
}
.btn-ghost:hover { background: var(--c-bg-tint); box-shadow: none; border-color: var(--accent-2); }
.btn-wa { --bg: #1faa52; box-shadow: 0 8px 22px rgba(31,170,82,.28); }
.btn-wa:hover { box-shadow: 0 14px 30px rgba(31,170,82,.36); }
.btn-lg { padding: 17px 30px; font-size: 16px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-color: var(--c-line); box-shadow: 0 6px 24px rgba(15,63,102,.07); }
.nav { display: flex; align-items: center; gap: 28px; height: 76px; }
.brand-logo { height: 56px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-links a {
  font-weight: 600; font-size: 15px; color: var(--c-ink-soft);
  position: relative; padding: 6px 0; transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--accent-2); transition: right .25s;
}
.nav-links a:hover { color: var(--c-ink); }
.nav-links a:hover::after { right: 0; }
.nav-links a.is-rei { color: #d42b2b; font-weight: 700; }
.nav-links a.is-rei::after { background: #d42b2b; }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--c-ink); margin: 5px 0; transition: .25s; border-radius: 2px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 104px) 0 clamp(56px,7vw,96px); }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 70% at 88% 8%, rgba(41,180,230,.16), transparent 60%),
    radial-gradient(50% 60% at 12% 100%, rgba(28,108,171,.10), transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image: linear-gradient(var(--c-line) 1px, transparent 1px), linear-gradient(90deg, var(--c-line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(80% 70% at 70% 20%, #000 0%, transparent 75%);
          mask-image: radial-gradient(80% 70% at 70% 20%, #000 0%, transparent 75%);
}
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.hero-copy h1 {
  font-size: clamp(38px, 5.4vw, 66px); letter-spacing: -.02em; margin: 22px 0 0;
}
.hero-copy h1 .grad {
  background: linear-gradient(100deg, var(--c-cyan), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-copy .lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--c-muted); margin-top: 22px; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust .ht { display: flex; flex-direction: column; }
.hero-trust .ht b { font-family: var(--font-display); font-size: 26px; color: var(--c-navy); }
.hero-trust .ht span { font-size: 13px; color: var(--c-muted); }

/* Hero visual — stacked image card with HUD frame */
.hero-visual { position: relative; }
.hero-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, var(--c-navy-900), var(--c-navy));
}
.hero-card .ph { position: absolute; inset: 0; }
.hero-card .ph-photo {
  background:
    linear-gradient(180deg, rgba(10,44,73,.05), rgba(10,44,73,.55)),
    repeating-linear-gradient(125deg, rgba(255,255,255,.04) 0 2px, transparent 2px 18px),
    linear-gradient(150deg, #14507f, #0a2c49 70%);
}
.hero-card .hud-corner { position: absolute; width: 38px; height: 38px; border: 2px solid rgba(62,200,255,.7); }
.hero-card .hud-corner.tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.hero-card .hud-corner.tr { top: 16px; right: 16px; border-left: 0; border-bottom: 0; }
.hero-card .hud-corner.bl { bottom: 16px; left: 16px; border-right: 0; border-top: 0; }
.hero-card .hud-corner.br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }
.hero-card .ph-label {
  position: absolute; left: 20px; bottom: 20px; color: #eaf5ff;
  font-family: var(--font-tech); letter-spacing: .12em; text-transform: uppercase;
  font-size: 13px; display: flex; align-items: center; gap: 8px;
}
.hero-card .ph-label::before { content:""; width: 8px; height: 8px; border-radius: 50%; background:#3ec8ff; box-shadow: 0 0 10px #3ec8ff; }
.hero-float {
  position: absolute; background: #fff; border-radius: var(--r-md);
  box-shadow: var(--shadow-md); padding: 14px 16px; display: flex; gap: 12px; align-items: center;
  border: 1px solid var(--c-line);
}
.hero-float.f1 { top: 26px; left: -28px; }
.hero-float.f2 { bottom: 30px; right: -26px; }
.hero-float .fi { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--c-bg-tint); color: var(--accent); flex: none; }
.hero-float .fi svg { width: 22px; height: 22px; }
.hero-float b { display: block; font-family: var(--font-display); font-size: 15px; }
.hero-float span { font-size: 12.5px; color: var(--c-muted); }

/* Partner / context strip */
.strip { border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); background: var(--c-bg-soft); }
.strip .wrap { display: flex; align-items: center; gap: 30px; padding: 22px 0; flex-wrap: wrap; }
.strip .label { font-family: var(--font-tech); letter-spacing: .16em; text-transform: uppercase; font-size: 13px; color: var(--c-muted); }
.strip .items { display: flex; gap: 26px; flex-wrap: wrap; color: var(--c-ink-soft); font-weight: 600; }
.strip .items span { display: flex; align-items: center; gap: 8px; }
.strip .items svg { width: 18px; height: 18px; color: var(--accent); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.s-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 60px); }
.s-head.center { margin-inline: auto; text-align: center; }
.s-head.center .eyebrow { justify-content: center; }
.s-head h2 { font-size: clamp(28px, 3.6vw, 46px); margin-top: 16px; }
.s-head p { color: var(--c-muted); font-size: clamp(16px,1.4vw,18px); margin-top: 16px; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  position: relative; background: var(--c-bg); border: 1px solid var(--c-line);
  border-radius: var(--r-lg); padding: 30px; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--c-line-2); }
.svc-card .ic { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; background: linear-gradient(150deg, var(--c-bg-tint), #fff); border: 1px solid var(--c-line); color: var(--accent); margin-bottom: 22px; }
.svc-card .ic svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 21px; }
.svc-card p { color: var(--c-muted); margin-top: 12px; font-size: 15.5px; }
.svc-card ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.svc-card li { font-size: 14.5px; color: var(--c-ink-soft); display: flex; gap: 9px; align-items: flex-start; }
.svc-card li svg { width: 17px; height: 17px; color: var(--c-cyan-600); flex: none; margin-top: 3px; }
.svc-card .num { position: absolute; top: 22px; right: 26px; font-family: var(--font-tech); font-weight: 700; font-size: 40px; color: var(--c-bg-tint); }

/* Step-In feature row */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; }
.feature-split.rev .fs-media { order: 2; }
.fs-list { display: grid; gap: 18px; margin-top: 30px; }
.fs-item { display: flex; gap: 16px; }
.fs-item .n { width: 38px; height: 38px; border-radius: 11px; background: var(--c-navy); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; flex: none; }
.fs-item h4 { font-size: 18px; }
.fs-item p { color: var(--c-muted); font-size: 15px; margin-top: 5px; }
.fs-media {
  position: relative; border-radius: var(--r-xl); aspect-ratio: 5/4; overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--c-line);
  background:
    linear-gradient(180deg, rgba(10,44,73,.04), rgba(10,44,73,.5)),
    repeating-linear-gradient(120deg, rgba(255,255,255,.045) 0 2px, transparent 2px 20px),
    linear-gradient(150deg, #1a6094, #0a2c49);
}
.fs-media .ph-label { position: absolute; left: 20px; bottom: 18px; color: #eaf5ff; font-family: var(--font-tech); letter-spacing: .12em; text-transform: uppercase; font-size: 12.5px; }
.fs-media .ph-label::before { content:"▣  "; }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: linear-gradient(150deg, var(--c-navy-900), var(--c-navy)); color: #fff; position: relative; overflow: hidden; }
.stats::after { content:""; 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: 48px 48px; -webkit-mask-image: radial-gradient(70% 100% at 50% 0%, #000, transparent 75%); mask-image: radial-gradient(70% 100% at 50% 0%, #000, transparent 75%); }
.stats .wrap { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat b { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 5vw, 60px); display: block; background: linear-gradient(120deg, #fff, var(--c-cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: #a9c6dd; font-size: 15px; }
.stat .plus { -webkit-text-fill-color: var(--c-cyan); }

/* ============================================================
   REI — DARK / TECH SECTION
   ============================================================ */
.rei {
  background: var(--rei-bg); color: var(--rei-text); position: relative; overflow: hidden;
  font-feature-settings: "tnum";
}
.rei::before { /* deep radial glows */
  content:""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(50% 50% at 80% 0%, rgba(47,134,255,.22), transparent 60%),
    radial-gradient(60% 50% at 10% 100%, rgba(47,134,255,.14), transparent 60%),
    linear-gradient(180deg, var(--rei-bg), var(--rei-bg-2));
}
.rei .dotgrid { position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image: radial-gradient(rgba(95,165,255,.18) 1px, transparent 1.4px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(80% 80% at 50% 30%, #000, transparent 80%); mask-image: radial-gradient(80% 80% at 50% 30%, #000, transparent 80%);
}
.rei .wrap { position: relative; z-index: 2; }
.rei-eyebrow { display:flex; flex-direction: column; align-items: center; gap: 16px; }
.rei-eye { width: 66px; height: 46px; position: relative; }
.rei-badge {
  font-family: var(--font-tech); letter-spacing: .3em; text-transform: uppercase;
  font-size: 13px; color: var(--rei-cyan); padding: 7px 18px; border-radius: 999px;
  border: 1px solid var(--rei-line-strong); background: rgba(47,134,255,.08);
}
.rei h2.rei-title { text-align: center; font-size: clamp(34px, 5.2vw, 64px); color: #fff; margin: 22px auto 0; letter-spacing: -.01em; }
.rei h2.rei-title .b { color: var(--rei-cyan); }
.rei .rei-sub { text-align: center; color: var(--rei-muted); max-width: 60ch; margin: 18px auto 0; font-size: clamp(16px,1.4vw,18px); }

.rei-hero { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(34px,4vw,64px); align-items: center; margin-top: clamp(46px,6vw,76px); }
.rei-hero h3 { font-size: clamp(26px, 3.4vw, 42px); color: #fff; line-height: 1.12; }
.rei-hero h3 .b { color: var(--rei-cyan); }
.rei-hero p.body { color: var(--rei-muted); margin-top: 20px; font-size: 16.5px; max-width: 48ch; }
.rei-minis { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 28px; }
.rei-mini { border: 1px solid var(--rei-line); border-radius: var(--r-md); padding: 14px 16px; background: rgba(12,26,55,.5); }
.rei-mini .h { display:flex; align-items:center; gap: 9px; color: var(--rei-cyan); font-family: var(--font-tech); letter-spacing: .12em; text-transform: uppercase; font-size: 13px; font-weight: 600; }
.rei-mini .h svg { width: 17px; height: 17px; }
.rei-mini p { color: var(--rei-muted); font-size: 13.5px; margin-top: 7px; }

/* REI device mock */
.rei-device { position: relative; display: grid; place-items: center; }
.rei-panel-lg {
  width: 100%; border-radius: 18px; border: 1px solid var(--rei-line-strong);
  background: linear-gradient(160deg, var(--rei-panel-2), var(--rei-panel));
  box-shadow: 0 0 0 1px rgba(47,134,255,.1), 0 30px 70px rgba(0,0,0,.5), inset 0 0 60px rgba(47,134,255,.06);
  padding: 16px; position: relative; overflow: hidden;
}
.rei-screen {
  border-radius: 12px; overflow: hidden; aspect-ratio: 16/10; position: relative;
  background:
    linear-gradient(180deg, rgba(5,10,23,.1), rgba(5,10,23,.7)),
    repeating-linear-gradient(120deg, rgba(120,180,255,.05) 0 2px, transparent 2px 16px),
    linear-gradient(150deg, #16365f, #061227);
  border: 1px solid var(--rei-line);
}
.rei-screen .rec { position: absolute; top: 12px; left: 12px; display: flex; align-items: center; gap: 7px; font-family: var(--font-tech); font-size: 12px; letter-spacing: .1em; color: #fff; background: rgba(5,10,23,.55); padding: 5px 10px; border-radius: 7px; }
.rei-screen .rec b { color: #ff5b6e; }
.rei-screen .rec .dot { width: 8px; height: 8px; border-radius: 50%; background:#ff5b6e; box-shadow: 0 0 8px #ff5b6e; animation: blink 1.4s infinite; }
@keyframes blink { 50% { opacity: .25; } }
.rei-screen .live { position: absolute; top: 12px; right: 12px; font-family: var(--font-tech); font-size: 12px; color: var(--rei-cyan); border: 1px solid var(--rei-line-strong); padding: 4px 10px; border-radius: 6px; letter-spacing: .12em; }
.rei-controls { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.rei-ctrl { flex: 1; min-width: 0; border: 1px solid var(--rei-line); border-radius: 9px; padding: 9px 10px; background: rgba(12,26,55,.55); }
.rei-ctrl .k { font-family: var(--font-tech); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--rei-muted); }
.rei-ctrl .v { color: var(--rei-cyan); font-weight: 700; font-size: 15px; font-family: var(--font-display); }
.rei-phone {
  position: absolute; right: -6px; bottom: -22px; width: 116px; aspect-ratio: 9/19;
  border-radius: 22px; border: 5px solid #0c1c3a; background: linear-gradient(150deg, #16365f, #061227);
  box-shadow: 0 24px 50px rgba(0,0,0,.55), 0 0 0 1px var(--rei-line-strong);
  overflow: hidden;
}
.rei-phone::after { content:""; position:absolute; inset:0; background: repeating-linear-gradient(120deg, rgba(120,180,255,.06) 0 2px, transparent 2px 14px); }
.rei-link-badge { position: absolute; left: -16px; bottom: 70px; width: 46px; height: 46px; border-radius: 50%; display:grid; place-items:center; background: var(--rei-glow); color:#fff; box-shadow: 0 0 24px rgba(47,134,255,.7); }
.rei-link-badge svg { width: 22px; height: 22px; }

/* REI feature list (right column with connectors) */
.rei-featlist { display: grid; gap: 14px; }
.rei-feat { display: flex; gap: 16px; align-items: center; border: 1px solid var(--rei-line); border-radius: 14px; padding: 16px 18px; background: rgba(11,26,55,.45); transition: border-color .25s, transform .25s, background .25s; }
.rei-feat:hover { border-color: var(--rei-line-strong); transform: translateX(4px); background: rgba(16,33,70,.6); }
.rei-feat .fic { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; color: var(--rei-cyan); border: 1px solid var(--rei-line-strong); background: rgba(47,134,255,.08); }
.rei-feat .fic svg { width: 24px; height: 24px; }
.rei-feat b { color: #fff; font-family: var(--font-display); font-size: 17px; }
.rei-feat p { color: var(--rei-muted); font-size: 14px; margin-top: 2px; }

/* REI: simple access steps */
.rei-block { margin-top: clamp(64px, 8vw, 110px); }
.rei-block-head { text-align: center; margin-bottom: 44px; }
.rei-block-head h3 { font-size: clamp(26px,3.4vw,42px); color: #fff; }
.rei-block-head h3 .b { color: var(--rei-cyan); }
.rei-block-head p { color: var(--rei-muted); margin-top: 14px; }
.rei-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.rei-step { border: 1px solid var(--rei-line); border-radius: 14px; padding: 22px; background: rgba(11,26,55,.4); position: relative; }
.rei-step .sn { font-family: var(--font-tech); font-weight: 700; font-size: 14px; color: var(--rei-glow); letter-spacing: .2em; }
.rei-step .si { width: 44px; height: 44px; border-radius: 12px; display:grid; place-items:center; color: var(--rei-cyan); border:1px solid var(--rei-line-strong); background: rgba(47,134,255,.08); margin: 12px 0 14px; }
.rei-step .si svg { width: 22px; height: 22px; }
.rei-step h4 { color: #fff; font-size: 18px; }
.rei-step p { color: var(--rei-muted); font-size: 14px; margin-top: 7px; }

/* REI: comparison table */
.rei-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.rei-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 640px; }
.rei-table th, .rei-table td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--rei-line); }
.rei-table thead th { font-family: var(--font-tech); letter-spacing: .14em; text-transform: uppercase; font-size: 13px; color: var(--rei-muted); }
.rei-table thead th.hi { color: #fff; }
.rei-table tbody th { text-align: left; font-family: var(--font-body); font-weight: 700; color: var(--rei-text); font-size: 14.5px; display:flex; align-items:center; gap:10px; }
.rei-table tbody th svg { width: 18px; height: 18px; color: var(--rei-cyan); flex:none; }
.rei-table td { color: var(--rei-muted); font-size: 14.5px; }
.rei-table .col-rei { background: linear-gradient(180deg, rgba(47,134,255,.10), rgba(47,134,255,.03)); color: var(--rei-cyan); font-weight: 700; position: relative; }
.rei-table thead .col-rei { border-top: 1px solid var(--rei-line-strong); border-left: 1px solid var(--rei-line-strong); border-right: 1px solid var(--rei-line-strong); border-top-left-radius: 12px; border-top-right-radius: 12px; }
.rei-table tbody tr:last-child .col-rei { border-bottom: 1px solid var(--rei-line-strong); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; }
.rei-table .col-rei.side { border-left: 1px solid var(--rei-line-strong); }
.rei-table .col-rei.sider { border-right: 1px solid var(--rei-line-strong); }
.rei-check { display:inline-flex; vertical-align: middle; margin-left: 7px; width: 18px; height: 18px; border-radius: 50%; background: var(--rei-glow); color:#fff; align-items:center; justify-content:center; }
.rei-check svg { width: 12px; height: 12px; }
.rei-table-foot { text-align:center; margin-top: 24px; color: var(--rei-text); font-size: 17px; font-family: var(--font-display); }
.rei-table-foot .b { color: var(--rei-cyan); }

/* REI: sectors */
.rei-sectors { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.rei-sector { border: 1px solid var(--rei-line); border-radius: 14px; padding: 22px; background: rgba(11,26,55,.4); transition: border-color .25s, transform .25s; }
.rei-sector:hover { border-color: var(--rei-line-strong); transform: translateY(-4px); }
.rei-sector .si { width: 48px; height: 48px; border-radius: 13px; display:grid; place-items:center; color: var(--rei-cyan); border:1px solid var(--rei-line-strong); background: rgba(47,134,255,.08); margin-bottom: 16px; }
.rei-sector .si svg { width: 24px; height: 24px; }
.rei-sector h4 { color:#fff; font-size: 18px; }
.rei-sector p { color: var(--rei-muted); font-size: 14px; margin-top: 8px; }

/* REI CTA */
.rei-cta { margin-top: clamp(56px,7vw,96px); text-align: center; border: 1px solid var(--rei-line-strong); border-radius: var(--r-xl); padding: clamp(36px,5vw,60px); background: radial-gradient(80% 120% at 50% 0%, rgba(47,134,255,.16), rgba(11,26,55,.4)); position: relative; overflow: hidden; }
.rei-cta h3 { color:#fff; font-size: clamp(26px,3.4vw,40px); }
.rei-cta p { color: var(--rei-muted); margin: 14px auto 28px; max-width: 52ch; }
.btn-rei { background: linear-gradient(120deg, var(--rei-glow), #57b6ff); box-shadow: 0 10px 30px rgba(47,134,255,.4); }
.btn-rei:hover { box-shadow: 0 16px 40px rgba(47,134,255,.5); }
.btn-rei-ghost { background: transparent; border: 1.5px solid var(--rei-line-strong); color: var(--rei-text); box-shadow:none; }
.btn-rei-ghost:hover { background: rgba(47,134,255,.1); box-shadow:none; }

/* ============================================================
   COVERAGE
   ============================================================ */
.cov { }
.cov-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px,5vw,64px); align-items: center; }
.cov-stats { display: flex; gap: 30px; margin: 28px 0; flex-wrap: wrap; }
.cov-stats .cs b { font-family: var(--font-display); font-size: 38px; color: var(--c-navy); display:block; }
.cov-stats .cs span { color: var(--c-muted); font-size: 14px; }
.cov-states { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.cov-states .st { font-family: var(--font-tech); font-weight: 600; font-size: 13px; letter-spacing: .08em; padding: 5px 11px; border-radius: 7px; background: var(--c-bg-tint); color: var(--c-navy); border: 1px solid var(--c-line-2); }
.cov-map { position: relative; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--c-line); box-shadow: var(--shadow-md); background: var(--c-bg-soft); aspect-ratio: 4/3; display:grid; place-items:center; }
.cov-map svg { width: 86%; height: auto; }

/* ============================================================
   ABOUT / DIFERENCIAIS
   ============================================================ */
.diff-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.diff { padding: 26px; border: 1px solid var(--c-line); border-radius: var(--r-lg); background: var(--c-bg); }
.diff .ic { width: 48px; height: 48px; border-radius: 13px; display:grid; place-items:center; color: var(--accent); background: var(--c-bg-tint); margin-bottom: 16px; }
.diff .ic svg { width: 24px; height: 24px; }
.diff h4 { font-size: 17px; }
.diff p { color: var(--c-muted); font-size: 14.5px; margin-top: 8px; }

/* ============================================================
   LOCATION + CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(30px,4vw,52px); }
.contact-info .ci { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--c-line); }
.contact-info .ci:last-of-type { border-bottom: 0; }
.contact-info .ci .ic { width: 46px; height: 46px; border-radius: 12px; flex:none; display:grid; place-items:center; color:#fff; background: var(--accent); }
.contact-info .ci .ic svg { width: 22px; height: 22px; }
.contact-info .ci h4 { font-size: 15px; color: var(--c-ink); }
.contact-info .ci p { color: var(--c-muted); font-size: 15px; margin-top: 3px; }
.contact-info .ci a { color: var(--accent); font-weight: 600; }
.contact-actions { display:flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.btn-wa { background:#25D366; border-color:#25D366; color:#0a2f1a; }
.btn-wa:hover { background:#1ebe5a; border-color:#1ebe5a; }
.btn-wa svg { width: 22px; height: 22px; }

.map-frame { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--c-line); box-shadow: var(--shadow-md); }
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* Form */
.form-card { background: var(--c-bg); border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: clamp(24px,3vw,36px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field label { display:block; font-size: 13px; font-weight: 700; color: var(--c-ink-soft); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--c-line-2); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 15px; color: var(--c-ink); background: var(--c-bg-soft); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--accent-2); box-shadow: 0 0 0 4px rgba(41,180,230,.14); background: #fff; }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 13px; color: var(--c-muted); margin-top: 12px; }
.form-ok { display:none; padding: 16px; border-radius: var(--r-md); background: rgba(31,170,82,.1); color:#157a3a; border:1px solid rgba(31,170,82,.3); font-weight:600; margin-bottom: 14px; }
.form-ok.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--c-navy-900); color: #c8dbec; padding: clamp(56px,7vw,84px) 0 30px; position: relative; overflow:hidden; }
.footer::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 60% at 85% 0%, rgba(41,180,230,.12), transparent 60%); }
.footer .wrap { position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { height: 40px; width:auto; margin-bottom: 18px; }
.footer-col h5 { font-family: var(--font-tech); letter-spacing: .14em; text-transform: uppercase; font-size: 13px; color: #fff; margin: 0 0 16px; }
.footer-col a, .footer-col p { display:block; color:#9fbdd6; font-size: 14.5px; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--c-cyan); }
.footer .brand-desc { color:#9fbdd6; font-size: 14.5px; max-width: 34ch; }
.footer-bottom { display:flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; color:#7e9cb6; font-size: 13.5px; }
.footer-social { display:flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; display:grid; place-items:center; background: rgba(255,255,255,.06); color:#cfe1f0; transition: background .2s, color .2s; }
.footer-social a:hover { background: var(--accent); color:#fff; }
.footer-social svg { width: 18px; height: 18px; }

/* Hero card overlay (on top of image-slot) */
.hero-card { isolation: isolate; }
.hero-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,44,73,.18) 0%, rgba(10,44,73,.62) 100%);
  pointer-events: none;
}
.hero-card .hud-corner,
.hero-card .ph-label { z-index: 2; position: absolute; }
.hero-card image-slot { z-index: 0; }

/* fs-media overlay */
.fs-media-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,44,73,.10) 0%, rgba(10,44,73,.55) 100%);
  pointer-events: none;
}
.fs-media { isolation: isolate; }
.fs-media image-slot { z-index: 0; }

/* Float contact button */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 58px; height: 58px; border-radius: 50%; background: var(--accent); display:grid; place-items:center; color:#fff; box-shadow: 0 12px 30px rgba(28,108,171,.45); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 26px; height: 26px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1; transform:none; transition:none; } html { scroll-behavior:auto; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; width: 100%; }
  .hero-float.f1 { left: 8px; } .hero-float.f2 { right: 8px; }
  .svc-grid, .rei-sectors, .rei-steps, .diff-grid { grid-template-columns: repeat(2,1fr); }
  .feature-split, .rei-hero, .cov-grid, .contact-grid { grid-template-columns: 1fr; }
  .feature-split.rev .fs-media { order: 0; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 32px 18px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}
/* ============================================================
   SINISTROS
   ============================================================ */
.sin-head { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,5vw,64px); align-items: end; margin-bottom: clamp(34px,5vw,56px); }
.sin-head .lead-2 { color: var(--c-muted); font-size: clamp(16px,1.4vw,18px); }
.sin-badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.sin-badge { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; font-family: var(--font-tech); font-weight: 600; font-size: 13px; letter-spacing: .06em; color: var(--c-navy); background: var(--c-bg-tint); border: 1px solid var(--c-line-2); padding: 7px 14px; border-radius: 999px; }
.sin-badge svg { width: 15px; height: 15px; color: var(--accent); }

.sin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sin-card {
  position: relative; background: var(--c-bg); border: 1px solid var(--c-line);
  border-radius: var(--r-lg); padding: 28px; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.sin-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.sin-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--c-line-2); }
.sin-card:hover::after { transform: scaleX(1); }
.sin-card .ic {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  color: var(--accent); background: linear-gradient(150deg, var(--c-bg-tint), #fff);
  border: 1px solid var(--c-line); margin-bottom: 22px; transition: background .25s, color .25s;
}
.sin-card .ic svg { width: 30px; height: 30px; }
.sin-card:hover .ic { background: linear-gradient(150deg, var(--accent), var(--c-cyan)); color: #fff; border-color: transparent; }
.sin-card h3 { font-size: 20px; }
.sin-card p { color: var(--c-muted); font-size: 15px; margin-top: 11px; }

.sin-foot {
  margin-top: 28px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding: 24px 28px; border-radius: var(--r-lg);
  background: linear-gradient(150deg, var(--c-navy-900), var(--c-navy)); color: #fff;
  position: relative; overflow: hidden;
}
.sin-foot::after { content:""; 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: 40px 40px; -webkit-mask-image: radial-gradient(70% 120% at 100% 0%, #000, transparent 70%); mask-image: radial-gradient(70% 120% at 100% 0%, #000, transparent 70%); }
.sin-foot .sf-ic { position: relative; z-index: 1; width: 52px; height: 52px; border-radius: 14px; flex: none; display: grid; place-items: center; background: rgba(62,200,255,.14); border: 1px solid rgba(62,200,255,.4); color: var(--c-cyan); }
.sin-foot .sf-ic svg { width: 26px; height: 26px; }
.sin-foot .sf-txt { position: relative; z-index: 1; flex: 1; min-width: 240px; }
.sin-foot .sf-txt b { font-family: var(--font-display); font-size: 18px; display: block; }
.sin-foot .sf-txt span { color: #a9c6dd; font-size: 14.5px; }
.sin-foot .btn { position: relative; z-index: 1; }

@media (max-width: 1000px) {
  .sin-head { grid-template-columns: 1fr; align-items: start; }
  .sin-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .sin-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PHOTO ENHANCEMENTS
   ============================================================ */
.hc-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%; z-index: 0; border-radius: inherit;
}
.hero-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(6,21,37,.55) 0%, transparent 22%),
    linear-gradient(0deg, rgba(6,21,37,.72) 0%, transparent 35%),
    linear-gradient(90deg, rgba(6,21,37,.35) 0%, transparent 18%);
}
.hero-card .hud-corner, .hero-card .ph-label { z-index: 2; position: relative; }

.fs-media { background: none !important; }
.fs-media img.fm-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top; z-index: 0;
}
.fs-media-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,44,73,.10) 55%, rgba(10,44,73,.70) 100%);
}
.fs-media .ph-label { z-index: 2; position: relative; }

.rei-screen-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0; border-radius: 11px;
}
.rei-screen::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: rgba(5,10,23,.35); border-radius: 11px; pointer-events: none;
}
.rei-screen .rec, .rei-screen .live { z-index: 3; }

.rei-sector.has-photo {
  background-size: cover; background-position: center; overflow: hidden; position: relative;
}
.rei-sector.has-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(5,10,23,.42) 0%, rgba(5,10,23,.82) 55%, rgba(5,10,23,.97) 100%);
}
.rei-sector.has-photo > * { position: relative; z-index: 1; }

/* Coverage map */
.cov-map-real {
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--c-line); box-shadow: var(--shadow-md);
  min-height: 400px; height: 100%;
}
.cov-map-real iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

/* Contact — no map on left, cleaner layout */
.contact-grid-v2 { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(30px,4vw,52px); }
@media (max-width: 860px) { .contact-grid-v2 { grid-template-columns: 1fr; } }

@media (max-width: 760px) {
  .nav-links { position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--c-line); padding: 8px 0; box-shadow: var(--shadow-md); transform: translateY(-130%); transition: transform .3s; }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 14px var(--gut); border-bottom: 1px solid var(--c-line); }
  .nav-links a::after { display:none; }
  .nav-cta { margin: 12px var(--gut); }
  .nav-toggle { display: block; }
  .nav-links.open + .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg);}
  .svc-grid, .rei-sectors, .rei-steps, .diff-grid, .form-row { grid-template-columns: 1fr; }
  .rei-minis { grid-template-columns: 1fr; }
  .hero-float { display: none; }
}

/* ============================================================
   v3 — SIMPLIFICADO: títulos grandes, bases, serviços, modais
   ============================================================ */
.grad {
  background: linear-gradient(100deg, var(--c-cyan), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
h2.big-title { font-size: clamp(36px, 5.4vw, 64px); letter-spacing: -.025em; line-height: 1.04; }
.s-head.center { margin-bottom: clamp(36px,5vw,58px); }

/* ---------- BASES DE ATENDIMENTO ---------- */
.bases { position: relative; overflow: hidden; padding-top: clamp(48px,6vw,82px); }
.bases-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(55% 60% at 85% 0%, rgba(41,180,230,.16), transparent 62%),
    radial-gradient(50% 55% at 8% 95%, rgba(28,108,171,.10), transparent 60%);
}
.bases-grid-lines {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image: linear-gradient(var(--c-line) 1px, transparent 1px), linear-gradient(90deg, var(--c-line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(85% 65% at 50% 0%, #000 0%, transparent 78%);
          mask-image: radial-gradient(85% 65% at 50% 0%, #000 0%, transparent 78%);
}
.bases .wrap { position: relative; z-index: 1; }
.bases-head { text-align: center; max-width: 780px; margin: 0 auto clamp(34px,4.5vw,52px); }
.bases-head h2 { margin-top: 16px; }
.bases-head p { color: var(--c-muted); font-size: clamp(16px,1.4vw,19px); margin-top: 18px; max-width: 60ch; margin-inline: auto; }
.bases-stats { display: flex; justify-content: center; gap: clamp(22px,4vw,52px); margin-top: 30px; flex-wrap: wrap; }
.bases-stats .bs b { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px,4vw,46px); color: var(--c-navy); display: block; line-height: 1; white-space: nowrap; }
.bases-stats .bs { text-align: center; }
.bases-stats .bs > span { color: var(--c-muted); font-size: 14px; margin-top: 6px; display: block; }

.bases-body { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(24px,3vw,40px); align-items: stretch; }
.bases-explorer { display: flex; flex-direction: column; }
.region-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.rtab {
  font-family: var(--font-tech); font-weight: 600; font-size: 14px; letter-spacing: .04em;
  padding: 9px 16px; border-radius: 999px; cursor: pointer;
  background: var(--c-bg); color: var(--c-ink-soft); border: 1.5px solid var(--c-line-2);
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.rtab:hover { border-color: var(--accent-2); color: var(--c-ink); }
.rtab.is-active { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 6px 16px rgba(28,108,171,.26); }
.region-meta { margin: 16px 0 12px; font-size: 13.5px; color: var(--c-muted); font-family: var(--font-tech); letter-spacing: .04em; text-transform: uppercase; }
.region-meta b { color: var(--accent); font-weight: 700; }
.city-grid {
  display: flex; flex-wrap: wrap; gap: 9px; align-content: flex-start;
  max-height: 430px; overflow-y: auto; padding: 4px 8px 4px 2px; flex: 1;
  scrollbar-width: thin; scrollbar-color: var(--c-line-2) transparent;
}
.city-grid::-webkit-scrollbar { width: 8px; }
.city-grid::-webkit-scrollbar-thumb { background: var(--c-line-2); border-radius: 8px; }
.city-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--c-bg-tint); border: 1px solid var(--c-line-2); border-radius: 999px;
  padding: 8px 14px 8px 12px; transition: transform .15s, box-shadow .2s, border-color .2s;
}
.city-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--accent-2); }
.city-chip b { font-family: var(--font-body); font-weight: 600; font-size: 14.5px; color: var(--c-ink); }
.city-chip i {
  font-style: normal; font-family: var(--font-tech); font-weight: 700; font-size: 11px; letter-spacing: .08em;
  color: var(--accent); background: #fff; border: 1px solid var(--c-line-2); border-radius: 6px; padding: 2px 6px;
}
.bases-map {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--c-line); box-shadow: var(--shadow-md); min-height: 460px; background: var(--c-bg-soft);
}
.bases-map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }
.bases-map .map-tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px; pointer-events: none;
  font-family: var(--font-tech); letter-spacing: .1em; text-transform: uppercase; font-size: 12px; color: #fff;
  background: rgba(10,44,73,.82); padding: 7px 13px; border-radius: 999px; backdrop-filter: blur(4px);
}
.bases-map .map-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-cyan); box-shadow: 0 0 10px var(--c-cyan); }

/* ---------- SERVIÇOS (cards visuais → modal) ---------- */
.svc2-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px,2.4vw,26px); }
.svc2-card {
  position: relative; background: var(--c-bg); border: 1px solid var(--c-line);
  border-radius: var(--r-xl); overflow: hidden; cursor: pointer;
  display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.svc2-card:hover, .svc2-card:focus-visible { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--c-line-2); outline: none; }
.svc2-card:focus-visible { box-shadow: 0 0 0 3px rgba(41,180,230,.4), var(--shadow-lg); }
.svc2-media { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--c-navy-900); }
.svc2-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.svc2-card:hover .svc2-media img { transform: scale(1.06); }
.svc2-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,44,73,.05) 40%, rgba(10,44,73,.55) 100%); }
.svc2-num {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-tech); font-weight: 700; font-size: 13px; letter-spacing: .12em; color: #fff;
  background: rgba(10,44,73,.6); border: 1px solid rgba(255,255,255,.25); border-radius: 8px; padding: 4px 10px; backdrop-filter: blur(4px);
}
.svc2-tag {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  font-family: var(--font-tech); font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #fff;
  background: rgba(28,108,171,.92); border: 1px solid rgba(255,255,255,.28); border-radius: 8px; padding: 5px 12px; backdrop-filter: blur(4px);
}
.svc2-body { padding: 24px clamp(20px,2.2vw,28px) 26px; position: relative; flex: 1; display: flex; flex-direction: column; }
.svc2-ic {
  position: absolute; top: -30px; right: 22px; width: 56px; height: 56px; border-radius: 15px;
  display: grid; place-items: center; background: #fff; border: 1px solid var(--c-line); color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.svc2-ic svg { width: 28px; height: 28px; }
.svc2-body h3 { font-size: clamp(20px,2vw,24px); }
.svc2-body p { color: var(--c-muted); font-size: 15.5px; margin-top: 11px; }

/* graphic tiles (serviços sem foto) */
.svc2-media.tile-graphic, .modal-media.tile-graphic { background: linear-gradient(150deg, #0a2c49, #123f66); display: grid; place-items: center; }
.svc2-media.tile-graphic.alt, .modal-media.tile-graphic.alt { background: linear-gradient(150deg, #0b1f3c, #1a4f7e); }
.svc2-media.tile-graphic::after, .modal-media.tile-graphic::after { display: none; }
.tg-dots {
  position: absolute; inset: 0; z-index: 0; opacity: .6;
  background-image: radial-gradient(rgba(95,165,255,.30) 1px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(78% 78% at 50% 45%, #000, transparent 78%);
          mask-image: radial-gradient(78% 78% at 50% 45%, #000, transparent 78%);
}
.tg-ic {
  position: relative; z-index: 1; width: clamp(74px,11vw,98px); aspect-ratio: 1; border-radius: 24px;
  display: grid; place-items: center; color: var(--c-cyan);
  border: 1px solid rgba(90,165,255,.55); background: rgba(47,134,255,.10);
  box-shadow: 0 0 44px rgba(47,134,255,.28), inset 0 0 30px rgba(47,134,255,.08);
}
.tg-ic svg { width: 50%; height: 50%; }
.svc2-link {
  margin-top: auto; padding-top: 18px; display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 15px; color: var(--accent);
}
.svc2-link svg { width: 18px; height: 18px; transition: transform .2s; }
.svc2-card:hover .svc2-link svg { transform: translateX(4px); }

/* ---------- MODAIS ---------- */
.modal { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: 22px; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(8,24,40,.6); backdrop-filter: blur(6px); animation: mfade .25s ease; }
@keyframes mfade { from { opacity: 0; } }
.modal-card {
  position: relative; z-index: 1; width: min(880px, 100%); max-height: 92vh; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; background: var(--c-bg); border-radius: var(--r-xl);
  box-shadow: 0 40px 90px rgba(8,24,40,.5); animation: mpop .3s cubic-bezier(.2,.8,.2,1);
}
@keyframes mpop { from { opacity: 0; transform: translateY(18px) scale(.98); } }
.modal-x {
  position: absolute; top: 14px; right: 14px; z-index: 3; width: 40px; height: 40px; border-radius: 50%;
  border: 0; cursor: pointer; background: rgba(10,44,73,.55); color: #fff; font-size: 24px; line-height: 1;
  display: grid; place-items: center; transition: background .2s, transform .2s; backdrop-filter: blur(4px);
}
.modal-x:hover { background: var(--c-navy); transform: rotate(90deg); }
.modal-media { position: relative; min-height: 280px; background: var(--c-navy-900); }
.modal-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.modal-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,44,73,.1), rgba(10,44,73,.5)); }
.modal-tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-tech); letter-spacing: .1em; text-transform: uppercase; font-size: 12px; color: #fff;
  background: rgba(10,44,73,.6); padding: 6px 12px; border-radius: 999px;
}
.modal-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--c-cyan); box-shadow: 0 0 8px var(--c-cyan); animation: blink 1.4s infinite; }
.modal-content { padding: clamp(26px,3vw,40px); overflow-y: auto; }
.modal-content h3 { font-size: clamp(24px,2.6vw,32px); margin-top: 12px; }
.modal-lead { color: var(--c-muted); font-size: 16px; margin-top: 14px; }
.modal-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.modal-chips span { font-family: var(--font-tech); font-weight: 600; font-size: 13px; letter-spacing: .04em; color: var(--c-navy); background: var(--c-bg-tint); border: 1px solid var(--c-line-2); padding: 6px 13px; border-radius: 999px; }
.modal-points { display: grid; gap: 14px; margin-top: 22px; }
.modal-points .mp { display: flex; gap: 13px; align-items: flex-start; }
.modal-points .mp svg { width: 20px; height: 20px; flex: none; margin-top: 2px; color: #fff; background: var(--accent); border-radius: 7px; padding: 4px; box-sizing: border-box; }
.modal-points .mp b { display: block; font-family: var(--font-display); font-size: 16px; color: var(--c-ink); }
.modal-points .mp span { font-size: 14px; color: var(--c-muted); }
.modal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.modal-actions .btn { padding: 13px 22px; font-size: 15px; }

/* ---------- SOBRE ---------- */
.sobre-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: clamp(30px,4vw,56px); align-items: center; }
.sobre-quote {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(24px,3vw,38px);
  line-height: 1.22; color: var(--c-ink-soft); letter-spacing: -.01em;
}
.sobre-quote b { font-weight: 700; color: var(--c-navy); }
.sobre-side { display: flex; flex-direction: column; gap: 22px; }
.sobre-badge {
  display: flex; align-items: baseline; gap: 12px; padding: 22px 26px; border-radius: var(--r-lg);
  background: linear-gradient(150deg, var(--c-navy-900), var(--c-navy)); color: #fff;
}
.sobre-badge b { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px,5vw,56px); line-height: 1; background: linear-gradient(120deg,#fff,var(--c-cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sobre-badge span { color: #a9c6dd; font-size: 14.5px; max-width: 14ch; }
.sobre-points { display: grid; gap: 12px; }
.sobre-points .sp { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15.5px; color: var(--c-ink-soft); }
.sobre-points .sp svg { width: 22px; height: 22px; flex: none; color: var(--accent); }

@media (max-width: 980px) {
  .bases-body { grid-template-columns: 1fr; }
  .bases-map { min-height: 380px; }
  .svc2-grid { grid-template-columns: 1fr; }
  .sobre-grid { grid-template-columns: 1fr; }
  .modal-card { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
  .modal-media { min-height: 200px; aspect-ratio: 16/9; }
}
