:root {
  color-scheme: dark;
  --bg: #081120;
  --surface: #0f172a;
  --surface-2: #111827;
  --primary: #2563eb;
  --info: #38bdf8;
  --text: #e5e7eb;
  --white: #ffffff;
  --muted: #94a3b8;
  --soft: #9ca3af;
  --border: rgba(56, 189, 248, 0.12);
  --border-strong: rgba(56, 189, 248, 0.24);
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --header-height: 58px;
  --radius: 8px;
  --radius-sm: 8px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  --section-space: clamp(64px, 7.5vw, 108px);
  --content-gap: 14px;
  --control-height: 44px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background-color: #0a0e17;
  background-image:
    radial-gradient(circle 600px at -100px -200px, rgba(37,99,235,0.20) 0%, transparent 70%),
    radial-gradient(circle 400px at calc(100% + 100px) 100%, rgba(6,182,212,0.13) 0%, transparent 70%),
    radial-gradient(circle 300px at 85% 50%, rgba(37,99,235,0.11) 0%, transparent 70%),
    linear-gradient(rgba(37,99,235,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.07) 1px, transparent 1px),
    radial-gradient(ellipse 80% 60% at 50% -10%, #0d2a5e 0%, #0a0e17 70%);
  background-size:
    auto,
    auto,
    auto,
    64px 64px,
    64px 64px,
    auto;
  background-position:
    center,
    center,
    center,
    center,
    center,
    center;
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
  text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

button {
  border: 0;
  color: inherit;
  font: inherit;
  background: none;
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.66);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 48px), 1120px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  background: rgba(8, 17, 32, 0.9);
  backdrop-filter: blur(16px);
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(56, 189, 248, 0.2);
  background: rgba(8, 17, 32, 0.96);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0;
  transition: color 160ms ease, opacity 160ms ease;
}

.brand-symbol {
  width: 24px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 160ms ease;
}

.brand:hover,
.brand.is-active {
  color: var(--info);
}

.brand:hover .brand-symbol,
.brand.is-active .brand-symbol {
  filter: brightness(0) saturate(100%) invert(78%) sepia(86%) saturate(1397%) hue-rotate(158deg) brightness(104%) contrast(104%) drop-shadow(0 0 1px rgba(2, 6, 23, 0.92)) drop-shadow(0 0 6px rgba(56, 189, 248, 0.34));
}

.brand.is-active {
  text-shadow: 0 1px 2px rgba(2, 6, 23, 0.88), 0 0 12px rgba(56, 189, 248, 0.16);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 30px);
}

.nav a,
.header-link {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav a {
  position: relative;
  opacity: 0.88;
  transition: opacity 160ms ease, color 160ms ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--info);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--info);
  opacity: 1;
}

.nav a:hover::after,
.nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-link:hover {
  border-color: rgba(56, 189, 248, 0.52);
  background: rgba(37, 99, 235, 0.2);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease;
}

.menu-button.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  height: calc(100dvh - var(--header-height));
  min-height: 0;
  overflow: clip;
  border-bottom: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(470px, 0.92fr) minmax(0, 1.35fr);
  gap: clamp(14px, 1.8vw, 26px);
  align-items: center;
  height: 100%;
  padding: clamp(12px, 2.4vh, 23px) 0;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--info);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 590px;
  margin-bottom: 11px;
  color: var(--white);
  font-size: clamp(2.12rem, 2.45vw, 2.34rem);
  line-height: 1.06;
  font-weight: 850;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy > p {
  max-width: 570px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(0.96rem, 1.15vw, 1.02rem);
  line-height: 1.48;
}

.hero-copy {
  min-width: 0;
}

@media (min-width: 1101px) {
  .hero h1 {
    width: 465px;
    max-width: none;
  }

  .hero-copy > p {
    width: 480px;
    max-width: none;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}

.hero-actions .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.button {
  min-height: var(--control-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  font-size: 0.92rem;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button svg,
.header-link svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.4;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  border: 1px solid rgba(56, 189, 248, 0.3);
  background: linear-gradient(135deg, var(--primary), #0ea5e9);
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.18);
}

.button-primary:hover {
  box-shadow: 0 16px 30px rgba(14, 165, 233, 0.28);
}

.button-text {
  color: var(--white);
  padding-right: 4px;
}

.button-text:hover {
  color: var(--info);
}

.audience-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
}

.audience-row span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(56, 189, 248, 0.26);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: rgba(15, 23, 42, 0.72);
  font-size: 0.68rem;
  font-weight: 900;
}

.audience-row p {
  margin: 0 0 0 8px;
  font-size: 0.94rem;
}

.hero-product {
  position: relative;
  width: min(calc(100% + 44px), 740px);
  max-width: none;
  margin-right: -34px;
  justify-self: end;
  will-change: transform;
}

.product-notebook {
  position: relative;
  width: 100%;
  aspect-ratio: 990 / 560;
  perspective: 1500px;
  transform: translateY(-4px);
}

.product-notebook::after {
  width: 86%;
  height: 18px;
  position: absolute;
  z-index: -1;
  bottom: -13px;
  left: 7%;
  border-radius: 50%;
  content: "";
  background: rgba(0, 0, 0, 0.34);
  filter: blur(13px);
}

.notebook-screen {
  z-index: 3;
  width: 70.87%;
  height: 71.13%;
  position: absolute;
  top: 6.64%;
  left: 14.24%;
  overflow: hidden;
  background: #050a12;
}

.notebook-screen::before {
  display: none;
}

.notebook-screen::after {
  display: none;
}

.notebook-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.notebook-chassis {
  width: 100%;
  height: 100%;
  min-width: 0;
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  filter: brightness(0.3) contrast(1.06) saturate(0.62);
  pointer-events: none;
}

.section {
  position: relative;
  isolation: isolate;
  min-height: auto;
  display: block;
  padding: var(--section-space) 0;
  background: transparent;
  overflow: visible;
}

.section > .shell {
  position: relative;
  z-index: 1;
}

.section-title h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2.16rem, 4.2vw, 4.42rem);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
}

.section-title-wide {
  max-width: 980px;
  margin-bottom: 22px;
}

.module-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
}

.feature-label svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--content-gap);
}

.module-grid article {
  min-height: 106px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 23, 42, 0.58);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.module-grid article > svg {
  width: 20px;
  height: 20px;
  margin-bottom: 14px;
  color: var(--info);
  stroke-width: 2.1;
}

.module-grid article:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background: rgba(17, 33, 58, 0.78);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.module-grid span {
  display: block;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 850;
}

.footer {
  background: transparent;
}

.footer-inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-inner span:first-child {
  color: var(--white);
  font-weight: 900;
}

.product-showcase {
  padding-top: clamp(72px, 8vw, 116px);
  padding-bottom: clamp(78px, 9vw, 132px);
}

.showcase-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.showcase-heading h2 {
  max-width: 680px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2.16rem, 4.2vw, 4.42rem);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
}

.showcase-heading p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.showcase-tabs {
  display: flex;
  width: max-content;
  max-width: 100%;
  gap: 4px;
  margin-bottom: 30px;
  padding: 4px;
  overflow-x: auto;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.45);
  scrollbar-width: thin;
}

.showcase-tab {
  min-height: 42px;
  flex: 0 0 auto;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #aebfd8;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.showcase-tab:hover {
  color: var(--white);
  background: rgba(56, 189, 248, 0.08);
}

.showcase-tab[aria-selected="true"] {
  border-color: rgba(56, 189, 248, 0.32);
  color: var(--white);
  background: rgba(37, 99, 235, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.showcase-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1.34fr);
  align-items: center;
  gap: clamp(22px, 3.2vw, 48px);
  min-height: 490px;
  padding: clamp(20px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 22px;
  background:
    radial-gradient(circle 360px at 82% 4%, rgba(37, 99, 235, 0.13), transparent 72%),
    rgba(8, 17, 32, 0.58);
}

.showcase-copy {
  min-width: 0;
  padding: 14px 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.showcase-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--info);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-copy h3 {
  max-width: 430px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.05vw, 2.18rem);
  line-height: 1.12;
  font-weight: 850;
}

.showcase-copy > p {
  max-width: 360px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.showcase-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.showcase-points li {
  padding: 7px 9px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 7px;
  color: #c7d7ec;
  background: rgba(15, 23, 42, 0.62);
  font-size: 0.71rem;
  font-weight: 800;
}

.showcase-media {
  position: relative;
  min-width: 0;
  padding: 16px 0 32px;
}

.showcase-notebook {
  width: min(100%, 760px);
  position: relative;
  z-index: 1;
  margin: 0 auto;
  aspect-ratio: 990 / 560;
}

.showcase-notebook::after {
  width: 86%;
  height: 18px;
  position: absolute;
  z-index: -1;
  bottom: -12px;
  left: 7%;
  border-radius: 50%;
  content: "";
  background: rgba(0, 0, 0, 0.34);
  filter: blur(13px);
}

.showcase-notebook-screen {
  width: 70.87%;
  height: 71.13%;
  position: absolute;
  z-index: 3;
  top: 6.64%;
  left: 14.24%;
  overflow: hidden;
  background: #050a12;
}

.showcase-notebook-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: opacity 180ms ease, transform 180ms ease;
}

.showcase-stage[data-showcase-feature="ativos"] .showcase-notebook-screen img,
.showcase-stage[data-showcase-feature="relatorios"] .showcase-notebook-screen img {
  transform: scale(1.0844);
  transform-origin: center bottom;
}

.showcase-stage.is-changing .showcase-notebook-screen img,
.showcase-stage.is-changing .showcase-copy {
  opacity: 0.18;
  transform: translateY(4px);
}

.showcase-notebook-chassis {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  filter: brightness(0.3) contrast(1.06) saturate(0.62);
  pointer-events: none;
}

.showcase-detail {
  width: min(42%, 286px);
  position: absolute;
  z-index: 4;
  right: -10px;
  bottom: -3px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 13px;
  background: #0d1728;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.showcase-detail img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.7 / 1;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.showcase-detail figcaption {
  display: grid;
  gap: 3px;
  padding: 9px 10px 10px;
}

.showcase-detail strong {
  color: #dce9fa;
  font-size: 0.73rem;
  font-weight: 850;
}

.showcase-detail span {
  color: #90a4c3;
  font-size: 0.66rem;
  line-height: 1.35;
}

.presentation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(34px, 5.7vw, 74px);
  align-items: start;
}

.presentation-copy h2 {
  max-width: 720px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2.06rem, 4vw, 4.2rem);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
}

.presentation-copy p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.presentation-form {
  padding: clamp(20px, 3.2vw, 31px);
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.7);
  box-shadow: var(--shadow);
}

.presentation-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.presentation-field {
  display: grid;
  gap: 8px;
}

.presentation-form label {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.presentation-form input {
  width: 100%;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  outline: 0;
  color: var(--text);
  background: transparent;
  font: inherit;
  transition: border-color 160ms ease;
}

.presentation-form input:focus {
  border-color: var(--info);
}

.presentation-form input:user-invalid {
  border-color: var(--danger);
}

.presentation-field:focus-within label {
  color: var(--info);
}

.presentation-form .button {
  width: 100%;
}

.form-status {
  min-height: 1.2em;
  margin: 14px 0 0;
  color: #86efac;
  font-size: 0.82rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--info);
  color: var(--white);
  font-size: 1rem;
  font-weight: 850;
}

.contact-link svg {
  width: 18px;
  height: 18px;
  color: var(--info);
}

.about-section {
  min-height: auto;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(32px, 6.5vw, 92px);
  align-items: start;
}

.about-copy > p {
  max-width: 650px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 1rem;
}

.about-points {
  display: grid;
  gap: 1px;
  margin-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.about-points article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.about-points svg {
  width: 19px;
  height: 19px;
  color: var(--info);
}

.about-points span {
  color: var(--muted);
  font-size: 0.9rem;
}

.about-points strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 0.95rem;
}

.solution-section {
  min-height: auto;
  padding-top: clamp(54px, 5.8vw, 80px);
  padding-bottom: var(--section-space);
  background: transparent;
}

.solution-section .section-title-wide {
  max-width: 800px;
  margin-bottom: clamp(22px, 3.2vw, 34px);
}

.solution-section .section-title h2 {
  max-width: 800px;
  font-size: clamp(2.02rem, 3.4vw, 3.35rem);
  line-height: 1.06;
}

.solution-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--content-gap);
}

.solution-block {
  padding: clamp(17px, 2.45vw, 26px);
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.5);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.solution-block-answer {
  border-color: rgba(56, 189, 248, 0.28);
  background: rgba(14, 36, 74, 0.32);
}

.solution-block:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.34);
  background: rgba(15, 32, 57, 0.68);
}

.solution-block > .feature-label {
  margin-bottom: 18px;
}

.solution-block article {
  padding: 13px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.solution-block strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1rem;
}

.solution-block p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.module-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin: clamp(44px, 6.5vw, 72px) 0 20px;
}

.module-intro .eyebrow {
  margin: 0;
  white-space: nowrap;
}

.module-intro h3 {
  max-width: 650px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.36rem, 2.25vw, 2.06rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.contact-section {
  padding: clamp(60px, 8.2vw, 104px) 0;
  background: transparent;
}

.presentation-copy .contact-link {
  margin-top: 24px;
}
