/* ============================================================
   HOME v2 — Accerte
   Scoped under .hm-page on <body>.
   Reuses --azul-profundo / --coral tokens from critical.css.
   Adds editorial-operational layer: cyan accents,
   console mockup, big numerals, photo-anchored sections.
   ============================================================ */

.hm-page {
  /* Acento de texto (Deep Sky Blue) */
  --hm-cyan:        #0096ff;
  --hm-cyan-bright: #33adff;
  --hm-cyan-soft:   rgba(0, 150, 255, 0.12);
  --hm-cyan-border: rgba(0, 150, 255, 0.32);
  --hm-cyan-glow:   rgba(51, 173, 255, 0.45);
  /* CTA (Pacific Blue) */
  --hm-cta:         #0097b2;
  --hm-cta-hover:   #007a91;
  --hm-cta-glow:    rgba(0, 151, 178, 0.45);
  /* Fundos */
  --hm-ink:         #051432;
  --hm-ink-2:       #082764;
  --hm-ink-3:       #0856B1;
  --hm-paper:       #f8fcff;
  --hm-paper-2:     #eaf2fb;
  --hm-rule:        rgba(8, 39, 100, 0.12);
  --hm-rule-strong: rgba(8, 39, 100, 0.22);
  --hm-mono: var(--font-display);
  --hm-display: 'Sora', system-ui, sans-serif;
  --hm-body: 'early-sans-variable', system-ui, sans-serif;
  background: var(--hm-paper);
}

.hm-page main { display: block; }

/* ---------- Shared tokens ---------- */
.hm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hm-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hm-cyan);
  padding: 6px 12px;
  border: 1px solid var(--hm-cyan-border);
  border-radius: 999px;
  background: var(--hm-cyan-soft);
}
.hm-eyebrow--light {
  color: var(--azul-profundo);
  border-color: rgba(8, 39, 100, 0.22);
  background: rgba(8, 39, 100, 0.06);
}

.hm-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--hm-cyan-bright);
  box-shadow: 0 0 0 0 var(--hm-cyan-glow);
  animation: hmPulse 2.2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes hmPulse {
  0%   { box-shadow: 0 0 0 0 var(--hm-cyan-glow); }
  70%  { box-shadow: 0 0 0 10px rgba(51, 173, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(51, 173, 255, 0); }
}

.hm-accent {
  background: linear-gradient(120deg, var(--hm-cyan) 0%, var(--hm-cyan-bright) 60%, #7cc4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  font-family: var(--hm-display);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.hm-btn--primary {
  background: linear-gradient(120deg, var(--hm-cta-hover) 0%, var(--hm-cta) 100%);
  color: #fff;
  box-shadow: 0 18px 40px -16px var(--hm-cta-glow), 0 0 0 1px rgba(0, 151, 178, 0.3);
}
.hm-btn--primary:hover {
  background: linear-gradient(120deg, var(--hm-cta) 0%, #00b8d4 100%);
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -16px var(--hm-cta-glow), 0 0 0 1px rgba(0, 151, 178, 0.5);
}
.hm-btn--ghost {
  background: transparent;
  color: #e6f1ff;
  border-color: rgba(255, 255, 255, 0.22);
}
.hm-btn--ghost:hover {
  border-color: var(--hm-cyan-bright);
  color: var(--hm-cyan-bright);
}
.hm-btn--dark {
  background: var(--azul-profundo);
  color: #fff;
}
.hm-btn--dark:hover {
  background: var(--hm-ink-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(8, 39, 100, 0.45);
}

/* ============================================================
   HERO
   ============================================================ */
.hm-hero {
  position: relative;
  background: var(--hm-ink);
  color: #e6f1ff;
  overflow: hidden;
  padding: 130px 0 90px;
}
.hm-hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  display: block;
}
.hm-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(0.85) contrast(1.04);
}
.hm-hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(60% 80% at 18% 30%, rgba(0, 150, 255, 0.20), transparent 70%),
    radial-gradient(50% 70% at 90% 75%, rgba(8, 39, 100, 0.45), transparent 70%),
    linear-gradient(180deg, rgba(5, 21, 54, 0.78) 0%, rgba(5, 21, 54, 0.92) 70%, rgba(5, 21, 54, 0.98) 100%);
  pointer-events: none;
}
.hm-hero-grid-deco {
  position: absolute; inset: 0;
  z-index: 1;
  /* malha quadriculada removida */
  pointer-events: none;
}
.hm-hero-inner {
  position: relative;
  z-index: 2;
}
.hm-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}
.hm-hero-text { max-width: 620px; }
.hm-hero-h1 {
  font-family: var(--hm-display);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 22px 0 22px;
  color: #fff;
}
.hm-hero-h1 .hm-accent { font-weight: 800; }
.hm-hero-h1 .hm-h1-rule {
  display: inline-block;
  position: relative;
}
.hm-hero-h1 .hm-h1-rule::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, var(--hm-cyan), transparent);
  opacity: 0.6;
}
.hm-hero-sub {
  font-family: var(--hm-body);
  font-size: 16px;
  line-height: 1.6;
  color: #b8c7e0;
  margin: 0 0 32px;
  max-width: 560px;
}
.hm-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.hm-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  max-width: 560px;
}
.hm-hero-proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hm-hero-proof-tag {
  font-family: var(--hm-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hm-cyan);
}
.hm-hero-proof-value {
  font-family: var(--hm-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

/* ---------- Hero mockup: operations console ---------- */
.hm-console {
  position: relative;
  background: linear-gradient(160deg, rgba(11, 31, 77, 0.95) 0%, rgba(5, 21, 54, 0.95) 100%);
  border: 1px solid rgba(51, 173, 255, 0.22);
  border-radius: 18px;
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  font-family: var(--hm-mono);
  color: #cbd5e1;
}
.hm-console::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 100% 0%, rgba(51, 173, 255, 0.18), transparent 60%),
    radial-gradient(40% 60% at 0% 100%, rgba(8, 86, 177, 0.22), transparent 60%);
  pointer-events: none;
}
.hm-console > * { position: relative; z-index: 1; }

.hm-console-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  background: rgba(5, 21, 54, 0.4);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.10);
}
.hm-console-title {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #e6f1ff;
}
.hm-console-clock {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: 11.5px;
  color: rgba(203, 213, 225, 0.7);
}
.hm-console-clock strong {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.hm-console-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 150, 255, 0.14);
  border: 1px solid rgba(0, 150, 255, 0.34);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--hm-cyan-bright);
}

.hm-console-substate {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: 11.5px;
  color: rgba(203, 213, 225, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.hm-console-substate strong { color: #e6f1ff; font-weight: 600; }
.hm-console-substate-sep { opacity: 0.5; }

.hm-console-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 16px 14px;
}
.hm-console-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.hm-console-row-id {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.hm-console-row-tag {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hm-cyan);
  background: rgba(0, 150, 255, 0.10);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid rgba(0, 150, 255, 0.25);
  flex-shrink: 0;
}
.hm-console-row-name {
  font-size: 11.5px;
  color: #e6f1ff;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;       /* show the full instance name, never truncate */
}
.hm-spark-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.hm-console-row-spark {
  flex: 1 1 auto;
  min-width: 40px;
  height: 22px;
  align-self: center;
  overflow: visible;
  /* soft edges so the trace dissolves into the row instead of stopping hard */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.hm-spark-area {
  fill: url(#hmSparkFill);
  stroke: none;
  transition: opacity 0.5s ease;
}
.hm-spark-line {
  fill: none;
  stroke: var(--hm-cyan-bright);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 3px rgba(51, 173, 255, 0.5));
}
/* JS (index.html hero console) morphs the path 'd' for status-reactive gestures;
   the line rests calm between events. Reduced-motion: JS skips all gestures. */
.hm-console-row-pill {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--hm-cyan-bright);
  background: rgba(0, 150, 255, 0.10);
  border: 1px solid rgba(0, 150, 255, 0.28);
  padding: 4px 10px;
  border-radius: 999px;
}
.hm-console-row-pill--muted {
  color: rgba(203, 213, 225, 0.7);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.10);
}

.hm-console-feed {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 18px 14px;
  /* Anti-CLS: reserva espaço pras 3 entradas que o JS injeta no DOMContentLoaded
     (ver initFeed em index.html). Sem isso, o container cresce de 0 -> ~80px
     quando o JS roda, empurrando .hm-console-foot abaixo. */
  min-height: 80px;
}
.hm-console-feed-entry {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  color: rgba(203, 213, 225, 0.85);
  opacity: 0;
  animation: hmConsoleFeedIn 0.5s ease forwards;
}
.hm-console-feed-entry:nth-child(1) { animation-delay: 0.5s; }
.hm-console-feed-entry:nth-child(2) { animation-delay: 0.7s; }
.hm-console-feed-entry:nth-child(3) { animation-delay: 0.9s; }
@keyframes hmConsoleFeedIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hm-console-feed-ts {
  color: rgba(203, 213, 225, 0.55);
  font-size: 10.5px;
  letter-spacing: 0.02em;
}
.hm-console-feed-tag {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
}
.hm-console-feed-tag--ok   { color: #4ade80; background: rgba(74, 222, 128, 0.10); border: 1px solid rgba(74, 222, 128, 0.28); }
.hm-console-feed-tag--info { color: var(--hm-cyan-bright); background: rgba(0, 150, 255, 0.10); border: 1px solid rgba(0, 150, 255, 0.28); }
.hm-console-feed-tag--warn { color: #fbbf24; background: rgba(251, 191, 36, 0.10); border: 1px solid rgba(251, 191, 36, 0.30); }

.hm-console-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border-top: 1px dashed rgba(255, 255, 255, 0.10);
  background: rgba(5, 21, 54, 0.4);
  font-size: 10.5px;
  color: rgba(203, 213, 225, 0.7);
  letter-spacing: 0.04em;
}
.hm-console-foot strong { color: #fff; font-weight: 600; font-size: 13px; }
.hm-console-foot span { display: inline-flex; align-items: center; gap: 8px; }

/* ============================================================
   MANIFESTO (light, editorial numerals)
   ============================================================ */
.hm-manifesto {
  background: var(--hm-paper);
  color: var(--azul-profundo);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.hm-manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  /* malha quadriculada removida */
  pointer-events: none;
}
.hm-manifesto-inner { position: relative; }
.hm-manifesto-head {
  max-width: 760px;
  margin-bottom: 80px;
}
.hm-manifesto-h2 {
  font-family: var(--hm-display);
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 18px 0 18px;
  color: var(--azul-profundo);
}
.hm-manifesto-h2 .hm-accent--ink {
  background: linear-gradient(120deg, var(--azul-medio), var(--hm-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hm-manifesto-lead {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(8, 39, 100, 0.7);
  max-width: 680px;
}

.hm-mf-list {
  display: grid;
  gap: 12px;
  counter-reset: manifesto;
}
.hm-mf-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  padding: 38px 4px;
  border-top: 1px solid var(--hm-rule);
  position: relative;
  transition: background 0.3s ease;
}
.hm-mf-item:last-child { border-bottom: 1px solid var(--hm-rule); }
.hm-mf-item:hover { background: rgba(8, 39, 100, 0.02); }

.hm-mf-numeral {
  font-family: var(--hm-display);
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--azul-profundo);
  position: relative;
  transition: -webkit-text-stroke-color 0.3s ease, color 0.3s ease;
}
.hm-mf-numeral::after {
  content: '';
  position: absolute;
  left: 0; bottom: 14px;
  width: 80px; height: 2px;
  background: var(--hm-cyan);
  opacity: 0;
  transition: opacity 0.3s ease, width 0.3s ease;
}
.hm-mf-item:hover .hm-mf-numeral {
  -webkit-text-stroke-color: var(--hm-cyan);
}
.hm-mf-item:hover .hm-mf-numeral::after {
  opacity: 1;
  width: 120px;
}

.hm-mf-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 14px;
}
.hm-mf-tag {
  font-family: var(--hm-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hm-cyan);
}
.hm-mf-title {
  font-family: var(--hm-display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--azul-profundo);
  margin: 0;
}
.hm-mf-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(8, 39, 100, 0.7);
  margin: 0;
  max-width: 600px;
}

.hm-mf-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 14px;
  min-width: 140px;
  text-align: right;
}
.hm-mf-meta-label {
  font-family: var(--hm-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(8, 39, 100, 0.5);
}
.hm-mf-meta-value {
  font-family: var(--hm-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--azul-profundo);
  letter-spacing: -0.01em;
}

/* ============================================================
   TRUST STRIP (clientes + certs inline)
   ============================================================ */
.hm-trust {
  background: var(--hm-paper-2);
  color: var(--azul-profundo);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--hm-rule);
  border-bottom: 1px solid var(--hm-rule);
}
.hm-trust-inner { position: relative; }
.hm-trust-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.hm-trust-title {
  font-family: var(--hm-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--azul-profundo);
  letter-spacing: -0.01em;
  margin: 0;
}
.hm-trust-title strong { color: var(--azul-medio); font-weight: 700; }
.hm-trust-certs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hm-trust-cert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  font-family: var(--hm-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--azul-medio);
  background: rgba(8, 86, 177, 0.08);
  border: 1px solid rgba(8, 86, 177, 0.24);
  border-radius: 999px;
}
.hm-trust-cert svg { width: 13px; height: 13px; }

.hm-trust .marquee-outer { margin-top: 0; }
.hm-trust .marquee-inner { padding: 12px 0; }
/* Use rest.css default logo effect (grayscale + opacity, hover restores color). */

/* ============================================================
   FRENTES (3 editorial articles, alternating)
   ============================================================ */
.hm-frentes {
  background: var(--hm-paper);
  padding: 130px 0 140px;
  color: var(--azul-profundo);
  position: relative;
  overflow: hidden;
}
.hm-frentes-head {
  max-width: 760px;
  margin-bottom: 90px;
}
.hm-frentes-h2 {
  font-family: var(--hm-display);
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 18px 0 18px;
  color: var(--azul-profundo);
}
.hm-frentes-h2 .hm-accent--ink {
  background: linear-gradient(120deg, var(--azul-medio), var(--hm-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hm-frentes-lead {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(8, 39, 100, 0.7);
  max-width: 680px;
}

.hm-frente {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
}
.hm-frente + .hm-frente {
  border-top: 1px solid var(--hm-rule);
  margin-top: 0;
}
.hm-frente--reverse { direction: rtl; }
.hm-frente--reverse > * { direction: ltr; }

.hm-frente-visual {
  position: relative;
}
.hm-frente-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 80px -30px rgba(8, 39, 100, 0.35);
}
.hm-frente-photo img,
.hm-frente-photo picture {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
}
.hm-frente-photo img {
  transition: transform .8s ease;
}
.hm-frente:hover .hm-frente-photo img {
  transform: scale(1.04);
}
.hm-frente-blob {
  position: absolute;
  z-index: -1;
  width: 70%; height: 70%;
  border-radius: 64% 36% 50% 50% / 60% 40% 60% 40%;
  background: linear-gradient(135deg, var(--hm-cyan-soft), rgba(8, 86, 177, 0.18));
  filter: blur(20px);
  opacity: 0.8;
}
.hm-frente:nth-child(odd) .hm-frente-blob { top: -8%; right: -8%; }
.hm-frente:nth-child(even) .hm-frente-blob { bottom: -8%; left: -8%; }

.hm-frente-floating {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 22px 50px -16px rgba(8, 39, 100, 0.32);
  border: 1px solid var(--hm-rule);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.hm-frente:nth-child(odd) .hm-frente-floating { bottom: 24px; right: -28px; }
.hm-frente:nth-child(even) .hm-frente-floating { top: 24px; left: -28px; }
.hm-frente-floating-pulse {
  width: 10px; height: 10px;
  background: var(--hm-cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--hm-cyan-glow);
  animation: hmPulse 2.2s ease-out infinite;
  flex-shrink: 0;
}
.hm-frente-floating-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hm-frente-floating-label {
  font-family: var(--hm-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(8, 39, 100, 0.5);
}
.hm-frente-floating-value {
  font-family: var(--hm-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--azul-profundo);
  letter-spacing: -0.01em;
}

.hm-frente-content {}
.hm-frente-marker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--hm-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hm-cyan);
  margin-bottom: 22px;
}
.hm-frente-marker-num {
  font-family: var(--hm-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--azul-profundo);
  padding: 3px 10px;
  background: rgba(0, 150, 255, 0.10);
  border: 1px solid rgba(0, 150, 255, 0.28);
  border-radius: 4px;
}
.hm-frente-title {
  font-family: var(--hm-display);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  color: var(--azul-profundo);
}
.hm-frente-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(8, 39, 100, 0.72);
  margin: 0 0 28px;
  max-width: 540px;
}

.hm-frente-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 2px;
  border-top: 1px solid var(--hm-rule);
}
.hm-frente-list li { border-bottom: 1px solid var(--hm-rule); }
.hm-frente-list a {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 4px;
  text-decoration: none;
  transition: padding 0.3s ease, background 0.3s ease;
}
.hm-frente-list a:hover {
  padding-left: 14px;
  background: rgba(0, 150, 255, 0.04);
}
.hm-frente-list-num {
  font-family: var(--hm-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(8, 39, 100, 0.4);
}
.hm-frente-list-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hm-frente-list-name {
  font-family: var(--hm-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--azul-profundo);
  letter-spacing: -0.01em;
}
.hm-frente-list-tag {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--hm-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--hm-cyan);
  background: rgba(0, 150, 255, 0.10);
  padding: 1px 7px;
  border-radius: 4px;
  vertical-align: middle;
}
.hm-frente-list-desc {
  font-size: 13px;
  color: rgba(8, 39, 100, 0.6);
  line-height: 1.45;
}
.hm-frente-list-arrow {
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(0, 150, 255, 0.10);
  color: var(--hm-cyan);
  transition: transform .3s ease, background .3s ease;
}
.hm-frente-list a:hover .hm-frente-list-arrow {
  background: var(--hm-cyan);
  color: #fff;
  transform: translateX(4px);
}

/* ============================================================
   KPI WALL
   ============================================================ */
.hm-numbers {
  background: var(--hm-paper);
  color: var(--azul-profundo);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.hm-numbers::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 70% at 80% 30%, rgba(0, 150, 255, 0.07), transparent 70%),
    radial-gradient(40% 60% at 10% 80%, rgba(8, 86, 177, 0.06), transparent 70%);
  pointer-events: none;
}
.hm-numbers::after {
  content: '';
  position: absolute;
  inset: 0;
  /* malha quadriculada removida */
  pointer-events: none;
}
.hm-numbers-inner { position: relative; }
.hm-numbers-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.hm-numbers-h2 {
  font-family: var(--hm-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
  color: var(--azul-profundo);
  max-width: 560px;
}
.hm-numbers-h2 .hm-accent { font-weight: 800; }
.hm-numbers-since {
  font-family: var(--hm-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(8, 39, 100, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hm-numbers-since strong { color: var(--hm-cyan); font-weight: 600; }

.hm-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(8, 39, 100, 0.10);
  border-bottom: 1px solid rgba(8, 39, 100, 0.10);
}
.hm-kpi {
  padding: 38px 28px;
  border-right: 1px solid rgba(8, 39, 100, 0.10);
  position: relative;
  transition: background 0.3s ease;
}
.hm-kpi:last-child { border-right: 0; }
.hm-kpi:hover { background: rgba(8, 39, 100, 0.025); }

.hm-kpi-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--hm-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hm-cyan);
  margin-bottom: 16px;
}
.hm-kpi-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}
.hm-kpi-prefix {
  font-family: var(--hm-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--hm-cyan);
  line-height: 1;
}
.hm-kpi-value {
  font-family: var(--hm-display);
  font-size: clamp(34px, 3.8vw, 44px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--azul-profundo);
  /* Anti-CLS: contador anima de "0" (1 char) ate "1700" (4 chars).
     Sem reservar espaco, cada incremento muda largura e dispara layout shift. */
  font-variant-numeric: tabular-nums;
  display: inline-block;
  min-width: 4ch;
  text-align: right;
}
.hm-kpi-suffix {
  font-family: var(--hm-mono);
  font-size: 18px;
  font-weight: 500;
  color: rgba(8, 39, 100, 0.65);
  line-height: 1;
}
.hm-kpi-label {
  font-size: 13px;
  color: rgba(8, 39, 100, 0.70);
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 220px;
}
.hm-kpi-spark {
  width: 100%;
  height: 32px;
}
.hm-kpi-spark path { fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.hm-kpi-spark .hm-kpi-spark-line {
  stroke: var(--hm-cyan);
  filter: drop-shadow(0 0 4px rgba(0, 150, 255, 0.35));
}
.hm-kpi-spark .hm-kpi-spark-area { fill: url(#hm-kpi-grad); }

/* ============================================================
   OPERAÇÃO (timeline 24h, simple)
   ============================================================ */
.hm-clock {
  background: var(--hm-paper);
  padding: 110px 0;
  color: var(--azul-profundo);
  position: relative;
  overflow: hidden;
}
.hm-clock-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.hm-clock-h2 {
  font-family: var(--hm-display);
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 18px 0 16px;
  color: var(--azul-profundo);
}
.hm-clock-h2 .hm-accent--ink {
  background: linear-gradient(120deg, var(--azul-medio), var(--hm-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hm-clock-lead {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(8, 39, 100, 0.7);
  margin: 0;
}

.hm-tl {
  background: #fff;
  border: 1px solid var(--hm-rule);
  border-radius: 14px;
  padding: 24px 28px 28px;
  box-shadow: 0 22px 50px -24px rgba(8, 39, 100, 0.15);
}
.hm-tl-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}
.hm-tl-title {
  font-family: var(--hm-mono);
  font-size: 12px;
  font-weight: 500;
  color: rgba(8, 39, 100, 0.6);
  letter-spacing: 0.04em;
}
.hm-tl-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--hm-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--hm-cyan);
}
.hm-tl-now-time { color: var(--azul-profundo); font-weight: 700; letter-spacing: 0.02em; }

.hm-tl-svg {
  width: 100%;
  height: 110px;
  display: block;
}
.hm-tl-band {
  fill: rgba(8, 39, 100, 0.04);
  stroke: rgba(8, 39, 100, 0.08);
  stroke-width: 1;
}
.hm-tl-band--active { fill: rgba(0, 150, 255, 0.10); stroke: rgba(0, 150, 255, 0.30); }
.hm-tl-elapsed { fill: url(#hm-tl-elapsed-grad); opacity: 0.25; }
.hm-tl-tick { stroke: rgba(8, 39, 100, 0.3); stroke-width: 1; }
.hm-tl-hour {
  fill: rgba(8, 39, 100, 0.55);
  font-family: var(--hm-mono);
  font-size: 11px;
  font-weight: 500;
  text-anchor: middle;
}
.hm-tl-band-label {
  fill: rgba(8, 39, 100, 0.65);
  font-family: var(--hm-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-anchor: middle;
}
.hm-tl-band-label--active { fill: var(--hm-cyan); }
.hm-tl-event { fill: rgba(8, 39, 100, 0.4); }
.hm-tl-event--info { fill: var(--hm-cyan); }
.hm-tl-event--ok { fill: #16a34a; }
.hm-tl-now-line {
  stroke: var(--hm-cyan);
  stroke-width: 1.5;
  stroke-dasharray: 3 3;
}
.hm-tl-now-dot {
  fill: var(--hm-cyan);
  filter: drop-shadow(0 0 6px rgba(51, 173, 255, 0.7));
}

.hm-shifts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.hm-shift {
  background: #fff;
  border: 1px solid var(--hm-rule);
  border-radius: 12px;
  padding: 20px 18px;
  transition: border-color .3s ease, transform .3s ease;
}
.hm-shift:hover { border-color: var(--hm-cyan-border); transform: translateY(-2px); }
.hm-shift--active {
  background: linear-gradient(180deg, rgba(0, 150, 255, 0.06) 0%, #fff 100%);
  border-color: var(--hm-cyan-border);
  box-shadow: 0 16px 40px -20px rgba(0, 150, 255, 0.35);
}
.hm-shift-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.hm-shift-range {
  font-family: var(--hm-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(8, 39, 100, 0.55);
}
.hm-shift-pill {
  font-family: var(--hm-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(8, 39, 100, 0.06);
  color: rgba(8, 39, 100, 0.6);
}
.hm-shift--active .hm-shift-pill {
  background: var(--hm-cyan);
  color: #fff;
}
.hm-shift-name {
  font-family: var(--hm-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--azul-profundo);
}
.hm-shift-stats { display: flex; gap: 18px; }
.hm-shift-stat { display: flex; flex-direction: column; gap: 2px; }
.hm-shift-stat-val {
  font-family: var(--hm-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--azul-profundo);
  letter-spacing: -0.01em;
}
.hm-shift-stat-lbl {
  font-family: var(--hm-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(8, 39, 100, 0.5);
}

/* ============================================================
   VOICE (testimonial big quote)
   ============================================================ */
.hm-voice {
  background: var(--hm-ink);
  color: #e6f1ff;
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.hm-voice::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 70% at 20% 30%, rgba(0, 150, 255, 0.15), transparent 60%),
    radial-gradient(40% 60% at 90% 80%, rgba(8, 86, 177, 0.22), transparent 70%);
  pointer-events: none;
}
.hm-voice-inner { position: relative; }
.hm-voice-head {
  text-align: center;
  margin-bottom: 50px;
}
.hm-voice-mark {
  font-family: var(--hm-display);
  font-size: 96px;
  line-height: 0.8;
  color: var(--hm-cyan);
  opacity: 0.4;
  display: block;
  margin-bottom: -24px;
}
.hm-voice-quote {
  font-family: var(--hm-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #fff;
  max-width: 920px;
  margin: 0 auto 36px;
  text-align: center;
}
.hm-voice-quote em { color: var(--hm-cyan-bright); font-style: normal; }
.hm-voice-author {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.hm-voice-author-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--hm-cyan-border);
}
.hm-voice-author-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hm-voice-author-info { text-align: left; }
.hm-voice-author-name {
  font-family: var(--hm-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.hm-voice-author-role {
  font-family: var(--hm-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(203, 213, 225, 0.7);
}

/* ============================================================
   PARCEIROS strip (small, embedded in another section)
   ============================================================ */
.hm-partners {
  background: var(--hm-paper);
  padding: 90px 0;
  color: var(--azul-profundo);
}
.hm-partners-head {
  text-align: center;
  margin-bottom: 50px;
}
.hm-partners-h2 {
  font-family: var(--hm-display);
  font-size: clamp(24px, 2.8vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 14px 0 14px;
  color: var(--azul-profundo);
}
.hm-partners-lead {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(8, 39, 100, 0.65);
  max-width: 560px;
  margin: 0 auto;
}
.hm-partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
  background: var(--hm-rule);
  border: 1px solid var(--hm-rule);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 36px;
}
/* 16 fabricantes: 4 colunas (4x4 exato) evita o item orfao esticado na ultima linha.
   Nao usar 3 ou 5 colunas aqui (deixam a veeam sozinha). 2 col no mobile tambem fecha. */
.hm-partner {
  flex: 1 1 calc((100% / 4) - 1px);
  min-width: calc((100% / 4) - 1px);
}
@media (max-width: 640px) {
  .hm-partner { flex-basis: calc((100% / 2) - 1px); min-width: calc((100% / 2) - 1px); }
}
.hm-partner {
  background: #fff;
  padding: 22px 18px;
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hm-display);
  font-size: 15px;
  font-weight: 700;
  color: rgba(8, 39, 100, 0.65);
  letter-spacing: -0.005em;
  text-align: center;
  transition: background .2s ease;
}
.hm-partner picture { display: contents; }
.hm-partner img {
  max-height: 49px;
  width: auto;
  max-width: 50%;
  object-fit: contain;
  display: block;
  transform: scale(var(--logo-scale, 1));
  transition: transform .25s ease;
}
/* Logos com muito respiro interno na arte: escala extra p/ igualar as demais */
.hm-partner img[src*="commvault"],
.hm-partner img[src*="databricks"],
.hm-partner img[src*="dell-technologies"] { --logo-scale: 1.4; }
.hm-partner:hover { color: var(--hm-cyan); background: rgba(0, 150, 255, 0.04); }
.hm-partner:hover img { transform: scale(calc(var(--logo-scale, 1) * 1.05)); }

/* ============================================================
   CTA FINAL (image + form preserved)
   ============================================================ */
.hm-cta-band {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  color: #fff;
  background: var(--hm-ink-2);
}
.hm-cta-band-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hm-cta-band-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.hm-cta-band-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 80% 30%, rgba(0, 150, 255, 0.20), transparent 60%),
    linear-gradient(180deg, rgba(11, 31, 77, 0.78) 0%, rgba(5, 21, 54, 0.95) 100%);
}
.hm-cta-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.hm-cta-band-text { max-width: 560px; }
.hm-cta-band-h2 {
  font-family: var(--hm-display);
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 18px 0 18px;
  color: #fff;
}
.hm-cta-band-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 32px;
}
.hm-cta-band-bullets {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hm-cta-band-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #d0deef;
}
.hm-cta-band-bullets li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--hm-cyan-bright);
}

/* Form card: keep native dark styling from rest.css, just adjust shadow for new bg */
.hm-cta-band .form-card {
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(51, 173, 255, 0.18);
}

/* ============================================================
   MID CTAs (strategic conversion folds)
   ============================================================ */
.hm-mid-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 36px;
  margin-top: 60px;
  background: linear-gradient(120deg, rgba(0, 150, 255, 0.08) 0%, rgba(8, 86, 177, 0.06) 100%);
  border: 1px solid var(--hm-cyan-border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.hm-mid-cta::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--hm-cyan), var(--hm-cyan-bright));
}
.hm-mid-cta-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hm-mid-cta-tag {
  font-family: var(--hm-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hm-cyan);
}
.hm-mid-cta-headline {
  font-family: var(--hm-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--azul-profundo);
  letter-spacing: -0.01em;
}
.hm-mid-cta-headline strong { color: var(--azul-medio); }

/* Dark variant for dark sections */
.hm-mid-cta--dark {
  background: linear-gradient(120deg, rgba(0, 150, 255, 0.10) 0%, rgba(51, 173, 255, 0.04) 100%);
  border-color: rgba(51, 173, 255, 0.28);
}
.hm-mid-cta--dark .hm-mid-cta-headline { color: #fff; }
.hm-mid-cta--dark .hm-mid-cta-headline strong { color: var(--hm-cyan-bright); }
.hm-mid-cta--dark .hm-mid-cta-tag { color: var(--hm-cyan-bright); }

@media (max-width: 768px) {
  .hm-mid-cta {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 22px 24px 26px;
  }
  .hm-mid-cta-btn { justify-self: stretch; justify-content: center; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hm-hero { padding: 110px 0 80px; }
  .hm-hero-content { grid-template-columns: 1fr; gap: 50px; }
  .hm-hero-text { max-width: none; }
  .hm-hero-sub { max-width: none; }
  .hm-hero-proof { max-width: none; }

  .hm-mf-item { grid-template-columns: 100px 1fr; gap: 22px; padding: 30px 4px; }
  .hm-mf-meta { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: flex-start; gap: 14px; padding-top: 0; text-align: left; }
  .hm-mf-meta-label { font-size: 10px; }

  .hm-frente { grid-template-columns: 1fr; gap: 40px; padding: 50px 0; }
  .hm-frente--reverse { direction: ltr; }
  .hm-frente-photo { aspect-ratio: 16 / 11; }
  .hm-frente:nth-child(odd) .hm-frente-floating,
  .hm-frente:nth-child(even) .hm-frente-floating { right: 16px; bottom: 16px; left: auto; top: auto; }

  .hm-numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .hm-kpi { border-right: 1px solid rgba(8, 39, 100, 0.10); border-bottom: 1px solid rgba(8, 39, 100, 0.10); }
  .hm-kpi:nth-child(2n) { border-right: 0; }
  .hm-kpi:nth-last-child(-n+2) { border-bottom: 0; }

  .hm-shifts { grid-template-columns: repeat(2, 1fr); }

  .hm-cta-band-inner { grid-template-columns: 1fr; gap: 50px; }
  .hm-cta-band .form-card { padding: 28px; }
}

@media (max-width: 640px) {
  .hm-hero { padding: 90px 0 70px; }
  .hm-hero-proof { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hm-hero-proof-item:nth-child(3) { grid-column: 1 / -1; }
  .hm-console-bar { grid-template-columns: 1fr auto; }
  .hm-console-clock { grid-column: 1 / -1; }

  .hm-manifesto { padding: 80px 0; }
  .hm-mf-item { grid-template-columns: 70px 1fr; gap: 18px; }
  .hm-mf-meta { display: none; }
  .hm-mf-title { font-size: 22px; }

  .hm-frentes { padding: 90px 0; }
  .hm-frentes-head { margin-bottom: 60px; }

  .hm-numbers { padding: 70px 0; }
  .hm-numbers-grid { grid-template-columns: 1fr; }
  .hm-kpi { border-right: 0; border-bottom: 1px solid rgba(8, 39, 100, 0.10); }
  .hm-kpi:last-child { border-bottom: 0; }

  .hm-clock { padding: 80px 0; }
  .hm-shifts { grid-template-columns: 1fr; }
  .hm-tl-svg { height: 90px; }

  .hm-voice { padding: 90px 0; }
  .hm-voice-quote { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .hm-pulse, .hm-console-feed-entry, .hm-frente-photo img { animation: none; transition: none; }
  /* Sem a animacao, .hm-console-feed-entry ficaria preso em opacity:0 (estado
     inicial do fade-in) e os logs sumiriam. Forca o estado final visivel. */
  .hm-console-feed-entry { opacity: 1; transform: none; }
}
