:root {
  --pulse-duration: 1.8s;
  --bg: #0A0A0A;
  --orange: #F26522;
  --orange-2: #FF8C55;
  --orange-glow: rgba(242,101,34,0.15);
  --orange-tint: rgba(242,101,34,0.10);
  --orange-tint-2: rgba(242,101,34,0.22);
  --white: #F8F6F0;
  --muted: #888880;
  --muted-2: #5a5a55;
  --card: #111118;
  --card-2: #16161e;
  --line: #1E1E1E;
  --line-2: #2a2a30;

  /* Light dashboard tokens */
  --d-bg: #fdfaf6;
  --d-card: #ffffff;
  --d-text: #1a1a1d;
  --d-muted: #8a8a90;
  --d-border: #ece6dd;
  --d-track: #efe9df;
  --d-green: #16a34a;
  --d-green-bg: rgba(22,163,74,0.10);
  --d-red: #dc2626;
  --d-orange-soft: #fff1e8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================ */
/* NAV                                                          */
/* ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1340px;
  margin: 0 auto;
  gap: 24px;
}
.nav-left { display: flex; align-items: baseline; gap: 12px; }
.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: none;
}
/* Logotipo ivici. — pingo do primeiro i em laranja */
.brand-word {
  display: inline-block;
  text-transform: none;
  white-space: nowrap;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  color: inherit;
}
.brand-i-wrap {
  position: relative;
  display: inline-block;
}
.brand-dotless {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  opacity: 1;
}
.brand-i-dot {
  position: absolute;
  left: 50%;
  /* Alinha o pingo com o “i” (antes estava alto demais no navbar) */
  top: 0.22em;
  width: 0.24em;
  height: 0.24em;
  min-width: 3px;
  min-height: 3px;
  margin-left: -0.12em;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
}
.brand-period {
  color: var(--orange);
}
.logo-tag {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-center {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: var(--white);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--line-2);
  padding: 8px 14px;
  background: rgba(20,20,24,0.6);
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(242,101,34,0.7);
  animation: pulse var(--pulse-duration) ease-in-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(242,101,34,0.7), 0 0 12px rgba(242,101,34,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(242,101,34,0), 0 0 18px rgba(242,101,34,0.9); }
  100% { box-shadow: 0 0 0 0 rgba(242,101,34,0), 0 0 12px rgba(242,101,34,0.6); }
}
.nav-right { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backface-visibility: hidden;
  transition: all .2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-ghost { background: transparent; color: var(--white); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-orange { background: var(--orange); color: #0A0A0A; border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-2); border-color: var(--orange-2); transform: translateY(-1px); will-change: transform; }
.btn-white { background: var(--white); color: #0A0A0A; border-color: var(--white); }
.btn-white:hover { background: #fff; transform: translateY(-1px); will-change: transform; }

/* ============================================================ */
/* HERO                                                         */
/* ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 100px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 32px;
  align-items: center;
  width: 100%;
}
.label {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--orange);
}
.headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 8vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
}
.headline .orange {
  color: var(--orange);
  text-shadow: 0 0 60px rgba(242,101,34,0.45);
}
.hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 36px;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn-lg { padding: 16px 24px; font-size: 13px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-stats .sep { width: 1px; height: 14px; background: var(--line-2); }

/* ============================================================ */
/* PHONE STAGE                                                  */
/* ============================================================ */
.phone-stage {
  position: relative;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blob {
  position: absolute;
  width: 480px;
  height: 480px;
  opacity: 0.75;
  z-index: 1;
  pointer-events: none;
}
.blob-1 { top: -20px; right: -40px; animation: blobFloatA 9s ease-in-out infinite; }
.blob-2 { bottom: -40px; left: -60px; animation: blobFloatB 11s ease-in-out infinite; }
@keyframes blobFloatA {
  0%,100% { transform: translate(0,0) rotate(0deg) scale(1); }
  50%     { transform: translate(-14px,18px) rotate(8deg) scale(1.04); }
}
@keyframes blobFloatB {
  0%,100% { transform: translate(0,0) rotate(0deg) scale(1); }
  50%     { transform: translate(18px,-14px) rotate(-6deg) scale(1.05); }
}
.page-number {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 5;
}

.phone {
  position: relative;
  width: 292px;
  height: 628px;
  background: #050507;
  border-radius: 46px;
  border: 2px solid #2a2a32;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    inset 0 4px 8px rgba(0,0,0,0.6),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(242,101,34,0.18);
  padding: 11px;
  z-index: 10;
  transform: rotate(-6deg) translateY(-20px);
  animation:
    heroPhoneIn 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both,
    phoneFloat 4s ease-in-out 1s infinite alternate;
}
@keyframes heroPhoneIn {
  from { opacity: 0; filter: blur(5px); }
  to { opacity: 1; filter: none; }
}
@keyframes phoneFloat {
  from { transform: rotate(-6deg) translateY(-30px); }
  to   { transform: rotate(-6deg) translateY(-10px); }
}
.phone::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #050507;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone::after {
  content: '';
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 7px; height: 7px;
  background: #15151a;
  border-radius: 50%;
  box-shadow: 26px 0 0 -2px #15151a;
  z-index: 4;
}

.screen {
  width: 100%;
  height: 100%;
  background: var(--d-bg);
  border-radius: 34px;
  overflow: hidden;
  color: var(--d-text);
  display: flex;
  flex-direction: column;
  font-family: 'Barlow', sans-serif;
  position: relative;
}

.s-header {
  background: linear-gradient(135deg, #F26522, #FF8C55);
  padding: 38px 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.s-header .left { display: flex; align-items: center; gap: 8px; }
.s-header .title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.s-live {
  font-family: 'Barlow', sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.18);
  padding: 3px 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.s-live .liveDot { width: 5px; height: 5px; background: #fff; border-radius: 50%; animation: pulse var(--pulse-duration) ease-in-out infinite; }
.s-header svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 1.6; }

.s-body {
  padding: 11px 11px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
}
.s-body::-webkit-scrollbar {
  display: none;
}
.phone .s-body {
  gap: 6px;
  padding: 9px 10px 11px;
}

.s-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.s-card {
  background: var(--d-card);
  border: 1px solid var(--d-border);
  padding: 8px 9px;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.s-card .lab {
  font-size: 7.5px;
  color: var(--d-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.s-card .val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: var(--d-text);
  line-height: 1;
  letter-spacing: -0.01em;
}
.s-card .val .cur {
  font-size: 9px;
  color: var(--d-muted);
  margin-right: 2px;
  font-weight: 600;
}
.s-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.s-mini-item {
  background: var(--d-card);
  border: 1px solid var(--d-border);
  padding: 7px 9px;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.s-mini-item .lab {
  font-size: 7px;
  color: var(--d-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.s-mini-item .val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: var(--d-text);
  line-height: 1.15;
}
.s-mini-item .val .cur {
  font-size: 8px;
  color: var(--d-muted);
  margin-right: 2px;
  font-weight: 600;
}

.s-card .delta {
  font-size: 8px;
  color: var(--d-green);
  font-weight: 600;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.s-card .delta.down { color: var(--d-red); }
.s-card .badge {
  font-size: 7.5px;
  background: var(--d-green-bg);
  color: var(--d-green);
  padding: 2px 6px;
  border-radius: 4px;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-top: 2px;
}

/* Gauge card — fixed layout */
.s-gauge {
  background: var(--d-card);
  border: 1px solid var(--d-border);
  border-radius: 9px;
  padding: 8px 9px 7px;
}
.s-gauge .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.s-gauge .head .lab {
  font-size: 8px;
  color: var(--d-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.s-gauge .pill-simples {
  background: var(--orange);
  color: #fff;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
}
.gauge-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2.4 / 1;
  margin-top: 2px;
}
.gauge-wrap.big { aspect-ratio: 2 / 1; margin-top: 4px; }
.gauge-wrap svg { width: 100%; height: 100%; display: block; overflow: visible; }
.gauge-center {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  text-align: center;
  line-height: 1;
}
.gauge-center .v {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--d-text);
}
.gauge-center.big .v { font-size: 19px; letter-spacing: -0.01em; }
.gauge-center .v .cur { font-size: 9px; color: var(--d-muted); margin-right: 2px; }
.gauge-center.big .v .cur { font-size: 10px; }
.gauge-center .pct {
  font-family: 'Barlow', sans-serif;
  font-size: 8px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 3px;
}
.gauge-center.big .pct { font-size: 9px; }
.gauge-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 7px;
  color: var(--d-muted);
  letter-spacing: 0.06em;
  padding: 0 6px;
  margin-top: 4px;
  font-weight: 500;
}
.gauge-foot .mid { color: var(--d-text); font-weight: 700; letter-spacing: 0.04em; }

/* Adiantamento de Lucro — gauge card (hero phone) */
.s-gauge-lucro {
  padding: 6px 7px 6px;
}
.s-gauge-lucro .gauge-wrap.big {
  margin-top: 2px;
}
.s-gauge-lucro .lucro-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 6px;
}
.s-gauge-lucro .lucro-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 9px;
  color: var(--d-text);
  letter-spacing: 0.02em;
  line-height: 1.2;
  max-width: 52%;
}
.s-gauge-lucro .lucro-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px 5px;
  flex-shrink: 0;
}
.s-gauge-lucro .lucro-toggle {
  display: inline-flex;
  border: 1px solid var(--d-border);
  border-radius: 5px;
  padding: 1px;
  gap: 2px;
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.s-gauge-lucro .lucro-toggle span {
  padding: 2px 5px;
  border-radius: 4px;
  color: var(--d-muted);
  cursor: default;
}
.s-gauge-lucro .lucro-toggle span.active {
  border: 1px solid var(--orange);
  color: var(--orange);
}
.s-gauge-lucro .lucro-filter {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 5px;
  border-radius: 5px;
  border: 1px solid var(--d-border);
  background: transparent;
  color: var(--d-muted);
  font-family: 'Barlow', sans-serif;
  font-size: 6.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: default;
}
.s-gauge-lucro .lucro-filter svg {
  width: 9px;
  height: 9px;
  stroke: currentColor;
  fill: none;
}
.s-gauge-lucro .lucro-filter .chev {
  font-size: 7px;
  opacity: 0.85;
  margin-left: 1px;
}
.s-gauge-lucro .lucro-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  margin: 0 0 4px;
  opacity: 0.95;
}
.s-gauge-lucro .lucro-center .v {
  font-size: 17px;
}
.s-gauge-lucro .lucro-period {
  font-family: 'Barlow', sans-serif;
  font-size: 7px;
  color: var(--d-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.s-gauge-lucro .gauge-foot-lucro {
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 6px;
  margin-top: 5px;
  padding: 0 2px;
  line-height: 1.25;
}
.s-gauge-lucro .lucro-foot-left {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 6px;
  color: var(--d-muted);
  letter-spacing: 0.03em;
}
.s-gauge-lucro .lucro-foot-left strong {
  color: var(--d-text);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.s-gauge-lucro .lucro-foot-pct {
  flex: 0 0 42%;
  text-align: right;
  font-family: 'Barlow', sans-serif;
  font-size: 6px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.03em;
}

/* Sparkline card */
.s-spark {
  background: var(--d-card);
  border: 1px solid var(--d-border);
  border-radius: 9px;
  padding: 9px 10px 6px;
}
.spark-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.spark-head .lab {
  font-size: 8px;
  color: var(--d-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.spark-head .trend {
  font-size: 8.5px;
  color: var(--d-green);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.s-spark svg {
  width: 100%;
  height: 32px;
  display: block;
}

/* Floating side cards on phone stage */
.side-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 14px 16px;
  z-index: 12;
  backdrop-filter: blur(10px);
}
@keyframes sideCardIn {
  from {
    opacity: 0;
    transform: translate(var(--card-enter-x, 0), var(--card-enter-y, 0)) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
.side-card-tl {
  top: -10px;
  left: -50px;
  width: 218px;
  border-right: 3px solid var(--orange);
  --card-enter-x: -12px;
  --card-enter-y: -8px;
  animation: sideCardIn 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.44s both;
}
.side-card-tl .side-row {
  align-items: flex-start;
  line-height: 1.35;
}
.side-card-tl .side-row .d {
  margin-top: 5px;
  flex-shrink: 0;
}
.side-card-tr {
  top: -10px;
  right: -50px;
  border-left: 3px solid var(--orange);
  width: 210px;
  --card-enter-x: 12px;
  --card-enter-y: -8px;
  animation: sideCardIn 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.54s both;
}
.side-card-bl {
  bottom: 10px;
  left: -50px;
  width: 220px;
  display: flex;
  align-items: center;
  gap: 12px;
  --card-enter-x: -12px;
  --card-enter-y: 10px;
  animation: sideCardIn 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.64s both;
}
.side-card-br {
  bottom: 10px;
  right: -50px;
  width: 228px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 3px solid var(--orange);
  --card-enter-x: 12px;
  --card-enter-y: 10px;
  animation: sideCardIn 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.74s both;
}
.side-br-copy {
  min-width: 0;
}
.side-br-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.side-br-cur {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.06em;
}
.side-br-num {
  font-size: 24px;
  letter-spacing: -0.02em;
}
.side-br-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
}
.side-lab {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}
.side-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.side-row .d { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 8px rgba(242,101,34,0.7); }
.side-icon {
  width: 42px; height: 42px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 6px;
}
.side-icon svg { width: 22px; height: 22px; stroke: #0A0A0A; fill: none; stroke-width: 1.8; }
.side-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2px;
}
.side-text {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================ */
/* DASHBOARD PREVIEW — full desktop product mockup              */
/* ============================================================ */
.preview-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 0%, rgba(242,101,34,0.08), transparent 60%),
    var(--bg);
}
.preview-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.preview-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 5.6vw, 88px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.preview-head h2 .orange { color: var(--orange); }
.preview-head p {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 460px;
}

/* Browser frame */
.browser {
  background: #F5F7FA;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 60px 120px rgba(0,0,0,0.55),
    0 0 0 1px var(--line-2),
    0 0 80px rgba(242,101,34,0.10);
  color: var(--d-text);
  font-family: 'Barlow', sans-serif;
}
.browser-bar {
  background: #232027;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.browser-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.browser-bar .dot.r { background: #ff5f57; }
.browser-bar .dot.y { background: #febc2e; }
.browser-bar .dot.g { background: #28c840; }
.browser-bar .url {
  margin-left: 16px;
  background: #1a181d;
  color: #c8c5be;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 6px;
  flex: 1;
  max-width: 480px;
}
.browser-bar .url .lock { color: var(--orange); margin-right: 8px; }

.app {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 760px;
  align-items: stretch;
}
.app-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #F5F7FA;
}

/* Sidebar — chrome do produto (ivici-sidebar) */
.sidebar {
  border-right: 1px solid #ECEFF1;
  padding: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
.sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 14px;
  min-height: 64px;
  border-bottom: 1px solid #ECEFF1;
}
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-logo .h {
  width: 28px; height: 28px;
  background: #FF7A42;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
}
.sidebar-logo .logo-image {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
}
.sidebar-logo .logo-text {
  font-family: Inter, Barlow, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #1a2142;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.sidebar-toggle {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
}
.sidebar-toggle svg {
  width: 16px; height: 16px;
  stroke: #6b7280;
  fill: none;
  stroke-width: 2;
}
.sidebar .menu {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 8px 8px 4px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
}
.menu .m {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: Inter, Barlow, sans-serif;
  font-size: 13px;
  color: #64748b;
  font-weight: 400;
  cursor: default;
  position: relative;
  min-height: 36px;
  transition: background .15s ease, color .15s ease;
}
.menu .m .l { display: flex; align-items: center; gap: 12px; white-space: nowrap; min-width: 0; }
.menu .m svg { width: 18px; height: 18px; stroke: #6b7280; fill: none; stroke-width: 1.6; }
.menu .m .chev {
  color: #9ca3af;
  display: flex;
  margin-left: auto;
}
.menu .m .chev svg { width: 14px; height: 14px; stroke: #9ca3af; }
.menu .m:hover { background: #F5F7FA; color: #1a1a1d; }
.menu .m:hover svg { stroke: #1a1a1d; }
.menu .m.active {
  background: rgba(255, 122, 66, 0.1);
  color: #FF7A42;
  font-weight: 500;
}
.menu .m.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  width: 4px;
  height: 70%;
  background: #FF7A42;
  border-radius: 0 3px 3px 0;
}
.menu .m.active svg { stroke: #FF7A42; }
.menu .m.active:hover { background: rgba(255, 122, 66, 0.14); color: #FF7A42; }
.menu .m.active:hover svg { stroke: #FF7A42; }
.sidebar-logout-wrap {
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid #ECEFF1;
}
.menu .m.logout {
  color: #EF4444;
  font-weight: 500;
}
.menu .m.logout svg { stroke: #EF4444; }
.menu .m.logout:hover { background: rgba(239, 68, 68, 0.08); color: #DC2626; }
.menu .m.logout:hover svg { stroke: #DC2626; }
.sidebar-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 14px;
  border-top: 1px solid #ECEFF1;
  flex-shrink: 0;
}
.sidebar-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF7A42, #E04090);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.sidebar-foot-info { display: flex; flex-direction: column; min-width: 0; line-height: 1.25; }
.sidebar-foot-info .nm { font-size: 12px; font-weight: 600; color: #1a2142; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-transform: uppercase; }
.sidebar-foot-info .em { font-size: 11px; color: #9ca3af; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Topbar — chrome ivici-header */
.topbar {
  background: #fff;
  border-bottom: 1px solid #ECEFF1;
  padding: 0 22px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  flex-shrink: 0;
}
.topbar .left { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.topbar-search {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 320px;
  width: 100%;
  height: 36px;
  padding: 0 12px;
  background: #F5F7FA;
  border: 1px solid #ECEFF1;
  border-radius: 8px;
  color: #9ca3af;
  font-size: 13px;
}
.topbar-search svg { width: 16px; height: 16px; stroke: #9ca3af; fill: none; stroke-width: 1.8; flex-shrink: 0; }
.topbar .right { display: flex; align-items: center; gap: 12px; }
.topbar .help {
  width: 36px; height: 36px;
  border: 1px solid #ECEFF1;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #4b5563;
  background: #fff;
}
.topbar .help svg { width: 18px; height: 18px; stroke: #4b5563; fill: none; stroke-width: 1.7; }
.company {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 10px 4px 4px;
  border: 1px solid #ECEFF1;
  border-radius: 10px;
  background: #fff;
}
.company .av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF7A42, #E04090);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Inter, Barlow, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.company .info { display: flex; flex-direction: column; line-height: 1.2; }
.company .info .nm { font-family: Inter, Barlow, sans-serif; font-size: 13px; color: var(--d-text); font-weight: 500; }
.company .info .cn { font-family: Inter, Barlow, sans-serif; font-size: 11px; color: var(--d-muted); }
.company .chev { color: var(--d-muted); margin-left: 4px; font-size: 12px; }

/* Main content */
.content {
  padding: 22px;
  background: #F5F7FA;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dash-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ECEFF1;
  flex-wrap: wrap;
}
.dash-page-header-copy {
  flex: 1;
  min-width: 220px;
}
.dash-page-header-copy h3 {
  font-family: Inter, Barlow, sans-serif;
  font-weight: 600;
  font-size: 26px;
  color: #1a2142;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-page-header-copy h3 svg {
  width: 22px;
  height: 22px;
  stroke: #FF7A42;
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}
.dash-page-header-copy p {
  font-family: Inter, Barlow, sans-serif;
  font-size: 13.5px;
  color: #6b7280;
  margin: 0;
  line-height: 1.45;
  max-width: 520px;
}
.dash-page-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
}
.dash-comp {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-comp-label {
  font-family: Inter, Barlow, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
}
.dash-comp-field {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 168px;
  height: 40px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid #ECEFF1;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(26, 33, 66, 0.04);
  font-family: Inter, Barlow, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #1a2142;
}
.dash-comp-field svg {
  width: 16px;
  height: 16px;
  stroke: #FF7A42;
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}
.dash-header-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.dash-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  font-family: Inter, Barlow, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  cursor: default;
}
.dash-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}
.dash-btn--ghost {
  background: #fff;
  color: #FF7A42;
  border: 1px solid #FF7A42;
}
.dash-btn--ghost svg { stroke: #FF7A42; }
.dash-btn--solid {
  background: #FF7A42;
  color: #fff;
  border: 1px solid #FF7A42;
}
.dash-btn--solid svg { stroke: #fff; }

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.kpi {
  background: #fff;
  border: 1px solid #ECEFF1;
  border-top: 3px solid #FF7A42;
  border-radius: 12px;
  padding: 16px 16px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 1px 2px rgba(26, 33, 66, 0.04);
}
.kpi .ic {
  width: 40px; height: 40px;
  background: rgba(255, 122, 66, 0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kpi .ic svg { width: 18px; height: 18px; stroke: #FF7A42; fill: none; stroke-width: 1.7; }
.kpi-body { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.kpi .lab {
  font-family: Inter, Barlow, sans-serif;
  font-size: 11px;
  color: #6b7280;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.kpi .val {
  font-family: Inter, Barlow, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1a2142;
  line-height: 1.15;
  margin-top: 2px;
}
.kpi .kpi-hint {
  font-family: Inter, Barlow, sans-serif;
  font-size: 11.5px;
  color: #6b7280;
}
.kpi .delta {
  font-family: Inter, Barlow, sans-serif;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.kpi .delta.up { color: #4CAF50; }
.kpi .delta.down { color: #4CAF50; }
.home-cash-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(26, 33, 66, 0.07);
  color: #1a2142;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-style: normal;
}
.kpi--receita { border-top-color: #4CAF50; }
.kpi--receita .ic { background: rgba(76, 175, 80, 0.14); }
.kpi--receita .ic svg { stroke: #4CAF50; }
.kpi--despesa { border-top-color: #E57373; }
.kpi--despesa .ic { background: rgba(229, 115, 115, 0.14); }
.kpi--despesa .ic svg { stroke: #E57373; }
.kpi--receber { border-top-color: #4CAF50; }
.kpi--receber .ic { background: rgba(76, 175, 80, 0.14); }
.kpi--receber .ic svg { stroke: #4CAF50; }
.kpi--pagar { border-top-color: #FF9800; }
.kpi--pagar .ic { background: rgba(255, 152, 0, 0.14); }
.kpi--pagar .ic svg { stroke: #FF9800; }

.kpi-mini-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.kpi-mini {
  background: var(--d-card);
  border: 1px solid var(--d-border);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kpi-mini .lab {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: var(--d-muted);
  font-weight: 500;
}
.kpi-mini .val {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--d-text);
  line-height: 1.15;
}
.kpi-mini .val .cur {
  font-size: 12px;
  color: var(--d-muted);
  margin-right: 3px;
  font-weight: 600;
}
.kpi-mini .hint {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: var(--d-muted);
}

/* 4 gráficos da Home */
.dash-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.dash-chart {
  background: #fff;
  border: 1px solid #ECEFF1;
  border-radius: 12px;
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.dash-chart-h {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.dash-chart-h h4 {
  font-family: Inter, Barlow, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--d-text);
  margin: 0;
}
.dash-chart-h p {
  font-family: Inter, Barlow, sans-serif;
  font-size: 11px;
  color: var(--d-muted);
  margin: 3px 0 0;
}
.chart-pills {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.chart-pills span {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #ECEFF1;
  color: #6b7280;
  background: #fff;
}
.chart-pills span.on {
  background: rgba(255, 122, 66, 0.12);
  border-color: rgba(255, 122, 66, 0.35);
  color: #FF7A42;
}
.dash-chart-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.dash-chart-stats div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dash-chart-stats span {
  font-size: 10px;
  color: var(--d-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.dash-chart-stats strong {
  font-size: 13px;
  color: var(--d-text);
  font-weight: 700;
}
.dash-chart-stats .stat-ok strong { color: #2E7D32; }
.dash-chart-stats .stat-desp strong { color: #E65920; }
.dash-chart-stats .stat-no strong { color: #C62828; }

.dash-chart-h h4 .pill-simples {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  background: #FF7A42;
  color: #fff;
  font-family: Inter, Barlow, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
}

.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 88px;
  padding: 0 2px;
}
.mock-bars > span:not(.pair) {
  flex: 1;
  height: var(--h);
  background: #FFB08A;
  border-radius: 3px 3px 0 0;
  min-width: 0;
}
.mock-bars > span.now:not(.pair) { background: #FF7A42; }
.mock-bars > span.future:not(.pair) { background: #E8ECF0; }

.mock-line {
  height: 88px;
}
.mock-line svg {
  width: 100%;
  height: 88px;
  display: block;
}
.mock-line .fill-rec { fill: rgba(76,175,80,0.14); }
.mock-line .fill-desp { fill: rgba(255,122,66,0.14); }
.mock-line .line-rec {
  fill: none;
  stroke: #43A047;
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.mock-line .line-desp {
  fill: none;
  stroke: #FF7A42;
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.mock-line .pt-rec { fill: #43A047; stroke: #fff; stroke-width: 1.2; }
.mock-line .pt-desp { fill: #FF7A42; stroke: #fff; stroke-width: 1.2; }

.mock-bars--budget {
  gap: 6px;
}
.mock-bars--budget .pair {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
}
.mock-bars--budget .pair i {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  min-width: 0;
  display: block;
}
.mock-bars--budget .pair i.c { background: #43A047; }
.mock-bars--budget .pair i.j { background: #F44336; }
.mock-bars--budget .pair i.c.past { background: rgba(76,175,80,0.55); }
.mock-bars--budget .pair i.j.past { background: rgba(244,67,54,0.5); }
.mock-bars--budget .pair i.future { background: #CFD8DC; }

.mock-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 10px;
  color: var(--d-muted);
}
.mock-legend i.sw {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 2px;
  margin-right: 5px;
  vertical-align: middle;
}
.mock-legend .sw.now { background: #FF7A42; }
.mock-legend .sw.past { background: #FFB08A; }
.mock-legend .sw.future { background: #E8ECF0; }
.mock-legend .sw.rec-line { background: #43A047; }
.mock-legend .sw.desp-line { background: #FF7A42; }
.mock-legend .sw.done { background: #43A047; }
.mock-legend .sw.rej { background: #F44336; }

.dash-chart--gauge {
  gap: 10px;
}
.limit-chip {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FF7A42;
  background: rgba(255,122,66,0.1);
  border: 1px solid rgba(255,122,66,0.28);
  border-radius: 999px;
  padding: 3px 8px;
}
.limit-hero {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 12px;
  align-items: center;
}
.limit-kicker {
  display: block;
  font-size: 10px;
  color: var(--d-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.limit-value {
  font-family: Inter, Barlow, sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--d-text);
  line-height: 1.1;
}
.limit-value .cur {
  font-size: 13px;
  color: var(--d-muted);
  margin-right: 3px;
  font-weight: 600;
}
.limit-gauge {
  position: relative;
  height: 92px;
}
.limit-gauge svg { width: 100%; height: 100%; display: block; }
.limit-gauge-center {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  text-align: center;
}
.limit-gauge-center strong {
  display: block;
  font-size: 16px;
  color: var(--d-text);
  line-height: 1;
}
.limit-gauge-center span {
  font-size: 10px;
  color: var(--d-muted);
}
.limit-track {
  height: 6px;
  background: #ECEFF1;
  border-radius: 999px;
  overflow: hidden;
}
.limit-track span {
  display: block;
  height: 100%;
  background: #FF7A42;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .limit-hero { grid-template-columns: 1fr; }
}

/* Bottom: gauge + alerts */
.bottom-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 14px;
}
.panel {
  background: var(--d-card);
  border: 1px solid var(--d-border);
  border-radius: 12px;
  padding: 20px;
}
.panel-h {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.panel-h h4 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--d-text);
}
.panel-h .pill-simples {
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
}

.big-gauge {
  position: relative;
  width: 100%;
  aspect-ratio: 2.2 / 1;
  margin-top: 4px;
}
.big-gauge svg { width: 100%; height: 100%; display: block; overflow: visible; }
.big-gauge .center {
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  text-align: center;
}
.big-gauge .center .v {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--d-text);
  line-height: 1;
}
.big-gauge .center .v .cur { font-size: 16px; color: var(--d-muted); margin-right: 4px; font-weight: 600; }
.big-gauge .center .sub {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: var(--d-muted);
  margin-top: 4px;
}
.gauge-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: var(--d-muted);
}
.gauge-meta .lim b { color: var(--d-text); font-weight: 700; }
.gauge-meta .util { color: var(--orange); font-weight: 700; }

.alerts-list { display: flex; flex-direction: column; gap: 10px; }
.alert-item {
  border: 1px solid var(--d-border);
  border-left: 3px solid var(--orange);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.alert-item .ic {
  width: 36px; height: 36px;
  background: var(--d-orange-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.alert-item .ic svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; stroke-width: 2; }
.alert-item .body { flex: 1; min-width: 0; }
.alert-item .body .t {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--d-text);
  margin-bottom: 2px;
}
.alert-item .body .d {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: var(--d-muted);
  line-height: 1.4;
}
.alert-item .actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.alert-item .actions .x {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: transparent;
  color: var(--d-muted);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  cursor: pointer;
}
.alert-item .actions .x:hover { background: #f3eadb; }
.alert-item .actions .go {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}
.alert-item .actions .go.cal svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2; }

/* ============================================================ */
/* HIGHLIGHTS — pilares                                         */
/* ============================================================ */
.highlights {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
.highlights-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.highlights-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 5.4vw, 80px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.highlights-head h2 .orange { color: var(--orange); }
.highlights-head .right {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 480px;
}

.h-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.h-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .25s ease, transform .25s ease;
  position: relative;
  overflow: hidden;
}
.h-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.h-card .badge-top {
  align-self: flex-start;
  background: var(--orange-tint);
  color: var(--orange);
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--orange-tint-2);
}
.h-card .ic-big {
  width: 64px; height: 64px;
  background: var(--orange-tint);
  border: 1px solid var(--orange-tint-2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(242,101,34,0.15);
}
.h-card .ic-big svg { width: 30px; height: 30px; stroke: var(--orange); fill: none; stroke-width: 1.6; }
.h-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.h-card h3 .orange { color: var(--orange); }
.h-card p {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.h-card ul {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.h-card ul li {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.h-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================ */
/* MODULES BREAKDOWN                                            */
/* ============================================================ */
.modules {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
  background: var(--card);
}
.modules-head {
  margin-bottom: 56px;
  max-width: 800px;
}
.modules-head .label { margin-bottom: 24px; }
.modules-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}
.modules-head h2 .orange { color: var(--orange); }
.modules-head p {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.mod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.mod {
  background: var(--bg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  position: relative;
}
.mod-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.mod-icon {
  width: 44px; height: 44px;
  background: var(--orange-tint);
  border: 1px solid var(--orange-tint-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mod-icon svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.6; }
.mod-num {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.18em;
}
.mod h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.005em;
}
.mod p.desc {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.mod-list {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mod-list li {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mod-list li::before {
  content: '→';
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 12px;
}
.mod-soon {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--orange-tint);
  color: var(--orange);
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--orange-tint-2);
}

/* ============================================================ */
/* THREE COL                                                    */
/* ============================================================ */
.three-col { border-bottom: 1px solid var(--line); }
.three-col-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.col {
  padding: 80px 48px;
  border-right: 1px solid var(--line);
  min-height: 460px;
}
.col:last-child { border-right: none; }
.col.dark { background: var(--card); }
.col-label {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.col-label .num { color: var(--orange); font-weight: 600; }
.col-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}
.col-headline .orange { color: var(--orange); }
.col-text {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.col-link {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 6px;
  transition: gap .2s ease;
}
.col-link:hover { gap: 14px; }

.metric-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.metric-row:first-of-type { padding-top: 0; }
.metric-row:last-of-type { border-bottom: none; padding-bottom: 8px; }
.icon-square {
  width: 44px; height: 44px;
  background: var(--orange-tint);
  border: 1px solid var(--orange-tint-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-square svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.6; }
.metric-content { display: flex; flex-direction: column; gap: 2px; }
.metric-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--white);
}
.metric-label {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.launch-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  background: var(--orange-tint);
  border: 1px solid var(--orange-tint-2);
  color: var(--orange);
  padding: 10px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quote-mark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 96px;
  color: var(--orange);
  opacity: 0.3;
  line-height: 0.6;
  margin-bottom: 16px;
}
.quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.25;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 32px;
}
.author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.author-name { font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 14px; color: var(--white); }
.author-role { font-family: 'Barlow', sans-serif; font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }

/* ============================================================ */
/* FOOTER BAR                                                   */
/* ============================================================ */
.footer { padding: 40px 0 60px; }
.footer-bar {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 28px 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}
.foot-left {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
}
.hex {
  width: 18px; height: 20px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
}
.foot-left .pipe { color: var(--muted-2); }
.foot-brand {
  display: inline-flex;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.foot-center { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.foot-tag {
  border: 1px solid var(--line-2);
  padding: 6px 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.foot-tag .d { width: 4px; height: 4px; background: var(--orange); border-radius: 50%; }
.foot-right { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.foot-launch {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ============================================================ */
/* RESPONSIVE                                                   */
/* ============================================================ */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; gap: 12px; flex-wrap: wrap; }
  .nav-center { display: none; }
  .nav-right .btn-ghost { display: none; }

  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .headline { font-size: clamp(3.4rem, 13vw, 5rem); }
  .hero-sub { font-size: 16px; }

  .phone-stage { height: 620px; }
  .phone {
    transform: rotate(0deg) translateY(0) !important;
    animation:
      heroPhoneInMobile 0.68s ease-out 0.12s both,
      phoneFloatMobile 4s ease-in-out 0.8s infinite alternate;
  }
  @keyframes heroPhoneInMobile {
    from { opacity: 0; filter: blur(4px); }
    to { opacity: 1; filter: none; }
  }
  @keyframes phoneFloatMobile {
    from { transform: rotate(0) translateY(-10px); }
    to   { transform: rotate(0) translateY(10px); }
  }
  .side-card { display: none; }
  .page-number { display: none; }
  .blob { width: 360px; height: 360px; }

  .preview-section { padding: 60px 0; }
  .preview-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
  .browser .app { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
  .dash-page-header { flex-direction: column; }
  .dash-page-header-actions { width: 100%; }
  .kpi-mini-row { grid-template-columns: 1fr; }
  .dash-charts { grid-template-columns: 1fr; }
  .bottom-row { grid-template-columns: 1fr; }
  .content { padding: 16px; }

  .highlights { padding: 60px 0; }
  .highlights-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
  .h-grid { grid-template-columns: 1fr; }

  .modules { padding: 60px 0; }
  .mod-grid { grid-template-columns: 1fr 1fr; }

  .three-col-grid { grid-template-columns: 1fr; }
  .col {
    padding: 56px 24px;
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: auto;
  }
  .col:last-child { border-bottom: none; }
  .col-headline { font-size: 36px; }
  .quote { font-size: 18px; }

  .footer { padding: 30px 0 40px; }
  .footer-bar { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .foot-center { justify-content: flex-start; }
  .foot-right { justify-content: flex-start; flex-wrap: wrap; }
}
@media (max-width: 540px) {
  .mod-grid { grid-template-columns: 1fr; }
  .kpi-row { grid-template-columns: 1fr; }
}

.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.hero-left .fade-up.fade-delay-0 { transition-delay: 0ms; }
.hero-left .fade-up.fade-delay-80 { transition-delay: 80ms; }
.hero-left .fade-up.fade-delay-180 { transition-delay: 180ms; }
.hero-left .fade-up.fade-delay-280 { transition-delay: 280ms; }
.hero-left .fade-up.fade-delay-380 { transition-delay: 380ms; }

.stagger-child {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: calc(var(--stagger-delay, 0) * 1ms);
}
.stagger-child.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pageEnter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-enter {
  animation: pageEnter 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ============================================================ */
/* NAV — links, dropdown, mobile                                */
/* ============================================================ */
.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Barlow', sans-serif;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .15s ease;
  font-family: inherit;
}
.nav-link:hover { color: var(--orange); }
.nav-link.active { color: var(--orange); }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px;
  background: var(--orange);
}
.nav-services { position: relative; }
.nav-admin { position: relative; }
.nav-services-trigger,
.nav-admin-trigger { user-select: none; }
.nav-dropdown-item.active {
  background: rgba(242,101,34,0.08);
  border-color: rgba(242,101,34,0.35);
}
.chev-icon {
  width: 12px; height: 12px;
  transition: transform .2s ease;
}
.chev-icon.open { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 360px;
  max-height: min(72vh, 720px);
  overflow-y: auto;
  background: rgba(14,14,16,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-2);
  padding: 14px;
  z-index: 200;
  animation: dropdown-in 0.18s ease-out;
}
.nav-dropdown.nav-dropdown--leave {
  animation: dropdown-out 0.15s ease-in forwards;
}
@keyframes dropdown-in {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes dropdown-out {
  from { opacity: 1; transform: translateX(-50%) translateY(0); }
  to   { opacity: 0; transform: translateX(-50%) translateY(-5px); }
}
.nav-dropdown-head {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  padding: 6px 10px 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--white);
  border: 1px solid transparent;
  transition: all .15s ease;
}
.nav-dropdown-item:hover {
  background: rgba(242,101,34,0.06);
  border-color: rgba(242,101,34,0.3);
}
.nav-dropdown-arrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
  padding-top: 2px;
}
.nav-dropdown-text { display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.nav-dropdown-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: none;
}

.nav-elai {
  font-size: 11px !important;
  padding: 9px 14px !important;
}

/* mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid var(--line-2);
  cursor: pointer;
  padding: 8px;
  gap: 5px;
}
.mobile-toggle span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-toggle span.open:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-toggle span.open:nth-child(2) { opacity: 0; }
.mobile-toggle span.open:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-panel {
  position: fixed;
  inset: 70px 0 0 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(18px);
  z-index: 90;
  overflow-y: auto;
  animation: dropdown-in .2s ease-out;
}
.mobile-panel-inner {
  padding: 24px 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-link {
  display: block;
  padding: 16px 8px;
  border-bottom: 1px solid var(--line);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
}
.mobile-link.sub {
  font-size: 16px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  text-transform: none;
  letter-spacing: 0.02em;
  padding-left: 20px;
  color: var(--muted);
}
.mobile-link.active { color: var(--orange); }
.mobile-section-head {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  padding: 22px 8px 6px;
}
.mobile-cta { padding-top: 24px; }
.mobile-cta .btn { width: 100%; justify-content: center; }

/* ============================================================ */
/* PAGE HERO (interior)                                         */
/* ============================================================ */
.page-hero {
  position: relative;
  padding: 140px 0 70px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(242,101,34,0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.pillar-tag {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: rgba(242,101,34,0.08);
  border: 1px solid rgba(242,101,34,0.4);
  margin-bottom: 18px;
}
.page-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 7vw, 90px);
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--white);
  margin: 6px 0 24px;
}
.page-headline .orange {
  color: var(--orange);
  text-shadow: 0 0 36px rgba(242,101,34,0.3);
}
.page-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 32px;
}
.page-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.page-hero-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.page-hero-deco {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(242,101,34,0.10) 1px, transparent 1px) 0 0/40px 40px,
    linear-gradient(90deg, rgba(242,101,34,0.10) 1px, transparent 1px) 0 0/40px 40px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
  z-index: 0;
}
/* Service pages — hero com métricas (alinhado a Home / Admin) */
.page-hero--service::before {
  width: 520px; height: 520px;
  top: -160px; right: -200px;
  background: radial-gradient(circle, rgba(242,101,34,0.14) 0%, transparent 65%);
}
.page-hero--service::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -20%;
  width: 70%; height: 80%;
  background: radial-gradient(ellipse, rgba(255,140,85,0.06), transparent 70%);
  pointer-events: none;
}
.page-hero-grid--service {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 1fr);
  gap: 40px 56px;
}
.page-sub--service {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.65;
  color: #9a9a94;
}
.page-sub--service a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px dashed rgba(242,101,34,0.45);
}
.page-sub--service a:hover { color: var(--white); border-bottom-color: var(--orange); }
.page-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.page-hero-chip {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 12px;
  border: 1px solid var(--line-2);
  background: rgba(22,22,30,0.6);
  border-radius: 2px;
}
.page-hero-chip::before {
  content: '// ';
  color: var(--orange);
  opacity: 0.85;
}
.page-hero-visual {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-hero-metrics {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  padding: 8px 0 0;
}
.service-hero-metrics-glow {
  position: absolute;
  inset: -24px -16px -24px -16px;
  background:
    radial-gradient(circle at 30% 20%, rgba(242,101,34,0.18), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,140,85,0.10), transparent 50%);
  pointer-events: none;
  z-index: 0;
  border-radius: 4px;
}
.service-hero-metrics-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.service-metric-card {
  position: relative;
  padding: 18px 16px 16px;
  background: linear-gradient(145deg, rgba(30,30,36,0.95) 0%, rgba(17,17,24,0.88) 100%);
  border: 1px solid var(--line-2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    border-color 0.25s ease,
    box-shadow 0.28s ease;
}
.service-metric-card:hover {
  border-color: rgba(242,101,34,0.45);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.35),
    0 0 0 1px rgba(242,101,34,0.12),
    0 18px 48px rgba(242,101,34,0.08);
}
.service-hero-metrics--active .service-metric-card {
  opacity: 1;
  transform: translateY(0);
}
.service-metric-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(255,140,85,0.4));
  opacity: 0.7;
}
.service-metric-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 8px;
  line-height: 1.3;
}
.service-metric-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 36px);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}
.service-metric-value {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 2px;
}
.service-metric-prefix,
.service-metric-suffix {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.55em;
  color: var(--muted);
  letter-spacing: 0;
}
.service-metric-prefix { margin-right: 2px; }
.service-metric-suffix { margin-left: 1px; color: var(--orange-2); }
.service-metric-delta {
  margin-top: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: var(--d-green);
  letter-spacing: 0.02em;
}
.service-hero-metrics-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.service-hero-metrics-foot .liveDot {
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse var(--pulse-duration) ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .service-hero-metrics-foot .liveDot { animation: none; }
}

/* Famílias de layout — hero serviços */
.page-hero--family-commercial::before {
  background: radial-gradient(circle, rgba(242,101,34,0.11), transparent 68%);
}
.page-hero--family-management::before {
  background: radial-gradient(circle, rgba(100,140,255,0.06), transparent 70%);
}

/* ============================================================ */
/* SERVICE MODULE — workflows, insights, hero visuals (hv-)    */
/* ============================================================ */
.feat-grid.feat-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.feat-grid.feat-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }

/* Workflow comercial */
.svc-workflow {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(12,12,14,0.4);
}
.svc-workflow-head { margin-bottom: 36px; }
.svc-workflow-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 900px;
  margin-top: 8px;
}
.svc-workflow-title .orange { color: var(--orange); }
.svc-workflow-steps--horizontal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.svc-workflow-steps--vertical {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}
.svc-workflow-steps--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 640px) {
  .svc-workflow-steps--grid {
    grid-template-columns: 1fr;
  }
}
.svc-workflow-step {
  position: relative;
  padding: 22px 20px;
  background: rgba(20,20,24,0.55);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--orange);
}
.svc-workflow-num {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted-2);
  display: block;
  margin-bottom: 8px;
}
.svc-workflow-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.svc-workflow-step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--white);
  margin: 8px 0 8px;
}
.svc-workflow-step-text {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* Faixa de insights — gestão */
.svc-insight-strip {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}
.svc-insight-head { margin-bottom: 28px; }
.svc-insight-strip-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  max-width: 880px;
  margin-top: 8px;
}
.svc-insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.svc-insight-card {
  padding: 20px 18px;
  background: rgba(22,22,30,0.75);
  border: 1px solid var(--line-2);
}
.svc-insight-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.svc-insight-value {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--white);
  margin-top: 8px;
}
.svc-insight-hint {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

/* Bloco Notas — colunas do relatório */
.svc-notas-flow {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(20,20,24,0.25);
}
.svc-notas-flow-head { margin-bottom: 32px; }
.svc-notas-flow-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  max-width: 920px;
  margin-top: 8px;
}
.svc-notas-flow-title .orange { color: var(--orange); }
.svc-notas-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.svc-notas-flow-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.svc-notas-flow-card-num {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted-2);
  margin-bottom: 8px;
}
.svc-notas-flow-card {
  padding: 24px 22px;
  border: 1px solid var(--line-2);
  background: rgba(17,17,24,0.85);
}
.svc-notas-flow-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.svc-notas-flow-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.svc-notas-flow-card-text {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* Hero visuals — base */
.hv {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-left: auto;
}

/* Orçamento — pipeline (badge centrado acima; evita sobrepor a etapa NFS-e) */
.hv-orc {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hv-orc-badge {
  position: relative;
  align-self: center;
  z-index: 2;
  text-align: center;
  padding: 10px 18px;
  margin: 0 auto 6px;
  background: rgba(242,101,34,0.12);
  border: 1px solid rgba(242,101,34,0.45);
}
.hv-orc-badge-val {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--orange);
  line-height: 1;
}
.hv-orc-badge-lab {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hv-orc-pipeline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0 24px;
  flex-wrap: wrap;
}
.hv-orc-stage {
  flex: 1;
  min-width: 88px;
  padding: 14px 12px;
  background: rgba(20,20,24,0.7);
  border: 1px solid var(--line-2);
  text-align: center;
}
.hv-orc-stage--active {
  border-color: rgba(242,101,34,0.55);
  box-shadow: 0 0 28px rgba(242,101,34,0.12);
}
.hv-orc-dot {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--line-2);
}
.hv-orc-stage--active .hv-orc-dot { background: var(--orange); }
.hv-orc-dot--pulse {
  animation: pulse var(--pulse-duration) ease-in-out infinite;
}
.hv-orc-stage-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--white);
}
.hv-orc-stage-sub {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.hv-orc-connector {
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(242,101,34,0.2));
  flex-shrink: 0;
}
.hv-orc-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.06em;
}
.hv-orc-foot .liveDot {
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse var(--pulse-duration) ease-in-out infinite;
}

/* NFS-e — browser mock */
.hv-notas-browser {
  border: 1px solid var(--line-2);
  background: rgba(15,15,18,0.95);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.hv-notas-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(30,30,36,0.9);
  border-bottom: 1px solid var(--line);
}
.hv-notas-dot { width: 8px; height: 8px; border-radius: 50%; }
.hv-notas-dot.r { background: #ff5f56; }
.hv-notas-dot.y { background: #ffbd2e; }
.hv-notas-dot.g { background: #27ca40; }
.hv-notas-url {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.hv-notas-body { padding: 18px 18px 16px; }
.hv-notas-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.hv-notas-lab { color: var(--muted-2); }
.hv-notas-val { color: var(--white); font-weight: 600; text-align: right; }
.hv-notas-pill {
  font-size: 10px;
  padding: 4px 8px;
  border: 1px solid rgba(242,101,34,0.45);
  color: var(--orange-2);
}
.hv-notas-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}
.hv-notas-status.ok {
  font-size: 12px;
  font-weight: 700;
  color: var(--d-green);
}
.hv-notas-check { margin-right: 6px; }
.hv-notas-links {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.hv-notas-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.hv-notas-meta--chips {
  grid-template-columns: repeat(3, 1fr);
}
.hv-notas-meta > div {
  padding: 12px;
  border: 1px solid var(--line-2);
  background: rgba(22,22,28,0.6);
  text-align: center;
}
.hv-notas-meta strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  color: var(--white);
}
.hv-notas-meta span {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* FAQ — mock dentro da mesma janela browser */
.hv-faq-body { padding: 16px 16px 14px; }
.hv-faq-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 14px;
  background: rgba(10,10,14,0.85);
  border: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted-2);
}
.hv-faq-search-icon {
  color: var(--orange);
  font-size: 14px;
  opacity: 0.85;
}
.hv-faq-search-ph { letter-spacing: 0.02em; }
.hv-faq-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.hv-faq-chip {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--line-2);
  color: var(--muted);
  background: rgba(18,18,22,0.7);
}
.hv-faq-chip--on {
  border-color: rgba(242,101,34,0.5);
  color: var(--orange-2);
  background: rgba(242,101,34,0.06);
}
.hv-faq-acc { border-top: 1px solid var(--line); padding-top: 4px; }
.hv-faq-acc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--white);
  font-weight: 600;
}
.hv-faq-acc-row--open { border-bottom: none; padding-bottom: 8px; }
.hv-faq-acc-q { flex: 1; line-height: 1.35; }
.hv-faq-acc-toggle {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242,101,34,0.45);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--orange);
  background: rgba(242,101,34,0.08);
}
.hv-faq-acc-a {
  margin: 0 0 12px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.55;
  color: var(--muted);
}
.hv-faq-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.hv-faq-meta > div {
  padding: 12px;
  border: 1px solid var(--line-2);
  background: rgba(22,22,28,0.6);
  text-align: center;
}
.hv-faq-meta strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  color: var(--white);
}
.hv-faq-meta span {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Contato — mock formulário */
.hv-contact-body { padding: 18px 16px 16px; }
.hv-contact-fields { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.hv-contact-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.hv-contact-field:last-of-type { border-bottom: none; padding-bottom: 0; }
.hv-contact-lab {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.hv-contact-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.hv-contact-val--multi {
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
  font-size: 12px;
}
.hv-contact-submit {
  width: 100%;
  padding: 12px 16px;
  margin: 0;
  border: none;
  cursor: default;
  user-select: none;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--orange), #e05518);
  box-shadow: 0 8px 28px rgba(242,101,34,0.25);
}
.hv-contact-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.hv-contact-meta > div {
  padding: 12px;
  border: 1px solid var(--line-2);
  background: rgba(22,22,28,0.6);
  text-align: center;
}
.hv-contact-meta strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hv-contact-meta span {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Financeiro — mini painel */
.hv-fin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hv-fin-card {
  padding: 14px 14px 12px;
  background: rgba(253,250,246,0.04);
  border: 1px solid var(--line-2);
}
.hv-fin-card--wide {
  grid-column: 1 / -1;
}
.hv-fin-lab {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.hv-fin-val {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--white);
  margin-top: 6px;
}
.hv-fin-cur {
  font-size: 0.55em;
  font-family: 'Barlow', sans-serif;
  color: var(--muted);
  margin-right: 3px;
}
.hv-fin-delta {
  font-size: 11px;
  margin-top: 6px;
  display: block;
}
.hv-fin-delta.up { color: var(--d-green); }
.hv-fin-val--ok {
  color: #4CAF50;
}
.hv-fin-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}
.hv-fin-spark {
  width: 100%;
  height: 36px;
  margin-top: 8px;
}
.hv-fin-foot {
  margin-top: 12px;
  font-size: 11px;
  line-height: 1.45;
  color: var(--muted);
}

/* Contratos — passos */
.hv-contr-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 8px 6px;
}
.hv-contr-step-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hv-contr-step {
  padding: 14px 12px;
  min-width: 92px;
  background: rgba(22,22,30,0.85);
  border: 1px solid var(--line-2);
}
.hv-contr-step-num {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.hv-contr-step-title {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--white);
}
.hv-contr-step-desc {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.hv-contr-between {
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
}
.hv-contr-foot {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}
.hv-contr-foot strong { color: var(--orange); }

/* Tributário — painel */
.hv-trib-panel {
  padding: 18px;
  border: 1px solid var(--line-2);
  background: linear-gradient(165deg, rgba(28,28,34,0.95), rgba(14,14,18,0.98));
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.hv-trib-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.hv-trib-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
}
.hv-trib-pill {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid rgba(242,101,34,0.5);
  color: var(--orange);
}
.hv-trib-gauge-wrap {
  position: relative;
  height: 120px;
  margin-bottom: 8px;
}
.hv-trib-gauge-svg {
  width: 100%;
  height: 100%;
}
.hv-trib-gauge-center {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  text-align: center;
}
.hv-trib-pct {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--white);
}
.hv-trib-pct-sub {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hv-trib-rows {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hv-trib-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}
.hv-trib-row strong { color: var(--white); font-weight: 700; }
.hv-trib-row--alert strong { color: #fbbf24; }
.hv-trib-das { color: var(--d-green) !important; }

@media (max-width: 1100px) {
  .svc-notas-flow-grid--five { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .svc-notas-flow-grid,
  .svc-notas-flow-grid--five { grid-template-columns: 1fr; }
  .hv-notas-meta--chips { grid-template-columns: 1fr; }
  .hv-orc-connector { display: none; }
  .hv-orc-pipeline { flex-direction: column; align-items: stretch; }
  .hv-contr-steps { flex-direction: column; align-items: stretch; }
  .hv-contr-between { display: none; }
}

/* ============================================================ */
/* FEATURE GRID                                                 */
/* ============================================================ */
.feat-section { padding: 90px 0; border-bottom: 1px solid var(--line); }
.feat-head { margin-bottom: 50px; }
.feat-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--white);
  max-width: 760px;
}
.feat-title .orange { color: var(--orange); }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-grid.feat-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.feat-grid.feat-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.feat-card {
  position: relative;
  padding: 32px 28px;
  background: rgba(20,20,24,0.5);
  border: 1px solid var(--line-2);
  transition: all .25s ease;
}
.feat-card:hover {
  border-color: rgba(242,101,34,0.5);
  transform: translateY(-3px);
  background: rgba(20,20,24,0.7);
}
.feat-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242,101,34,0.10);
  border: 1px solid rgba(242,101,34,0.4);
  margin-bottom: 18px;
}
.feat-icon svg { width: 26px; height: 26px; stroke: var(--orange); fill: none; stroke-width: 1.6; }
.feat-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: 'Barlow', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.feat-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.1;
}
.feat-card-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
}
.feat-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.feat-bullets li {
  position: relative;
  padding-left: 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.01em;
}
.feat-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 1px;
  background: var(--orange);
}

/* ============================================================ */
/* DIFFERENTIAL                                                 */
/* ============================================================ */
.diff-section { padding: 90px 0; border-bottom: 1px solid var(--line); background: rgba(20,20,24,0.3); }
.diff-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  padding: 56px;
  background: linear-gradient(135deg, rgba(242,101,34,0.05), transparent 60%);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--orange);
}
.diff-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--white);
  margin: 6px 0 20px;
}
.diff-title .orange { color: var(--orange); }
.diff-text {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
.diff-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.diff-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(10,10,10,0.5);
  border: 1px solid var(--line);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.01em;
}
.diff-text a,
.diff-bullets a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.diff-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(242,101,34,0.6);
}

/* ============================================================ */
/* CTA + RELATED                                                */
/* ============================================================ */
.cta-section { padding: 80px 0; }
.cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 44px 48px;
  background: rgba(20,20,24,0.5);
  border: 1px solid var(--line-2);
  margin-bottom: 40px;
}
.cta-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-text h2 .orange { color: var(--orange); }
.cta-text p { color: var(--muted); font-size: 14px; }
.related { padding-top: 30px; border-top: 1px solid var(--line); }
.related-head {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.related-list { display: flex; flex-wrap: wrap; gap: 10px; }
.related-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: transparent;
  border: 1px solid var(--line-2);
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  transition: all .2s ease;
}
.related-link:hover { border-color: var(--orange); color: var(--orange); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: all .15s ease;
}
.card-link:hover { border-bottom-color: var(--orange); }

/* ============================================================ */
/* FAQ — accordion                                              */
/* ============================================================ */
.faq-section { padding: 80px 0; }
.faq-group { margin-bottom: 50px; }
.faq-group-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.faq-group-num {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.20em;
  border: 1px solid rgba(242,101,34,0.4);
  padding: 4px 8px;
}
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--line-2);
  background: rgba(20,20,24,0.3);
  transition: all .2s ease;
}
.faq-item.open {
  border-color: rgba(242,101,34,0.5);
  background: rgba(20,20,24,0.6);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white);
}
.faq-q:hover { color: var(--orange); }
.faq-toggle {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-2);
  font-size: 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  color: var(--orange);
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { background: var(--orange); color: #0A0A0A; border-color: var(--orange); }
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.open .faq-a-wrap {
  grid-template-rows: 1fr;
}
.faq-a-inner {
  min-height: 0;
  overflow: hidden;
}
.faq-a {
  padding: 0 24px 22px;
  font-family: 'Barlow', sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.faq-a a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-a a:hover { color: var(--white); }
.faq-cta {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 40px;
  background: linear-gradient(135deg, rgba(242,101,34,0.08), transparent 80%);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--orange);
}
.faq-cta h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.faq-cta p { color: var(--muted); font-size: 14px; }

/* ============================================================ */
/* CONTATO                                                       */
/* ============================================================ */
.contact-section { padding: 80px 0 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}
.contact-info {
  padding: 36px;
  background: rgba(20,20,24,0.4);
  border: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.info-block { display: flex; flex-direction: column; gap: 6px; }
.info-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10.5px;
  color: var(--orange);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.info-text {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--white);
  line-height: 1.5;
}
.info-link {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px dashed var(--line-2);
  padding-bottom: 2px;
  width: fit-content;
  transition: all .15s ease;
}
.info-link:hover { color: var(--orange); border-bottom-color: var(--orange); }
.info-link.orange { color: var(--orange); border-bottom-color: rgba(242,101,34,0.4); }
.info-note { font-size: 12px; color: var(--muted-2); margin-top: 4px; }
.info-launch {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 16px 18px;
  background: rgba(242,101,34,0.05);
  border: 1px solid rgba(242,101,34,0.3);
}
.info-launch strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.info-launch span { display: block; font-size: 13px; color: var(--white); }

.contact-form {
  padding: 40px 44px;
  background: rgba(14,14,16,0.6);
  border: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-head { margin-bottom: 8px; }
.form-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
}
.form-head h2 .orange { color: var(--orange); }
.form-row { display: grid; gap: 18px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(10,10,10,0.6);
  border: 1px solid var(--line-2);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  transition: all .15s ease;
  resize: vertical;
}
.field select {
  resize: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
  cursor: pointer;
}
.field select option { color: #1a1a1d; background: #fff; }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(10,10,10,0.85);
  box-shadow: 0 0 0 3px rgba(242,101,34,0.12);
}
.form-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.form-note { font-size: 12px; color: var(--muted-2); }
.form-note-below-title { margin-top: 10px; max-width: none; line-height: 1.55; }
.form-note-below-title a { color: var(--orange); text-decoration: none; border-bottom: 1px dashed rgba(242,101,34,0.45); }
.form-note-below-title a:hover { color: var(--white); border-bottom-color: var(--orange); }

.contact-topic-p { margin: 0 0 14px; line-height: 1.55; max-width: none; }
.contact-service-list { margin: 0; padding-left: 18px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.contact-service-list li { margin-bottom: 6px; }
.contact-topics .info-label { margin-top: 12px; }
.contact-topics .info-label:first-of-type { margin-top: 0; }
.form-success {
  margin-top: 12px;
  padding: 14px 16px;
  background: rgba(242,101,34,0.10);
  border: 1px solid rgba(242,101,34,0.4);
  color: var(--white);
  font-size: 14px;
  font-family: 'Barlow', sans-serif;
}

/* ============================================================ */
/* ADMIN LANDING (/admin — copy e painel hero Checklist)       */
/* ============================================================ */
.adm-landing-hero::before {
  background: radial-gradient(circle at 70% 30%, rgba(242,101,34,0.10), transparent 60%);
}
.adm-landing-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.adm-landing-check {
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  padding: 20px;
  background: linear-gradient(155deg, rgba(24,24,30,0.95), rgba(12,12,16,0.98));
  border: 1px solid var(--line-2);
  box-shadow: 0 28px 70px rgba(0,0,0,0.45);
}
.adm-landing-check-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.adm-landing-check-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
}
.adm-landing-check-pill {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid rgba(242,101,34,0.45);
  color: var(--orange);
  white-space: nowrap;
}
.adm-landing-check-kpi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.adm-landing-check-kpi {
  padding: 14px;
  background: rgba(16,16,20,0.8);
  border: 1px solid var(--line);
}
.adm-landing-check-kpi-lab {
  display: block;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.adm-landing-check-kpi-val {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1.05;
  color: var(--white);
  margin: 8px 0 6px;
}
.adm-landing-orange { color: var(--orange); }
.adm-landing-check-kpi-sub {
  font-size: 11px;
  color: var(--muted);
}
.adm-landing-check-bar {
  display: block;
  height: 4px;
  background: var(--line-2);
  margin: 10px 0 6px;
  overflow: hidden;
}
.adm-landing-check-bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), #ff8c55);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.adm-landing-check-bar-fill.adm-landing-check-bar-fill--on {
  width: 67%;
}
.adm-landing-check-mail {
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  margin-bottom: 14px;
  background: rgba(22,22,28,0.5);
}
.adm-landing-check-mail-lab {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.adm-landing-check-mail-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 13px;
  color: var(--white);
}
.adm-landing-check-mail-row strong { color: var(--d-green); font-weight: 800; }
.adm-landing-muted { color: var(--muted-2); }
.adm-landing-check-mini {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}
.adm-landing-check-mini .ok { color: var(--d-green); margin-right: 8px; }
.adm-landing-check-mini .muted { color: var(--muted-2); margin-right: 8px; }
.adm-landing-check-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.adm-landing-check-foot .liveDot {
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse var(--pulse-duration) ease-in-out infinite;
}

.adm-landing-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}
.adm-landing-section.adm-landing-dashboard { background: rgba(16,16,18,0.35); }
.adm-landing-section.adm-landing-carteira { background: rgba(12,12,14,0.25); }
.adm-landing-section.adm-landing-docs { background: rgba(20,20,24,0.2); }
.adm-landing-section.adm-landing-related { background: rgba(14,14,16,0.4); }
.adm-landing-head { margin-bottom: 32px; max-width: 920px; }
.adm-landing-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-top: 8px;
}
.adm-landing-lede {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #9a9a94;
  margin-top: 16px;
}
.adm-landing-p {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 14px;
}
.adm-landing-cardgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.adm-landing-card {
  padding: 22px 20px;
  border: 1px solid var(--line-2);
  background: rgba(20,20,24,0.55);
  border-left: 3px solid var(--orange);
}
.adm-landing-card-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.adm-landing-card-p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.adm-landing-split {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.adm-landing-bullets {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.adm-landing-bullets li { margin-bottom: 8px; }
.adm-landing-split-panel {
  padding: 24px 22px;
  border: 1px solid var(--line-2);
  background: rgba(17,17,22,0.85);
}
.adm-landing-panel-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.adm-landing-step-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.adm-landing-step-list li { margin-bottom: 10px; }
.adm-landing-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.adm-landing-block {
  padding: 22px 20px;
  border: 1px solid var(--line-2);
  background: rgba(18,18,22,0.75);
}
.adm-landing-block--accent {
  border-color: rgba(242,101,34,0.35);
  box-shadow: 0 0 40px rgba(242,101,34,0.06);
}
.adm-landing-block-tag {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--muted-2);
  display: block;
  margin-bottom: 10px;
}
.adm-landing-block-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.adm-landing-block p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.adm-landing-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.5;
  max-width: 900px;
}
.adm-landing-minirow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.adm-landing-mini {
  padding: 20px 18px;
  border: 1px solid var(--line-2);
  background: rgba(20,20,24,0.5);
}
.adm-landing-mini h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.adm-landing-mini p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}
.adm-landing-demo-intro {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 900px;
  margin-top: 12px;
}
.adm-landing-demo-wrap .admin-head { margin-bottom: 28px; }

@media (max-width: 900px) {
  .adm-landing-split { grid-template-columns: 1fr; }
  .adm-landing-three { grid-template-columns: 1fr; }
  .adm-landing-minirow { grid-template-columns: 1fr; }
  .adm-landing-check-kpi-row { grid-template-columns: 1fr; }
}

/* ============================================================ */
/* ADMIN PREVIEW                                                */
/* ============================================================ */
.admin-section { padding: 80px 0; border-bottom: 1px solid var(--line); }
.admin-head { margin-bottom: 36px; }
.admin-frame {
  background: rgba(14,14,16,0.7);
  border: 1px solid var(--line-2);
  overflow: hidden;
  margin-bottom: 50px;
}
.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  background: rgba(10,10,10,0.6);
  border-bottom: 1px solid var(--line);
  gap: 16px;
  flex-wrap: wrap;
}
.admin-topbar .left { display: flex; align-items: center; gap: 14px; }
.admin-topbar .right { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.admin-topbar .brand { display: flex; align-items: center; gap: 8px; }
.admin-topbar .brand .h {
  width: 14px; height: 14px;
  background: var(--orange);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}
.admin-topbar .brand .name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: none;
}
.admin-topbar .brand .name .adm {
  font-size: 11px;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.10em;
  text-transform: lowercase;
  margin-left: 4px;
}
.env-pill {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--line-2);
  color: var(--white);
  background: rgba(242,101,34,0.08);
  border-color: rgba(242,101,34,0.4);
}
.env-pill.ghost { background: transparent; border-color: var(--line-2); color: var(--muted); }
.env-cta {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 8px 14px;
  background: var(--orange);
  color: #0A0A0A;
  border: 1px solid var(--orange);
  cursor: pointer;
  transition: all .15s ease;
}
.env-cta:hover { background: var(--orange-2); }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.adm-kpi {
  padding: 22px 24px;
  background: rgba(20,20,24,0.4);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.adm-kpi .lab {
  font-family: 'Barlow', sans-serif;
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.adm-kpi .val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--white);
  line-height: 1;
}
.adm-kpi .val.sm { font-size: 26px; }
.adm-kpi .val.red { color: #FF5544; }
.adm-kpi .val .of { font-size: 16px; color: var(--muted); margin-left: 2px; }
.adm-kpi .val .cur { font-size: 13px; color: var(--muted); margin-right: 4px; font-family: 'Barlow', sans-serif; font-weight: 600; }
.adm-kpi .sub { font-family: 'Barlow', sans-serif; font-size: 12px; color: var(--muted); }
.adm-kpi .sub.orange { color: var(--orange); }

.admin-table-wrap { padding: 22px; }
.admin-table-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.admin-table-head h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.admin-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 5px 10px;
  border: 1px solid var(--line-2);
  cursor: pointer;
  transition: all .15s ease;
}
.chip:hover { color: var(--white); border-color: var(--orange); }
.chip.active { color: #0A0A0A; background: var(--orange); border-color: var(--orange); }
.chip.alert { color: #FF8C55; border-color: rgba(255,140,85,0.4); }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Barlow', sans-serif;
}
.admin-table thead th {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  background: rgba(10,10,10,0.4);
}
.admin-table tbody td {
  padding: 14px 12px;
  font-size: 13px;
  color: var(--white);
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.admin-table tbody tr:hover { background: rgba(242,101,34,0.04); }
.cell-company { display: flex; align-items: center; gap: 10px; }
.cell-av {
  width: 28px; height: 28px;
  background: var(--orange);
  color: #0A0A0A;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
}
.mono { font-family: 'JetBrains Mono', 'Courier New', monospace; font-size: 12px; color: var(--muted); }
.anexo {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  background: rgba(20,20,24,0.6);
  border: 1px solid var(--line-2);
  color: var(--white);
}
.num { text-align: right; font-variant-numeric: tabular-nums; }
.num.strong { font-weight: 600; }
.bar-wrap {
  position: relative;
  width: 140px;
  height: 18px;
  background: rgba(10,10,10,0.6);
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
}
.bar {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  transition: width .4s ease;
}
.bar-pct {
  position: absolute;
  right: 6px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.04em;
}
.status {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.status.ok { background: rgba(80,200,120,0.10); color: #6FD89A; border: 1px solid rgba(80,200,120,0.3); }
.status.warn { background: rgba(255,180,60,0.10); color: #FFB43C; border: 1px solid rgba(255,180,60,0.3); }
.status.alert { background: rgba(255,80,68,0.10); color: #FF7766; border: 1px solid rgba(255,80,68,0.3); }
.admin-table-foot {
  display: flex;
  justify-content: space-between;
  padding: 14px 4px 0;
  font-size: 11px;
  color: var(--muted-2);
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.adm-feat {
  padding: 28px 26px;
  background: rgba(20,20,24,0.4);
  border: 1px solid var(--line-2);
}
.adm-feat .feat-icon { margin-bottom: 16px; }
.adm-feat h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.adm-feat p { font-family: 'Barlow', sans-serif; font-size: 14px; line-height: 1.55; color: var(--muted); }

/* ============================================================ */
/* FOOTER — extended grid                                       */
/* ============================================================ */
.foot-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  padding: 40px 0 30px;
  border-bottom: 1px solid var(--line);
  margin-top: 40px;
}
.foot-col { display: flex; flex-direction: column; gap: 10px; }
.foot-col-head {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.foot-link {
  font-family: 'Barlow', sans-serif;
  font-size: 13.5px;
  color: var(--white);
  text-decoration: none;
  width: fit-content;
  transition: color .15s ease;
}
.foot-link:hover { color: var(--orange); }
.foot-link.orange { color: var(--orange); }
.foot-text { font-family: 'Barlow', sans-serif; font-size: 13.5px; color: var(--white); }
.foot-text.muted { color: var(--muted-2); font-size: 12.5px; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-family: 'Barlow', sans-serif;
  font-size: 11.5px;
  color: var(--muted-2);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================ */
/* NOT FOUND                                                    */
/* ============================================================ */
.notfound { max-width: 720px; padding: 60px 0; }

/* ============================================================ */
/* RESPONSIVE — additions                                       */
/* ============================================================ */
@media (max-width: 1100px) {
  .nav-link { padding: 10px 10px; font-size: 11.5px; }
  .nav-elai { display: none; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-inner { padding: 16px 22px; }
  .page-hero { padding: 110px 0 50px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .page-hero-grid--service { gap: 36px; }
  .page-hero-visual { min-height: 0; }
  .service-hero-metrics { margin-left: 0; max-width: none; }
  .page-hero-icon { min-height: 240px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-block { grid-template-columns: 1fr; gap: 30px; padding: 36px 30px; }
  .cta-block { flex-direction: column; align-items: flex-start; padding: 32px 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form { padding: 30px 26px; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-features { grid-template-columns: 1fr; }
  .admin-table-wrap { padding: 14px; overflow-x: auto; }
  .admin-table { min-width: 800px; }
  .foot-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .faq-cta { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
}
@media (max-width: 540px) {
  .feat-grid,
  .feat-grid.feat-grid--cols-2,
  .feat-grid.feat-grid--cols-3 { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .page-headline { font-size: 44px; }
  .nav-elai { display: none; }
  .page-hero-chips { flex-direction: column; align-items: flex-start; }
  .service-hero-metrics-grid { grid-template-columns: 1fr; }
  .service-metric-card { min-height: 0; }
}

/* ============================================================ */
/* ADMIN PREVIEW v2 — operational SaaS dashboard                */
/* ============================================================ */
.admin-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  background: rgba(14,14,16,0.7);
  border: 1px solid var(--line-2);
  margin-bottom: 50px;
  min-height: 720px;
}
.adm-sidebar {
  background: rgba(8,8,10,0.85);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 18px 0;
}
.adm-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 22px 18px;
  border-bottom: 1px solid var(--line);
}
.adm-brand .h {
  width: 14px; height: 14px;
  background: var(--orange);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}
.adm-brand .name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: none;
}
.adm-brand .adm-env {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.10em;
  text-transform: lowercase;
  padding: 2px 6px;
  border: 1px solid var(--line-2);
  margin-left: 4px;
}
.adm-side-head {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  padding: 18px 22px 8px;
}
.adm-menu {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.adm-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  border: none;
  border-left: 2px solid transparent;
  color: var(--muted);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-align: left;
  transition: all .12s ease;
}
.adm-menu-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}
.adm-menu-item svg:not(.adm-menu-chev) { width: 16px; height: 16px; flex-shrink: 0; }
.adm-menu-chev {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.45;
}
.adm-menu-item.active .adm-menu-chev { opacity: 0.65; }
.adm-menu-item:hover { color: var(--white); background: rgba(242,101,34,0.04); }
.adm-menu-item.active {
  color: var(--orange);
  border-left-color: var(--orange);
  background: rgba(242,101,34,0.07);
}
.adm-side-foot {
  padding: 16px 22px;
  border-top: 1px solid var(--line);
}
.adm-help {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px dashed var(--line-2);
  padding-bottom: 2px;
  transition: all .15s ease;
}
.adm-help:hover { color: var(--orange); border-bottom-color: var(--orange); }

.adm-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.adm-topbar2 {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(10,10,10,0.5);
  flex-wrap: wrap;
}
.adm-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: rgba(10,10,10,0.6);
  border: 1px solid var(--line-2);
  min-width: 240px;
  max-width: 480px;
}
.adm-search svg { width: 16px; height: 16px; color: var(--muted); flex-shrink: 0; }
.adm-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 13.5px;
  letter-spacing: 0.01em;
}
.adm-search input::placeholder { color: var(--muted-2); }
.adm-top-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.adm-comp {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(10,10,10,0.6);
  border: 1px solid var(--line-2);
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
}
.adm-comp > span {
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.adm-comp select {
  background: transparent;
  border: none;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
}
.adm-comp select option { background: #0A0A0A; color: var(--white); }

.adm-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.adm-kpi2 {
  padding: 22px 24px;
  background: rgba(20,20,24,0.4);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.adm-kpi2 .lab {
  font-family: 'Barlow', sans-serif;
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.adm-kpi2 .val-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.val-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}
.val-big.orange { color: var(--orange); }
.val-big .of { font-size: 18px; color: var(--muted); margin-left: 2px; }
.val-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 11.5px;
  color: var(--muted);
  text-align: right;
  letter-spacing: 0.04em;
}
.kpi-progress {
  position: relative;
  width: 100%;
  height: 8px;
  background: rgba(10,10,10,0.6);
  overflow: hidden;
  border: 1px solid var(--line-2);
}
.kpi-progress-bar {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  transition: width .5s ease;
}
.kpi-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}
.kpi-mini .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.kpi-mini .dot.ml { margin-left: 4px; }
.kpi-mini .dot.ok { background: #6FD89A; box-shadow: 0 0 6px rgba(111,216,154,0.4); }
.kpi-mini .dot.warn { background: #FFB43C; box-shadow: 0 0 6px rgba(255,180,60,0.4); }
.kpi-mini .dot.alert { background: #FF7766; box-shadow: 0 0 6px rgba(255,119,102,0.4); }

.adm-table-card {
  padding: 18px 22px 22px;
}
.adm-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.adm-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: -1px;
  transition: all .12s ease;
}
.adm-tab:hover { color: var(--white); }
.adm-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.adm-tab .count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 18px;
  padding: 0 6px;
  background: rgba(242,101,34,0.10);
  border: 1px solid rgba(242,101,34,0.3);
  font-family: 'Barlow', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0;
}
.adm-tab.active .count { background: var(--orange); color: #0A0A0A; border-color: var(--orange); }
.adm-tab-spacer { flex: 1; }
.adm-tab-meta {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.06em;
}

.adm-table-wrap2 { overflow-x: auto; }
.cnpj-mono {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.actions-th { text-align: right; }
.row-actions {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}
.row-actions button {
  width: 30px; height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--muted);
  cursor: pointer;
  transition: all .15s ease;
}
.row-actions button svg { width: 15px; height: 15px; }
.row-actions button:hover { color: var(--orange); border-color: var(--orange); background: rgba(242,101,34,0.06); }
.row-actions button.danger:hover { color: #FF7766; border-color: rgba(255,119,102,0.5); background: rgba(255,119,102,0.06); }

.badge-send {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 9px;
  border: 1px solid var(--line-2);
}
.badge-send .d {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.badge-send.enviado { background: rgba(80,200,120,0.10); color: #6FD89A; border-color: rgba(80,200,120,0.3); }
.badge-send.enviado .d { background: #6FD89A; box-shadow: 0 0 6px rgba(111,216,154,0.5); }
.badge-send.pendente { background: rgba(255,180,60,0.10); color: #FFB43C; border-color: rgba(255,180,60,0.3); }
.badge-send.pendente .d { background: #FFB43C; box-shadow: 0 0 6px rgba(255,180,60,0.5); }
.badge-send.atrasado { background: rgba(255,80,68,0.10); color: #FF7766; border-color: rgba(255,80,68,0.3); }
.badge-send.atrasado .d { background: #FF7766; box-shadow: 0 0 6px rgba(255,119,102,0.5); }

.badge-read {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.badge-read.ok { color: #6FD89A; }
.badge-read.warn { color: var(--muted); }
.badge-read.muted { color: var(--muted-2); }

.empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
}

/* footer support link */
.foot-support {
  font-family: 'Barlow', sans-serif;
  font-size: 13.5px;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px dashed rgba(242,101,34,0.4);
  padding-bottom: 2px;
  width: fit-content;
  margin-top: 4px;
  transition: all .15s ease;
}
.foot-support:hover { color: var(--orange-2); border-bottom-color: var(--orange-2); }

/* responsive */
@media (max-width: 1100px) {
  .admin-shell { grid-template-columns: 200px 1fr; }
  .adm-kpis { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .admin-shell { grid-template-columns: 1fr; }
  .adm-sidebar {
    flex-direction: row;
    overflow-x: auto;
    padding: 10px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .adm-brand, .adm-side-head, .adm-side-foot { display: none; }
  .adm-menu { flex-direction: row; gap: 4px; }
  .adm-menu-item {
    padding: 8px 12px;
    border-left: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
  }
  .adm-menu-item.active { border-left-color: transparent; border-bottom-color: var(--orange); }
  .adm-topbar2 { padding: 12px 14px; }
  .adm-search { min-width: 0; }
  .adm-table-card { padding: 14px; }
  .adm-table-wrap2 .admin-table { min-width: 760px; }
}

/* ============================================================ */
/* ACESSIBILIDADE — movimento reduzido                          */
/* ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up,
  .fade-up.visible,
  .stagger-child,
  .stagger-child.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .service-metric-card {
    opacity: 1 !important;
    transform: none !important;
  }
  .page-enter {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================ */
/* PLANOS — ajustes específicos da página planos.html           */
/* ============================================================ */
.planos-card { position: relative; padding-bottom: 48px; }
.planos-card--destaque {
  border-color: rgba(242,101,34,0.55);
  background: rgba(242,101,34,0.04);
}
.planos-card--destaque:hover { border-color: rgba(242,101,34,0.85); }
.planos-badge-destaque {
  position: absolute;
  top: -13px; right: 22px;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
}
.planos-tag-wrap {
  position: absolute;
  bottom: 20px; left: 28px;
}
.planos-tag {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 3px 8px;
}
.planos-disclaimer {
  margin-top: 32px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.6;
  max-width: 720px;
  border-left: 2px solid var(--line);
  padding-left: 14px;
}
.pl-switch {
  display: inline-flex;
  gap: 0;
  margin: 10px 0 18px;
  padding: 3px;
  border-radius: 999px;
  background: #F3F4F6;
  border: 1px solid #ECEFF1;
}
.pl-switch-item {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #4b5563;
  text-decoration: none;
  white-space: nowrap;
}
.pl-switch-item.on {
  background: #F26522;
  color: #fff;
}
.pl-switch-item:hover:not(.on) { color: #1a2142; }
.pl-matrix {
  display: flex;
  flex-direction: column;
  border: 1px solid #ECEFF1;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 2px rgba(26,33,66,0.04);
}
.pl-matrix-h, .pl-matrix-r {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr 0.9fr;
  gap: 8px;
  align-items: center;
  padding: 12px 16px;
  font-size: 13px;
}
.pl-matrix-h {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9CA3AF;
  background: #F9FAFB;
  border-bottom: 1px solid #ECEFF1;
}
.pl-matrix-r { border-top: 1px solid #F3F4F6; color: #4b5563; }
.pl-matrix-r span:first-child { color: #1a2142; font-weight: 600; }
.pl-matrix-r b {
  font-weight: 700;
  color: #16A34A;
  text-align: center;
}
.pl-matrix-r .no {
  color: #9CA3AF;
  font-weight: 600;
  text-align: center;
}
.pl-frame.ah-home-frame .app {
  min-height: 820px;
  max-height: 980px;
}
@media (max-width: 800px) {
  .pl-matrix-h, .pl-matrix-r { grid-template-columns: 1fr; }
  .pl-switch { width: 100%; }
  .pl-switch-item { flex: 1; justify-content: center; }
}

/* ============================================================ */
/* ADMIN DEMO — skeleton loading (POC)                          */
/* ============================================================ */
.adm-skeleton-row .sk {
  display: block;
  height: 12px;
  border-radius: 6px;
  background: rgba(148, 163, 184, 0.28);
  position: relative;
  overflow: hidden;
}

.adm-skeleton-row .sk::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.46),
    rgba(255, 255, 255, 0)
  );
  animation: adm-skeleton-shimmer 1.35s infinite;
}

.adm-skeleton-row .sk-company { width: 92%; height: 14px; }
.adm-skeleton-row .sk-obrig { width: 84%; height: 14px; }
.adm-skeleton-row .sk-compet { width: 68%; }
.adm-skeleton-row .sk-status { width: 72%; }
.adm-skeleton-row .sk-actions { width: 58px; margin-left: auto; }

@keyframes adm-skeleton-shimmer {
  to {
    transform: translateX(180%);
  }
}

@media (prefers-color-scheme: dark) {
  .adm-skeleton-row .sk {
    background: rgba(71, 85, 105, 0.48);
  }

  .adm-skeleton-row .sk::after {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0)
    );
  }
}

@media (prefers-reduced-motion: reduce) {
  .adm-skeleton-row .sk::after {
    animation: none !important;
  }
}

/* ============================================================ */
/* Financeiro — mock Análise (scoped)                           */
/* ============================================================ */
.fin-analise-frame .app {
  min-height: 820px;
  max-height: 920px;
}
.fin-analise-frame .app-main {
  min-height: 0;
  overflow: hidden;
}
.fin-analise-frame .content.fin-analise {
  overflow-y: auto;
  max-height: calc(920px - 56px);
  gap: 14px;
}
.fa-card {
  background: #fff;
  border: 1px solid #ECEFF1;
  border-radius: 12px;
  padding: 16px 16px 14px;
  box-shadow: 0 1px 2px rgba(26, 33, 66, 0.04);
}
.fa-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.fa-card-head h4 {
  margin: 0 0 4px;
  font-family: Inter, Barlow, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a2142;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fa-card-head h4 svg {
  width: 18px;
  height: 18px;
  stroke: #FF7A42;
  fill: none;
  stroke-width: 1.7;
}
.fa-card-head p {
  margin: 0;
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.4;
}
.fa-chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(26, 33, 66, 0.07);
  color: #1a2142;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-style: normal;
  white-space: nowrap;
}
.fa-chip--ok { background: rgba(76, 175, 80, 0.16); color: #2E7D32; }
.fa-chip--danger { background: rgba(244, 67, 54, 0.12); color: #C62828; }
.fa-chip--warn { background: rgba(255, 152, 0, 0.16); color: #E65100; }
.fa-empresa { display: flex; flex-direction: column; gap: 4px; min-width: 200px; }
.fa-empresa-lab {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
}
.fa-empresa-field {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid #ECEFF1;
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #1a2142;
}
.fa-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 12px;
}
.fa-filter-lab {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 6px;
}
.fa-pills { display: flex; gap: 6px; }
.fa-pills span,
.fin-analise .chart-pills span {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #ECEFF1;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
}
.fa-pills span.on,
.fin-analise .chart-pills span.on {
  background: #FF7A42;
  border-color: #FF7A42;
  color: #fff;
}
.fa-dates {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: #6b7280;
}
.fa-dates label {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid #ECEFF1;
  border-radius: 10px;
  background: #fff;
}
.fa-dates b { color: #1a2142; font-weight: 600; }
.fa-ok-banner {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(76, 175, 80, 0.12);
  color: #2E7D32;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}
.fa-stmt-head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.fa-stmt-head strong {
  font-size: 15px;
  color: #1a2142;
}
.fa-stmt-meta {
  margin-left: auto;
  font-size: 11px;
  color: #9ca3af;
}
.fa-stmt-sum {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 10px 12px;
  background: #FAFBFC;
  border-radius: 8px;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 10px;
}
.fa-stmt-sum b { font-size: 13px; }
.fa-stmt-sum .ok, .fa-stmt-row b.ok, .fa-combo-kpis .rec strong { color: #2E7D32; }
.fa-stmt-sum .no, .fa-stmt-row b.no, .fa-alert-row b.no { color: #C62828; }
.fa-stmt-group {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 8px 0 6px;
}
.fa-stmt-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto auto auto;
  gap: 8px;
  align-items: center;
  padding: 10px 10px 10px 8px;
  border: 1px solid #F1F5F9;
  border-radius: 8px;
  margin-bottom: 6px;
  border-left-width: 3px;
}
.fa-stmt-row.out { border-left-color: #EF4444; }
.fa-stmt-row.in { border-left-color: #4CAF50; }
.fa-stmt-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(244, 67, 54, 0.1);
  color: #C62828;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fa-stmt-icon.in { background: rgba(76, 175, 80, 0.12); color: #2E7D32; }
.fa-stmt-row div { min-width: 0; }
.fa-stmt-row strong {
  display: block;
  font-size: 13px;
  color: #1a2142;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fa-stmt-row small { font-size: 11px; color: #9ca3af; }
.fa-tag {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 100px;
  background: #F1F5F9;
  color: #64748b;
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}
.fa-tag--out { background: rgba(244, 67, 54, 0.12); color: #C62828; }
.fa-tag--in { background: rgba(76, 175, 80, 0.14); color: #2E7D32; }
.fa-tag--soon { background: rgba(255, 152, 0, 0.16); color: #E65100; }
.fa-alerts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fa-alert-card { border-top: 3px solid #FFCC80; }
.fa-alert-card:first-child { border-top-color: #EF9A9A; }
.fa-alert-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto 16px;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid #F1F5F9;
  border-radius: 10px;
  margin-bottom: 8px;
}
.fa-alert-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(244, 67, 54, 0.12);
  color: #C62828;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.fa-alert-ico.cal {
  border-radius: 8px;
  background: rgba(255, 152, 0, 0.16);
  color: transparent;
  box-shadow: inset 0 0 0 1.5px #FF9800;
  position: relative;
}
.fa-alert-ico.cal::after {
  content: "";
  width: 10px;
  height: 8px;
  border: 1.5px solid #E65100;
  border-radius: 2px;
  position: absolute;
}
.fa-alert-row strong {
  display: block;
  font-size: 13px;
  color: #1a2142;
}
.fa-alert-row small {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #9ca3af;
}
.fa-alert-row b.soon { color: #E65100; }
.fa-chev { color: #CBD5E1; font-size: 18px; }
.fa-alert-foot {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #9ca3af;
  margin-top: 4px;
}
.fa-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fa-donut-wrap {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: center;
}
.fa-donut {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: conic-gradient(#4CAF50 0 29.4%, #F44336 29.4% 31.4%, #FF7A42 31.4% 100%);
  position: relative;
  flex-shrink: 0;
}
.fa-donut-hole {
  position: absolute;
  inset: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.fa-donut-hole strong {
  font-size: 22px;
  color: #1a2142;
  line-height: 1;
}
.fa-donut-hole span {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
}
.fa-donut-hole small {
  margin-top: 2px;
  font-size: 11px;
  color: #1a2142;
  font-weight: 600;
}
.fa-status-list { display: flex; flex-direction: column; gap: 8px; }
.fa-status {
  padding: 10px 12px;
  border-radius: 10px;
  background: #FAFBFC;
  border-left: 4px solid #CBD5E1;
}
.fa-status.paga { border-left-color: #4CAF50; }
.fa-status.venc { border-left-color: #F44336; }
.fa-status.aberto { border-left-color: #FF7A42; }
.fa-status b {
  display: block;
  font-size: 12px;
  color: #1a2142;
}
.fa-status span { font-size: 11px; color: #6b7280; }
.fa-status strong {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  color: #1a2142;
}
.fa-status-bar {
  display: block;
  height: 4px;
  margin-top: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #FF7A42 68.6%, #ECEFF1 68.6%);
}
.fa-combo-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.fa-combo-kpis span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
}
.fa-combo-kpis strong {
  font-size: 15px;
  color: #1a2142;
}
.fa-combo-kpis small {
  display: block;
  font-size: 11px;
  color: #9ca3af;
}
.fa-combo {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 8px;
  min-height: 140px;
}
.fa-combo-y {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 10px;
  color: #9ca3af;
  text-align: right;
  padding: 4px 0 22px;
}
.fa-combo-plot { position: relative; min-height: 140px; }
.fa-combo-cols {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 110px;
  padding: 0 6px;
}
.fa-combo-cols span {
  flex: 1;
  height: var(--h);
  background: #E8EAED;
  border-radius: 4px 4px 0 0;
}
.fa-combo-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 110px;
  width: 100%;
}
.fa-combo-line .fill { fill: rgba(255, 122, 66, 0.12); }
.fa-combo-line polyline {
  fill: none;
  stroke: #FF7A42;
  stroke-width: 2.2;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.fa-combo-line circle { fill: #FF7A42; }
.fa-combo-x {
  display: flex;
  justify-content: space-between;
  padding: 6px 6px 0;
  font-size: 10px;
  color: #9ca3af;
}
.fa-combo-note {
  margin: 8px 0 0;
  font-size: 11px;
  color: #9ca3af;
}
@media (max-width: 1100px) {
  .fa-alerts,
  .fa-charts,
  .fa-donut-wrap { grid-template-columns: 1fr; }
  .fa-stmt-meta { margin-left: 0; }
}
@media (max-width: 900px) {
  .fin-analise-frame .app { max-height: none; min-height: 0; }
  .fin-analise-frame .content.fin-analise { max-height: none; }
}

/* Mock Simples Nacional — cards internos */
.sn-annex,
.sn-folha {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sn-annex > div,
.sn-folha > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 12px;
  background: #FAFBFC;
  border: 1px solid #ECEFF1;
  border-radius: 10px;
}
.sn-annex span,
.sn-folha span {
  font-size: 12px;
  color: #6b7280;
}
.sn-annex strong,
.sn-folha b {
  font-size: 14px;
  color: #1a2142;
  font-weight: 700;
}
.sn-das {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, #FFF8F4 0%, #fff 100%);
  border: 1px solid rgba(255, 122, 66, 0.22);
}
.sn-das span {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
}
.sn-das strong {
  font-family: 'Barlow Condensed', Inter, sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #1a2142;
  line-height: 1.1;
}
.sn-das small {
  font-size: 12px;
  color: #6b7280;
}
.fin-analise .limit-track {
  margin: 12px 0 14px;
}
.fin-analise .kpi-body .home-cash-chip {
  margin-top: 4px;
  background: rgba(76, 175, 80, 0.14);
  color: #2E7D32;
}
.page-sub code,
.feat-card-desc code,
.svc-notas-flow-card-text code,
.faq-a code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
  color: var(--orange);
  background: rgba(242, 101, 34, 0.12);
  padding: 1px 6px;
  border-radius: 4px;
}

/* Contratos — faixa de status */
.svc-status-band {
  padding: 0 0 72px;
}
.svc-status-inner {
  border: 1px solid var(--line-2);
  background: rgba(22, 22, 30, 0.55);
  padding: 22px 24px;
}
.svc-status-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.svc-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-status-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.svc-status-pill--warn {
  border-color: rgba(255, 152, 0, 0.45);
  color: #FFB74D;
  background: rgba(255, 152, 0, 0.1);
}
.svc-status-pill--ok {
  border-color: rgba(76, 175, 80, 0.45);
  color: #81C784;
  background: rgba(76, 175, 80, 0.1);
}
.svc-status-pill--mute {
  color: var(--muted);
}
.svc-status-note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
@media (max-width: 900px) {
  .svc-status-inner { padding: 18px; }
}

/* ============================================================ */
/* Mock de emissão (formulário — Notas, Orçamento, Lançamento)   */
/* ============================================================ */
.em-frame.fin-analise-frame .app {
  min-height: 880px;
  max-height: 980px;
}
.em-frame.fin-analise-frame .content.fin-analise {
  max-height: calc(980px - 56px);
}
.em-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: start;
}
.em-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.em-card {
  background: #fff;
  border: 1px solid #ECEFF1;
  border-radius: 12px;
  border-top: 3px solid #FF7A42;
  box-shadow: 0 1px 2px rgba(26, 33, 66, 0.04);
  overflow: hidden;
}
.em-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 12px;
  border-bottom: 1px solid #F0F2F5;
}
.em-card-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #1a2142;
  display: flex;
  align-items: center;
  gap: 8px;
}
.em-card-title svg {
  width: 16px;
  height: 16px;
  stroke: #FF7A42;
  fill: none;
  stroke-width: 1.8;
}
.em-pj {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
}
.em-pj span {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
}
.em-pj strong {
  font-size: 12px;
  color: #1a2142;
}
.em-body { padding: 14px 16px 16px; }
.em-sec {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 10px;
}
.em-sec + .em-fields { margin-bottom: 14px; }
.em-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.em-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.em-field.span-2,
.em-field.span-3 { grid-column: 1 / -1; }
.em-lab {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
}
.em-lab i {
  color: #FF7A42;
  font-style: normal;
}
.em-input,
.em-select,
.em-area {
  padding: 8px 10px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #FAFBFC;
  font-size: 13px;
  color: #1a2142;
  line-height: 1.35;
}
.em-area { min-height: 56px; }
.em-hint {
  margin: 6px 0 0;
  font-size: 11px;
  color: #9ca3af;
}
.em-hint b { color: #FF7A42; font-weight: 600; }
.em-iss {
  display: flex;
  align-items: center;
  gap: 8px;
}
.em-iss .em-input { flex: 1; }
.em-iss .em-suffix {
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
}
.em-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #1a2142;
  white-space: nowrap;
}
.em-toggle i {
  width: 32px;
  height: 18px;
  border-radius: 99px;
  background: #E5E7EB;
  position: relative;
  font-style: normal;
}
.em-toggle i::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.em-retencao {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 12px;
  border: 1px dashed #FFD0B8;
  border-radius: 8px;
  background: #FFF8F4;
  font-size: 12px;
  color: #1a2142;
  font-weight: 600;
}
.em-retencao span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #FF7A42;
  background: rgba(255,122,66,0.12);
  padding: 2px 7px;
  border-radius: 99px;
}
.em-tomador {
  padding: 12px;
  border: 1px solid #ECEFF1;
  border-radius: 10px;
  background: #FAFBFC;
}
.em-tomador-search {
  padding: 8px 10px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 10px;
}
.em-tomador-card strong {
  display: block;
  font-size: 13px;
  color: #1a2142;
}
.em-tomador-card small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: #6b7280;
}
.em-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
  height: 42px;
  border-radius: 10px;
  font-weight: 700;
}
.em-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.em-foot p {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
}
.em-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border: 1px dashed #FFD0B8;
  border-radius: 10px;
  color: #FF7A42;
  font-size: 13px;
  font-weight: 700;
  background: #FFF8F4;
}
.em-items {
  margin-top: 12px;
  border: 1px solid #ECEFF1;
  border-radius: 10px;
  overflow: hidden;
}
.em-items-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #FAFBFC;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
}
.em-items-row {
  display: grid;
  grid-template-columns: 1.6fr 0.5fr 0.8fr 0.7fr;
  gap: 8px;
  padding: 10px 12px;
  font-size: 12px;
  color: #1a2142;
  border-top: 1px solid #F0F2F5;
}
.em-items-row span:last-child { font-weight: 700; text-align: right; }
.em-upload {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px dashed #E5E7EB;
  border-radius: 10px;
  background: #FAFBFC;
  font-size: 12px;
  color: #6b7280;
}
.em-upload strong { color: #1a2142; }
.em-radio {
  display: flex;
  gap: 16px;
  padding: 8px 0 2px;
  font-size: 13px;
  color: #1a2142;
}
.em-radio b {
  font-weight: 700;
  color: #FF7A42;
}
.em-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
@media (max-width: 1100px) {
  .em-grid,
  .em-3,
  .em-items-row { grid-template-columns: 1fr; }
  .em-items-row span:last-child { text-align: left; }
}

/* ============================================================ */
/* Agenda de pagamentos — hero + mock calendário                */
/* ============================================================ */
.svc-status-pill--danger {
  border-color: rgba(244, 67, 54, 0.45);
  color: #EF9A9A;
  background: rgba(244, 67, 54, 0.1);
}
.hv-agenda-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.hv-agenda-kpis > div {
  padding: 10px 12px;
  border: 1px solid var(--line-2);
  background: rgba(22, 22, 30, 0.75);
}
.hv-agenda-kpis span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hv-agenda-kpis strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  color: var(--white);
}
.hv-agenda-kpis strong.ok { color: #81C784; }
.hv-agenda-cal {
  padding: 14px;
  border: 1px solid var(--line-2);
  background: linear-gradient(165deg, rgba(28,28,34,0.95), rgba(14,14,18,0.98));
}
.hv-agenda-cal-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.hv-agenda-week,
.hv-agenda-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.hv-agenda-week {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.hv-agenda-days span {
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--muted);
  border-radius: 4px;
}
.hv-agenda-days span.v { background: rgba(244,67,54,0.2); color: #EF9A9A; }
.hv-agenda-days span.p { background: rgba(76,175,80,0.2); color: #81C784; }
.hv-agenda-days span.a { background: rgba(255,122,66,0.2); color: #FFB74D; }
.hv-agenda-days span.t {
  background: var(--orange);
  color: #0a0a0a;
  font-weight: 800;
}
.hv-agenda-foot {
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
}
.ag-tabs {
  display: flex;
  gap: 8px;
}
.ag-tabs span {
  padding: 7px 12px;
  border-radius: 99px;
  border: 1px solid #ECEFF1;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
}
.ag-tabs span.on {
  border-color: #FF7A42;
  color: #FF7A42;
  background: rgba(255,122,66,0.08);
}
.ag-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 14px;
  align-items: start;
}
.ag-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #1a2142;
  font-size: 13px;
}
.ag-nav strong { font-size: 14px; }
.ag-weekdays,
.ag-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.ag-weekdays {
  margin-bottom: 4px;
}
.ag-weekdays span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #9ca3af;
  text-align: center;
  padding: 4px 0;
}
.ag-cell {
  min-height: 54px;
  padding: 4px;
  border: 1px solid #F0F2F5;
  background: #fff;
}
.ag-cell span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #1a2142;
}
.ag-cell.mute { background: #FAFBFC; }
.ag-cell.mute span { color: #CBD5E1; }
.ag-cell.today {
  background: #FFF8F4;
  box-shadow: inset 0 0 0 1.5px #FF7A42;
}
.ag-dot {
  display: block;
  margin-top: 3px;
  padding: 1px 4px;
  border-radius: 4px;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ag-dot.venc { background: rgba(244,67,54,0.14); color: #C62828; }
.ag-dot.pago { background: rgba(76,175,80,0.16); color: #2E7D32; }
.ag-dot.open { background: rgba(255,122,66,0.16); color: #E65100; }
.ag-panel-block {
  padding: 10px 12px;
  border: 1px solid #ECEFF1;
  border-radius: 10px;
  background: #FAFBFC;
  margin-bottom: 8px;
}
.ag-panel-block.warn {
  border-color: rgba(244,67,54,0.25);
  background: #FFF5F5;
}
.ag-panel-block span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
}
.ag-panel-block strong {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: #1a2142;
}
.ag-panel-block small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: #6b7280;
}
.ag-layout .em-hint { margin-top: 8px; }
@media (max-width: 1100px) {
  .ag-layout { grid-template-columns: 1fr; }
}

/* ============================================================ */
/* Conciliador — hero + mock da fila                            */
/* ============================================================ */
.hv-conc-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.hv-conc-kpis > div {
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  background: rgba(22, 22, 30, 0.75);
}
.hv-conc-kpis span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hv-conc-kpis strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  color: var(--white);
}
.hv-conc-kpis strong.ok { color: #81C784; }
.hv-conc-row {
  display: grid;
  grid-template-columns: 1.4fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  margin-bottom: 6px;
  border: 1px solid var(--line-2);
  background: rgba(22, 22, 30, 0.7);
}
.hv-conc-lab {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.hv-conc-row strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  white-space: nowrap;
}
.hv-conc-row strong.out { color: #EF9A9A; }
.hv-conc-row strong.in { color: #81C784; }
.hv-conc-row i {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}
.hv-conc-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
}
.hv-conc-foot .liveDot {
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse var(--pulse-duration) ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hv-conc-foot .liveDot { animation: none; }
}

.cc-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cc-kpi-on {
  box-shadow: inset 0 0 0 1.5px #FF7A42;
}
.cc-export {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cc-export > span {
  padding: 4px 9px;
  border-radius: 6px;
  border: 1px solid #ECEFF1;
  background: #FAFBFC;
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cc-bulk {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #FAFBFC;
  border: 1px solid #ECEFF1;
  font-size: 12px;
  color: #6b7280;
}
.cc-check {
  width: 16px;
  height: 16px;
  border: 1.5px solid #CBD5E1;
  border-radius: 4px;
  background: #fff;
  flex-shrink: 0;
  display: inline-block;
}
.cc-check.on {
  background: #FF7A42;
  border-color: #FF7A42;
  box-shadow: inset 0 0 0 3px #fff;
}
.cc-table {
  overflow-x: auto;
}
.cc-head,
.cc-row {
  display: grid;
  grid-template-columns: 28px 92px 118px minmax(180px, 1.4fr) 150px 88px;
  gap: 8px;
  align-items: center;
  min-width: 720px;
}
.cc-head {
  padding: 6px 8px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  border-bottom: 1px solid #ECEFF1;
}
.cc-row {
  padding: 10px 8px;
  border-bottom: 1px solid #F3F4F6;
  font-size: 13px;
  color: #1a2142;
}
.cc-row.wait {
  background: #FFF8F4;
  box-shadow: inset 3px 0 0 #FF7A42;
}
.cc-row strong.out { color: #C62828; font-variant-numeric: tabular-nums; }
.cc-row strong.in { color: #2E7D32; font-variant-numeric: tabular-nums; }
.cc-row small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: #9ca3af;
}
.cc-sg {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(76, 175, 80, 0.12);
  color: #2E7D32;
  font-size: 12px;
  font-weight: 600;
}
.cc-sg.empty {
  background: #FAFBFC;
  color: #9ca3af;
  font-weight: 500;
  border: 1px dashed #E5E7EB;
}
.cc-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 8px;
  background: #FF7A42;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.cc-save.off {
  background: #E5E7EB;
  color: #9ca3af;
  cursor: not-allowed;
}
@media (max-width: 1100px) {
  .cc-kpis { grid-template-columns: 1fr; }
  .hv-conc-row { grid-template-columns: 1fr auto; }
  .hv-conc-row i { grid-column: 1 / -1; text-align: left; }
}

/* ============================================================ */
/* Armazenamento — hero + mock pastas por competência           */
/* ============================================================ */
.hv-arm-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.hv-arm-kpis > div {
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  background: rgba(22, 22, 30, 0.75);
}
.hv-arm-kpis span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hv-arm-kpis strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  color: var(--white);
}
.hv-arm-kpis strong.ok { color: #81C784; }
.hv-arm-folders {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.hv-arm-folders > div {
  padding: 12px 8px;
  border: 1px solid var(--line-2);
  background: rgba(22, 22, 30, 0.7);
  text-align: center;
}
.hv-arm-folders > div.on {
  border-color: rgba(255, 122, 66, 0.55);
  background: rgba(255, 122, 66, 0.12);
}
.hv-arm-folders b {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  color: var(--white);
}
.hv-arm-folders i {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.hv-arm-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
}
.hv-arm-foot .liveDot {
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse var(--pulse-duration) ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hv-arm-foot .liveDot { animation: none; }
}

.ar-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.ar-search {
  flex: 1;
  min-width: 180px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid #ECEFF1;
  border-radius: 10px;
  background: #FAFBFC;
  color: #9ca3af;
  font-size: 13px;
  display: flex;
  align-items: center;
}
.ar-folders {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ar-folder {
  padding: 16px 14px 14px;
  border: 1px solid #ECEFF1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(26, 33, 66, 0.04);
}
.ar-folder.on {
  box-shadow: inset 0 0 0 1.5px #FF7A42;
  background: #FFF8F4;
}
.ar-folder-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 122, 66, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.ar-folder-ico svg {
  width: 18px;
  height: 18px;
  stroke: #FF7A42;
  fill: none;
  stroke-width: 1.7;
}
.ar-folder strong {
  display: block;
  font-size: 14px;
  color: #1a2142;
}
.ar-folder span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: #9ca3af;
  letter-spacing: 0.04em;
}
.ar-folder em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: #FF7A42;
}
.ar-head,
.ar-row {
  display: grid;
  grid-template-columns: 110px 1.4fr 110px 90px 72px;
  gap: 8px;
  align-items: center;
  min-width: 640px;
}
.ar-head {
  padding: 6px 8px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  border-bottom: 1px solid #ECEFF1;
}
.ar-row {
  padding: 10px 8px;
  border-bottom: 1px solid #F3F4F6;
  font-size: 13px;
  color: #1a2142;
}
.ar-row strong { font-weight: 600; }
.ar-pay {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(255, 152, 0, 0.16);
  color: #E65100;
  font-size: 11px;
  font-weight: 700;
}
.ar-pay.off {
  background: rgba(26, 33, 66, 0.07);
  color: #6b7280;
}
.ar-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid #FF7A42;
  color: #FF7A42;
  font-size: 12px;
  font-weight: 700;
}
@media (max-width: 1100px) {
  .ar-folders { grid-template-columns: 1fr 1fr; }
  .hv-arm-folders { grid-template-columns: 1fr 1fr; }
}

/* ============================================================ */
/* Catálogo das 9 páginas de serviço (FAQ, Contato, Planos)     */
/* ============================================================ */
.catalog-svc-section {
  padding: 72px 0 40px;
  border-bottom: 1px solid var(--line);
}
.catalog-svc-head { margin-bottom: 28px; max-width: 720px; }
.catalog-svc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  margin: 8px 0 12px;
}
.catalog-svc-title .orange { color: var(--orange); }
.catalog-svc-lede {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
.catalog-svc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.catalog-svc-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 148px;
  padding: 18px 16px 16px;
  border: 1px solid var(--line-2);
  background: rgba(20, 20, 24, 0.45);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.catalog-svc-card:hover {
  border-color: rgba(242, 101, 34, 0.55);
  background: rgba(242, 101, 34, 0.06);
}
.catalog-svc-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--orange);
}
.catalog-svc-card strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}
.catalog-svc-card span:last-child {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--muted);
}
@media (max-width: 1100px) {
  .catalog-svc { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .catalog-svc { grid-template-columns: 1fr; }
}

/* ============================================================ */
/* Páginas Admin (hub + 7 pilares)                              */
/* ============================================================ */
.hv-adm {
  padding: 16px;
  border: 1px solid var(--line-2);
  background: linear-gradient(165deg, rgba(28,28,34,0.95), rgba(14,14,18,0.98));
}
.hv-adm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.hv-adm-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  font-size: 14px;
}
.hv-adm-pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(242,101,34,0.4);
  padding: 3px 8px;
}
.hv-adm-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.hv-adm-kpis > div {
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(8,8,10,0.4);
}
.hv-adm-kpis span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.hv-adm-kpis strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}
.hv-adm-kpis strong.warn { color: var(--orange); }
.hv-adm-kpis strong.ok { color: #81C784; }
.hv-adm-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.hv-adm-row strong { color: var(--white); font-weight: 700; }
.hv-adm-row i { font-style: normal; font-size: 11px; color: var(--muted-2); }
.hv-adm-foot {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted-2);
}
.hv-adm-foot .liveDot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(242,101,34,0.2);
}
.adm-mock-tabs {
  display: flex;
  gap: 0;
  margin: 12px 0 16px;
  border-bottom: 1px solid var(--line);
}
.adm-mock-tabs span {
  padding: 8px 14px;
  font-size: 12px;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.adm-mock-tabs span.on {
  color: var(--white);
  border-bottom-color: var(--orange);
}
.adm-mock-lock {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-left: 6px;
}
.adm-rank-row,
.adm-doc-row {
  display: grid;
  gap: 8px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted);
}
.adm-rank-row { grid-template-columns: 28px 1fr auto auto; }
.adm-doc-row { grid-template-columns: 1fr auto auto auto; }
.adm-rank-row strong,
.adm-doc-row strong { color: var(--white); }
.adm-chip {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border: 1px solid var(--line-2);
}
.adm-chip--ok { color: #81C784; border-color: rgba(129,199,132,0.35); }
.adm-chip--warn { color: var(--orange); border-color: rgba(242,101,34,0.4); }
.adm-chip--off { color: var(--muted-2); }
.adm-hub-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.adm-hub-note {
  padding: 20px 18px;
  border: 1px solid var(--line-2);
  background: rgba(20,20,24,0.45);
}
.adm-hub-note h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 8px;
}
.adm-hub-note p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 1100px) {
  .adm-hub-notes { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================ */
/* Admin Home — mock do dashboard real                          */
/* ============================================================ */
.hv-adm--home { padding: 0; overflow: hidden; }
.hv-ah-banner {
  padding: 16px 16px 14px;
  background: linear-gradient(135deg, #F26522 0%, #E85A1A 70%, #FF8A4A 140%);
  color: #fff;
}
.hv-ah-banner > span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
}
.hv-ah-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.hv-ah-stats strong {
  display: block;
  font-family: Inter, Barlow, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}
.hv-ah-stats i {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hv-ah-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 10px 12px 4px;
}
.hv-ah-kpis span {
  font-size: 11px;
  color: var(--muted);
  padding: 6px 8px;
  border: 1px solid var(--line);
  background: rgba(8,8,10,0.35);
}
.hv-adm--home .hv-adm-foot { padding: 0 12px 12px; }

.ah-home-frame.fin-analise-frame .app {
  min-height: 980px;
  max-height: 1100px;
}
.ah-home-frame.fin-analise-frame .content.fin-analise {
  max-height: calc(1100px - 56px);
  gap: 12px;
}
.ah-dash { font-family: Inter, Barlow, sans-serif; color: #1a2142; }
.ah-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.ah-head h3 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
  color: #1a2142;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ah-head h3 svg { width: 22px; height: 22px; stroke: #F26522; stroke-width: 1.8; }
.ah-head p { margin: 0; font-size: 12.5px; color: #6b7280; }
.ah-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.ah-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: #fff;
  border: 1px solid #ECEFF1;
  color: #4b5563;
}
.ah-chip--ok { background: #E8F5E9; border-color: #C8E6C9; color: #2E7D32; }
.ah-chip--user { background: #E8F1FF; border-color: #BFDBFE; color: #1D4ED8; }
.ah-chip--date { background: #FFF1E8; border-color: #F8C9A8; color: #C2410C; }
.ah-chip--ok i {
  width: 7px; height: 7px; border-radius: 50%; background: #43A047;
}
.ah-filters {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr auto;
  gap: 12px;
  align-items: end;
  background: #fff;
  border: 1px solid #ECEFF1;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 1px 2px rgba(26,33,66,0.04);
}
.ah-filters label { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.ah-filters span { font-size: 11px; color: #6b7280; font-weight: 600; }
.ah-filters b {
  display: block;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #F9FAFB;
  color: #1a2142;
}
.ah-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 8px;
  background: #F26522;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  height: 36px;
}
.ah-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.ah-tabs span {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  background: #fff;
  border: 1px solid #ECEFF1;
}
.ah-tabs span.on { background: #F26522; border-color: #F26522; color: #fff; }
.ah-banner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 20px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #F26522 0%, #E85A1A 55%, #FF7A42 130%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ah-banner::after {
  content: '';
  position: absolute;
  right: -40px; top: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.ah-banner h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.ah-banner p {
  margin: 0;
  font-size: 12.5px;
  opacity: 0.92;
  max-width: 420px;
  position: relative;
  z-index: 1;
}
.ah-banner-stats {
  display: flex;
  gap: 22px;
  position: relative;
  z-index: 1;
}
.ah-banner-stats strong { display: block; font-size: 26px; font-weight: 800; line-height: 1.1; }
.ah-banner-stats span { font-size: 11px; opacity: 0.9; }
.ah-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.ah-kpi {
  background: #fff;
  border: 1px solid #ECEFF1;
  border-left-width: 4px;
  border-radius: 10px;
  padding: 12px 12px 10px;
  box-shadow: 0 1px 2px rgba(26,33,66,0.04);
}
.ah-kpi--info { border-left-color: #3B82F6; }
.ah-kpi--warn { border-left-color: #F26522; }
.ah-kpi--ok { border-left-color: #22A06B; }
.ah-kpi--off { border-left-color: #E53935; }
.ah-kpi--date { border-left-color: #F59E0B; }
.ah-kpi-ic {
  display: block;
  width: 28px; height: 28px;
  border-radius: 50%;
  margin-bottom: 8px;
  background: #EEF2FF;
}
.ah-kpi--warn .ah-kpi-ic { background: rgba(242,101,34,0.15); }
.ah-kpi--ok .ah-kpi-ic { background: #E8F5E9; }
.ah-kpi--off .ah-kpi-ic { background: #FFEBEE; }
.ah-kpi--date .ah-kpi-ic { background: #FEF3C7; }
.ah-kpi-top { display: flex; justify-content: space-between; align-items: flex-start; }
.ah-kpi strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #1a2142;
  line-height: 1.1;
}
.ah-kpi span { font-size: 11px; color: #6b7280; }
.ah-charts {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 10px;
}
.ah-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ah-card {
  background: #fff;
  border: 1px solid #ECEFF1;
  border-radius: 12px;
  padding: 12px 14px 12px;
  box-shadow: 0 1px 2px rgba(26,33,66,0.04);
}
.ah-card h5,
.ah-card-h h5 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: #1a2142;
}
.ah-card-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.ah-card-h h5 { margin: 0; }
.ah-mini-arrow {
  width: 24px; height: 24px;
  border-radius: 6px;
  border: 1px solid #F26522;
  color: #F26522;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.ah-line { width: 100%; height: 110px; display: block; }
.ah-axis {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #9CA3AF;
  margin-top: 4px;
}
.ah-donut-wrap { display: flex; justify-content: center; padding: 4px 0 8px; }
.ah-donut { width: 92px; height: 92px; transform: rotate(-90deg); }
.ah-legend { display: flex; gap: 14px; justify-content: center; font-size: 11px; color: #4b5563; }
.ah-legend i {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}
.ah-legend .per { background: #5B8DEF; }
.ah-legend .perm { background: #374151; }
.ah-task, .ah-pend {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 12px;
}
.ah-task + .ah-task,
.ah-pend + .ah-pend { border-top: 1px solid #F3F4F6; }
.ah-task strong, .ah-pend { color: #1a2142; }
.ah-task small { display: block; color: #9CA3AF; font-size: 10.5px; }
.ah-pend b { color: #F26522; margin-right: 6px; }
.ah-st {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}
.ah-st--run { background: #E8F1FF; color: #2563EB; }
.ah-st--todo { background: #F3F4F6; color: #6B7280; }
.ah-st--done { background: #E8F5E9; color: #2E7D32; }
.ah-st--pend { background: #FEF3C7; color: #B45309; }
.ah-st--auto { background: #F3E8FF; color: #7C3AED; }
.ah-updated { margin: 8px 0 0; font-size: 11px; color: #9CA3AF; }
.ah-kanban {
  display: block;
  margin-top: 10px;
  text-align: center;
  padding: 7px 10px;
  border: 1px solid #F26522;
  border-radius: 6px;
  color: #F26522;
  font-size: 12px;
  font-weight: 700;
}
.ah-kpi small {
  display: block;
  font-size: 10px;
  color: #9CA3AF;
  margin-top: 2px;
}

/* Envio múltiplo + Painel de Controle */
.ah-home-frame.ae-frame .app,
.ah-home-frame.ao-frame .app {
  min-height: 1180px;
  max-height: 1380px;
}
.ah-home-frame.ae-frame .content.fin-analise,
.ah-home-frame.ao-frame .content.fin-analise {
  max-height: calc(1380px - 56px);
}
.ae-h {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ae-h svg {
  width: 16px;
  height: 16px;
  stroke: #F26522;
  fill: none;
  stroke-width: 1.7;
  flex-shrink: 0;
}
.ae-tabs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border-bottom: 1px solid #ECEFF1;
}
.ae-tabs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.ae-tabs span svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}
.ae-tabs span.on { color: #F26522; border-bottom-color: #F26522; }
.ae-mode { display: flex; gap: 8px; }
.ae-mode span {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #F3F4F6;
  color: #374151;
}
.ae-mode span.on { background: #F26522; color: #fff; }
.ae-field { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; }
.ae-field > span:not(.ae-search) { font-size: 11px; color: #6b7280; font-weight: 600; }
.ae-field b {
  display: block;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #F9FAFB;
  color: #1a2142;
}
.ae-search {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.ae-search b {
  flex: 1;
  border: 0;
  border-radius: 0;
  background: #fff;
  padding: 8px 10px;
}
.ae-search-ic,
.ae-check {
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F26522;
  flex-shrink: 0;
}
.ae-search-ic svg,
.ae-check svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2;
}
.ae-date {
  display: block;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 8px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #F9FAFB;
  color: #6b7280;
}
.ae-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 12px;
  color: #4b5563;
}
.ae-checks span.on { color: #1a2142; font-weight: 600; }
.ae-checks span.on::before { content: '☑ '; color: #2563EB; }
.ae-checks span:not(.on)::before { content: '☐ '; }
.ae-filters {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.ae-filters label,
.ao-filters-row label { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.ae-filters label > span:not(.ae-search),
.ao-filters-row label > span { font-size: 10px; color: #6b7280; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.ae-filters b,
.ao-filters-row b {
  font-size: 12px;
  font-weight: 600;
  padding: 7px 8px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #F9FAFB;
  color: #1a2142;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ao-filters-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto auto;
  gap: 8px;
  align-items: end;
  margin-bottom: 8px;
}
.ao-filters-row--comp { grid-template-columns: minmax(220px, 1.4fr); }
.ao-clear {
  width: 36px;
  height: 36px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
  color: #9CA3AF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}
.ae-sel {
  font-size: 11px;
  font-weight: 700;
  color: #2563EB;
  background: #E8F1FF;
  padding: 3px 8px;
  border-radius: 999px;
}
.ae-actions { display: flex; gap: 10px; font-size: 12px; color: #4b5563; margin: 6px 0 8px; }
.ae-table { font-size: 11.5px; color: #4b5563; overflow-x: auto; }
.ae-th, .ae-tr {
  display: grid;
  grid-template-columns: 18px 88px 1.1fr 1fr 1.3fr 0.9fr 0.9fr;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  min-width: 720px;
}
.ae-th { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #9CA3AF; border-bottom: 1px solid #ECEFF1; }
.ae-tr { border-bottom: 1px solid #F3F4F6; }
.ae-tr strong { color: #1a2142; font-size: 12px; }
.ae-tr .ae-date { padding: 5px 7px; font-size: 11px; }
.ae-box { width: 14px; height: 14px; border: 1px solid #D1D5DB; border-radius: 3px; }
.ae-up {
  border: 1px dashed #D1D5DB;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 10.5px;
  color: #9CA3AF;
  text-align: center;
}
.ae-csv {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #F26522;
  border: 1px solid #F26522;
  border-radius: 6px;
  padding: 5px 10px;
}
.ah-card-h .ae-csv { margin-top: 0; }
.ao-dash .ah-kpi-ic { border-radius: 8px; }
.ao-rank-h, .ao-rank {
  display: grid;
  grid-template-columns: 22px 1.5fr 0.5fr 0.45fr 0.65fr 0.6fr 0.95fr;
  gap: 6px;
  align-items: center;
  font-size: 11.5px;
  padding: 7px 0;
}
.ao-rank-h { font-size: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #9CA3AF; border-bottom: 1px solid #ECEFF1; }
.ao-rank { border-bottom: 1px solid #F3F4F6; color: #4b5563; }
.ao-rank strong { color: #1a2142; display: flex; align-items: center; min-width: 0; }
.ao-av {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #EEF2FF;
  color: #3B82F6;
  font-size: 8px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  flex-shrink: 0;
  font-style: normal;
}
.ao-av--off { background: #F3F4F6; color: #9CA3AF; }
.ao-prog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}
.ao-prog > div {
  padding: 10px;
  border: 1px solid #ECEFF1;
  border-radius: 8px;
  background: #F9FAFB;
}
.ao-prog strong { display: block; font-size: 22px; color: #1a2142; }
.ao-prog span { font-size: 11px; color: #6b7280; }
.ao-prog small { display: block; font-size: 10.5px; color: #9CA3AF; margin-top: 2px; }
.ao-prog i { display: block; font-style: normal; font-size: 10px; color: #DC2626; margin-top: 4px; }
.ao-op-line { margin: 0 0 4px; font-size: 12px; font-weight: 600; color: #1a2142; }
.ao-bar { height: 8px; background: #F3F4F6; border-radius: 999px; overflow: hidden; }
.ao-bar b { display: block; height: 100%; background: #F26522; }
.ao-mini { display: inline-block; margin: 0; padding: 4px 10px; width: auto; }
.ao-act, .ao-task {
  padding: 8px 0;
  border-top: 1px solid #F3F4F6;
  font-size: 12px;
}
.ao-act { display: flex; align-items: flex-start; gap: 8px; }
.ao-act:first-of-type, .ao-task:first-of-type { border-top: 0; }
.ao-act-ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #E8F1FF;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='1.8'%3E%3Cpath d='M7 18a5 5 0 01.4-9.9A6 6 0 0118.5 10 4 4 0 0118 18H7z'/%3E%3Cpath d='M12 10v5M9.5 12.5L12 10l2.5 2.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
.ao-act strong { color: #1a2142; }
.ao-act > div span { display: block; color: #6b7280; font-size: 11.5px; }
.ao-act > div small { color: #9CA3AF; font-size: 10.5px; }
.ao-act em { margin-left: auto; font-style: normal; color: #9CA3AF; font-size: 11px; flex-shrink: 0; }
.ao-task { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ao-task b { color: #F26522; }
.ao-task i { margin-left: 0; }
.ao-task small { margin-left: auto; color: #9CA3AF; font-size: 11px; }
@media (max-width: 900px) {
  .ae-filters, .ao-filters-row, .ae-checks, .ae-th, .ae-tr, .ao-rank-h, .ao-rank { grid-template-columns: 1fr; }
  .ae-th, .ae-tr { min-width: 0; }
}

/* Checklist + Apuração / DAS */
.ah-home-frame.ck-frame .app {
  min-height: 1080px;
  max-height: 1240px;
}
.ah-home-frame.ap-frame .app {
  min-height: 1320px;
  max-height: 1520px;
}
.ah-home-frame.ck-frame .content.fin-analise { max-height: calc(1240px - 56px); }
.ah-home-frame.ap-frame .content.fin-analise { max-height: calc(1520px - 56px); }
.ck-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px 12px;
  border-radius: 8px;
  background: #E8F1FF;
  color: #1D4ED8;
  font-size: 12px;
}
.ck-banner svg { width: 16px; height: 16px; stroke: #2563EB; fill: none; stroke-width: 1.8; }
.ck-banner strong { font-size: 12.5px; }
.ck-banner span { margin-left: auto; color: #3B82F6; font-size: 11px; }
.ck-filters { grid-template-columns: 1fr 1.7fr 1fr; }
.ck-filters .ae-search b {
  border: 0;
  border-radius: 0;
  background: #fff;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  overflow: hidden;
}
.ck-filter-foot { display: flex; justify-content: flex-end; margin-top: 10px; }
.ck-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ck-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}
.ck-badge--low { background: #FEE2E2; color: #B91C1C; }
.ck-table-card { border-top: 3px solid #F26522; }
.ck-table-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.ck-table-bar h5 { margin: 0; margin-right: auto; }
.ck-show { font-size: 11px; color: #6b7280; }
.ck-show b {
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  background: #F9FAFB;
  color: #1a2142;
  font-weight: 600;
}
.ck-search {
  font-size: 11px;
  color: #9CA3AF;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  padding: 5px 10px;
  min-width: 140px;
  background: #F9FAFB;
}
.ck-exp {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  color: #fff;
}
.ck-exp--csv, .ck-exp--xls { background: #16A34A; }
.ck-exp--pdf { background: #DC2626; }
.ck-table { font-size: 12px; color: #4b5563; overflow-x: auto; }
.ck-th, .ck-tr {
  display: grid;
  grid-template-columns: 92px 52px 1.6fr 70px 1.1fr;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  min-width: 620px;
}
.ck-th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9CA3AF;
  border-bottom: 1px solid #ECEFF1;
}
.ck-tr { border-bottom: 1px solid #F3F4F6; }
.ck-tr strong { color: #1a2142; font-size: 12px; }
.ck-tr small { display: block; color: #9CA3AF; font-weight: 500; font-size: 10.5px; }
.ck-acts { display: flex; gap: 4px; }
.ck-acts i {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  display: inline-block;
}
.ck-acts .mail { background: #3B82F6; }
.ck-acts .del, .ck-acts .cut { background: #EF4444; }
.ck-ok {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #22A06B;
  position: relative;
}
.ck-ok::after {
  content: '';
  position: absolute;
  left: 5px; top: 3px;
  width: 5px; height: 8px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}
.ck-sim {
  display: inline-block;
  background: #FEF3C7;
  color: #B45309;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.ap-top {
  display: grid;
  grid-template-columns: 1.5fr 1.3fr auto;
  gap: 12px;
  align-items: end;
}
.ap-top .ae-field { margin-top: 0; }
.ap-note { display: block; margin-top: 4px; font-size: 10.5px; color: #9CA3AF; font-weight: 400; }
.ap-auto { margin-top: 0; align-self: end; }
.ap-anexos {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 12px;
  color: #6b7280;
}
.ap-chip {
  display: inline-block;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  color: #fff;
}
.ap-chip--3 { background: #F26522; }
.ap-chip--5 { background: #4B5563; }
.ap-gauge { height: 120px; margin: 4px 0 8px; }
.ap-gauge .limit-gauge-center strong { font-size: 15px; }
.ap-gauge-foot {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 11.5px;
  color: #6b7280;
}
.ap-gauge-foot b { color: #DC2626; }
.ap-gauge-foot em { font-style: normal; font-weight: 700; color: #1a2142; }
.ap-nf { font-size: 11.5px; color: #4b5563; }
.ap-nf-h, .ap-nf-r {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr 1fr;
  gap: 6px;
  align-items: center;
  padding: 7px 0;
}
.ap-nf-h {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9CA3AF;
  border-bottom: 1px solid #ECEFF1;
}
.ap-nf-r { border-bottom: 1px solid #F3F4F6; }
.ap-nf-tot { font-weight: 700; color: #1a2142; border-bottom: 0; }
.ap-ico { color: #F26522; font-size: 13px; }
.ap-das {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 13px;
}
.ap-das-tot {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 800;
  color: #F26522;
}
.ap-aliq {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 8px 0;
  border-bottom: 1px solid #F3F4F6;
}
.ap-aliq i {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  background: #DCFCE7;
  color: #166534;
}
.ap-aliq i.off { background: #FEF9C3; color: #854D0E; }
.ap-radio {
  display: block;
  padding: 6px 0;
  font-size: 12px;
  color: #4b5563;
}
.ap-radio b { display: block; color: #1a2142; }
.ap-radio span { font-size: 11px; color: #9CA3AF; }
.ap-radio::before { content: '○ '; color: #D1D5DB; }
.ap-radio.on::before { content: '● '; color: #2563EB; }
.ap-folha-val { margin-top: 8px; color: #1a2142; }
.ap-doc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #F3F4F6;
}
.ap-doc > div span { display: block; font-size: 11px; color: #9CA3AF; }
.ap-doc-btns { display: flex; gap: 6px; }
.ap-doc-btns i {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid #F26522;
  display: inline-block;
}
.ap-doc-btns .up { border-color: #3B82F6; }
.ap-gerar { width: 100%; margin-top: 12px; }
.ap-folha { font-size: 12px; color: #4b5563; }
.ap-folha-h, .ap-folha-r {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr 52px;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
}
.ap-folha-h {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9CA3AF;
  border-bottom: 1px solid #ECEFF1;
}
.ap-folha-r { border-bottom: 1px solid #F3F4F6; }
.ap-folha-r strong { color: #1a2142; }
@media (max-width: 900px) {
  .ck-filters, .ck-stats, .ck-th, .ck-tr, .ap-top, .ap-nf-h, .ap-nf-r, .ap-folha-h, .ap-folha-r { grid-template-columns: 1fr; }
  .ck-th, .ck-tr { min-width: 0; }
}

/* Conciliação — filtro por status */
.ah-home-frame.cn-frame .app {
  min-height: 980px;
  max-height: 1160px;
}
.ah-home-frame.cn-frame .content.fin-analise { max-height: calc(1160px - 56px); }
.cn-lote { grid-template-columns: 1fr 1fr auto; align-items: end; }
.cn-status {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.cn-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #F3F4F6;
  color: #4b5563;
  border: 1px solid transparent;
}
.cn-pill strong { font-size: 22px; font-weight: 800; line-height: 1.1; color: inherit; }
.cn-pill i { font-style: normal; font-size: 11px; font-weight: 600; }
.cn-pill.on { background: #F26522; color: #fff; }
.cn-pill--pend { background: #FEF3C7; color: #B45309; }
.cn-pill--ok { background: #DCFCE7; color: #166534; }
.cn-pill--wait { background: #DBEAFE; color: #1D4ED8; }
.cn-pill--ans { background: #F3E8FF; color: #7C3AED; }
.cn-bulk {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 10px;
  font-size: 12px;
  color: #4b5563;
}
.cn-del { color: #DC2626; font-weight: 600; }
.cn-table { font-size: 11.5px; color: #4b5563; overflow-x: auto; }
.cn-th, .cn-tr {
  display: grid;
  grid-template-columns: 56px 78px 44px 48px 88px 1.5fr 1.1fr 90px;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  min-width: 780px;
}
.cn-th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9CA3AF;
  border-bottom: 1px solid #ECEFF1;
}
.cn-tr { border-bottom: 1px solid #F3F4F6; }
.cn-tr strong { color: #1a2142; font-variant-numeric: tabular-nums; }
.ck-acts .edit { background: #3B82F6; }
.cn-sg {
  font-size: 10.5px;
  color: #9CA3AF;
}
@media (max-width: 900px) {
  .cn-lote, .cn-status, .cn-th, .cn-tr { grid-template-columns: 1fr; }
  .cn-th, .cn-tr { min-width: 0; }
}

/* Pessoal · Colaboradores */
.ah-home-frame.dp-frame .app {
  min-height: 980px;
  max-height: 1140px;
}
.ah-home-frame.dp-frame .content.fin-analise { max-height: calc(1140px - 56px); }
.dp-actions { justify-content: flex-end; }
.dp-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  height: 36px;
}
.dp-btn--green { background: #16A34A; }
.dp-btn--teal { background: #0D9488; }
.dp-alert {
  padding: 10px 12px 10px 14px;
  border-radius: 8px;
  background: #E8F1FF;
  border-left: 4px solid #2563EB;
  color: #1D4ED8;
  font-size: 12px;
}
.dp-alert strong { display: block; margin-bottom: 4px; font-size: 12.5px; }
.dp-alert span { color: #3B82F6; }
.dp-filters { grid-template-columns: 1.1fr 1.5fr 1fr 0.7fr; }
.dp-filters .ae-search b {
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #9CA3AF;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
}
.dp-dash .ck-filter-foot { gap: 8px; }
.dp-table { font-size: 11.5px; color: #4b5563; overflow-x: auto; }
.dp-th, .dp-tr {
  display: grid;
  grid-template-columns: 56px 44px 1.1fr 0.9fr 1.3fr 0.8fr 0.8fr 78px;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  min-width: 760px;
}
.dp-th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9CA3AF;
  border-bottom: 1px solid #ECEFF1;
}
.dp-sort::after {
  content: ' ↕';
  font-size: 9px;
  color: #D1D5DB;
  font-weight: 400;
}
.dp-tr { border-bottom: 1px solid #F3F4F6; }
.dp-tr strong { color: #1a2142; }
@media (max-width: 900px) {
  .dp-filters, .dp-th, .dp-tr { grid-template-columns: 1fr; }
  .dp-th, .dp-tr { min-width: 0; }
}
.ah-home-frame.pl-frame.fin-analise-frame .app {
  min-height: 820px;
  max-height: 980px;
}
.ah-home-frame.pl-frame.fin-analise-frame .content.fin-analise {
  max-height: calc(980px - 56px);
}
