/* ============================================================
   TRILOBIT — Site institucional (repaginado)
   Mesmo sistema de design da LP de Controle de Acesso.
   ============================================================ */
:root {
  --navy-950: #0b2240;
  --navy-900: #102e54;
  --navy-800: #16365f;
  --navy-700: #1b3e6f;
  --accent: #1e72e8;
  --accent-soft: #4f95f0;
  --accent-200: #8fb6f0;
  --ink: #14233a;
  --ink-soft: #44597a;
  --paper: #f4f7fb;
  --white: #ffffff;
  --line: #dce5f0;
  --radius: 14px;
  --radius-lg: 20px;
  --font-display: "Saira", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --shadow-card: 0 14px 34px rgba(16, 46, 84, 0.10);
  --shadow-float: 0 24px 60px rgba(4, 16, 33, 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-style: italic; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--accent);
  transform: rotate(45deg) skewX(-8deg);
  flex: none;
}
.eyebrow--light { color: var(--accent-soft); }
.eyebrow--center { justify-content: center; }

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; gap: 28px;
  height: 72px;
}
.topbar-logo img { height: 50px; width: auto; }
.topbar-nav {
  display: flex; gap: 24px;
  margin-left: auto;
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
}
.topbar-nav a { position: relative; padding: 4px 0; transition: color .15s; white-space: nowrap; }
.topbar-nav a:hover { color: var(--accent); }
.topbar-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: 8px;
  transition: background 0.15s, transform .1s;
  white-space: nowrap;
}
.topbar-cta:hover { background: var(--navy-700); }
.topbar-cta:active { transform: scale(.97); }
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: #fff; border-radius: 10px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute;
  left: 50%; width: 20px; height: 2px;
  background: var(--navy-800); border-radius: 2px;
  transform: translateX(-50%);
  transition: transform .2s, top .2s, opacity .2s;
}
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--navy-950) url("assets/hero-portaria.png") center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,34,64,0.95) 0%, rgba(11,34,64,0.82) 50%, rgba(11,34,64,0.5) 100%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  padding-top: 92px;
  padding-bottom: 96px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: #d9e5f5;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.05);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.hero-badge b { color: #fff; font-weight: 700; }
.hero h1 {
  font-size: 50px;
  line-height: 1.08;
  font-weight: 700;
  margin: 6px 0 20px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--accent-soft); }
.hero-sub {
  font-size: 18.5px;
  color: #c6d6ec;
  max-width: 54ch;
  text-wrap: pretty;
}
.hero-cta {
  margin-top: 32px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 16px;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.04);
  padding: 14px 26px; border-radius: 8px;
  transition: background .15s, border-color .15s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); }
.hero-stats {
  margin-top: 44px;
  display: flex; flex-wrap: wrap; gap: 14px 40px;
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 34px; line-height: 1; color: #fff;
}
.hero-stats .stat span { font-size: 13.5px; color: #9fb6d6; letter-spacing: .02em; }

/* card lateral do hero (ecossistema) */
.hero-card {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-float);
}
.hero-card h2 {
  font-size: 19px; font-weight: 700; color: #fff;
  margin-bottom: 4px;
}
.hero-card > p { font-size: 14px; color: #b7cae4; margin-bottom: 20px; }
.eco-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.eco-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(11,34,64,0.4);
  transition: border-color .15s, transform .15s;
}
.eco-item:hover { border-color: var(--accent-soft); transform: translateY(-2px); }
.eco-item b { font-family: var(--font-display); font-style: italic; font-size: 15px; color: #fff; }
.eco-item span { font-size: 12.5px; color: #9fb6d6; line-height: 1.4; }

/* ---------- faixa de prova ---------- */
.proof-strip { background: var(--paper); border-bottom: 1px solid var(--line); }
.proof-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 34px;
  padding-top: 22px; padding-bottom: 22px;
  font-size: 14.5px; font-weight: 600; color: var(--ink-soft);
}
.proof-inner .proof-lead {
  font-family: var(--font-display); font-style: italic;
  color: var(--navy-700); font-size: 15px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.proof-inner span { display: flex; align-items: center; gap: 9px; }
.proof-inner span:not(.proof-lead)::before {
  content: ""; width: 7px; height: 7px; flex: none;
  background: var(--accent);
  transform: rotate(45deg) skewX(-8deg);
}

/* ---------- seções ---------- */
.section { padding: 96px 0; }
.section--paper { background: var(--paper); }
.section-head { max-width: 680px; margin-bottom: 54px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head h2 {
  font-size: 38px; font-weight: 700; line-height: 1.13;
  margin: 14px 0 14px;
  color: var(--navy-800);
  text-wrap: balance;
}
.section-head p { font-size: 17px; color: var(--ink-soft); text-wrap: pretty; }

/* ---------- ABIMDE band ---------- */
.cert {
  background:
    linear-gradient(100deg, rgba(11,34,64,0.97), rgba(16,46,84,0.86)),
    var(--navy-900) url("assets/datacenter-claro.png") right center / cover no-repeat;
  color: #fff;
}
.cert-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 36px;
  padding: 40px 0;
}
.cert-seal {
  width: 96px; height: 96px; flex: none;
  border-radius: 50%;
  border: 2px solid var(--accent-soft);
  display: grid; place-items: center; text-align: center;
  background: rgba(30,114,232,0.15);
}
.cert-seal b { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 22px; color: #fff; line-height: 1; }
.cert-seal span { font-size: 9px; letter-spacing: .14em; color: var(--accent-200); text-transform: uppercase; }
.cert-text h3 { font-size: 23px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.cert-text p { font-size: 15.5px; color: #c6d6ec; max-width: 64ch; }
.cert-cta { white-space: nowrap; }
@media (max-width: 860px) {
  .cert-inner { grid-template-columns: auto 1fr; }
  .cert-cta { grid-column: 1 / -1; }
}

/* ---------- quem somos ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 380px;
  background: var(--navy-900) url("assets/equipe-claro.png") center / cover no-repeat;
}
.about-figure .about-badge {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  background: rgba(11,34,64,0.88);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 18px 20px;
  backdrop-filter: blur(4px);
}
.about-badge strong {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 30px; color: #fff; display: block; line-height: 1;
}
.about-badge span { font-size: 13.5px; color: #c6d6ec; }
.about-body h2 {
  font-size: 36px; font-weight: 700; line-height: 1.14;
  color: var(--navy-800); margin: 14px 0 16px; text-wrap: balance;
}
.about-body > p { font-size: 16.5px; color: var(--ink-soft); margin-bottom: 16px; }
.mvv { display: grid; gap: 14px; margin-top: 26px; }
.mvv-item {
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 16px 18px;
  background: linear-gradient(180deg, #fff, #fafcff);
}
.mvv-item h4 {
  font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 5px;
}
.mvv-item p { font-size: 15px; color: var(--ink-soft); }
.values-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.values-row span {
  font-size: 13px; font-weight: 600; color: var(--navy-700);
  background: #e8f1fd; padding: 7px 14px; border-radius: 999px;
}

/* ---------- Kally (IA da Trilobit) ---------- */
.kally {
  background:
    linear-gradient(105deg, rgba(11,34,64,0.98) 0%, rgba(16,54,95,0.92) 60%, rgba(27,62,111,0.85) 100%),
    var(--navy-950);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.kally-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: center;
  padding: 92px 0;
}
.kally-copy h2 {
  font-size: 38px; font-weight: 700; line-height: 1.13;
  margin: 14px 0 16px; color: #fff; text-wrap: balance;
}
.kally-copy h2 em { font-style: italic; color: var(--accent-soft); }
.kally-lead { font-size: 17px; color: #c6d6ec; max-width: 52ch; text-wrap: pretty; }
.kally-feats {
  list-style: none; margin: 24px 0 22px;
  display: grid; gap: 11px; font-size: 15.5px; color: #dce7f6;
}
.kally-feats li { display: flex; gap: 12px; align-items: baseline; }
.kally-feats li::before {
  content: ""; width: 8px; height: 8px; flex: none;
  background: var(--accent-soft);
  transform: rotate(45deg) skewX(-8deg) translateY(-1px);
}
.kally-quote {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 18px; color: #fff;
  border-left: 3px solid var(--accent); padding-left: 14px;
  margin: 0 0 26px;
}
.kally-downloads { display: flex; flex-wrap: wrap; gap: 14px; }
.kally-dl {
  display: flex; align-items: center; gap: 13px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 12px 18px;
  transition: background .15s, border-color .15s, transform .12s;
}
.kally-dl:hover { background: rgba(255,255,255,0.12); border-color: var(--accent-soft); transform: translateY(-2px); }
.kally-dl-ico {
  width: 40px; height: 40px; flex: none; border-radius: 10px;
  background: var(--accent);
  display: grid; place-items: center;
}
.kally-dl-ico svg { width: 21px; height: 21px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.kally-dl small { display: block; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: #9fb6d6; line-height: 1.3; }
.kally-dl strong { font-family: var(--font-display); font-style: italic; font-size: 15.5px; color: #fff; line-height: 1.2; }

/* player vertical (estilo celular) */
.kally-stage { justify-self: center; text-align: center; }
.kally-phone {
  width: 300px; max-width: 80vw;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.16);
  background: #0a1424;
  padding: 10px;
  box-shadow: var(--shadow-float);
}
.kally-video {
  display: block; width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  background: #0a1424;
  object-fit: cover;
}
.kally-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; max-width: 300px;
  font-size: 13px; color: #c6d6ec;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  padding: 8px 16px; border-radius: 999px;
}
.kally-badge b { font-family: var(--font-display); font-style: italic; color: #fff; }
@media (max-width: 980px) {
  .kally-inner { grid-template-columns: 1fr; gap: 40px; padding: 64px 0; }
  .kally-stage { order: -1; }
  .kally-copy h2 { font-size: 29px; }
}

/* ---------- diferenciais ---------- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.diff-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  background: linear-gradient(180deg, #fff 0%, #fafcff 100%);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.diff-card:hover {
  border-color: var(--accent-soft);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.diff-ico {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--navy-700));
  display: grid; place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(30,114,232,0.3);
}
.diff-ico svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.8; }
.diff-card h3 { font-size: 20px; font-weight: 700; color: var(--navy-800); margin-bottom: 8px; }
.diff-card p { font-size: 15px; color: var(--ink-soft); }

/* ---------- sistemas (produtos software) ---------- */
.sys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sys-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
  scroll-margin-top: 96px;
}
.sys-card:hover { border-color: var(--accent-soft); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.sys-card.is-feature {
  background: linear-gradient(165deg, var(--navy-900), var(--navy-950));
  border-color: var(--navy-700);
  color: #fff;
}
.sys-logo { height: 56px; display: flex; align-items: center; }
.sys-logo img { max-height: 100%; width: auto; max-width: 210px; }
.sys-card h3 { font-size: 19px; color: var(--navy-800); }
.sys-card.is-feature h3 { color: #fff; }
.sys-card p { font-size: 15px; color: var(--ink-soft); flex: 1; }
.sys-card.is-feature p { color: #c6d6ec; }
.sys-feats { list-style: none; display: grid; gap: 8px; font-size: 14px; color: var(--ink-soft); }
.sys-card.is-feature .sys-feats { color: #dce7f6; }
.sys-feats li { display: flex; gap: 10px; align-items: baseline; }
.sys-feats li::before {
  content: ""; width: 7px; height: 7px; flex: none;
  background: var(--accent);
  transform: rotate(45deg) skewX(-8deg) translateY(-1px);
}
.sys-card.is-feature .sys-feats li::before { background: var(--accent-soft); }
.sys-tag {
  align-self: flex-start;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
  background: #e8f1fd;
  padding: 5px 12px; border-radius: 999px;
}
.sys-card.is-feature .sys-tag { color: #fff; background: rgba(255,255,255,0.14); }

/* módulos complementares */
.modules {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mod-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 20px;
  background: #fff;
  transition: border-color .15s, transform .15s;
}
.mod-card:hover { border-color: var(--accent-soft); transform: translateY(-2px); }
.mod-card b { font-family: var(--font-display); font-style: italic; font-size: 17px; color: var(--navy-800); display: block; margin-bottom: 4px; }
.mod-card span { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- hardware ---------- */
.hw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.hw-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.hw-card:hover { border-color: var(--accent-soft); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.hw-card::after {
  content: "";
  position: absolute; right: -40px; top: -40px;
  width: 130px; height: 130px;
  background: radial-gradient(circle, rgba(30,114,232,0.10), transparent 70%);
}
.hw-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.hw-ico {
  width: 46px; height: 46px; flex: none;
  border-radius: 11px;
  background: #e8f1fd;
  display: grid; place-items: center;
}
.hw-ico svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.hw-card h3 { font-size: 19px; color: var(--navy-800); }
.hw-card > p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 14px; }
.hw-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.hw-tags span {
  font-size: 12.5px; font-weight: 600; color: var(--navy-700);
  background: #fff; border: 1px solid var(--line);
  padding: 5px 11px; border-radius: 7px;
}

/* ---------- clientes (faixa escura, logos brancos originais) ---------- */
.clients {
  background:
    linear-gradient(105deg, rgba(11,34,64,0.98) 0%, rgba(16,54,95,0.92) 60%, rgba(27,62,111,0.85) 100%),
    var(--navy-950);
  padding: 84px 0;
  border-top: 1px solid var(--navy-700);
  border-bottom: 1px solid var(--navy-700);
}
.clients-head { text-align: center; max-width: 700px; margin: 0 auto 42px; }
.clients-head .eyebrow { justify-content: center; margin-bottom: 12px; }
.clients-head h2 { font-size: 30px; color: #fff; font-weight: 700; }
.clients-lead { margin-top: 14px; color: #c6d6ec; font-size: 16px; }

/* mural de clientes (logo wall em grade) */
.clients-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.client-cell {
  position: relative;
  min-height: 96px;
  display: flex; align-items: center; justify-content: center;
  padding: 18px 22px;
  text-align: center;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 18px; color: #fff;
  border-right: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: background .25s ease;
}
.client-cell img {
  max-height: 42px;
  max-width: 78%;
  width: auto; height: auto;
  object-fit: contain;
  opacity: .82;
  transition: opacity .25s ease, transform .25s ease;
}
.client-cell::before {
  content: "";
  position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: var(--accent-soft);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.client-cell:hover { background: rgba(255,255,255,0.07); }
.client-cell:hover img { opacity: 1; transform: scale(1.04); }
.client-cell:hover::before { transform: scaleX(1); }
.client-cell--more { grid-column: 1 / -1; min-height: 60px; color: #9fc4f5; font-size: 15px; }
.client-cell--more:hover { background: var(--accent); color: #fff; }
.client-cell--more:hover::before { transform: scaleX(0); }
@media (max-width: 860px) { .clients-wall { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .clients-wall { grid-template-columns: repeat(2, 1fr); } .client-cell { min-height: 80px; font-size: 16px; } .client-cell img { max-height: 36px; } }

/* ---------- integradores (b2b) ---------- */
.b2b-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.b2b-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  background: linear-gradient(180deg, #fff, #f8fbff);
}
.b2b-card h3 { font-size: 22px; color: var(--navy-800); margin-bottom: 10px; }
.b2b-card > p { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 18px; }
.b2b-list { list-style: none; display: grid; gap: 10px; margin-bottom: 22px; }
.b2b-list li { display: flex; gap: 11px; align-items: baseline; font-size: 15px; color: var(--ink-soft); }
.b2b-list li::before {
  content: ""; width: 8px; height: 8px; flex: none;
  background: var(--accent);
  transform: rotate(45deg) skewX(-8deg) translateY(-1px);
}
.b2b-link {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 15.5px; color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px;
}
.b2b-link::after { content: "→"; transition: transform 0.15s; }
.b2b-link:hover::after { transform: translateX(4px); }

/* ---------- blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.post-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.post-card:hover { border-color: var(--accent-soft); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.post-thumb {
  height: 150px;
  background: var(--navy-900);
  position: relative;
  display: grid; place-items: center;
}
.post-thumb.t1 { background: var(--navy-900) url("assets/datacenter-claro.png") center/cover; }
.post-thumb.t2 { background: var(--navy-900) url("assets/lobby-azul.png") center/cover; }
.post-thumb.t3 { background: var(--navy-900) url("assets/cidade-sp.png") center/cover; }
.post-thumb::before { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(11,34,64,.25), rgba(11,34,64,.7)); }
.post-cat {
  position: absolute; top: 14px; left: 14px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: var(--accent);
  padding: 5px 12px; border-radius: 999px;
}
.post-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post-body h3 { font-size: 18px; color: var(--navy-800); line-height: 1.25; margin-bottom: 10px; }
.post-body p { font-size: 14.5px; color: var(--ink-soft); flex: 1; }
.post-more {
  margin-top: 16px;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 14.5px; color: var(--accent);
  display: inline-flex; gap: 7px; align-items: center;
}
.post-more::after { content: "→"; transition: transform .15s; }
.post-card:hover .post-more::after { transform: translateX(4px); }

/* ---------- contato ---------- */
.contact {
  background: var(--navy-950) url("assets/cidade-sp.png") right center / cover no-repeat;
  color: #fff; position: relative; overflow: hidden;
}
.contact::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(11,34,64,0.97) 0%, rgba(11,34,64,0.88) 55%, rgba(13,38,72,0.6) 100%);
}
.contact-inner {
  position: relative;
  display: grid; grid-template-columns: 1fr 460px;
  gap: 56px; align-items: center;
  padding: 92px 0;
}
.contact-info h2 { font-size: 36px; font-weight: 700; line-height: 1.14; margin: 14px 0 14px; text-wrap: balance; }
.contact-info > p { font-size: 17px; color: #c6d6ec; max-width: 50ch; margin-bottom: 30px; }
.contact-list { list-style: none; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-ico {
  width: 44px; height: 44px; flex: none; border-radius: 11px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  display: grid; place-items: center;
}
.contact-ico svg { width: 22px; height: 22px; stroke: var(--accent-soft); fill: none; stroke-width: 1.8; }
.contact-list b { font-family: var(--font-display); font-style: italic; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: #9fb6d6; display: block; }
.contact-list a, .contact-list span { color: #fff; font-size: 16px; }

/* form card */
.lead-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 30px 30px 26px;
  box-shadow: var(--shadow-float);
}
.lead-card h3 { font-family: var(--font-display); font-style: italic; font-size: 24px; font-weight: 700; }
.lead-card .lead-hint { font-size: 14px; color: var(--ink-soft); margin: 6px 0 20px; }
.lead-form { display: grid; gap: 14px; }
.lead-form label {
  display: grid; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.lead-form input, .lead-form select, .lead-form textarea {
  font-family: var(--font-body);
  font-size: 16px; color: var(--ink);
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  width: 100%; outline: none;
  transition: border-color 0.15s;
}
.lead-form textarea { resize: vertical; min-height: 84px; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--accent); }
.lead-form .field-error { border-color: #d3473e; }
.btn-primary {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 17px;
  background: var(--accent); color: #fff;
  border: none; cursor: pointer;
  padding: 15px 20px; border-radius: 8px;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: var(--navy-700); }
.btn-primary:active { transform: scale(0.985); }
.btn-whats {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 15px;
  color: #128c4b;
  border: 1.5px solid #b3dcc5; background: #f0faf4;
  padding: 12px 20px; border-radius: 8px;
  transition: background 0.15s;
}
.btn-whats:hover { background: #e1f5e9; }
.lead-privacy { font-size: 12px; color: #8298b5; margin-top: 12px; text-align: center; }

/* ---------- cta final ---------- */
.cta-final {
  background: var(--navy-900) url("assets/lobby-azul.png") center / cover no-repeat;
  position: relative; color: #fff; text-align: center;
}
.cta-final::before { content: ""; position: absolute; inset: 0; background: rgba(10,30,58,0.85); }
.cta-final .wrap { position: relative; padding-top: 88px; padding-bottom: 92px; }
.cta-final h2 { font-size: 38px; font-weight: 700; line-height: 1.15; max-width: 24ch; margin: 14px auto 14px; text-wrap: balance; }
.cta-final p { font-size: 17px; color: #c6d6ec; max-width: 56ch; margin: 0 auto 32px; }
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-row .btn-primary { padding: 16px 34px; font-size: 18px; text-decoration: none; display: inline-flex; align-items: center; }
.cta-row .btn-whats { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.25); color: #fff; }
.cta-row .btn-whats:hover { background: rgba(255,255,255,0.12); }

/* ---------- footer ---------- */
.footer { background: var(--navy-950); color: #9db3d2; font-size: 14px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 64px; padding-bottom: 48px;
}
.footer-logo img { height: 42px; width: auto; margin-bottom: 16px; }
.footer-logo p { max-width: 34ch; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.14);
  display: grid; place-items: center;
  transition: background .15s, border-color .15s;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); }
.footer-social svg { width: 18px; height: 18px; fill: #c6d6ec; }
.footer-social a:hover svg { fill: #fff; }
.footer h4 {
  font-family: var(--font-display); font-style: italic;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; margin-bottom: 16px;
}
.footer ul { list-style: none; display: grid; gap: 9px; }
.footer a:hover { color: #fff; }
.footer-base {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px; padding-bottom: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: #6e87aa;
}
.footer-base a:hover { color: #fff; }

/* ---------- whatsapp flutuante ---------- */
.whats-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(18,140,75,0.45);
  transition: transform 0.15s;
}
.whats-float:hover { transform: scale(1.07); }
.whats-float svg { width: 32px; height: 32px; }

/* ---------- glossario ---------- */
.gloss-hero { padding: 64px 0 12px; }
.gloss-hero h1 { font-size: 40px; color: var(--navy-900); margin: 14px 0 12px; }
.gloss-hero p { font-size: 17px; color: var(--ink-soft); max-width: 62ch; }
.gloss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 32px 0 96px;
}
.gloss-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  scroll-margin-top: 96px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.gloss-card:hover { border-color: var(--accent-soft); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.gloss-thumb { aspect-ratio: 1 / 1; overflow: hidden; background: var(--navy-900); }
.gloss-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gloss-body { padding: 20px 22px 24px; }
.gloss-body h3 { font-style: normal; font-size: 17px; font-weight: 700; color: var(--navy-800); line-height: 1.25; margin-bottom: 10px; }
.gloss-body p { font-size: 14px; color: var(--ink-soft); margin-bottom: 8px; }
.gloss-body p:last-child { margin-bottom: 0; }

/* ---------- responsivo ---------- */
@media (max-width: 1040px) {
  .modules { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; padding-top: 56px; padding-bottom: 64px; }
  .hero h1 { font-size: 38px; }
  .diff-grid, .sys-grid, .blog-grid, .gloss-grid { grid-template-columns: 1fr 1fr; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .contact-inner { gap: 40px; }
  .about-figure { min-height: 300px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .topbar-nav { display: none; }
  .nav-toggle { display: block; }
  /* menu mobile */
  body.nav-open .topbar-nav {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px 0;
    box-shadow: 0 18px 40px rgba(4,16,33,0.12);
  }
  body.nav-open .topbar-nav a { padding: 14px 28px; border-bottom: 1px solid var(--line); }
  body.nav-open .topbar-nav a:last-child { border-bottom: none; }
}
@media (max-width: 760px) {
  .hw-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .diff-grid, .sys-grid, .blog-grid, .b2b-grid, .modules, .footer-inner, .gloss-grid { grid-template-columns: 1fr; }
  .eco-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .section { padding: 64px 0; }
  .section-head h2, .about-body h2, .contact-info h2, .cta-final h2 { font-size: 29px; }
  .topbar-cta { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
}

/* ---------- pop-up rápido de orçamento ---------- */
.quote-modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; }
.quote-modal.is-open { display: flex; }
.quote-backdrop { position: absolute; inset: 0; background: rgba(7,16,32,0.62); backdrop-filter: blur(3px); }
.quote-dialog {
  position: relative; width: 100%; max-width: 380px;
  background: #fff; border-radius: 16px;
  padding: 32px 28px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  animation: quote-pop 0.18s ease-out;
}
@keyframes quote-pop { from { opacity: 0; transform: translateY(12px) scale(0.97); } to { opacity: 1; transform: none; } }
.quote-x {
  position: absolute; top: 12px; right: 14px;
  width: 32px; height: 32px; border: none; background: transparent;
  font-size: 26px; line-height: 1; color: #9aa7bd; cursor: pointer; border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.quote-x:hover { background: #f1f4f9; color: var(--ink); }
.quote-dialog h3 { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 24px; color: var(--ink); margin: 0 0 6px; }
.quote-sub { font-size: 14.5px; color: #5d6b80; margin: 0 0 20px; text-wrap: pretty; }
.quote-form { display: grid; gap: 12px; }
.quote-form input {
  font-family: var(--font-body); font-size: 16px; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 8px;
  background: #fbfcfe; width: 100%; outline: none; transition: border-color 0.15s;
}
.quote-form input:focus { border-color: var(--accent); }
.quote-form .field-error { border-color: #d3473e; }
.quote-form .btn-primary { margin-top: 4px; width: 100%; }
.quote-success { text-align: center; padding: 8px 0 2px; }
.quote-check { width: 56px; height: 56px; margin: 4px auto 16px; border-radius: 50%; background: #e8f6ee; color: #1f9d57; font-size: 30px; line-height: 56px; font-weight: 700; }
.quote-success h3 { font-size: 22px; margin: 0 0 8px; }
.quote-success .quote-sub { margin: 0 0 22px; }
.quote-success .btn-primary { width: 100%; }

/* ---------- aviso de cookies ---------- */
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 900;
  display: flex; align-items: center; gap: 18px;
  max-width: 880px; margin: 0 auto;
  padding: 16px 20px;
  background: #0d1b30; border: 1px solid #2c4368; border-radius: 12px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.4);
  opacity: 0; transform: translateY(14px);
  transition: opacity .25s ease, transform .25s ease;
}
.cookie-bar.is-visible { opacity: 1; transform: none; }
.cookie-text { margin: 0; font-size: 14px; color: #c6d6ec; line-height: 1.5; flex: 1; }
.cookie-text a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.cookie-text a:hover { color: var(--accent-200); }
.cookie-accept {
  flex-shrink: 0;
  font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 15px;
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  padding: 11px 26px; border-radius: 8px; transition: background .15s, transform .1s;
}
.cookie-accept:hover { background: var(--navy-700); }
.cookie-accept:active { transform: scale(0.97); }
@media (max-width: 560px) {
  .cookie-bar { flex-direction: column; align-items: stretch; text-align: center; gap: 12px; }
  .cookie-accept { width: 100%; }
}

/* ---------- adições 2026-07-02: linha do tempo, detalhes dos sistemas, lâminas, blog extra ---------- */

/* linha do tempo (HTML/CSS, refeita a partir da imagem original) */
.tl {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 6px 0;
}
.tl::before {
  content: "";
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  border-radius: 2px;
}
.tl-item {
  position: relative;
  width: 50%;
  padding: 12px 40px 12px 0;
  text-align: right;
}
.tl-item:nth-child(even) {
  margin-left: 50%;
  padding: 12px 0 12px 40px;
  text-align: left;
}
.tl-item::before {
  content: "";
  position: absolute;
  top: 18px;
  right: -9px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--accent);
  box-shadow: 0 0 0 3px var(--paper);
}
.tl-item:nth-child(even)::before { right: auto; left: -9px; }
.tl-year {
  display: block;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 23px; line-height: 1.1;
  color: var(--navy-800);
}
.tl-item p { font-size: 14.5px; color: var(--ink-soft); margin-top: 3px; }
.tl-item--new .tl-year { color: var(--accent); }
.tl-item--new::before { background: var(--accent); }
.tl-item--new p { color: var(--navy-700); font-weight: 500; }
@media (max-width: 720px) {
  .tl::before { left: 9px; transform: none; }
  .tl-item,
  .tl-item:nth-child(even) {
    width: 100%; margin-left: 0;
    padding: 10px 0 10px 38px;
    text-align: left;
  }
  .tl-item::before,
  .tl-item:nth-child(even)::before { left: 1px; right: auto; }
}

/* detalhes expansíveis dos sistemas */
.sys-more { border-top: 1px solid var(--line); padding-top: 12px; }
.sys-card.is-feature .sys-more { border-top-color: rgba(255,255,255,0.16); }
.sys-more summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 14.5px; color: var(--accent);
  display: flex; align-items: center; gap: 8px;
}
.sys-more summary::-webkit-details-marker { display: none; }
.sys-more summary::after { content: "+"; font-style: normal; font-weight: 700; transition: transform .15s; }
.sys-more[open] summary::after { content: "–"; }
.sys-card.is-feature .sys-more summary { color: #9fc4f5; }
.sys-more-body { padding-top: 12px; display: grid; gap: 8px; }
.sys-more-body h4 {
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--navy-700); margin-top: 6px;
}
.sys-card.is-feature .sys-more-body h4 { color: #9fb6d6; }
.sys-more-body p { font-size: 14px; color: var(--ink-soft); flex: none; }
.sys-card.is-feature .sys-more-body p { color: #c6d6ec; }
.sys-more-body ul { list-style: none; display: grid; gap: 6px; font-size: 14px; color: var(--ink-soft); }
.sys-card.is-feature .sys-more-body ul { color: #dce7f6; }
.sys-more-body ul li { display: flex; gap: 10px; align-items: baseline; }
.sys-more-body ul li::before {
  content: ""; width: 6px; height: 6px; flex: none;
  background: var(--accent);
  transform: rotate(45deg) skewX(-8deg) translateY(-1px);
}
.sys-card.is-feature .sys-more-body ul li::before { background: var(--accent-soft); }

/* link de catálogo dentro do card de sistema */
.sys-doc {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 14.5px; color: #9fc4f5;
  display: inline-flex; align-items: center; gap: 6px;
}
.sys-doc::after { content: "↓"; font-style: normal; }
.sys-doc:hover { color: #fff; }

/* tags de hardware viram links de lâmina técnica */
.hw-tags a {
  font-size: 12.5px; font-weight: 600; color: var(--navy-700);
  background: #fff; border: 1px solid var(--line);
  padding: 5px 11px; border-radius: 7px;
  transition: border-color .15s, color .15s, box-shadow .15s;
}
.hw-tags a:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(11,34,64,0.08);
}

/* ---------- rede de parceiros (mapa + tabela) ---------- */
.rede { margin-top: 64px; }
.rede-head { margin-bottom: 22px; }
.rede-filtros {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.rede-filtros select,
.rede-filtros input {
  font: inherit; font-size: 14px; color: var(--navy-800);
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 9px 12px;
}
.rede-filtros input { flex: 1; min-width: 200px; }
.rede-filtros select:focus, .rede-filtros input:focus { outline: none; border-color: var(--accent-soft); }
.rede-filtros button {
  font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 14px;
  color: var(--accent); background: #e8f1fd; border: none; border-radius: 8px;
  padding: 9px 16px; cursor: pointer; transition: background .15s, color .15s;
}
.rede-filtros button:hover { background: var(--accent); color: #fff; }
.rede-contagem { font-size: 13.5px; color: var(--ink-soft); margin-left: auto; }
.rede-legenda { display: flex; gap: 18px; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 12px; }
.rede-legenda i {
  display: inline-block; width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line); margin-right: 5px; vertical-align: -1px;
}
.rede-mapa {
  height: 440px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  z-index: 0;
}
.rede-pop-tipo { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); }
.rede-tabela-wrap {
  margin-top: 16px;
  max-height: 430px; overflow: auto;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff;
}
.rede-tabela { width: 100%; border-collapse: collapse; font-size: 14px; }
.rede-tabela th {
  position: sticky; top: 0; z-index: 1;
  background: var(--paper); color: var(--navy-800);
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line);
}
.rede-tabela td {
  padding: 10px 14px; border-bottom: 1px solid var(--line);
  color: var(--ink-soft); vertical-align: top;
}
.rede-tabela tbody tr { cursor: pointer; transition: background .12s; }
.rede-tabela tbody tr:hover { background: #f0f6ff; }
.rede-tabela td b { color: var(--navy-800); font-weight: 600; }
.rede-tabela td small { display: block; font-size: 12px; color: #7b8ba5; margin-top: 2px; }
.rede-badge {
  display: inline-block; white-space: nowrap;
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--navy-700); background: #eef2f8;
  padding: 4px 10px; border-radius: 999px;
}
.rede-badge.is-int { color: var(--accent); background: #e8f1fd; }
.rede-vazio { text-align: center; padding: 26px !important; }
@media (max-width: 720px) {
  .rede-mapa { height: 320px; }
  .rede-contagem { margin-left: 0; width: 100%; }
  .rede-tabela th:nth-child(4), .rede-tabela td:nth-child(4) { display: none; }
}

/* thumbs dos posts extras */
.post-thumb.t4 { background: var(--navy-900) url("assets/hero-portaria.png") center/cover; }
.post-thumb.t5 { background: var(--navy-900) url("assets/equipe-claro.png") center/cover; }

/* ---------- app T-Connect (banda de download) ---------- */
.app-band {
  background: var(--navy-950) url("assets/cidade-sp.png") right center / cover no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.app-band::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(11,34,64,0.97) 0%, rgba(11,34,64,0.86) 55%, rgba(13,38,72,0.55) 100%);
}
.app-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 72px;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 92px;
}
.app-logo img { height: 58px; width: auto; }
.app-inner h2 {
  font-size: 36px; font-weight: 700; line-height: 1.15;
  margin: 26px 0 16px;
  text-wrap: pretty;
}
.app-inner .app-copy { font-size: 17px; color: #c6d6ec; max-width: 50ch; text-wrap: pretty; }
.app-feats {
  list-style: none;
  margin: 26px 0 34px;
  display: grid; gap: 11px;
  font-size: 15.5px; color: #dce7f6;
}
.app-feats li { display: flex; gap: 12px; align-items: baseline; }
.app-feats li::before {
  content: ""; width: 8px; height: 8px; flex: none;
  background: var(--accent-soft);
  transform: rotate(45deg) skewX(-8deg) translateY(-1px);
}
.store-row { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  background: #fff; color: var(--navy-900);
  border-radius: 10px;
  padding: 10px 18px;
  min-height: 56px;
  transition: transform 0.12s, box-shadow 0.12s;
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,0.35); }
.store-btn .store-mark {
  width: 26px; height: 26px; flex: none;
  background: var(--navy-800);
  border-radius: 6px;
  position: relative;
}
.store-btn .store-mark--down::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -58%) rotate(45deg);
  width: 9px; height: 9px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
}
.store-btn small { display: block; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); line-height: 1.3; }
.store-btn strong { font-family: var(--font-display); font-style: italic; font-size: 16px; line-height: 1.2; }
.store-note { margin-top: 14px; font-size: 12.5px; color: #8aa3c4; }
.appshot {
  justify-self: center;
  width: 100%;
  background: #0d1b30;
  border: 1px solid #2c4368;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.appshot-bar {
  display: flex; gap: 7px; align-items: center;
  padding: 12px 14px;
  background: #11264a;
  border-bottom: 1px solid #2c4368;
}
.appshot-bar span { width: 10px; height: 10px; border-radius: 50%; background: #33507c; }
.appshot-screen { aspect-ratio: 16 / 9; background: #0a1424; }
.appshot-screen img { width: 100%; height: 100%; object-fit: contain; display: block; }
@media (max-width: 900px) {
  .app-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 64px; padding-bottom: 64px; }
  .appshot { max-width: 540px; }
  .app-inner h2 { font-size: 29px; }
}
