/* ===== LUX MÍDIA — Mídia Exterior =====
   Tokens da marca:
   - Azul:    #6ad2ff
   - Preto:   #000
   - Navy:    #0e2030 (fundo dominante)
======================================= */
:root {
  --lux-blue: #6ad2ff;
  --lux-blue-2: #2aa8e0;
  --navy: #0a1722;
  --navy-2: #0c1a28;
  --ink: #0a0a0a;
  --paper: #ffffff;
  --muted: rgba(255,255,255,.7);
  --muted-2: rgba(255,255,255,.55);
}

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

@font-face {
  font-family: 'Montserrat';
  src: url('assets/Source/Montserrat-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(106, 210, 255, .3) transparent;
}
html::-webkit-scrollbar { width: 10px; height: 10px; }
html::-webkit-scrollbar-track { background: transparent; }
html::-webkit-scrollbar-thumb {
  background: rgba(106, 210, 255, .22);
  border-radius: 5px;
  transition: background .3s ease;
}
html::-webkit-scrollbar-thumb:hover { background: rgba(106, 210, 255, .45); }

body {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--navy);
  color: white;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Seleção & foco — cores da marca */
::selection { background: rgba(106, 210, 255, .4); color: #fff; }
:focus-visible {
  outline: 2px solid var(--lux-blue);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) { outline: none; }

/* Container global — margens consistentes */
:root {
  --side-pad: clamp(24px, 6vw, 96px);
  --max-w: 1280px;
  --section-pad-y: clamp(32px, 3.5vw, 52px);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
  --ease-smooth: cubic-bezier(.16, 1, .3, 1);
}

/* Beams/shader/canvas removidos do DOM — classes obsoletas mantidas apenas como no-op */

/* Global spotlight (segue o cursor) — halo cyan suave que acompanha o mouse */
.page-spot {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    600px circle at var(--mx, -200px) var(--my, -200px),
    rgba(106, 210, 255, .14) 0%,
    rgba(106, 210, 255, .06) 30%,
    transparent 65%
  );
  mix-blend-mode: screen;
  opacity: .9;
  transition: opacity .3s ease;
  will-change: background;
}
@media (hover: none), (pointer: coarse) {
  .page-spot { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .page-spot { display: none; }
}

/* ===== PAGE-BG — Fundo em camadas (estilo "Paybot")
   - Cobre tudo a partir do fim da hero (top: 100vh)
   - Brilhos radiais nas cores da marca + painéis horizontais sutis
   - Sem alterar o background da hero (.shader-hero permanece transparente) */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
/* Camada base — navy + grid */
.page-bg__panels {
  position: absolute;
  inset: 0;
  background-color: var(--navy);
  background-size: 60px 60px;
  background-image:
    linear-gradient(to right,  rgba(106,210,255,.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(106,210,255,.055) 1px, transparent 1px);
}
/* Glows sutis em azul/branco — discretos, posicionados em cantos opostos */
.page-bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.page-bg__glow--tr {
  top: -10vmax;
  right: -15vmax;
  width: 65vmax;
  height: 65vmax;
  background: radial-gradient(circle, rgba(106, 210, 255, .10) 0%, rgba(106, 210, 255, .03) 40%, transparent 70%);
  opacity: 1;
}
.page-bg__glow--ml {
  top: 50%;
  left: -20vmax;
  width: 55vmax;
  height: 55vmax;
  background: radial-gradient(circle, rgba(255, 255, 255, .035) 0%, rgba(255, 255, 255, .012) 40%, transparent 70%);
  opacity: 1;
}
.page-bg__glow--br {
  bottom: -10vmax;
  right: -20vmax;
  width: 60vmax;
  height: 60vmax;
  background: radial-gradient(circle, rgba(106, 210, 255, .08) 0%, rgba(106, 210, 255, .02) 40%, transparent 70%);
  opacity: 1;
}
.page-bg__glow--bl { display: none; }

.page-bg__shape { display: none; }

/* Grain finíssimo — adiciona profundidade e textura premium */
.page-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .06;
  mix-blend-mode: overlay;
  pointer-events: none;
}

@media (max-width: 768px) {
  .page-bg__glow { filter: blur(80px); }
}
body > section { position: relative; z-index: 2; }
.shader-hero { background: transparent !important; }
.shader-hero .mesh, .shader-hero .mesh-grain { display: none; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .2px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease;
}
.btn-primary {
  background: var(--lux-blue);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(106, 210, 255, .25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(106, 210, 255, .4); }

/* ===== TOPBAR ===== */
.shader-hero .topbar { display: none; }
.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px var(--side-pad);
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 5;
  gap: 24px;
}
.brand { justify-self: start; }
.brand img {
  height: 32px;
  display: block;
  transition: filter .3s ease, transform .3s ease;
}
.brand:hover img {
  filter: drop-shadow(0 0 18px rgba(106, 210, 255, .35));
  transform: scale(1.03);
}
.topbar--center {
  display: flex;
  justify-content: center;
}
.topbar--center .brand { justify-self: center; }
.topbar--center .brand img { height: 38px; }
.topnav {
  display: flex;
  gap: 8px;
  justify-self: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 6px 10px;
}
.topnav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .15em;
  color: white;
  padding: 10px 22px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.topnav a:hover { background: var(--lux-blue); color: var(--ink); }
.top-extra {
  display: flex;
  gap: 24px;
  justify-self: end;
}
.top-extra a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--lux-blue);
  transition: color .2s ease;
}
.top-extra a:hover { color: white; }

/* ===== HERO — Shader Showcase ===== */
.shader-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--navy);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}

/* Vídeo de fundo da hero — cobre toda a área (object-fit: cover = "lupe") */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(5,14,24,.55) 0%, rgba(5,14,24,.72) 60%, rgba(5,14,24,.88) 100%),
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.20) 30%, rgba(0,0,0,.35) 70%, rgba(0,0,0,.60) 100%);
  pointer-events: none;
}

/* Escurece o fundo do hero para o bridge terminar o trabalho */
.shader-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(260px, 38vh, 400px);
  background: linear-gradient(
    to bottom,
    rgba(10, 23, 34, 0)    0%,
    rgba(10, 23, 34, .30) 30%,
    rgba(10, 23, 34, .72) 65%,
    #0a1722              100%
  );
  pointer-events: none;
  z-index: 3;
}
/* Marquee divisor entre seções */
.section-marquee {
  position: relative;
  z-index: 10;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(106,210,255,.1);
  border-bottom: 1px solid rgba(106,210,255,.1);
  background: rgba(10,23,34,.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 13px 0;
  margin-top: -20px;
  transform: rotate(-1.4deg) scaleX(1.12);
  pointer-events: none;
}
.section-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: cineMarquee 40s linear infinite;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.section-marquee__track span { padding: 0 20px; }

/* Bridge fora do hero — cobre a costura que overflow:hidden+isolation criam */
.hero-bridge {
  position: relative;
  z-index: 10;
  height: 140px;
  margin-top: -140px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent                0%,
    rgba(10, 23, 34, .55)     35%,
    rgba(10, 23, 34, .88)     65%,
    #0a1722                  100%
  );
}

.defs-svg { position: absolute; width: 0; height: 0; }

/* Mesh gradient simulado com radiais animadas */
.mesh, .mesh-grain {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  z-index: 0;
}
.mesh-1 {
  background:
    radial-gradient(50% 60% at 18% 28%, rgba(106,210,255,.55), transparent 70%),
    radial-gradient(45% 55% at 78% 22%, rgba(42,168,224,.45), transparent 70%),
    radial-gradient(60% 60% at 30% 80%, rgba(20,60,100,.7), transparent 70%),
    radial-gradient(45% 55% at 82% 78%, rgba(106,210,255,.35), transparent 70%),
    #000;
  filter: blur(40px) saturate(120%);
  animation: meshDrift 22s ease-in-out infinite alternate;
}
.mesh-2 {
  opacity: .55;
  background:
    radial-gradient(40% 50% at 50% 40%, rgba(255,255,255,.18), transparent 70%),
    radial-gradient(35% 45% at 20% 70%, rgba(106,210,255,.25), transparent 70%),
    radial-gradient(40% 50% at 80% 30%, rgba(255,255,255,.12), transparent 70%);
  mix-blend-mode: screen;
  filter: blur(30px);
  animation: meshDrift 18s ease-in-out infinite alternate-reverse;
}
.mesh-grain {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .08;
  mix-blend-mode: overlay;
}
@keyframes meshDrift {
  0%   { transform: translate3d(-2%, -2%, 0) scale(1); }
  50%  { transform: translate3d(2%, 1%, 0) scale(1.05); }
  100% { transform: translate3d(-1%, 2%, 0) scale(1); }
}

/* CONTEÚDO centralizado vertical e horizontalmente */
.hero-content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(96px, 14vh, 160px) var(--side-pad) 56px;
  z-index: 4;
}
.hero-content > * { max-width: 720px; margin-left: auto; margin-right: auto; }
.hero-body {
  display: contents;
}
.hero-mobile-bg {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
}
.hero-logo {
  height: 40px;
  width: auto;
  margin-bottom: 36px;
  filter: drop-shadow(0 0 20px rgba(106,210,255,.35));
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  margin-bottom: 24px;
  position: relative;
  font-size: 13px;
  color: rgba(255,255,255,.92);
  letter-spacing: .03em;
  font-weight: 500;
}
.hero-badge .badge-line {
  position: absolute;
  top: 0; left: 8px; right: 8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(106,210,255,.5), transparent);
}

.hero-h1,
.hl-display {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.025em;
  margin-bottom: 22px;
  color: #fff;
  font-style: normal;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
}
.hero-h1 {
  font-size: clamp(40px, 5.5vw, 78px);
  font-weight: 300;
  line-height: 1.06;
  margin-bottom: 22px;
}
.hero-h1 span  { display: block; font-weight: 300; }
.hl-display span { display: block; font-weight: 300; }
.hero-h1 .shine,
.hl-display .shine {
  font-style: inherit;
  font-weight: 400;
  background: linear-gradient(135deg, #ffffff 0%, #6ad2ff 35%, #2aa8e0 70%, #ffffff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: url(#text-glow);
  animation: shimmerText 8s linear infinite;
}

/* Headlines de seções (não-hero) — escala um pouco menor */
.motivos h2.hl-display,
.como h2.hl-display,
.testi-head h2.hl-display,
.cta h2.hl-display {
  font-size: clamp(34px, 5.2vw, 72px);
  margin-bottom: 24px;
}

/* Variante de quebra natural (sem <span> em bloco) */
.hl-flow { text-wrap: balance; }
.hl-flow .shine { display: inline; }
@keyframes shimmerText {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, .9);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 32px;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .55);
  letter-spacing: -.005em;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-outline,
.btn-grad {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.3);
  color: white;
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(106,210,255,.6);
  color: #d6f1ff;
  transform: scale(1.04);
}
.btn-grad {
  background: linear-gradient(90deg, #6ad2ff, #2aa8e0);
  color: #0a0a0a;
  border: none;
  box-shadow: 0 0 0 0 rgba(106, 210, 255, 0);
}
.btn-grad:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px -6px rgba(106, 210, 255, .35);
  filter: brightness(1.08);
}
.btn-grad:active { transform: scale(0.98); }
.btn-outline:active { transform: scale(0.98); }

/* GOOEY login button group */
.gooey-btn { position: relative; }
.gooey-btn .login-btn {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 22px;
  border-radius: 999px;
  background: white;
  color: #000;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: background .25s ease;
}
.gooey-btn .login-btn:hover { background: rgba(255,255,255,.9); }
.gooey-btn .ghost-arrow {
  position: absolute;
  right: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: white;
  color: #000;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  transform: translateX(-8px);
  transition: transform .35s ease;
  z-index: 1;
}
.gooey-btn .ghost-arrow svg { width: 12px; height: 12px; }
.gooey-btn:hover .ghost-arrow { transform: translateX(40px); }

/* PULSING BORDER + ROTATING TEXT */
/* WHATSAPP FLOATING CTA */
.wa-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 78px;
  height: 78px;
  z-index: 80;
  display: grid;
  place-items: center;
  text-decoration: none;
  cursor: pointer;
}
.wa-core {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 8px 20px rgba(37,211,102,.4), inset 0 0 10px rgba(0,0,0,.18);
  display: grid;
  place-items: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-cta:hover .wa-core {
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 14px 32px rgba(37, 211, 102, .55), 0 0 0 6px rgba(37, 211, 102, .12);
}
.wa-icon {
  width: 22px;
  height: 22px;
  color: white;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.25));
  position: relative;
  z-index: 2;
}
.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(37,211,102,.5);
  animation: pulseRing 2.4s ease-out infinite;
}
.pulse-ring.r2 { animation-delay: .8s; }
.pulse-ring.r3 { animation-delay: 1.6s; }
@keyframes pulseRing {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(2.2); opacity: 0; }
}
.wa-rotating-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.55);
  animation: rotateText 16s linear infinite;
  pointer-events: none;
}
.wa-rotating-text text {
  font-size: 5.6px;
  font-weight: 700;
  letter-spacing: .12em;
  fill: rgba(255,255,255,.92);
  text-transform: uppercase;
}
@keyframes rotateText {
  to { transform: scale(1.55) rotate(360deg); }
}
.hero-text h1 {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--lux-blue);
  margin-bottom: 28px;
}
.hero-text h1 .hl { color: var(--lux-blue); }
.hero-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 420px;
  margin-bottom: 36px;
  line-height: 1.6;
}

/* HERO VISUAL — highway + billboard + map */
.hero-visual {
  position: relative;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}
.highway {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 30% at 70% 60%, rgba(255,200,140,.25), transparent 70%),
    linear-gradient(180deg, #02060d 0%, #0a1828 35%, #1a2c40 60%, #2a1a10 100%);
}
.highway::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 140%;
  height: 60%;
  background:
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(255,255,255,.15) 30px 32px),
    linear-gradient(180deg, transparent, rgba(0,0,0,.6));
  transform: perspective(800px) rotateX(60deg);
  transform-origin: bottom;
  filter: blur(.5px);
}
.highway::after {
  content: '';
  position: absolute;
  top: 8%; left: 0; right: 0;
  height: 2px;
  background:
    radial-gradient(circle at 10% 50%, #ffe9b0 0 1px, transparent 2px) 0/60px 100% repeat-x,
    radial-gradient(circle at 30% 50%, #fff8d6 0 1px, transparent 2px) 0/45px 100% repeat-x;
  filter: blur(.5px);
  opacity: .9;
}
.billboard {
  position: absolute;
  top: 18%;
  right: 8%;
  width: 220px;
  height: 90px;
  background: white;
  border-radius: 4px;
  box-shadow:
    0 0 30px rgba(255,255,255,.5),
    0 0 60px rgba(106, 210, 255, .35);
}
.billboard::after {
  content: '';
  position: absolute;
  bottom: -90px; left: 50%;
  width: 6px; height: 90px;
  background: #1a1a1a;
  transform: translateX(-50%);
}
.map-card {
  position: absolute;
  bottom: 18px; right: 18px;
  width: 320px; height: 200px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
  background: #e8eef2;
}
.map-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.4), transparent 50%),
    repeating-linear-gradient(45deg, #d6dde3 0 6px, #e8eef2 6px 14px),
    #e8eef2;
}
.map-bg::before {
  content: '';
  position: absolute;
  top: 30%; left: -10%;
  width: 130%; height: 14px;
  background: #ffd66b;
  transform: rotate(-12deg);
  box-shadow: 0 24px 0 #ffe7a3;
}
.map-bg::after {
  content: '';
  position: absolute;
  top: 55%; left: -5%;
  width: 110%; height: 6px;
  background: #ffffff;
  transform: rotate(-8deg);
  box-shadow: 0 18px 0 #ffffff, 0 -22px 0 #ffffff;
}
.pin {
  position: absolute;
  top: 38%; left: 45%;
  font-size: 28px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.3));
  z-index: 2;
}
.map-label-1, .map-label-2 {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  color: #333;
  background: rgba(255,255,255,.85);
  padding: 2px 6px;
  border-radius: 4px;
  z-index: 3;
}
.map-label-1 { top: 12%; left: 18%; }
.map-label-2 { bottom: 14%; right: 14%; }

/* ===== MOTIVOS — Radial Orbital Timeline ===== */
.motivos {
  background: transparent;
  padding: var(--section-pad-y) var(--side-pad);
  position: relative;
  overflow: clip;
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.motivos-head { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.symbol-top {
  width: 52px;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 24px rgba(106, 210, 255, .55));
  animation: symbolFloat 6s ease-in-out infinite;
}
@keyframes symbolFloat {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 24px rgba(106, 210, 255, .55)); }
  50% { transform: translateY(-6px); filter: drop-shadow(0 0 32px rgba(106, 210, 255, .75)); }
}
.motivos .lead {
  color: rgba(255, 255, 255, .72);
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
}

.orbital {
  position: relative;
  width: 100%;
  height: 560px;
  max-width: 900px;
  margin: 0 auto;
  perspective: 1000px;
}

/* Variante decorativa: usada acima dos cards de motivos */
.orbital--decor {
  height: clamp(280px, 38vw, 420px);
  margin: 12px auto 48px;
  pointer-events: none;
}
.orbital--decor .orbital-ring {
  width: clamp(220px, 32vw, 380px);
  height: clamp(220px, 32vw, 380px);
}
.orbit-dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  margin-left: -7px;
  margin-top: -7px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, #6ad2ff 55%, rgba(106,210,255,0) 75%);
  box-shadow:
    0 0 12px rgba(106, 210, 255, .8),
    0 0 28px rgba(106, 210, 255, .4);
  transition: opacity .4s ease;
  z-index: 5;
}
.orbit-label {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  pointer-events: none;
}
@media (max-width: 560px) {
  .orbital--decor { margin-bottom: 32px; }
  .orbit-dot { width: 11px; height: 11px; margin-left: -5.5px; margin-top: -5.5px; }
  .orbit-label { font-size: 9.5px; top: 18px; letter-spacing: .1em; }
}

/* CORE */
.orbital-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6 0%, var(--lux-blue) 50%, #14b8a6 100%);
  display: grid;
  place-items: center;
  z-index: 10;
  animation: pulseCore 2s cubic-bezier(.4,0,.6,1) infinite;
}
.core-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
}
.ping {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  animation: ping 1.6s cubic-bezier(0,0,.2,1) infinite;
}
.ping-1 { width: 80px; height: 80px; }
.ping-2 { width: 96px; height: 96px; opacity: .5; animation-delay: .5s; }

@keyframes pulseCore {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

/* ORBIT RING */
.orbital-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
}

/* NODES */
.orbital-node {
  position: absolute;
  top: 50%; left: 50%;
  margin-left: -20px;
  margin-top: -20px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: opacity .7s cubic-bezier(.4,0,.2,1), z-index 0s;
  font-family: inherit;
}
.node-glow {
  position: absolute;
  top: -10px; left: -10px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,210,255,.25) 0%, transparent 70%);
  pointer-events: none;
}
.node-dot {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #000;
  color: white;
  border: 2px solid rgba(255,255,255,.4);
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.orbital-node.is-related .node-dot {
  background: rgba(255,255,255,.5);
  color: #000;
  border-color: white;
  animation: pulseCore 1.4s infinite;
}
.orbital-node.is-expanded .node-dot {
  background: white;
  color: #000;
  border-color: white;
  transform: scale(1.5);
  box-shadow: 0 0 24px rgba(255,255,255,.4);
}
.node-title {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 160px;
  white-space: normal;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.25;
  color: rgba(255,255,255,.7);
  transition: transform .3s ease, color .3s ease;
}
.orbital-node.is-expanded .node-title {
  color: white;
  transform: translateX(-50%) scale(1.25);
}

/* CARD */
.node-card {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 12px;
  padding: 16px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(255,255,255,.08);
  display: none;
  z-index: 200;
}
.node-card::before {
  content: '';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 12px;
  background: rgba(255,255,255,.5);
}
.orbital-node.is-expanded .node-card { display: block; }

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid;
}
.badge-completed { color: white; background: #000; border-color: white; }
.badge-in-progress { color: #000; background: white; border-color: #000; }
.badge-pending { color: white; background: rgba(0,0,0,.4); border-color: rgba(255,255,255,.5); }
.card-date {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: rgba(255,255,255,.5);
}
.node-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}
.node-card p {
  font-size: 12px;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.energy {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.energy-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
}
.energy-row span:last-child { font-family: 'Courier New', monospace; }
.energy-bar {
  height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  overflow: hidden;
}
.energy-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}
.connected {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.connected-label {
  display: block;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
}
.connected-list { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-family: inherit;
  font-size: 11px;
  padding: 4px 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.chip:hover { background: rgba(255,255,255,.1); color: white; }

/* ===== CTA MID — chamada entre Como Funciona e Depoimentos ===== */
.cta-mid {
  position: relative;
  z-index: 2;
  padding: var(--section-pad-y) var(--side-pad);
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.cta-mid__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 48px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(106, 210, 255, .14), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
  border: 1px solid rgba(106, 210, 255, .18);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, .35),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}
.cta-mid__inner::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(106, 210, 255, .55), transparent);
  pointer-events: none;
}
.cta-mid__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lux-blue);
  padding: 7px 16px;
  border: 1px solid rgba(106, 210, 255, .28);
  border-radius: 999px;
  background: rgba(106, 210, 255, .06);
  margin-bottom: 22px;
}
.cta-mid__title {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-mid__text {
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
  font-weight: 300;
}
.cta-mid__btn {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 16px 36px;
  background: var(--lux-blue);
  color: #0a1722;
  border-radius: 999px;
  box-shadow:
    0 12px 32px rgba(106, 210, 255, .32),
    0 0 0 1px rgba(106, 210, 255, .4);
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease;
}
.cta-mid__btn:hover {
  transform: translateY(-2px);
  background: #8ddfff;
  box-shadow:
    0 18px 44px rgba(106, 210, 255, .5),
    0 0 0 1px rgba(106, 210, 255, .6);
}
@media (max-width: 768px) {
  .cta-mid__inner { padding: 44px 28px; border-radius: 22px; }
}
@media (max-width: 560px) {
  .cta-mid__inner { padding: 36px 22px; }
  .cta-mid__text { font-size: 14px; }
  .cta-mid__btn { font-size: 13px; padding: 14px 28px; width: 100%; }
}

/* ===== COMO FUNCIONA — Feature Grid ===== */
.como {
  position: relative;
  background: transparent;
  padding: var(--section-pad-y) var(--side-pad);
  overflow: hidden;
  isolation: isolate;
  max-width: var(--max-w);
  margin: 0 auto;
}
.como-head {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}
.como-head .hl { color: var(--lux-blue); }
.como-head p {
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

.feature-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
/* ===== ORBE NEON (redesign) ===== */
.orbital-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
  height: clamp(460px, 62vw, 680px);
  margin: 12px auto 20px;
  pointer-events: none;
  isolation: isolate;
}

/* Aura central — somente um glow simétrico, sem manchas laterais */
.orb-aura {
  position: absolute;
  top: 50%; left: 50%;
  width: 70%; height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 50%, rgba(106,210,255,.16) 0%, rgba(106,210,255,.04) 35%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
/* Grid radial sutil */
.orb-grid {
  position: absolute;
  top: 50%; left: 50%;
  width: 320px; height: 320px;
  transform: translate(-50%, -50%);
  background:
    repeating-conic-gradient(from 0deg, rgba(106,210,255,0) 0deg, rgba(106,210,255,0) 88deg, rgba(106,210,255,.10) 90deg);
  -webkit-mask-image: radial-gradient(circle, black 0%, black 35%, transparent 70%);
          mask-image: radial-gradient(circle, black 0%, black 35%, transparent 70%);
  opacity: .35;
  z-index: 0;
}

/* Anéis concêntricos */
.orbital-stage .orbital-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  pointer-events: none;
}
.orbital-stage .r-outer {
  width: 300px; height: 300px;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(106, 210, 255, .35);
  animation: orbitSpinSlow 50s linear infinite;
  z-index: 1;
}
.orbital-stage .r-mid {
  width: 200px; height: 200px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(106, 210, 255, .28);
  box-shadow: inset 0 0 30px rgba(106, 210, 255, .08), 0 0 18px rgba(106, 210, 255, .12);
  z-index: 1;
}
.orbital-stage .r-inner {
  width: 120px; height: 120px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(106, 210, 255, .42);
  box-shadow: inset 0 0 20px rgba(106, 210, 255, .12);
  animation: orbitSpinSlow 30s linear infinite reverse;
  z-index: 1;
}
@keyframes orbitSpinSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Scan sweeping line */
.orb-scan {
  position: absolute;
  top: 50%; left: 50%;
  width: 300px; height: 300px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(106,210,255,0) 0deg, rgba(106,210,255,0) 320deg, rgba(106,210,255,.45) 358deg, rgba(106,210,255,0) 360deg);
  -webkit-mask: radial-gradient(circle, transparent 143px, black 145px, black 150px, transparent 152px);
          mask: radial-gradient(circle, transparent 143px, black 145px, black 150px, transparent 152px);
  animation: orbScan 6s linear infinite;
  z-index: 2;
  opacity: .9;
}
@keyframes orbScan {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Núcleo */
.orb-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 110px; height: 110px;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb-core-glow {
  position: absolute; inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,210,255,.55) 0%, rgba(106,210,255,.18) 40%, transparent 70%);
  animation: corePulse 3s ease-in-out infinite;
}
.orb-core-symbol {
  position: relative;
  width: 90px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(106, 210, 255, .85))
          drop-shadow(0 0 36px rgba(106, 210, 255, .35));
  animation: symbolFloat 6s ease-in-out infinite;
  z-index: 2;
}
@keyframes corePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.18); opacity: .65; }
}

/* Mini-cards orbitando — horizontal (ícone esquerda, título direita), fundo glass + LED */
.orb-card {
  position: absolute;
  top: 50%; left: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 300px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(106, 210, 255, .28);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, .4),
    inset 0 0 0 1px rgba(255, 255, 255, .06),
    0 0 24px rgba(106, 210, 255, .14);
  text-align: left;
  z-index: 5;
  pointer-events: auto;
  overflow: hidden;
  transition: opacity .4s ease, box-shadow .3s ease, border-color .3s ease, transform .3s ease;
}
/* Faixa LED no topo do card (efeito "tubo de luz") */
.orb-card::before {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(106,210,255,0) 0%,
    rgba(106,210,255,.85) 50%,
    rgba(106,210,255,0) 100%);
  filter: blur(.4px);
  pointer-events: none;
}
.orb-card:hover {
  border-color: rgba(106, 210, 255, .6);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, .5),
    inset 0 0 0 1px rgba(106, 210, 255, .25),
    0 0 0 1px rgba(106, 210, 255, .35),
    0 0 50px rgba(106, 210, 255, .35);
}
.orb-card-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(106,210,255,.22), rgba(42,168,224,.10));
  border: 1px solid rgba(106, 210, 255, .45);
  color: #6ad2ff;
  box-shadow: 0 0 14px rgba(106, 210, 255, .25), inset 0 0 8px rgba(106, 210, 255, .15);
}
.orb-card-icon svg { width: 26px; height: 26px; }
.orb-card-title {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .65), 0 0 4px rgba(106, 210, 255, .12);
  word-break: normal;
  overflow-wrap: break-word;
}

/* Faíscas extras orbitando */
.orb-spark {
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, #6ad2ff 45%, rgba(106,210,255,0) 85%);
  box-shadow: 0 0 8px rgba(106,210,255,.85), 0 0 18px rgba(106,210,255,.4);
  z-index: 3;
  pointer-events: none;
  transition: opacity .3s ease;
}
.orb-spark--inner {
  width: 5px; height: 5px;
  background: radial-gradient(circle, #ffffff 0%, #2aa8e0 50%, transparent 90%);
  box-shadow: 0 0 6px rgba(42,168,224,.85), 0 0 14px rgba(42,168,224,.35);
}

/* Tablet */
@media (max-width: 900px) {
  .orbital-stage {
    height: clamp(440px, 72vw, 620px);
    max-width: 680px;
    margin-bottom: 20px;
  }
  .orbital-stage .r-outer { width: 280px; height: 280px; }
  .orbital-stage .r-mid   { width: 188px; height: 188px; }
  .orbital-stage .r-inner { width: 112px; height: 112px; }
  .orb-scan {
    width: 280px; height: 280px;
    -webkit-mask: radial-gradient(circle, transparent 133px, black 135px, black 140px, transparent 142px);
            mask: radial-gradient(circle, transparent 133px, black 135px, black 140px, transparent 142px);
  }
  .orb-grid { width: 296px; height: 296px; }
  .orb-card { width: 230px; padding: 16px 18px; gap: 12px; }
  .orb-card-icon { width: 44px; height: 44px; }
  .orb-card-icon svg { width: 20px; height: 20px; }
  .orb-card-title { font-size: 12px; line-height: 1.35; }
}

/* Mobile — converte a orbe em coluna empilhada de cards (sem círculo) */
@media (max-width: 600px) {
  .orbital-stage {
    height: auto;
    max-width: 420px;
    margin: 24px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .orbital-stage .r-outer,
  .orbital-stage .r-mid,
  .orbital-stage .r-inner,
  .orb-scan,
  .orb-grid,
  .orb-aura,
  .orb-core,
  .orb-spark { display: none; }
  .orb-card {
    position: static;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    text-align: left;
    transform: none !important;
    opacity: 1 !important;
  }
  .orb-card-icon { width: 42px; height: 42px; flex-shrink: 0; }
  .orb-card-icon svg { width: 22px; height: 22px; }
  .orb-card-title { font-size: 13px; letter-spacing: .04em; }
}

/* Spotlight Glow Card — cores Lux (#6ad2ff = HSL 196°) — fundo glass */
.feature-card {
  --base: 196;
  --spread: 60;
  --radius: 20;
  --border: 2;
  --backdrop: rgba(255, 255, 255, .04);
  --size: 240;
  --outer: 1;
  --border-size: calc(var(--border) * 1px);
  --spot-size: calc(var(--size) * 1px);
  --hue: calc(var(--base) + (var(--xp, 0) * var(--spread)));
  --saturation: 95;
  --lightness: 70;

  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
  border-radius: calc(var(--radius) * 1px);
  border: var(--border-size) solid var(--backdrop);
  background-color: var(--backdrop);
  background-image: radial-gradient(
    var(--spot-size) var(--spot-size) at
    calc(var(--x, 0) * 1px) calc(var(--y, 0) * 1px),
    hsl(var(--hue) calc(var(--saturation) * 1%) calc(var(--lightness) * 1%) / .14),
    transparent 70%);
  background-size: calc(100% + (2 * var(--border-size))) calc(100% + (2 * var(--border-size)));
  background-position: 50% 50%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1rem 2rem -1rem #000, inset 0 0 0 1px rgba(255,255,255,.05);
  touch-action: none;
  transition: transform .3s ease;
}
.feature-card:hover { transform: translateY(-4px); }

/* Borda brilhante seguindo o cursor */
.feature-card::before,
.feature-card::after {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: calc(var(--border-size) * -1);
  border: var(--border-size) solid transparent;
  border-radius: calc(var(--radius) * 1px);
  background-size: calc(100% + (2 * var(--border-size))) calc(100% + (2 * var(--border-size)));
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0) border-box;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.feature-card::before {
  background-image: radial-gradient(
    calc(var(--spot-size) * .75) calc(var(--spot-size) * .75) at
    calc(var(--x, 0) * 1px) calc(var(--y, 0) * 1px),
    hsl(var(--hue) calc(var(--saturation) * 1%) 60% / 1),
    transparent 100%);
  filter: brightness(1.6);
}
.feature-card::after {
  background-image: radial-gradient(
    calc(var(--spot-size) * .5) calc(var(--spot-size) * .5) at
    calc(var(--x, 0) * 1px) calc(var(--y, 0) * 1px),
    hsl(0 0% 100% / .9), transparent 100%);
}

/* Halo externo desfocado */
.feature-card .glow-inner {
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius) * 1px);
  filter: blur(calc(var(--border-size) * 10));
  background: radial-gradient(
    calc(var(--spot-size) * .8) calc(var(--spot-size) * .8) at
    calc(var(--x, 0) * 1px) calc(var(--y, 0) * 1px),
    hsl(var(--hue) calc(var(--saturation) * 1%) 65% / .35),
    transparent 60%);
  opacity: var(--outer);
  pointer-events: none;
  z-index: -1;
}

.feature-card > * { position: relative; z-index: 1; }
.feature-icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(106, 210, 255, .3);
  background: rgba(106, 210, 255, .12);
  color: var(--lux-blue);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-step {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--lux-blue);
  position: absolute;
  top: 28px;
  right: 28px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: white;
  line-height: 1.2;
  padding-right: 48px; /* evita colisão com .feature-step posicionado absoluto */
}
.feature-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .82);
  font-weight: 400;
}

/* Variante motivo-card — maior destaque e legibilidade */
.motivo-card {
  --backdrop: rgba(10, 23, 34, .68);
  --border: 1;
  min-height: 260px;
  padding: 32px;
  border: 1px solid rgba(106, 210, 255, .18);
  box-shadow: 0 18px 36px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.04);
}
.motivo-card .feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(106, 210, 255, .35);
  background: linear-gradient(135deg, rgba(106,210,255,.18), rgba(42,168,224,.10));
  box-shadow: 0 4px 16px rgba(106, 210, 255, .15);
}
.motivo-card .feature-icon svg { width: 26px; height: 26px; }
.motivo-card h3 {
  font-size: 20px;
  line-height: 1.3;
  padding-right: 0;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.motivo-card p {
  font-size: 14.5px;
  color: rgba(255,255,255,.92);
  line-height: 1.6;
}
.motivo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(106, 210, 255, .45);
  box-shadow: 0 22px 50px rgba(0,0,0,.55),
              0 0 0 1px rgba(106, 210, 255, .35),
              0 0 60px rgba(106, 210, 255, .25);
}
@media (max-width: 560px) {
  .motivo-card { padding: 24px; min-height: 0; }
  .motivo-card h3 { font-size: 17px; }
  .motivo-card p { font-size: 14px; }
}

/* ===== DEPOIMENTOS — Scrolling Columns ===== */
.testimonials {
  position: relative;
  padding: var(--section-pad-y) var(--side-pad);
  max-width: var(--max-w);
  margin: 0 auto;
  overflow: hidden;
}
.testi-head {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 24px;
}
.testi-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border: 1px solid rgba(106, 210, 255, .25);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  background: rgba(106, 210, 255, .06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 22px;
  box-shadow: 0 0 12px rgba(106, 210, 255, .12) inset;
}
.testi-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lux-blue);
  box-shadow: 0 0 8px var(--lux-blue);
  animation: badgeBlink 2s ease-in-out infinite;
}
@keyframes badgeBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
.testi-head p {
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
}

.testi-cols {
  display: flex;
  justify-content: center;
  gap: 24px;
  height: 720px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
          mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}
.testi-col {
  width: 320px;
  overflow: hidden;
  position: relative;
}
.col-md { display: none; }
.col-lg { display: none; }
@media (min-width: 768px) {
  .col-md { display: block; }
}
@media (min-width: 1100px) {
  .col-lg { display: block; }
}

.testi-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: testiScroll var(--dur, 30s) linear infinite;
  will-change: transform;
}
@keyframes testiScroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.testi-track:hover { animation-play-state: paused; }

.testi-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  padding: 30px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .25), 0 0 0 1px rgba(255, 255, 255, .03) inset;
  flex-shrink: 0;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.testi-card:hover {
  border-color: rgba(106, 210, 255, .25);
  box-shadow: 0 22px 44px rgba(0, 0, 0, .35), 0 0 0 1px rgba(106, 210, 255, .15) inset;
}
.testi-card p {
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.testi-person img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(106, 210, 255, .3);
  object-fit: cover;
}
.testi-person strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: white;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.testi-person span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  letter-spacing: -.01em;
}

/* ===== TRUST — Sparkles + Logo Slider ===== */
.trust {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: var(--section-pad-y) var(--side-pad);
  max-width: var(--max-w);
  margin: 0 auto;
  isolation: isolate;
  text-align: center;
}
.trust-sparkles { display: none; }
/* Halo radial central — destaca os sparkles */
.trust-glow { display: none; }
/* "Hill" inferior — borda curva com glow azul */
.trust-hill { display: none; }

.trust-inner {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
}
.trust-inner h2 { margin-bottom: 18px; }
.trust-lead {
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.6;
  font-weight: 300;
}

/* Slider infinito */
.trust-slider {
  position: relative;
  height: 96px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}
.trust-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  height: 100%;
  animation: trustScroll 60s linear infinite;
  will-change: transform;
}
.trust-track:hover { animation-play-state: paused; }
@keyframes trustScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-logo {
  flex-shrink: 0;
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: .95;
  filter: brightness(0) invert(1);
  transition: opacity .3s ease, filter .3s ease, transform .3s ease;
}
.trust-logo:hover {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 16px rgba(106, 210, 255, .6));
  transform: scale(1.06);
}

/* Bordas com fade — substituídas pela mask no .trust-slider */
.trust-fade { display: none; }

@media (max-width: 768px) {
  .trust { padding: var(--section-pad-y) var(--side-pad); }
  .trust-lead { font-size: 14px; margin-bottom: 24px; }
  .trust-track { gap: 48px; animation-duration: 45s; }
  .trust-logo { height: 42px; max-width: 140px; }
  .trust-slider { height: 76px; }
}

/* ===== CTA FINAL ===== */
.cta {
  position: relative;
  padding: var(--section-pad-y) var(--side-pad) 0;
  overflow: hidden;
  max-width: var(--max-w);
  margin: 0 auto;
  isolation: isolate;
}
.cta-bg,
.aurora-bg { display: none; }

/* Aurora background (desativado) — mantido só como referência */
.aurora-bg-disabled {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.aurora-bg__layer {
  --aurora-white: #ffffff;
  --aurora-dark: #000000;
  --aurora-c1: #3b82f6;   /* blue-500 */
  --aurora-c2: #a5b4fc;   /* indigo-300 */
  --aurora-c3: #93c5fd;   /* blue-300 */
  --aurora-c4: #ddd6fe;   /* violet-200 */
  --aurora-c5: #6ad2ff;   /* lux-blue */
  position: absolute;
  inset: -10px;
  pointer-events: none;
  filter: blur(10px);
  opacity: .55;
  will-change: transform;
  background-image:
    repeating-linear-gradient(100deg, var(--aurora-dark) 0%, var(--aurora-dark) 7%, transparent 10%, transparent 12%, var(--aurora-dark) 16%),
    repeating-linear-gradient(100deg, var(--aurora-c1) 10%, var(--aurora-c2) 15%, var(--aurora-c3) 20%, var(--aurora-c4) 25%, var(--aurora-c5) 30%);
  background-size: 300% 200%, 200% 100%;
  background-position: 50% 50%, 50% 50%;
  -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
          mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
}
.aurora-bg__layer::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: inherit;
  background-size: 200% 100%, 100% 100%;
  background-attachment: fixed;
  mix-blend-mode: difference;
  animation: aurora 60s linear infinite;
}
@keyframes aurora {
  from { background-position: 50% 50%, 50% 50%; }
  to   { background-position: 350% 50%, 350% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .aurora-bg__layer::after { animation: none; }
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}
.cta-text {
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.7;
  font-weight: 300;
}
.cta-strong {
  color: white;
  font-weight: 600;
  font-size: 17px;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: -.005em;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
  border-radius: 28px 28px 0 0;
  padding: 32px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .6);
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, transparent, var(--lux-blue), transparent);
  opacity: .55;
}
.footer .brand img {
  height: 30px;
  transition: transform .3s ease;
}
.footer .brand:hover img { transform: scale(1.05); }
.footer .btn-primary {
  background: linear-gradient(90deg, var(--lux-blue), var(--lux-blue-2));
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .01em;
  padding: 14px 32px;
  font-size: 14px;
  box-shadow: 0 8px 22px -4px rgba(106, 210, 255, .35);
}
.footer .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -4px rgba(106, 210, 255, .5);
  filter: brightness(1.05);
}

/* ===== RESPONSIVE ===== */
/* Tablet/laptop pequeno (1100px e abaixo) */
@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .testi-cols { height: clamp(560px, 80vh, 720px); }
}

/* Tablet (1000px e abaixo) */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; }
  .map-card { width: 240px; height: 150px; }
  .billboard { width: 160px; height: 70px; }
  .topbar { grid-template-columns: 1fr auto; }
  .topnav { display: none; }
  .top-extra { display: none; }
  .orbital { height: clamp(420px, 70vw, 560px); max-width: 100%; }
  .orbital-ring { width: clamp(240px, 60vw, 360px); height: clamp(240px, 60vw, 360px); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-content { padding: clamp(72px, 11vh, 120px) 24px 44px; }
  .wa-cta {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 70px;
    height: 70px;
  }
  .wa-core { width: 42px; height: 42px; }
  .wa-icon { width: 20px; height: 20px; }
  .topbar { padding-left: 24px; padding-right: 24px; }
  .testi-cols { gap: 18px; }
  .footer { flex-direction: column; gap: 16px; padding: 24px; text-align: center; }
  .node-card { width: min(240px, 76vw); padding: 14px; }
}

/* Tablet portrait (768px e abaixo) */
@media (max-width: 768px) {
  :root { --section-pad-y: clamp(32px, 4.5vw, 52px); }

  /* Hero tablet — foto estática */
  .hero-video { display: none; }
  .hero-mobile-bg { display: block; }
  .hero-logo { height: 30px; margin-bottom: 22px; }
  .hero-h1 { font-size: clamp(30px, 7vw, 48px); line-height: 1.1; }
  .hero-desc { font-size: 14px; margin-bottom: 20px; }
  .hero-actions { gap: 10px; }
  .btn-outline, .btn-grad { padding: 11px 22px; font-size: 12px; }

  /* Seções */
  .hl-display { font-size: clamp(28px, 6vw, 48px); }
  .motivos h2.hl-display, .como h2.hl-display,
  .testi-head h2.hl-display, .cine-footer h2.hl-display { font-size: clamp(26px, 6vw, 44px); }
  .feature-card { padding: 22px; }
  .feature-step { top: 22px; right: 22px; font-size: 10px; }
  .testi-cols { height: clamp(480px, 75vh, 640px); }
  .node-card { width: min(220px, 70vw); }
  .node-title { font-size: 10px; top: 46px; }
  .symbol-top { width: 40px; }
  .orb-core-symbol { width: 64px; }

  /* Footer */
  .cine-logo { height: 26px; }

  /* Marquee */
  .section-marquee { transform: rotate(-1deg) scaleX(1.06); }
}

/* Mobile (560px e abaixo) */
@media (max-width: 560px) {
  :root { --side-pad: 20px; --section-pad-y: clamp(28px, 4vw, 44px); }

  /* Hero mobile — foto estática */
  .hero-video { display: none; }
  .hero-mobile-bg { display: block; }
  .shader-hero { min-height: 100svh; }
  .hero-content {
    padding: clamp(48px, 10vh, 72px) 20px clamp(40px, 8vh, 60px);
    gap: 0;
    justify-content: space-between;
  }
  .hero-logo { height: 26px; margin-bottom: 0; align-self: center; }
  .hero-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  .hero-h1 {
    font-size: clamp(30px, 9vw, 46px);
    line-height: 1.1;
    margin-bottom: 14px;
    letter-spacing: -.02em;
  }
  .hero-desc {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 100%;
    color: rgba(255,255,255,.8);
  }
  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions .btn-grad {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
  }
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 13px;
  }

  /* Seções */
  .hl-display { font-size: clamp(24px, 7.5vw, 38px); line-height: 1.1; }
  .motivos h2.hl-display, .como h2.hl-display,
  .testi-head h2.hl-display, .cine-footer h2.hl-display {
    font-size: clamp(24px, 7.5vw, 36px);
    margin-bottom: 16px;
  }
  .motivos .lead { font-size: 14px; margin-bottom: 28px; }
  .como-head p { font-size: 14px; }

  /* Feature grid */
  .feature-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card { padding: 20px; }
  .feature-card h3 { font-size: 15px; }

  /* Orbital */
  .orbital { height: clamp(340px, 88vw, 440px); }
  .orbital-ring { width: clamp(190px, 68vw, 270px); height: clamp(190px, 68vw, 270px); }
  .orbital-core { width: 50px; height: 50px; }
  .node-dot { width: 32px; height: 32px; font-size: 13px; }
  .orbital-node { margin-left: -16px; margin-top: -16px; }
  .node-glow { width: 52px; height: 52px; }
  .node-card { width: min(188px, 64vw); padding: 11px; }
  .node-card h4 { font-size: 12px; }
  .node-card p { font-size: 11px; }

  /* Testemunhos */
  .testi-card { padding: 22px; border-radius: 18px; }
  .testi-cols { height: clamp(400px, 68vh, 540px); }

  /* Parceiros */
  .billboard { width: 120px; height: 50px; right: 12px; }
  .map-card { width: 180px; height: 120px; bottom: 10px; right: 10px; }

  /* CTA footer */
  .cine-logo { height: 22px; }
  .cine-main { padding: clamp(36px, 8vh, 60px) 20px 24px; gap: 20px; }
  .cine-pill { padding: 12px 22px; font-size: 13px; }
  .cine-pill--primary { width: 100%; justify-content: center; }
  .cine-bar { flex-direction: column; text-align: center; gap: 10px; padding: 16px 20px 22px; }

  /* Marquee */
  .section-marquee { transform: rotate(-1deg) scaleX(1.04); padding: 10px 0; }

  /* Misc */
  .footer { padding: 20px; border-radius: 18px 18px 0 0; }
  .footer .btn-primary { width: 100%; padding: 14px 20px; font-size: 14px; }

  /* WhatsApp */
  .wa-cta {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 60px; height: 60px;
  }
  .wa-core { width: 38px; height: 38px; }
  .wa-icon { width: 18px; height: 18px; }
}

/* Telas muito estreitas (390px) */
@media (max-width: 390px) {
  .hero-logo { height: 22px; }
  .hero-h1 { font-size: clamp(26px, 8.5vw, 34px); line-height: 1.12; }
  .hl-display { font-size: clamp(22px, 7vw, 28px); }
  .motivos h2.hl-display, .como h2.hl-display,
  .testi-head h2.hl-display, .cine-footer h2.hl-display { font-size: clamp(22px, 7vw, 28px); }
  .section-marquee { display: none; }
}

/* Telas legadas estreitas (360px) */
@media (max-width: 360px) {
  .hero-h1 { font-size: 26px; }
  .hero-desc { font-size: 12px; }
}

/* Telas largas (>1400px) — manter conteúdo enquadrado */
@media (min-width: 1400px) {
  :root { --max-w: 1320px; }
}

/* Desktops 4K — limitar tipografia */
@media (min-width: 1920px) {
  .hero-h1 { font-size: 88px; }
  .hl-display { font-size: 72px; }
}

/* Touch — neutralizar hover transforms que parecem "travar" o card */
@media (hover: none) {
  .feature-card:hover { transform: none; }
  .btn-outline:hover, .btn-grad:hover { transform: none; }
  .testi-track:hover { animation-play-state: running; }
}

/* Acessibilidade — respeitar preferência por menos movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .testi-track { animation: none !important; }
  .mesh-1, .mesh-2 { animation: none !important; }
  .pulse-ring { display: none; }
  .hero-video { display: none; }
  .shader-hero { background: linear-gradient(135deg, var(--navy) 0%, #14304a 60%, var(--navy) 100%); }
}

/* Modo paisagem em mobile — comprimir hero */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .shader-hero { min-height: 520px; }
  .hero-content { padding-top: 8px; padding-bottom: 20px; }
  .hero-h1 { font-size: clamp(22px, 4.5vw, 32px); line-height: 1.1; margin-bottom: 8px; }
  .hero-desc { margin-bottom: 10px; font-size: 12px; }
  .hero-actions .btn-outline, .hero-actions .btn-grad { padding: 9px 18px; font-size: 12px; }
  .section-marquee { display: none; }
}

/* ===== CINEMATIC FOOTER ===== */
.cine-footer {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  padding: 0;
  max-width: none;
  margin: 0;
}

/* Aurora */
.cine-aurora {
  position: absolute;
  top: 50%; left: 50%;
  width: 80vw; height: 60vh;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle at 50% 50%,
    rgba(106,210,255,.13) 0%,
    rgba(42,168,224,.07) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(70px);
  animation: cineAurora 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes cineAurora {
  0%   { transform: translate(-50%,-50%) scale(1);    opacity: .6; }
  100% { transform: translate(-50%,-50%) scale(1.14); opacity: 1;  }
}

.cine-grid { display: none; }

/* Giant background text */
.cine-giant {
  position: absolute;
  bottom: -4vh; left: 50%;
  transform: translateX(-50%);
  font-size: 30vw;
  font-weight: 900;
  line-height: .75;
  letter-spacing: -.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(106,210,255,.07);
  background: linear-gradient(180deg, rgba(106,210,255,.13) 0%, transparent 60%);
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  will-change: transform, opacity;
}

/* Diagonal Marquee — footer */
.cine-marquee {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(106,210,255,.1);
  border-bottom: 1px solid rgba(106,210,255,.1);
  background: rgba(10,23,34,.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 13px 0;
  margin-top: clamp(16px, 2.5vw, 28px);
  transform: rotate(-1.4deg) scaleX(1.12);
  pointer-events: none;
}
.cine-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: cineMarquee 40s linear infinite;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.cine-marquee__track span { padding: 0 20px; }
.cine-sep { color: var(--lux-blue) !important; opacity: .45; padding: 0 4px !important; }
@keyframes cineMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Main content */
.cine-main {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(40px,6vh,72px) var(--side-pad) 32px;
  gap: 24px;
}


.cine-logo {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 0 16px rgba(106,210,255,.3));
}

/* CTA action row */
.cine-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Secondary links row */
.cine-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Glass Pill */
.cine-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.72);
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(106,210,255,.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 10px 30px -10px rgba(0,0,0,.45),
    inset 0 1px 1px rgba(255,255,255,.07),
    inset 0 -1px 2px rgba(0,0,0,.28);
  text-decoration: none;
  cursor: pointer;
  transition: background .3s ease, border-color .3s ease, color .3s ease, box-shadow .3s ease;
  will-change: transform;
}
.cine-pill:hover {
  background: linear-gradient(145deg, rgba(106,210,255,.13), rgba(106,210,255,.04));
  border-color: rgba(106,210,255,.38);
  color: #fff;
  box-shadow:
    0 20px 44px -10px rgba(0,0,0,.5),
    inset 0 1px 1px rgba(106,210,255,.18);
}
.cine-pill--primary {
  background: var(--lux-blue);
  color: #0a1722;
  border-color: transparent;
  font-weight: 700;
  box-shadow:
    0 12px 32px rgba(106, 210, 255, .32),
    0 0 0 1px rgba(106, 210, 255, .4);
}
.cine-pill--primary:hover {
  background: #8ddfff;
  color: #06111c;
  border-color: transparent;
  box-shadow:
    0 18px 44px rgba(106, 210, 255, .5),
    0 0 0 1px rgba(106, 210, 255, .6);
}
.cine-pill--sm {
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
}

/* Bottom bar */
.cine-bar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(20px,5vw,64px) 20px;
  border-top: 1px solid rgba(106,210,255,.07);
}
.cine-copy {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.cine-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(106,210,255,.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.cine-heart {
  font-size: 13px;
  color: #ff4d6d;
  filter: drop-shadow(0 0 5px rgba(255,77,109,.55));
  animation: cineHeartbeat 2s cubic-bezier(.25,1,.5,1) infinite;
  display: inline-block;
}
@keyframes cineHeartbeat {
  0%,100% { transform: scale(1); }
  15%,45% { transform: scale(1.28); }
  30%     { transform: scale(1); }
}
.cine-top {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(106,210,255,.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(255,255,255,.45);
  cursor: pointer;
  transition: color .3s ease, border-color .3s ease, background .3s ease;
  will-change: transform;
  flex-shrink: 0;
}
.cine-top:hover {
  color: #fff;
  border-color: rgba(106,210,255,.44);
  background: rgba(106,210,255,.1);
}
.cine-top svg { transition: transform .3s ease; }
.cine-top:hover svg { transform: translateY(-3px); }

@media (max-width: 768px) {
  .cine-heading { font-size: clamp(44px, 13vw, 76px); }
  .cine-bar { flex-direction: column; text-align: center; gap: 14px; }
  .cine-giant { font-size: 44vw; }
  .cine-main { padding-top: clamp(80px,14vh,120px); gap: 28px; }
}
@media (max-width: 480px) {
  .cine-pill--primary { width: 100%; justify-content: center; }
  .cine-heading { font-size: clamp(40px, 14vw, 60px); }
}
@media (prefers-reduced-motion: reduce) {
  .cine-aurora, .cine-marquee__track, .cine-heart { animation: none !important; }
}

/* Print — simplificação */
@media print {
  .bg-shader, .page-spot, .wa-cta, .testimonials, .hero-video, .hero-video-overlay { display: none !important; }
  body { background: white; color: black; }
  .hero-h1, .hl-display { color: black !important; }
  .hero-h1 .shine, .hl-display .shine { -webkit-text-fill-color: black !important; background: none !important; filter: none !important; }
}
