/* ============================================================
   WEVOLUX — DESIGN SYSTEM
   Paleta monocromática azul sobre branco levemente azulado.
   ============================================================ */

:root {
  /* Tinta */
  --ink: #071A33;
  --ink-soft: #3D5678;
  --ink-faint: #7189AC;

  /* Azuis */
  --blue: #125BFF;
  --blue-deep: #0B3FC4;
  --blue-electric: #2979FF;
  --blue-light: #38BDF8;

  /* Superfícies */
  --cream: #F5F8FF;
  --cream-2: #FAFCFF;
  --white: #FFFFFF;
  --navy: #071A33;
  --navy-2: #0B2A5B;

  /* Linhas */
  --line: #DDE7F8;
  --line-soft: #EAF1FD;

  /* Estados */
  --success: #12B76A;
  --warning: #F79009;
  --error: #F04438;

  /* Gradientes */
  --grad-primary: linear-gradient(135deg, #125BFF 0%, #38BDF8 100%);
  --grad-dark: linear-gradient(160deg, #071A33 0%, #0B2A5B 100%);
  --grad-text: linear-gradient(120deg, #125BFF 0%, #38BDF8 55%, #125BFF 100%);

  /* Tipografia */
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Sombras */
  --shadow-xs: 0 1px 2px rgba(7, 26, 51, 0.04);
  --shadow-sm: 0 4px 16px rgba(7, 26, 51, 0.05);
  --shadow-md: 0 16px 40px rgba(7, 26, 51, 0.08);
  --shadow-lg: 0 32px 80px rgba(7, 26, 51, 0.12);
  --shadow-blue: 0 20px 60px rgba(18, 91, 255, 0.20);

  /* Raios */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--ink);
}

::selection { background: rgba(18, 91, 255, 0.16); color: var(--ink); }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--blue); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }
.container--narrow { max-width: 860px; }

/* ============================================================
   TEXTURAS DE FUNDO — grão, pontos, raios, aurora
   ============================================================ */

/* Grão de filme fixo sobre tudo */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 8s steps(6) infinite;
}
@keyframes grain-shift {
  0%,100% { transform: translate(0,0); }
  17% { transform: translate(-3%, -2%); }
  33% { transform: translate(2%, -3%); }
  50% { transform: translate(-2%, 3%); }
  67% { transform: translate(3%, 2%); }
  83% { transform: translate(-3%, 1%); }
}

/* Malha de pontos com máscara radial */
.dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(18, 91, 255, 0.13) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(85% 65% at 50% 42%, #000 0%, transparent 74%);
  mask-image: radial-gradient(85% 65% at 50% 42%, #000 0%, transparent 74%);
}

/* Raios de luz (conic) */
.rays {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 160vw;
  height: 82vh;
  transform: translateX(-50%);
  pointer-events: none;
  background: repeating-conic-gradient(from -1.5deg at 50% 100%,
    rgba(18, 91, 255, 0.10) 0deg, rgba(18, 91, 255, 0.10) 2.6deg,
    transparent 2.6deg, transparent 12deg);
  -webkit-mask-image: radial-gradient(70% 92% at 50% 100%, #000 0%, transparent 76%);
  mask-image: radial-gradient(70% 92% at 50% 100%, #000 0%, transparent 76%);
  animation: rays-breathe 9s var(--ease-io) infinite;
}
@keyframes rays-breathe {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.04); }
}

/* Aurora — manchas orgânicas desfocadas em movimento lento */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.aurora span {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}
.aurora span:nth-child(1) {
  width: 58vw; height: 58vw; max-width: 780px; max-height: 780px;
  top: -22%; left: -12%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.42) 0%, rgba(56, 189, 248, 0) 68%);
  animation: drift-a 26s var(--ease-io) infinite alternate;
}
.aurora span:nth-child(2) {
  width: 52vw; height: 52vw; max-width: 700px; max-height: 700px;
  top: -8%; right: -14%;
  background: radial-gradient(circle, rgba(18, 91, 255, 0.34) 0%, rgba(18, 91, 255, 0) 68%);
  animation: drift-b 32s var(--ease-io) infinite alternate;
}
.aurora span:nth-child(3) {
  width: 44vw; height: 44vw; max-width: 600px; max-height: 600px;
  bottom: -26%; left: 28%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.20) 0%, rgba(124, 58, 237, 0) 70%);
  animation: drift-c 38s var(--ease-io) infinite alternate;
}
@keyframes drift-a {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(14%, 18%) scale(1.18); }
}
@keyframes drift-b {
  0% { transform: translate(0,0) scale(1.1); }
  100% { transform: translate(-16%, 12%) scale(0.92); }
}
@keyframes drift-c {
  0% { transform: translate(0,0) scale(0.95); }
  100% { transform: translate(10%, -16%) scale(1.15); }
}

/* Linha divisória que some nas pontas */
.hairline {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg,
    transparent 0%, var(--line) 14%,
    rgba(18, 91, 255, 0.45) 50%,
    var(--line) 86%, transparent 100%);
}

/* Brilho que segue o mouse */
.spotlight {
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(18, 91, 255, 0.10) 0%, rgba(18, 91, 255, 0) 66%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 500ms var(--ease);
  will-change: transform;
}
.spotlight.is-on { opacity: 1; }

/* ============================================================
   BARRA DE PROGRESSO DE SCROLL
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: var(--grad-primary);
  z-index: 300;
  will-change: transform;
}

/* ============================================================
   TIPOGRAFIA
   ============================================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue));
}
.eyebrow--light { color: var(--blue-light); }
.eyebrow--light::before { background: linear-gradient(90deg, transparent, var(--blue-light)); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.display {
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  letter-spacing: -0.042em;
  line-height: 0.99;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 18px;
}
.section__title--light { color: var(--white); }

.section__text {
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.65;
}
.section__text--light { color: #B9CEEC; }

.section__head { margin-bottom: 56px; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; max-width: 720px; }
.section__head--center .section__text { margin-left: auto; margin-right: auto; }

.text-gradient {
  background: var(--grad-text);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}

/* ============================================================
   BOTÕES
   ============================================================ */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease),
              background-color 260ms var(--ease), border-color 260ms var(--ease), color 260ms var(--ease);
}
/* varredura de brilho no hover */
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.42), transparent);
  transition: left 620ms var(--ease);
}
.btn:hover::after { left: 130%; }

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 24px rgba(18, 91, 255, 0.26);
}
.btn--primary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(18, 91, 255, 0.34);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: rgba(255,255,255,0.7);
  color: var(--ink);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--blue-light); color: var(--blue); transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(0,0,0,0.18); }

.btn--outline-light {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.30);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }

.btn--sm { min-height: 40px; padding: 0 18px; font-size: 13.5px; }
.btn--lg { min-height: 54px; padding: 0 30px; font-size: 15.5px; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-weight: 600;
  font-size: 14.5px;
}
.link-arrow svg { transition: transform 320ms var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 8px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-xs);
  margin-bottom: 26px;
}
.badge b {
  display: inline-flex; align-items: center;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   HEADER
   ============================================================ */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color 400ms var(--ease), border-color 400ms var(--ease),
              box-shadow 400ms var(--ease), backdrop-filter 400ms var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(245, 248, 255, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line-soft);
}

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; }
.logo__img { height: 30px; width: auto; }

.nav { display: none; }
@media (min-width: 1024px) { .nav { display: block; } }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__list a {
  position: relative;
  display: block;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 240ms var(--ease), background-color 240ms var(--ease);
}
.nav__list a:hover { color: var(--ink); background: rgba(18, 91, 255, 0.06); }

.header__actions { display: flex; align-items: center; gap: 12px; }
.header__actions .btn--primary { display: none; }
@media (min-width: 1024px) { .header__actions .btn--primary { display: inline-flex; } }

.menu-toggle {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(255,255,255,0.7);
}
.menu-toggle span { width: 17px; height: 1.6px; background: var(--ink); border-radius: 2px; transition: transform 340ms var(--ease), opacity 240ms var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Menu mobile */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 190;
  background: var(--cream);
  padding: calc(var(--header-h) + 32px) 24px 40px;
  display: flex; flex-direction: column;
  clip-path: circle(0% at calc(100% - 44px) 36px);
  transition: clip-path 620ms var(--ease);
  pointer-events: none;
}
.mobile-menu.is-open { clip-path: circle(150% at calc(100% - 44px) 36px); pointer-events: auto; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu a {
  display: block;
  padding: 14px 4px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}
.mobile-menu.is-open a { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open li:nth-child(1) a { transition-delay: 120ms; }
.mobile-menu.is-open li:nth-child(2) a { transition-delay: 170ms; }
.mobile-menu.is-open li:nth-child(3) a { transition-delay: 220ms; }
.mobile-menu.is-open li:nth-child(4) a { transition-delay: 270ms; }
.mobile-menu.is-open li:nth-child(5) a { transition-delay: 320ms; }
.mobile-menu.is-open li:nth-child(6) a { transition-delay: 370ms; }
.mobile-menu .btn { margin-top: 28px; }
@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 70px) 0 90px;
  background: radial-gradient(120% 80% at 50% 0%, #FFFFFF 0%, var(--cream) 46%, #EDF3FF 100%);
}
@media (min-width: 1024px) { .hero { padding: calc(var(--header-h) + 104px) 0 110px; } }

.hero__inner { position: relative; z-index: 2; text-align: center; }
.hero__title { margin-bottom: 24px; }
.hero__subtitle {
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 38px;
  line-height: 1.6;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 22px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; font-size: 13px; color: var(--ink-faint); }
.hero__meta li { display: inline-flex; align-items: center; gap: 7px; }
.hero__meta svg { color: var(--success); flex-shrink: 0; }

/* Revelação palavra a palavra */
/* A máscara da revelação usa overflow:hidden. Como o line-height do título é
   bem apertado (0.99), as hastes descendentes (g, p, ç) passam da caixa e
   seriam cortadas. O padding aumenta a área visível e a margem negativa
   devolve o espaço, mantendo o espaçamento entre linhas intacto. */
.reveal-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-top: 0.22em;
  margin-top: -0.22em;
  padding-bottom: 0.24em;
  margin-bottom: -0.24em;
}
.reveal-word > span {
  display: inline-block;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 950ms var(--ease), opacity 700ms var(--ease);
}
.is-revealed .reveal-word > span { transform: translateY(0); opacity: 1; }

/* Vitrine flutuante do hero */
.hero-stage {
  position: relative;
  z-index: 2;
  margin-top: 68px;
  perspective: 1800px;
}
.hero-stage__frame {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.6) inset;
  backdrop-filter: blur(20px);
  overflow: hidden;
  transform: rotateX(var(--stage-rx, 8deg)) translateY(var(--stage-y, 0px));
  transition: transform 900ms var(--ease);
}
.hero-stage__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.6);
}
.hero-stage__bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); display: block; }
.hero-stage__bar em {
  margin-left: 12px; font-style: normal; font-size: 12px; color: var(--ink-faint);
  font-weight: 500; letter-spacing: 0.01em;
}
.hero-stage__body { position: relative; aspect-ratio: 16 / 9; background: var(--navy); }
.hero-stage__body img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms var(--ease), transform 1400ms var(--ease);
}
.hero-stage__body img.is-active { opacity: 1; transform: scale(1); }

.hero-stage__tabs {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-top: 26px;
}
.stage-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
  transition: all 300ms var(--ease);
  backdrop-filter: blur(8px);
}
.stage-tab i { width: 7px; height: 7px; border-radius: 50%; background: var(--tab-color, var(--blue)); display: block; }
.stage-tab:hover { border-color: var(--blue-light); color: var(--ink); }
.stage-tab.is-active {
  border-color: var(--tab-color, var(--blue));
  color: var(--ink);
  background: #fff;
  box-shadow: 0 6px 18px rgba(7,26,51,0.08);
}

/* Etiquetas flutuantes */
.float-tag {
  position: absolute;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  font-size: 12.5px; font-weight: 600; color: var(--ink);
  white-space: nowrap;
  animation: bob 7s var(--ease-io) infinite;
}
.float-tag svg { color: var(--blue); flex-shrink: 0; }
.float-tag--1 { top: 12%; left: 2%; animation-delay: 0s; }
.float-tag--2 { top: 26%; right: 1%; animation-delay: 1.6s; }
.float-tag--3 { bottom: 20%; left: 5%; animation-delay: 3.2s; }
.float-tag--4 { bottom: 30%; right: 4%; animation-delay: 4.6s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}
@media (max-width: 1100px) { .float-tag { display: none; } }

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee {
  position: relative;
  overflow: hidden;
  padding: 26px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: 52px; padding-right: 52px; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink-faint);
  transition: color 300ms var(--ease);
  white-space: nowrap;
}
.marquee__item:hover { color: var(--blue); }
.marquee__item i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.5; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SEÇÕES
   ============================================================ */

.section { position: relative; padding: 84px 0; }
@media (min-width: 1024px) { .section { padding: 118px 0; } }
.section--alt { background: var(--cream-2); }
.section--white { background: var(--white); }
.section--navy {
  background: var(--grad-dark);
  overflow: hidden;
  color: #fff;
}
.section__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.section > .container { position: relative; z-index: 2; }

/* ============================================================
   INDICADORES
   ============================================================ */

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 860px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
  transition: background-color 400ms var(--ease);
}
.stat:hover { background: #FAFCFF; }
.stat__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  letter-spacing: -0.04em;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.stat__label { display: block; margin-top: 8px; font-size: 13px; color: var(--ink-faint); font-weight: 500; }

/* ============================================================
   PRODUTOS
   ============================================================ */

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 700px) { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--lift, 0px));
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease), border-color 420ms var(--ease);
}
.product-card:hover {
  border-color: color-mix(in srgb, var(--pc) 40%, var(--line));
  box-shadow: 0 26px 60px rgba(7, 26, 51, 0.13);
}
/* auréola colorida no hover */
.product-card::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, var(--pc), transparent 55%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 420ms var(--ease);
  pointer-events: none;
  z-index: 3;
}
.product-card:hover::before { opacity: 1; }

.pc-visual { position: relative; display: block; overflow: hidden; background: var(--navy); }
.pc-visual__bar {
  display: flex; align-items: center; gap: 5px;
  padding: 9px 12px;
  background: #08213F;
}
.pc-visual__bar i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.22); display: block; }
.pc-visual__bar em {
  margin-left: 8px; font-style: normal; font-size: 10.5px; color: #7D9AC4;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.pc-visual__shot { position: relative; height: 172px; overflow: hidden; }
.pc-visual__shot img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform 900ms var(--ease);
}
.product-card:hover .pc-visual__shot img { transform: scale(1.06); }
.pc-visual__shot::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,26,51,0.30), transparent 55%);
  opacity: 0;
  transition: opacity 420ms var(--ease);
}
.product-card:hover .pc-visual__shot::after { opacity: 1; }

.pc-body {
  display: flex; flex-direction: column; gap: 11px;
  padding: 22px 22px 24px;
  flex-grow: 1;
  border-top: 2px solid var(--pc);
}
.pc-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--pc) 11%, #fff);
  color: var(--pc);
  margin-top: -42px;
  margin-bottom: 2px;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
  position: relative; z-index: 2;
}
.pc-cat {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-faint);
}
.pc-title { font-size: 19px; letter-spacing: -0.03em; }
.pc-desc { font-size: 14px; color: var(--ink-soft); flex-grow: 1; line-height: 1.55; }
.pc-link { margin-top: 4px; }

.product-card--more {
  align-items: flex-start;
  justify-content: center;
  padding: 30px;
  gap: 13px;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(18,91,255,0.07), transparent 60%),
    var(--white);
  border-style: dashed;
  border-color: var(--line);
}
.product-card--more .pc-icon { margin-top: 0; border: none; box-shadow: none; }

/* ============================================================
   BENEFÍCIOS
   ============================================================ */

.benefit-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line-soft); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-soft); }
@media (min-width: 640px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .benefit-grid { grid-template-columns: repeat(4, 1fr); } }

.benefit {
  position: relative;
  background: var(--white);
  padding: 28px 24px 30px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background-color 420ms var(--ease);
  overflow: hidden;
}
.benefit::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 0%, rgba(18,91,255,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 420ms var(--ease);
}
.benefit:hover::before { opacity: 1; }
.benefit > * { position: relative; z-index: 1; }
.benefit__icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(18,91,255,0.08);
  color: var(--blue);
  transition: transform 420ms var(--ease), background-color 420ms var(--ease);
}
.benefit:hover .benefit__icon { transform: translateY(-3px) scale(1.06); background: rgba(18,91,255,0.14); }
.benefit h3 { font-family: var(--font-body); font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.benefit p { font-size: 13.2px; color: var(--ink-soft); line-height: 1.55; }

/* ============================================================
   3 CAMINHOS
   ============================================================ */

.paths { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 980px) { .paths { grid-template-columns: repeat(3, 1fr); } }

.path {
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  padding: 30px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
}
.path:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.path__art { height: 132px; border-radius: var(--r-md); position: relative; overflow: hidden; margin-bottom: 6px; background: var(--cream); }

/* arte 1 — grade de módulos */
.art-grid { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 8px; padding: 22px; }
.art-grid span { border-radius: 7px; background: #fff; border: 1px solid var(--line); }
.art-grid span:nth-child(1), .art-grid span:nth-child(5) { background: var(--grad-primary); border: none; }
.art-grid span:nth-child(3) { background: rgba(18,91,255,0.16); border-color: transparent; }

/* arte 2 — blueprint */
.art-blueprint { position: absolute; inset: 0; }
.art-blueprint span { position: absolute; border: 1.5px dashed var(--blue-electric); border-radius: 8px; opacity: 0.7; }
.art-blueprint span:nth-child(1) { top: 18%; left: 10%; width: 46%; height: 40%; }
.art-blueprint span:nth-child(2) { top: 46%; left: 26%; width: 34%; height: 34%; border-color: var(--blue-light); }
.art-blueprint span:nth-child(3) { top: 22%; right: 12%; width: 24%; height: 56%; }

/* arte 3 — pulso */
.art-pulse { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.art-pulse b { width: 20px; height: 20px; border-radius: 50%; background: var(--grad-primary); display: block; z-index: 2; }
.art-pulse i {
  position: absolute; width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--blue-light);
  animation: pulse-ring 3s var(--ease-io) infinite;
}
.art-pulse i:nth-child(2) { animation-delay: 1s; }
.art-pulse i:nth-child(3) { animation-delay: 2s; }
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(5.4); opacity: 0; }
}

.path h3 { font-size: 20px; letter-spacing: -0.03em; }
.path p { font-size: 14px; color: var(--ink-soft); flex-grow: 1; line-height: 1.55; }

/* ============================================================
   TECNOLOGIA (navy)
   ============================================================ */

.tech-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 860px) { .tech-grid { grid-template-columns: repeat(4, 1fr); } }
.tech-card {
  padding: 24px 22px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; flex-direction: column; gap: 12px;
  transition: background-color 420ms var(--ease), transform 420ms var(--ease), border-color 420ms var(--ease);
}
.tech-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(56,189,248,0.4); transform: translateY(-4px); }
.tech-card__icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(56,189,248,0.14); color: var(--blue-light);
}
.tech-card h3 { color: #fff; font-family: var(--font-body); font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.tech-card p { color: #9FBADD; font-size: 13px; line-height: 1.5; }

/* ============================================================
   SEGMENTOS
   ============================================================ */

.segment-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 640px) { .segment-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .segment-grid { grid-template-columns: repeat(3, 1fr); } }

.segment {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--line-soft);
  transition: border-color 320ms var(--ease), transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.segment:hover { border-color: var(--blue-light); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.segment__icon {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(18,91,255,0.07); color: var(--blue);
}
.segment h3 { font-family: var(--font-body); font-size: 15px; font-weight: 700; margin-bottom: 3px; letter-spacing: -0.01em; }
.segment p { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.segment__tag {
  display: inline-block; margin-top: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--blue); background: rgba(18,91,255,0.08);
  padding: 4px 10px; border-radius: var(--r-pill);
}

/* ============================================================
   SOBRE
   ============================================================ */

.about { display: grid; gap: 56px; align-items: center; }
@media (min-width: 1024px) { .about { grid-template-columns: 0.95fr 1.05fr; gap: 72px; } }

.orbit { position: relative; aspect-ratio: 1; max-width: 420px; margin: 0 auto; width: 100%; }
.orbit__ring {
  position: absolute; inset: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.orbit__ring:nth-child(2) { inset: 15%; border-style: dashed; border-color: rgba(18,91,255,0.22); animation: spin 44s linear infinite; }
.orbit__ring:nth-child(3) { inset: 30%; border-color: var(--line-soft); }
@keyframes spin { to { transform: rotate(360deg); } }

.orbit__core {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 108px; height: 108px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-blue);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  z-index: 3;
}
.orbit__core img { width: 42px; height: auto; }
.orbit__core span { font-family: var(--font-display); font-weight: 800; font-size: 11px; color: var(--ink); letter-spacing: 0.02em; }

.orbit__node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 9px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 12px; font-weight: 700; color: var(--ink);
  white-space: nowrap;
  z-index: 2;
  animation: bob 8s var(--ease-io) infinite;
}
.orbit__node i {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(18,91,255,0.10); color: var(--blue);
}
.orbit__node--1 { top: 8%;  left: 34%; animation-delay: 0s; }
.orbit__node--2 { top: 34%; left: 92%; animation-delay: 1.4s; }
.orbit__node--3 { top: 88%; left: 64%; animation-delay: 2.8s; }
.orbit__node--4 { top: 62%; left: 8%;  animation-delay: 4.2s; }
@media (max-width: 520px) { .orbit__node { font-size: 11px; padding: 6px 11px 6px 7px; } }

.orbit__lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.orbit__lines line {
  stroke: var(--blue-light);
  stroke-width: 1.2;
  stroke-dasharray: 3 5;
  opacity: 0.55;
  vector-effect: non-scaling-stroke;
}

.about__content p + p { margin-top: 16px; }
.about__list { margin-top: 28px; display: grid; gap: 12px; }
.about__list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--ink-soft); }
.about__list svg { color: var(--blue); flex-shrink: 0; margin-top: 3px; }

/* ============================================================
   PASSOS
   ============================================================ */

.steps { position: relative; display: grid; grid-template-columns: 1fr; gap: 34px; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 26px; } }

.steps__line {
  display: none;
  position: absolute;
  top: 27px; left: 12%; right: 12%;
  height: 1px;
  background: var(--line);
}
@media (min-width: 900px) { .steps__line { display: block; } }
.steps__line b {
  position: absolute; inset: 0;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transition: transform 1800ms var(--ease-io);
}
.steps.is-visible .steps__line b { transform: scaleX(1); }
.steps__line i {
  position: absolute; top: 50%; left: 0;
  width: 9px; height: 9px; margin-top: -4.5px; margin-left: -4.5px;
  border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 0 4px rgba(18,91,255,0.16);
  opacity: 0;
  transition: opacity 400ms var(--ease);
}
.steps.is-visible .steps__line i { opacity: 1; animation: travel 1800ms var(--ease-io) forwards; }
@keyframes travel { to { left: 100%; } }

.step { position: relative; text-align: center; }
@media (min-width: 900px) { .step { text-align: left; } }
.step__num {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  background: var(--white);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 800; font-size: 17px;
  color: var(--blue);
  position: relative; z-index: 2;
  transition: border-color 420ms var(--ease), box-shadow 420ms var(--ease), transform 420ms var(--ease);
}
@media (min-width: 900px) { .step__num { margin-left: 0; } }
.step:hover .step__num { border-color: var(--blue); box-shadow: 0 0 0 5px rgba(18,91,255,0.10); transform: translateY(-3px); }
.step h3 { font-size: 17px; margin-bottom: 8px; letter-spacing: -0.025em; }
.step p { font-size: 13.8px; color: var(--ink-soft); line-height: 1.55; }

/* ============================================================
   SOB MEDIDA (navy + raios)
   ============================================================ */

.custom { position: relative; overflow: hidden; }
.custom__inner { position: relative; z-index: 2; max-width: 760px; }
.custom__list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 11px 24px;
  margin: 32px 0 36px;
}
@media (min-width: 640px) { .custom__list { grid-template-columns: repeat(3, 1fr); } }
.custom__list li {
  position: relative; padding-left: 22px;
  font-size: 14px; color: #C8DAF3;
}
.custom__list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 2px;
  background: var(--blue-light);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: var(--white);
  overflow: hidden;
  transition: border-color 320ms var(--ease), box-shadow 320ms var(--ease);
}
.faq-item.is-open { border-color: rgba(18,91,255,0.28); box-shadow: var(--shadow-sm); }
.faq-item__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 22px;
  font-size: 15.5px; font-weight: 600; text-align: left;
  letter-spacing: -0.01em;
  transition: color 260ms var(--ease);
}
.faq-item__q:hover { color: var(--blue); }
.faq-item__icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(18,91,255,0.08); color: var(--blue);
  transition: transform 420ms var(--ease), background-color 320ms var(--ease);
}
.faq-item.is-open .faq-item__icon { transform: rotate(135deg); background: var(--blue); color: #fff; }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 480ms var(--ease); }
.faq-item__a p { padding: 0 22px 22px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

/* ============================================================
   CTA FINAL
   ============================================================ */

.cta { position: relative; overflow: hidden; padding: 96px 0; text-align: center; background: var(--grad-dark); }
@media (min-width: 1024px) { .cta { padding: 130px 0; } }
.cta__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta__title { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-bottom: 18px; }
.cta__text { color: #B9CEEC; font-size: clamp(1rem, 1.2vw, 1.12rem); margin-bottom: 36px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 42px; }
.cta__trust { display: flex; flex-wrap: wrap; gap: 12px 30px; justify-content: center; }
.cta__trust li { font-size: 13px; color: #90AACD; display: inline-flex; align-items: center; gap: 8px; }
.cta__trust svg { color: var(--blue-light); flex-shrink: 0; }

/* ============================================================
   RODAPÉ
   ============================================================ */

.footer { background: var(--navy); color: #B9CEEC; padding: 76px 0 0; position: relative; overflow: hidden; }
.footer__grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative; z-index: 2;
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr; } }

.footer__brand p { font-size: 13.8px; margin: 16px 0 22px; color: #8AA6CB; max-width: 260px; line-height: 1.6; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: #B9CEEC;
  transition: background-color 300ms var(--ease), color 300ms var(--ease), transform 300ms var(--ease);
}
.footer__social a:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }

.footer__col h3 { font-family: var(--font-body); font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 18px; letter-spacing: 0.09em; text-transform: uppercase; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 13.8px; color: #8AA6CB; transition: color 260ms var(--ease); }
.footer__col a:hover { color: #fff; }

.footer__bottom {
  position: relative; z-index: 2;
  padding: 24px 0 32px;
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between;
  font-size: 12.5px; color: #6F8AAF;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__legal a:hover { color: #fff; }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */

.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.42);
  z-index: 150;
  transition: transform 340ms var(--ease);
}
.wa-float::before {
  content: "";
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2.6s var(--ease-io) infinite;
}
.wa-float:hover { transform: scale(1.09); }

/* ============================================================
   REVELAÇÕES AO ROLAR
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .reveal-word > span { transform: none !important; opacity: 1 !important; filter: none !important; }
  .grain { display: none; }
}
