: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-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: var(--d-bg);
  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: 220px 1fr;
  min-height: 720px;
}

/* Sidebar */
.sidebar {
  border-right: 1px solid var(--d-border);
  padding: 18px 14px;
  background: #fffaf3;
}
.sidebar .brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 22px;
  border-bottom: 1px solid var(--d-border);
  margin-bottom: 14px;
}
.sidebar .brand .h {
  width: 22px; height: 24px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.sidebar .brand .name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--d-text);
  text-transform: none;
  letter-spacing: 0.02em;
}

.menu { display: flex; flex-direction: column; gap: 2px; }
.menu .m {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #4a4a50;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.menu .m .l { display: flex; align-items: center; gap: 12px; }
.menu .m svg { width: 18px; height: 18px; stroke: #6a6a70; fill: none; stroke-width: 1.6; }
.menu .m .chev { color: #c0bdb6; font-size: 12px; }
.menu .m:hover { background: #fdf3e9; color: var(--orange); }
.menu .m:hover svg { stroke: var(--orange); }
.menu .m.active {
  background: #fde4d2;
  color: var(--orange);
  font-weight: 700;
}
.menu .m.active svg { stroke: var(--orange); }
.menu .m.notas { background: #ffe9d8; color: var(--orange); font-weight: 700; }
.menu .m.notas svg { stroke: var(--orange); }

/* Topbar */
.topbar {
  background: var(--d-bg);
  border-bottom: 1px solid var(--d-border);
  padding: 14px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar .left { display: flex; align-items: center; gap: 14px; }
.hamburger {
  display: flex; flex-direction: column; gap: 4px; cursor: pointer;
}
.hamburger span { width: 18px; height: 2px; background: #4a4a50; }
.topbar .crumb {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--d-text);
  font-weight: 600;
}
.topbar .right { display: flex; align-items: center; gap: 14px; }
.topbar .help {
  width: 28px; height: 28px;
  border: 1px solid var(--d-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--d-muted);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.company {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 14px 4px 4px;
  border-radius: 999px;
}
.company .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.company .info { display: flex; flex-direction: column; line-height: 1.2; }
.company .info .nm { font-family: 'Barlow', sans-serif; font-size: 13px; color: var(--d-text); font-weight: 700; }
.company .info .cn { font-family: '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: 26px;
  background: var(--d-bg);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.page-title-card {
  background: #fffaf3;
  border: 1px solid var(--d-border);
  border-radius: 12px;
  padding: 22px 26px;
}
.page-title-card h3 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--d-text);
  margin-bottom: 4px;
}
.page-title-card p {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--d-muted);
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.kpi {
  background: var(--d-card);
  border: 1px solid var(--d-border);
  border-radius: 12px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kpi .top { display: flex; align-items: center; gap: 12px; }
.kpi .ic {
  width: 40px; height: 40px;
  background: var(--d-orange-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kpi .ic svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 1.7; }
.kpi .lab {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: var(--d-muted);
  font-weight: 500;
}
.kpi .val {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--d-text);
  line-height: 1;
  margin-top: 4px;
}
.kpi .val .cur { font-size: 14px; color: var(--d-muted); margin-right: 4px; font-weight: 600; }
.kpi .delta {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.kpi .delta.up { color: var(--d-green); }
.kpi .delta.down { color: var(--d-red); }
.kpi .badge-h {
  background: var(--d-green-bg);
  color: var(--d-green);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  align-self: flex-start;
}

/* 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; }
  .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-services-trigger { user-select: none; }
.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;
  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--cols-2 { grid-template-columns: repeat(2, 1fr); }
.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-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 > 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-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: 900px) {
  .svc-notas-flow-grid { 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-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-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-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 {
  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 input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }
.field input:focus,
.field textarea: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(4, 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 { 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;
}
