:root {
  --night: #050914;
  --navy: #071426;
  --navy-2: #0b1f3d;
  --panel: rgba(9, 22, 42, 0.82);
  --panel-strong: rgba(6, 15, 30, 0.94);
  --silver: #dbe8f5;
  --silver-2: #f4f8fc;
  --muted: #8fa9bf;
  --line: rgba(83, 176, 255, 0.22);
  --line-strong: rgba(48, 213, 255, 0.48);
  --cyan: #31dcff;
  --aqua: #16f1d0;
  --blue: #0878ff;
  --blue-deep: #053cce;
  --amber: #ffb238;
  --red: #ff4c64;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --glow: 0 0 32px rgba(49, 220, 255, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #eef7ff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(49, 220, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 220, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #050914 0%, #071426 46%, #050914 100%);
  background-size: 48px 48px, 48px 48px, auto;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  color: #ffffff;
  background: rgba(4, 9, 20, 0.84);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: 1px solid rgba(49, 220, 255, 0.42);
  box-shadow: 0 0 24px rgba(8, 120, 255, 0.34);
}

.brand-name {
  display: inline-block;
  color: #f7fbff;
  text-shadow: 0 0 16px rgba(49, 220, 255, 0.2);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 720;
}

.main-nav a {
  color: rgba(238, 247, 255, 0.82);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(49, 220, 255, 0.32);
}

.nav-cta {
  padding: 10px 15px;
  color: #031225 !important;
  background: linear-gradient(180deg, #ffffff 0%, #d8e9fb 100%);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(8, 120, 255, 0.18);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  padding: 130px clamp(20px, 6vw, 80px) 86px;
  color: #ffffff;
  background:
    linear-gradient(150deg, #030711 0%, #07152a 45%, #041020 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 7, 17, 0.96) 0%, rgba(3, 9, 21, 0.82) 34%, rgba(5, 20, 38, 0.2) 78%, rgba(5, 20, 38, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(0deg, rgba(49, 220, 255, 0.13) 0, rgba(49, 220, 255, 0) 28%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(49, 220, 255, 0.85) 34%, rgba(8, 120, 255, 0.5) 62%, transparent 100%);
  box-shadow: 0 0 28px rgba(49, 220, 255, 0.58);
}

.hero-dashboard {
  position: absolute;
  top: 78px;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: min(100%, 1540px);
  height: calc(100% - 78px);
  object-fit: contain;
  object-position: right bottom;
  filter: saturate(1.08) contrast(1.02);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hero-logo {
  display: block;
  width: 136px;
  height: auto;
  margin-bottom: 22px;
  border-radius: 8px;
  border: 1px solid rgba(49, 220, 255, 0.42);
  background: #050914;
  box-shadow: 0 0 38px rgba(8, 120, 255, 0.38), 0 24px 54px rgba(0, 0, 0, 0.4);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #67f3ff;
  text-shadow: 0 0 18px rgba(49, 220, 255, 0.4);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: 6.6rem;
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 0 34px rgba(49, 220, 255, 0.24), 0 16px 38px rgba(0, 0, 0, 0.42);
}

h2 {
  margin: 0;
  font-size: 3.4rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 790;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}

.hero-subcopy {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(226, 241, 255, 0.84);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-align: center;
}

.button-primary {
  color: #031225;
  background: linear-gradient(180deg, #67f3ff 0%, #16f1d0 48%, #0a90ff 100%);
  box-shadow: 0 0 26px rgba(49, 220, 255, 0.34), 0 16px 34px rgba(8, 120, 255, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  filter: brightness(1.08);
}

.button-secondary {
  color: #eaf6ff;
  border-color: rgba(49, 220, 255, 0.48);
  background: rgba(8, 120, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(103, 243, 255, 0.9);
  background: rgba(49, 220, 255, 0.14);
}

.signal-band {
  padding: 0 clamp(20px, 6vw, 80px);
  background: linear-gradient(180deg, rgba(5, 9, 20, 0.98) 0%, rgba(7, 20, 38, 0.98) 100%);
  border-bottom: 1px solid var(--line);
}

.signal-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12, 31, 61, 0.74) 0%, rgba(5, 13, 27, 0.78) 100%);
}

.signal-grid div {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.signal-grid div:last-child {
  border-right: 0;
}

.signal-grid strong,
.signal-grid span {
  display: block;
}

.signal-grid strong {
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 1rem;
}

.signal-grid span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 96px clamp(20px, 6vw, 80px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-light {
  color: #eef7ff;
  background:
    linear-gradient(rgba(49, 220, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 220, 255, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, #071426 0%, #081b35 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.section-muted {
  color: #eef7ff;
  background:
    linear-gradient(180deg, rgba(49, 220, 255, 0.06) 0%, rgba(49, 220, 255, 0) 42%),
    linear-gradient(135deg, #061124 0%, #0b2d62 48%, #071426 100%);
  border-top: 1px solid rgba(49, 220, 255, 0.16);
  border-bottom: 1px solid rgba(49, 220, 255, 0.16);
}

.section-dark {
  color: #ffffff;
  background:
    linear-gradient(135deg, #030711 0%, #08234a 52%, #050914 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: #a7bdd1;
  font-size: 1.05rem;
}

.section-muted .section-heading p:not(.eyebrow) {
  color: rgba(226, 241, 255, 0.74);
}

.section-dark .eyebrow {
  color: #67f3ff;
}

.section-dark p:not(.eyebrow) {
  color: rgba(226, 241, 255, 0.76);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.module-card,
.metric-card {
  min-width: 0;
  padding: 24px;
  border-radius: 8px;
}

.module-card {
  position: relative;
  overflow: hidden;
  color: #eef7ff;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14, 37, 73, 0.86) 0%, rgba(5, 14, 29, 0.92) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 52px rgba(0, 0, 0, 0.22);
}

.module-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--aqua));
}

.module-card p,
.metric-card p {
  margin: 12px 0 0;
  color: #9db4c9;
  font-size: 0.94rem;
}

.metric-card p {
  color: rgba(226, 241, 255, 0.74);
}

.module-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(103, 243, 255, 0.18), rgba(8, 120, 255, 0.12));
  border: 1px solid rgba(49, 220, 255, 0.34);
  box-shadow: 0 0 18px rgba(49, 220, 255, 0.18);
  position: relative;
}

.module-icon::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid var(--cyan);
  border-radius: 4px;
}

.icon-gestao::after {
  border-color: var(--blue);
  border-radius: 50%;
}

.icon-inteligencia::after {
  border-color: var(--aqua);
  transform: rotate(45deg);
}

.icon-admin::after {
  border-color: var(--silver);
  border-radius: 50% 50% 4px 4px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: 56px;
  align-items: start;
}

.metrics-layout {
  grid-template-columns: minmax(320px, 0.82fr) minmax(620px, 1.18fr);
  align-items: center;
}

.compact {
  margin-bottom: 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.metric-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(49, 220, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%),
    linear-gradient(180deg, rgba(10, 36, 78, 0.92) 0%, rgba(4, 12, 26, 0.96) 100%);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.metric-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--aqua));
  box-shadow: 0 0 24px rgba(49, 220, 255, 0.48);
}

.metric-card span {
  color: #67f3ff;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.metric-card strong {
  margin-top: 18px;
  color: #ffffff;
  font-size: 3.15rem;
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 0 26px rgba(49, 220, 255, 0.24);
}

.metric-card p {
  margin-top: auto;
}

.rule-list,
.roadmap-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rule-list span,
.roadmap-list span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 9px 13px;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 760;
}

.rule-list span {
  color: #dcefff;
  background: rgba(8, 120, 255, 0.11);
  border: 1px solid rgba(49, 220, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.roadmap {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1.2fr);
  gap: 54px;
  align-items: center;
}

.roadmap-list span {
  color: #eef7ff;
  background: rgba(49, 220, 255, 0.09);
  border: 1px solid rgba(49, 220, 255, 0.28);
}

.contact-section {
  padding: 108px clamp(20px, 6vw, 80px);
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(49, 220, 255, 0.08) 0%, rgba(49, 220, 255, 0) 36%),
    linear-gradient(135deg, #061124 0%, #0b2d62 50%, #050914 100%);
  border-top: 1px solid var(--line);
}

.contact-inner {
  width: min(940px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-logo {
  display: block;
  width: 128px;
  height: auto;
  margin: 0 auto 22px;
  border-radius: 8px;
  border: 1px solid rgba(49, 220, 255, 0.42);
  box-shadow: 0 0 42px rgba(8, 120, 255, 0.34), 0 28px 58px rgba(0, 0, 0, 0.28);
}

.contact-inner h2 {
  margin-inline: auto;
  max-width: 880px;
}

.contact-inner p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px auto 28px;
  color: rgba(226, 241, 255, 0.78);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(20px, 6vw, 80px);
  color: rgba(226, 241, 255, 0.68);
  background: #030711;
  border-top: 1px solid rgba(49, 220, 255, 0.14);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .main-nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-dashboard {
    top: 70px;
    width: 100%;
    height: calc(100% - 70px);
    object-position: right bottom;
  }

  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .hero-copy {
    font-size: 1.42rem;
  }

  .module-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .metrics-layout {
    grid-template-columns: 1fr;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .signal-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-grid div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-name {
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .nav-cta {
    padding: 9px 11px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 88svh;
    padding: 106px 18px 64px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(3, 7, 17, 0.94) 0%, rgba(3, 9, 21, 0.76) 58%, rgba(5, 20, 38, 0.24) 100%),
      linear-gradient(0deg, rgba(49, 220, 255, 0.12) 0, rgba(49, 220, 255, 0) 30%);
  }

  .hero-dashboard {
    top: 64px;
    height: calc(100% - 64px);
    object-position: center bottom;
    opacity: 0.64;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-copy {
    font-size: 1.24rem;
  }

  .hero-subcopy {
    font-size: 1rem;
  }

  .hero-logo {
    width: 106px;
    margin-bottom: 18px;
  }

  .contact-logo {
    width: 104px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .module-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .metric-card strong {
    font-size: 2.72rem;
  }

  .section,
  .contact-section {
    padding: 64px 18px;
  }

  .signal-band {
    padding-inline: 18px;
  }
}
