/* ==========================================================================
   AutoNex Clean — Camada Premium v32
   Conceito: "Night Garage" — estúdio de detalhamento iluminado por LED.
   Toda a página vive no escuro; as seções mudam por profundidade e
   temperatura de luz, nunca invertendo para branco.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --nx-void: #04060a;
  --nx-graphite: #080b11;
  --nx-surface: #0c1119;
  --nx-surface-2: #0f151f;

  --nx-neon: #2fe3ec;
  --nx-neon-deep: #00aeb8;
  --nx-electric: #3b7bff;

  --nx-text: #e9eff7;
  --nx-muted: #8b97a9;
  --nx-faint: #5f6b7c;

  --nx-line: rgba(255, 255, 255, 0.08);
  --nx-line-soft: rgba(255, 255, 255, 0.05);

  --nx-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --nx-body: "Manrope", "Segoe UI", system-ui, sans-serif;

  --nx-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Propriedades animáveis (movimento suave dos cards) */
@property --nx-rx { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --nx-ry { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --nx-lift { syntax: "<length>"; inherits: false; initial-value: 0px; }
@property --nx-scale { syntax: "<number>"; inherits: false; initial-value: 1; }

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
body {
  background: var(--nx-void);
  color: var(--nx-text);
  font-family: var(--nx-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#root h1,
#root h2,
#root h3,
#root .monthly-value strong,
#root .service-price strong,
#root .hero-trust b,
#root .condo-stats strong {
  font-family: var(--nx-display);
  font-variant-ligatures: none;
}

/* Rótulos / eyebrows — menores e mais espaçados */
#root .eyebrow,
#root .section-label {
  color: #6f8391;
  font-family: var(--nx-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
}
#root .eyebrow { color: #79cfd6; }

/* Foco visível em todo o site */
#root a:focus-visible,
#root button:focus-visible,
.nx-wa:focus-visible {
  outline: 2px solid var(--nx-neon);
  outline-offset: 3px;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   3. Barra inicial (topbar premium)
   -------------------------------------------------------------------------- */
#root .topbar {
  height: 70px;
  grid-template-columns: 210px 1fr auto;
  gap: 24px;
  background: linear-gradient(180deg, rgba(4, 6, 10, 0.82), rgba(4, 6, 10, 0.52));
  -webkit-backdrop-filter: blur(26px) saturate(160%);
  backdrop-filter: blur(26px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: height 0.45s var(--nx-ease), background 0.45s ease,
    box-shadow 0.45s ease;
}

/* Fio de luz inferior — acende ao rolar */
#root .topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(47, 227, 236, 0.05) 12%,
    rgba(47, 227, 236, 0.55) 50%,
    rgba(47, 227, 236, 0.05) 88%,
    transparent
  );
  opacity: 0.25;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

body.nx-scrolled #root .topbar {
  height: 60px;
  background: rgba(5, 7, 11, 0.93);
  box-shadow: 0 18px 50px -30px rgba(0, 0, 0, 0.95);
}
body.nx-scrolled #root .topbar::after { opacity: 1; }

#root .topbar .brand-logo {
  width: 168px;
  height: 46px;
  opacity: 0.96;
  transition: width 0.45s var(--nx-ease), height 0.45s var(--nx-ease),
    filter 0.4s ease;
}
#root .brand:hover .brand-logo {
  filter: drop-shadow(0 0 14px rgba(47, 227, 236, 0.4));
}
body.nx-scrolled #root .topbar .brand-logo { width: 148px; height: 40px; }

/* Navegação */
#root .nav { gap: 30px; }
#root .nav a {
  position: relative;
  color: #7d8b9d;
  font-family: var(--nx-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 0;
  transition: color 0.3s ease;
}
#root .nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nx-neon), transparent);
  box-shadow: 0 0 10px rgba(47, 227, 236, 0.8);
  transform: translateX(-50%);
  transition: width 0.4s var(--nx-ease);
}
#root .nav a:hover { color: #fff; }
#root .nav a:hover::after { width: 100%; }

/* Ações do cabeçalho */
#root .header-actions { gap: 12px; }

#root .install-button.compact {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--nx-line);
  border-radius: 999px;
  color: #93a2b5;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 16px;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
#root .install-button.compact:hover {
  color: #dff7f9;
  border-color: rgba(47, 227, 236, 0.45);
  background: rgba(47, 227, 236, 0.06);
}

#root .header-access {
  position: relative;
  min-width: 0;
  gap: 12px;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(47, 227, 236, 0.05);
  border: 1px solid rgba(47, 227, 236, 0.32);
  color: #d9f6f8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.35s ease, border-color 0.35s ease,
    box-shadow 0.35s ease, transform 0.35s var(--nx-ease);
}
#root .header-access:hover {
  background: rgba(47, 227, 236, 0.12);
  border-color: rgba(47, 227, 236, 0.7);
  box-shadow: 0 0 0 1px rgba(47, 227, 236, 0.12),
    0 14px 34px -16px rgba(47, 227, 236, 0.75);
  transform: translateY(-1px);
}

/* Botão hambúrguer */
#root .menu-button i {
  background: #cfd9e6;
  transition: transform 0.35s var(--nx-ease), background 0.3s ease;
}
#root .menu-button:hover i { background: var(--nx-neon); }

/* --------------------------------------------------------------------------
   4. Gestão sai da barra inicial — permanece apenas no rodapé
   -------------------------------------------------------------------------- */
#root .topbar .header-restricted,
#root .mobile-accesses button.restricted {
  display: none !important;
}

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */
#root .hero {
  padding-top: 104px;
  background: radial-gradient(circle at 76% 38%, rgba(24, 68, 132, 0.3), transparent 30%),
    linear-gradient(115deg, #05070a 0 51%, #070b11 51% 100%);
}

#root .hero h1 {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 200;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 20px 0;
  max-width: 560px;
}
#root .hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(122, 200, 210, 0.55);
  text-shadow: 0 0 32px rgba(47, 227, 236, 0.12);
}
#root .hero-content > p {
  font-size: 14px;
  line-height: 1.8;
  color: #8a95a7;
  max-width: 480px;
}

#root .primary-button {
  min-width: 0;
  gap: 16px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(86, 225, 231, 0.45);
  background: linear-gradient(135deg, #00c3d0, #067884);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 18px 40px -18px rgba(0, 174, 184, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.4s var(--nx-ease), box-shadow 0.4s ease;
}
#root .primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px -18px rgba(47, 227, 236, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

#root .text-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8b98aa;
  transition: color 0.3s ease;
}
#root .text-link:hover { color: var(--nx-neon); }

#root .hero-trust { border-top: 1px solid var(--nx-line); }
#root .hero-trust b {
  font-size: 15px;
  font-weight: 300;
  color: #dfe7f2;
}
#root .hero-trust span { font-size: 8px; letter-spacing: 0.14em; }

/* --------------------------------------------------------------------------
   6. Seções claras → ambiente escuro contínuo
   -------------------------------------------------------------------------- */

/* 6.1 Intro + passos */
#root .intro {
  color: var(--nx-text);
  background: linear-gradient(180deg, #070a10, #0a0e15 48%, #070a10);
  padding-block: 90px 104px;
}
#root .intro h2 {
  font-size: clamp(21px, 2.5vw, 32px);
  font-weight: 200;
  letter-spacing: -0.025em;
  color: #eaf1f8;
}
#root .intro-copy { color: #8b97a9; font-size: 14px; line-height: 1.85; }

#root .steps {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--nx-line-soft);
  perspective: 1400px;
}
#root .steps article {
  background: var(--nx-surface);
  padding: 26px 24px;
  min-height: 200px;
}
#root .steps article > span {
  color: var(--nx-neon);
  font-family: var(--nx-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
}
#root .steps h3 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #e6edf6;
  margin: 34px 0 10px;
}
#root .steps p { color: #808d9f; font-size: 12.5px; line-height: 1.75; }

/* 6.2 Planos */
#root .plans {
  color: var(--nx-text);
  background: linear-gradient(180deg, #05080d, #0a0e16 55%, #06090f);
  padding-block: 96px 112px;
}
#root .plans h2,
#root .service-copy h2,
#root .vonixx h2,
#root .condos h2,
#root .access h2 {
  font-size: clamp(23px, 2.9vw, 38px);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 14px 0 20px;
  color: #eaf1f8;
}
#root .plans-heading > p { color: #8b97a9; font-size: 13.5px; line-height: 1.85; }

#root .plan-grid { perspective: 1600px; }

#root .plan-card {
  background: linear-gradient(165deg, #0e141d, #080c13);
  border: 1px solid var(--nx-line);
  border-radius: 18px;
  padding: 30px 28px;
  color: var(--nx-text);
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.95);
}
#root .plan-card.featured {
  background: linear-gradient(165deg, #0b1626, #060b13);
  border-color: rgba(47, 227, 236, 0.28);
  box-shadow: 0 40px 90px -45px rgba(0, 0, 0, 1),
    0 0 60px -34px rgba(47, 227, 236, 0.7);
}
#root .plan-number {
  color: var(--nx-neon);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.26em;
}
#root .plan-card h3 {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #eef4fb;
  margin: 6px 0 16px;
}
#root .plan-card > p { color: #75808f; font-size: 9px; letter-spacing: 0.2em; }
#root .monthly-value strong {
  font-size: 44px;
  font-weight: 200;
  letter-spacing: -0.045em;
  color: #f2f7fc;
}
#root .monthly-value small { color: #7b8698; font-size: 11px; }
#root .monthly-value span { color: #75808f; font-size: 10px; }
#root .plan-card li {
  color: #8d99aa;
  font-size: 11.5px;
  border-bottom: 1px solid var(--nx-line-soft);
  padding: 10px 0;
}
#root .plan-card li::before { color: var(--nx-neon); }
#root .plan-card > small { color: #64707f; font-size: 8px; }
#root .popular {
  background: rgba(47, 227, 236, 0.14);
  border: 1px solid rgba(47, 227, 236, 0.5);
  color: #d9f6f8;
  font-size: 7.5px;
  letter-spacing: 0.2em;
  box-shadow: 0 0 20px -6px rgba(47, 227, 236, 0.8);
}
#root .plan-card button,
#root .condo-copy button {
  border-radius: 999px;
  background: linear-gradient(135deg, #00c3d0, #067884);
  border: 1px solid rgba(86, 225, 231, 0.4);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 20px;
  transition: transform 0.35s var(--nx-ease), box-shadow 0.35s ease;
}
#root .plan-card button:hover,
#root .condo-copy button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -18px rgba(47, 227, 236, 0.85);
}

#root .plan-summary { border-left-color: var(--nx-line); border-top-color: var(--nx-line); }
#root .plan-summary h3 {
  font-size: 19px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #eef4fb;
}
#root .plan-summary > p:not(.section-label) { color: #838f9f; font-size: 12.5px; }
#root .plan-summary > strong { color: #e6edf6; }
#root .plan-summary > span { color: #75808f; font-size: 9.5px; }
#root .plan-summary a {
  color: var(--nx-neon);
  border-top: 1px solid var(--nx-line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* 6.3 Serviço + Vonixx (já escuros — apenas refino) */
#root .service-copy > p:not(.section-label) { font-size: 13.5px; color: #8b97a9; }
#root .service-copy li { font-size: 12.5px; color: #b6c0cd; border-bottom-color: var(--nx-line-soft); }
#root .service-price strong { font-size: 40px; font-weight: 200; letter-spacing: -0.045em; }
#root .service-price strong small { font-size: 13px; }
#root .vonixx-copy > p:not(.section-label) { font-size: 13.5px; color: #8b97a9; }
#root .quality-seal { width: 128px; height: 128px; }
#root .quality-seal strong { font-size: 20px; color: var(--nx-neon); }


/* 6.3b Vonixx — vitrine de produtos (no lugar da letra "V") */
#root .vonixx > div:first-child {
  background: radial-gradient(circle at 50% 48%, rgba(47, 227, 236, 0.1), transparent 46%);
  min-height: 560px;
}
#root .product-orbit { border-color: rgba(47, 227, 236, 0.13); }

#root .vonixx > div:first-child > strong {
  position: relative;
  display: block;
  width: min(560px, 86%);
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  border: 1px solid rgba(47, 227, 236, 0.22);
  background: url("/vonixx-produtos-autonex.webp") center / cover no-repeat, #06090e;
  font-size: 0;
  color: transparent;
  overflow: hidden;
  transform: perspective(1400px) rotateY(-7deg) rotateX(3deg);
  box-shadow: 0 60px 110px -50px rgba(0, 0, 0, 1),
    0 0 90px -44px rgba(47, 227, 236, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 0.8s var(--nx-ease), box-shadow 0.8s ease,
    border-color 0.8s ease;
}

/* Moldura neon que percorre a borda */
#root .vonixx > div:first-child > strong::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    transparent 10%,
    rgba(47, 227, 236, 0.9) 34%,
    rgba(59, 123, 255, 0.6) 52%,
    transparent 80%
  );
  background-size: 260% 260%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.55;
  animation: nx-edge-sweep 11s linear infinite;
  pointer-events: none;
}

/* Frase discreta */
#root .vonixx > div:first-child > strong::after {
  content: "Produtos Vonixx • presentes em 40 países";
  position: absolute;
  top: 16px;
  right: 16px;
  max-width: calc(100% - 32px);
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(5, 8, 13, 0.72);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(47, 227, 236, 0.26);
  color: #d3f2f5;
  font-family: var(--nx-body);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

#root .vonixx > div:first-child > strong:hover {
  transform: perspective(1400px) rotateY(-2.5deg) rotateX(1deg) translateY(-7px)
    scale(1.012);
  border-color: rgba(47, 227, 236, 0.45);
  box-shadow: 0 70px 120px -50px rgba(0, 0, 0, 1),
    0 0 110px -34px rgba(47, 227, 236, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
#root .vonixx > div:first-child > strong:hover::before { opacity: 1; }

/* Em telas de toque o painel respira sozinho */
@media (hover: none) {
  #root .vonixx > div:first-child > strong {
    animation: nx-vonixx-float 10s ease-in-out infinite;
  }
}
@keyframes nx-vonixx-float {
  0%, 100% { transform: perspective(1400px) rotateY(-7deg) rotateX(3deg) translateY(0); }
  50% { transform: perspective(1400px) rotateY(-5deg) rotateX(1.8deg) translateY(-9px); }
}


/* 6.3c Serviço — composição central, sem o comparativo antes/depois */
#root .service {
  grid-template-columns: 1fr;
  place-items: center;
  min-height: 600px;
  position: relative;
  background: #070a0f;
}

/* Luz central sobre grade discreta, esmaecendo nas bordas */
#root .service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 44%, rgba(47, 227, 236, 0.09), transparent 46%),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 50% 44%, #000 8%, transparent 62%);
  mask-image: radial-gradient(circle at 50% 44%, #000 8%, transparent 62%);
  pointer-events: none;
}

#root .service-visual { display: none !important; }

#root .service-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(760px, 100%);
  justify-self: center;
  align-self: center;
  margin: 0;
  padding: 104px clamp(24px, 6vw, 56px);
  text-align: center;
}

/* Filamento de luz que abre a composição */
#root .service-copy::before {
  content: "";
  order: -1;
  display: block;
  width: 1px;
  height: 46px;
  margin: 0 auto 24px;
  background: linear-gradient(180deg, transparent, var(--nx-neon));
  box-shadow: 0 0 14px rgba(47, 227, 236, 0.75);
}

#root .service-copy > ul { display: none !important; }

#root .service-copy > p:not(.section-label) {
  max-width: 540px;
  margin: 0 auto;
}

/* Lista de itens como ficha técnica centralizada */
#root .service-copy ul {
  max-width: 520px;
  margin: 38px auto 0;
}
#root .service-copy li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--nx-line-soft);
  color: #aab4c2;
  transition: color 0.4s ease;
}
#root .service-copy li:first-child { border-top: 1px solid var(--nx-line-soft); }
#root .service-copy li span {
  width: auto;
  color: var(--nx-neon);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
}
#root .service-copy li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nx-neon), transparent);
  box-shadow: 0 0 10px rgba(47, 227, 236, 0.7);
  transform: translateX(-50%);
  transition: width 0.55s var(--nx-ease);
}
#root .service-copy li:hover { color: #e2eaf4; }
#root .service-copy li:hover::after { width: 100%; }

/* Preço */
#root .service-price {
  order: 2;
  justify-content: center;
  gap: 12px;
  margin: 44px 0 30px;
}
#root .service-price em {
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid rgba(47, 227, 236, 0.3);
  background: rgba(47, 227, 236, 0.06);
  color: var(--nx-neon);
  font-size: 8.5px;
  letter-spacing: 0.2em;
}

#root .service-copy .primary-button {
  order: 3;
  width: max-content;
  margin: 0 auto;
}

/* --- Linha do tempo do atendimento --- */
#root .nx-timeline {
  order: 1;
  width: min(520px, 100%);
  margin: 46px auto 0;
  text-align: center;
}
#root .nx-timeline-label {
  display: block;
  margin-bottom: 30px;
  color: #6f8391;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
#root .nx-timeline ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
#root .nx-timeline li {
  position: relative;
  padding-top: 30px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s var(--nx-ease);
}
#root .nx-timeline li.nx-step-in { opacity: 1; transform: none; }
#root .nx-timeline li:first-child { padding-top: 0; }

/* Conector entre as estações */
#root .nx-timeline li::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 30px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(47, 227, 236, 0), rgba(47, 227, 236, 0.5));
}
#root .nx-timeline li:first-child::before { display: none; }

/* Horário como estação luminosa */
#root .nx-timeline li b {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid rgba(47, 227, 236, 0.28);
  background: rgba(47, 227, 236, 0.06);
  color: var(--nx-neon);
  font-family: var(--nx-body);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
#root .nx-timeline li strong {
  display: block;
  margin: 13px 0 5px;
  color: #e6edf6;
  font-family: var(--nx-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.4s ease;
}
#root .nx-timeline li span {
  display: block;
  max-width: 340px;
  margin: 0 auto;
  color: #77839a;
  font-size: 11px;
  line-height: 1.7;
}
#root .nx-timeline li:hover b {
  border-color: rgba(47, 227, 236, 0.7);
  background: rgba(47, 227, 236, 0.12);
  box-shadow: 0 0 22px -6px rgba(47, 227, 236, 0.95);
}
#root .nx-timeline li:hover strong { color: #ffffff; }

#root .nx-timeline-note {
  max-width: 440px;
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--nx-line-soft);
  color: #66707f;
  font-size: 9.5px;
  line-height: 1.7;
}

/* 6.4 Condomínios */
#root .condos {
  color: var(--nx-text);
  background: linear-gradient(135deg, #070a11, #0b1119 60%, #06090f);
  padding-block: 100px;
}
#root .condo-copy > p:not(.section-label) { color: #8b97a9; font-size: 13.5px; line-height: 1.85; }
#root .condo-stats { perspective: 1200px; }
#root .condo-stats strong { font-size: 24px; font-weight: 300; color: var(--nx-neon); }
#root .condo-stats span { color: #78839a; font-size: 8.5px; letter-spacing: 0.16em; }
#root .condo-dashboard {
  border-color: rgba(47, 227, 236, 0.18);
  box-shadow: 0 50px 100px -50px rgba(0, 0, 0, 1),
    0 0 70px -40px rgba(47, 227, 236, 0.55);
}

/* 6.5 Acessos — seção "Ecossistema AutoNex Clean" removida da página */
#root #acessos,
#root .access {
  display: none !important;
}

/* (estilos mantidos abaixo caso a seção seja reativada) */
#root .access {
  background: linear-gradient(180deg, #05080d, #080c13);
  padding-block: 100px;
}
#root .access-heading > p:last-child { color: #838f9f; font-size: 13px; }
#root .access-grid { perspective: 1600px; gap: 18px; }
#root .access-grid > button {
  background: linear-gradient(165deg, #0d131c, #080c13);
  border: 1px solid var(--nx-line);
  border-radius: 18px;
  min-height: 270px;
  padding: 26px;
}
#root .access-grid > button:hover { background: linear-gradient(165deg, #101825, #0a0f18); }
#root .access-grid > button > span {
  color: #6a7688;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.24em;
}
#root .access-grid i {
  width: 44px;
  height: 44px;
  font-size: 17px;
  border-radius: 14px;
  border: 1px solid rgba(47, 227, 236, 0.3);
  background: rgba(47, 227, 236, 0.05);
  color: var(--nx-neon);
  margin-top: 28px;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
#root .access-grid > button:hover i {
  border-color: rgba(47, 227, 236, 0.75);
  box-shadow: 0 0 26px -6px rgba(47, 227, 236, 0.8),
    inset 0 0 18px -8px rgba(47, 227, 236, 0.6);
}
#root .access-grid h3 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #eaf1f8;
  margin: 20px 0 8px;
}
#root .access-grid p { font-size: 11.5px; line-height: 1.75; color: #808d9f; }
#root .access-grid b { font-size: 9px; letter-spacing: 0.18em; font-weight: 700; }

/* 6.6 Aplicativo */
#root .app-install {
  color: var(--nx-text);
  background: linear-gradient(135deg, #070a11, #0b1018 60%, #06090f);
  padding-block: 90px;
  min-height: 0;
}
#root .app-install h2 {
  font-size: clamp(23px, 3vw, 40px);
  font-weight: 200;
  letter-spacing: -0.035em;
  color: #eaf1f8;
  margin: 14px 0 20px;
}
#root .app-install > div:first-child > p:not(.section-label) {
  color: #8b97a9;
  font-size: 13.5px;
  line-height: 1.85;
}
#root .app-install > div:first-child > small { color: #75808f; font-size: 8.5px; }
#root .app-install .install-button {
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
#root .app-install .install-button span { font-size: 14px; }
#root .phone-shell {
  box-shadow: 0 45px 90px -40px rgba(0, 0, 0, 1),
    0 0 70px -34px rgba(47, 227, 236, 0.5),
    inset 0 0 0 1px rgba(72, 96, 122, 0.7);
}

/* 6.7 CTA final + rodapé */
#root .final-cta {
  background: radial-gradient(circle at 50% 34%, rgba(16, 58, 96, 0.85), #05080d 54%);
  min-height: 460px;
}
#root .final-cta h2 {
  font-size: clamp(26px, 3.6vw, 46px);
  font-weight: 200;
  letter-spacing: -0.035em;
}
#root footer { border-top: 1px solid var(--nx-line); }
#root footer nav a,
#root footer nav button {
  color: #78839a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
#root footer nav a:hover,
#root footer nav button:hover { color: var(--nx-neon); }
#root footer nav button.nx-team-link {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--nx-body);
}

#root footer > small { font-size: 8.5px; color: #56616f; letter-spacing: 0.04em; }

/* Botão de parceria (síndicos e administradoras) — leva ao WhatsApp */
#root .condo-copy button.nx-wa-cta {
  justify-content: center;
  gap: 12px;
}
#root .condo-copy button.nx-wa-cta::before {
  content: "";
  flex: none;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M12 2.6A9.4 9.4 0 0 0 3.9 16.8L2.8 21.4l4.7-1.2A9.4 9.4 0 1 0 12 2.6Z'/%3E%3Cpath fill='none' stroke='%23056b74' stroke-width='2.7' stroke-linecap='round' d='M8.7 8.3c.4 2.7 2.3 4.6 5 5'/%3E%3Ccircle cx='8.7' cy='8.3' r='1.75' fill='%23056b74'/%3E%3Ccircle cx='13.7' cy='13.3' r='1.75' fill='%23056b74'/%3E%3C/svg%3E")
    center / contain no-repeat;
}


/* ==========================================================================
   6.8 Planos — refinamento premium
   ========================================================================== */
#root .plans-heading { gap: 60px; }

#root .plan-card {
  border-radius: 20px;
  padding: 34px 30px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 42%),
    linear-gradient(165deg, #0e141d, #080c13);
  box-shadow: 0 40px 80px -46px rgba(0, 0, 0, 1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
#root .plan-card.featured {
  border-color: rgba(47, 227, 236, 0.34);
  background: linear-gradient(165deg, rgba(47, 227, 236, 0.1), rgba(47, 227, 236, 0) 38%),
    linear-gradient(165deg, #0b1626, #060b13);
  box-shadow: 0 50px 100px -46px rgba(0, 0, 0, 1),
    0 0 80px -34px rgba(47, 227, 236, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

#root .plan-number {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(47, 227, 236, 0.26);
  background: rgba(47, 227, 236, 0.05);
  font-size: 8px;
  letter-spacing: 0.22em;
}
#root .popular { top: 22px; right: 22px; padding: 6px 11px; }

#root .monthly-value strong {
  background: linear-gradient(180deg, #ffffff, #a3dde2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#root .plan-card li {
  position: relative;
  transition: color 0.35s ease;
}
#root .plan-card li:hover { color: #dbe4ef; }

/* Item em destaque: R$ 55 por atendimento */
#root .plan-card li.nx-plan-hl { color: #e8eff8; font-weight: 600; }
#root .plan-card li.nx-plan-hl::after {
  content: "economia de R$ 15";
  display: inline-block;
  margin-left: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(47, 227, 236, 0.32);
  background: rgba(47, 227, 236, 0.07);
  color: var(--nx-neon);
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  vertical-align: middle;
}

#root .plan-card li.nx-hidden { display: none !important; }

/* Observações contratuais */
#root .plan-card .nx-plan-notes {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--nx-line-soft);
  text-align: left;
}
#root .plan-card .nx-plan-notes > span {
  display: block;
  margin-bottom: 9px;
  color: #6d7a8c;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
#root .plan-card .nx-plan-notes ul { margin: 0; padding: 0; list-style: none; }
#root .plan-card .nx-plan-notes li {
  position: relative;
  margin: 0 0 6px;
  padding: 0 0 0 13px;
  border: 0;
  color: #7b8698;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.65;
}
#root .plan-card .nx-plan-notes li:last-child { margin-bottom: 0; }
#root .plan-card .nx-plan-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: 3px;
  margin: 0;
  border-radius: 50%;
  background: rgba(47, 227, 236, 0.6);
}

/* Avulso vira cartão da mesma família */
#root .plan-summary {
  align-self: stretch;
  padding: 32px 28px;
  border: 1px solid var(--nx-line);
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 42%),
    linear-gradient(165deg, #0b0f16, #07090e);
  box-shadow: 0 40px 80px -50px rgba(0, 0, 0, 1);
}

/* ==========================================================================
   6.9 Aplicativo
   ========================================================================== */
#root .app-preview-glow { background: rgba(47, 227, 236, 0.16); }

#root .app-install > div:first-child::before {
  content: "";
  display: block;
  width: 1px;
  height: 42px;
  margin: 0 0 24px;
  background: linear-gradient(180deg, transparent, var(--nx-neon));
  box-shadow: 0 0 14px rgba(47, 227, 236, 0.75);
}

#root .install-status {
  border: 1px solid rgba(47, 227, 236, 0.24);
  border-radius: 14px;
  background: rgba(6, 10, 16, 0.86);
  box-shadow: 0 26px 60px -30px rgba(0, 0, 0, 1),
    0 0 40px -22px rgba(47, 227, 236, 0.6);
}
#root .install-status > i {
  background: linear-gradient(135deg, #00c3d0, #067884);
  box-shadow: 0 0 18px -6px rgba(47, 227, 236, 0.9);
}
#root .phone-shell > b {
  border-radius: 999px;
  background: linear-gradient(135deg, #00c3d0, #067884);
  letter-spacing: 0.18em;
}

/* ==========================================================================
   6.10 Chamada final
   ========================================================================== */
#root .final-cta {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 36%, rgba(18, 68, 104, 0.8), #05080d 56%);
}
#root .final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 6%, transparent 58%);
  mask-image: radial-gradient(circle at 50% 40%, #000 6%, transparent 58%);
  pointer-events: none;
}
#root .final-cta > * { position: relative; }
#root .final-cta .section-label::before {
  content: "";
  display: block;
  width: 1px;
  height: 46px;
  margin: 0 auto 28px;
  background: linear-gradient(180deg, transparent, var(--nx-neon));
  box-shadow: 0 0 14px rgba(47, 227, 236, 0.75);
}

/* ==========================================================================
   6.11 Rodapé
   ========================================================================== */
#root footer {
  position: relative;
  grid-template-columns: 1fr auto;
  gap: 14px 48px;
  align-items: center;
  padding: 64px clamp(24px, 7vw, 108px) 32px;
  border-top: 1px solid var(--nx-line);
  background: linear-gradient(180deg, #05070a, #04060a);
}
#root footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(47, 227, 236, 0.06) 14%,
    rgba(47, 227, 236, 0.5) 50%,
    rgba(47, 227, 236, 0.06) 86%,
    transparent
  );
  pointer-events: none;
}

#root footer > .footer-brand { grid-column: 1; grid-row: 1; }
#root .footer-brand .brand-logo { width: 152px; height: 42px; }

#root footer > p {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  color: #6f7b8c;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

#root footer nav {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-content: flex-end;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
#root footer nav a,
#root footer nav button {
  position: relative;
  padding: 6px 0;
}
#root footer nav a::after,
#root footer nav button::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nx-neon), transparent);
  box-shadow: 0 0 10px rgba(47, 227, 236, 0.8);
  transform: translateX(-50%);
  transition: width 0.4s var(--nx-ease);
}
#root footer nav a:hover::after,
#root footer nav button:hover::after { width: 100%; }

#root footer > small {
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--nx-line-soft);
  text-align: center;
}

/* --------------------------------------------------------------------------
   7. Sistema de cards — neon 3D com movimento
   -------------------------------------------------------------------------- */
#root .nx-card {
  --nx-rx: 0deg;
  --nx-ry: 0deg;
  --nx-lift: 0px;
  --nx-scale: 1;
  --nx-mx: 50%;
  --nx-my: 0%;
  --nx-edge: 0.18;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(var(--nx-rx)) rotateY(var(--nx-ry))
    translate3d(0, var(--nx-lift), 0) scale(var(--nx-scale));
  transition: transform 0.55s var(--nx-ease), box-shadow 0.55s ease,
    border-color 0.55s ease, opacity 0.7s ease;
  will-change: transform;
}

/* Brilho especular que segue o ponteiro */
#root .nx-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    440px circle at var(--nx-mx) var(--nx-my),
    rgba(47, 227, 236, 0.13),
    rgba(47, 227, 236, 0.04) 38%,
    transparent 66%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: -1;
}

/* Moldura neon */
#root .nx-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    transparent 8%,
    rgba(47, 227, 236, 0.85) 34%,
    rgba(59, 123, 255, 0.55) 52%,
    transparent 78%
  );
  background-size: 260% 260%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: var(--nx-edge);
  transition: opacity 0.5s ease;
  animation: nx-edge-sweep 11s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes nx-edge-sweep {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Estado de foco/hover */
#root .nx-card:hover,
#root .nx-card:focus-visible {
  --nx-lift: -8px;
  --nx-scale: 1.012;
  --nx-edge: 0.95;
  border-color: rgba(47, 227, 236, 0.3);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 1),
    0 22px 60px -34px rgba(47, 227, 236, 0.75);
}
#root .nx-card:hover::before,
#root .nx-card:focus-visible::before { opacity: 1; }

/* Enquanto o ponteiro dirige a inclinação, resposta imediata */
#root .nx-card.nx-live {
  transition: transform 0.14s linear, box-shadow 0.4s ease, border-color 0.4s ease;
}

#root .nx-card:active { --nx-scale: 0.994; --nx-lift: -4px; }

/* Card destacado mantém sua elevação própria */
#root .plan-card.featured { --nx-lift: -12px; }
#root .plan-card.featured:hover { --nx-lift: -20px; }

/* Painéis com perspectiva própria (dashboard e celular) */
#root .condo-dashboard.nx-card,
#root .phone-shell.nx-card {
  transform: perspective(1200px) rotateY(calc(-6deg + var(--nx-ry)))
    rotateX(calc(2deg + var(--nx-rx))) translate3d(0, var(--nx-lift), 0);
}
#root .phone-shell.nx-card {
  transform: perspective(900px) rotateY(calc(-10deg + var(--nx-ry)))
    rotateX(calc(3deg + var(--nx-rx))) translate3d(0, var(--nx-lift), 0);
}
#root .condo-dashboard.nx-card::after,
#root .phone-shell.nx-card::after { display: none; }

/* Entrada por rolagem */
#root .nx-reveal { opacity: 0; --nx-lift: 26px; --nx-rx: 7deg; }
#root .nx-reveal.nx-in { opacity: 1; --nx-lift: 0px; --nx-rx: 0deg; }

/* Respiração ambiente em telas de toque (sem hover) */
@media (hover: none) {
  #root .nx-card.nx-in { animation: nx-float 8s ease-in-out infinite; }
  #root .nx-card.nx-in:nth-child(2n) { animation-delay: -2.6s; }
  #root .nx-card.nx-in:nth-child(3n) { animation-delay: -5.2s; }
  #root .condo-dashboard.nx-card,
  #root .phone-shell.nx-card { animation: none !important; }
}
@keyframes nx-float {
  0%, 100% { --nx-lift: 0px; --nx-edge: 0.16; }
  50% { --nx-lift: -6px; --nx-edge: 0.5; }
}

/* --------------------------------------------------------------------------
   8. Botão flutuante de WhatsApp
   -------------------------------------------------------------------------- */
.nx-wa {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 0;
  height: 50px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(8, 12, 18, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(47, 227, 236, 0.26);
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  color: #d9f6f8;
  opacity: 0.88;
  text-decoration: none;
  transition: opacity 0.4s ease, transform 0.5s var(--nx-ease),
    border-color 0.4s ease, box-shadow 0.4s ease, gap 0.5s var(--nx-ease);
}
.nx-wa svg { width: 22px; height: 22px; flex: none; display: block; }

.nx-wa-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--nx-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transition: max-width 0.5s var(--nx-ease), opacity 0.35s ease;
}

.nx-wa:hover,
.nx-wa.nx-wa-peek {
  opacity: 1;
  gap: 10px;
  border-color: rgba(47, 227, 236, 0.65);
  box-shadow: 0 20px 46px -20px rgba(0, 0, 0, 1),
    0 0 34px -14px rgba(47, 227, 236, 0.8);
}
.nx-wa:hover { transform: translateY(-2px); }
.nx-wa:hover .nx-wa-label,
.nx-wa.nx-wa-peek .nx-wa-label { max-width: 130px; opacity: 1; }

/* Anel de pulso discreto */
.nx-wa-ring {
  position: absolute;
  left: 13px;
  top: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  border-radius: 50%;
  border: 1px solid rgba(47, 227, 236, 0.55);
  opacity: 0;
  pointer-events: none;
  animation: nx-wa-pulse 4.5s ease-out infinite;
}
@keyframes nx-wa-pulse {
  0% { transform: scale(0.85); opacity: 0.55; }
  22% { transform: scale(1.75); opacity: 0; }
  100% { transform: scale(1.75); opacity: 0; }
}

/* Some quando um portal/modal estiver aberto */
body:has(.portal-backdrop) .nx-wa,
body.nx-portal-open .nx-wa {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

/* --------------------------------------------------------------------------
   9. Responsivo
   -------------------------------------------------------------------------- */
@media (width <= 1050px) {
  #root .topbar { grid-template-columns: 180px 1fr auto; }
  #root .nav { gap: 20px; }
}

@media (width <= 760px) {
  #root .topbar { grid-template-columns: 1fr auto; height: 64px; padding: 0 18px; }
  body.nx-scrolled #root .topbar { height: 58px; }
  #root .topbar .brand-logo { width: 142px; height: 40px; }
  body.nx-scrolled #root .topbar .brand-logo { width: 132px; height: 36px; }
  #root .nav { top: 60px; background: rgba(6, 9, 14, 0.97); border-color: var(--nx-line); }
  #root .hero { padding-top: 96px; }
  #root .hero h1 { font-size: clamp(28px, 9vw, 42px); }
  #root .hero-content > p { font-size: 13.5px; }
  #root .plan-card.featured { --nx-lift: 0px; }
  #root .plan-card.featured:hover { --nx-lift: -8px; }
  #root .plan-card { padding: 28px 22px; }
  #root .plan-summary { padding: 28px 22px; }
  #root .plan-card li.nx-plan-hl::after { margin-left: 8px; font-size: 7px; }
  #root .app-install > div:first-child::before { height: 34px; margin-bottom: 18px; }
  #root .final-cta .section-label::before { height: 36px; margin-bottom: 22px; }
  #root footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 52px 22px 28px;
  }
  #root footer > .footer-brand,
  #root footer > p { grid-column: 1; }
  #root footer > p { grid-row: 2; text-align: center; }
  #root footer nav {
    grid-column: 1;
    grid-row: 3;
    justify-content: center;
    gap: 18px;
  }
  #root footer > small { grid-row: 4; margin-top: 20px; }
  #root .monthly-value strong { font-size: 38px; }
  #root .access-grid > button { min-height: 240px; }
  #root .service { min-height: 0; }
  #root .service-copy { width: 100%; padding: 76px 22px; }
  #root .service-copy::before { height: 38px; margin-bottom: 20px; }
  #root .nx-timeline { margin-top: 38px; }
  #root .nx-timeline-label { margin-bottom: 24px; }
  #root .nx-timeline li { padding-top: 26px; }
  #root .nx-timeline li::before { height: 26px; }
  #root .nx-timeline li strong { font-size: 13px; margin-top: 11px; }
  #root .nx-timeline li span { font-size: 10.5px; }
  #root .service-price { margin: 36px 0 26px; }
  #root .service-copy .primary-button { width: 100%; }
  #root .vonixx > div:first-child { min-height: 0; padding: 56px 22px; }
  #root .vonixx > div:first-child > strong { width: 100%; }
  #root .vonixx > div:first-child > strong::after {
    top: 12px;
    right: 12px;
    padding: 7px 11px;
    font-size: 7.5px;
    letter-spacing: 0.12em;
  }
  #root .condo-dashboard.nx-card { transform: translate3d(0, var(--nx-lift), 0); }
  #root .phone-shell.nx-card {
    transform: scale(0.88) translate3d(0, var(--nx-lift), 0);
  }
  .nx-wa { height: 46px; padding: 0 11px; }
  .nx-wa svg { width: 20px; height: 20px; }
  .nx-wa-ring { left: 11px; }
}

/* --------------------------------------------------------------------------
   10. Movimento reduzido
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  #root .vonixx > div:first-child > strong,
  #root .vonixx > div:first-child > strong::before,
  #root .nx-card,
  #root .nx-card::after,
  .nx-wa-ring,
  #root .nx-card.nx-in {
    animation: none !important;
    transition: opacity 0.3s ease !important;
  }
  #root .nx-card { --nx-rx: 0deg !important; --nx-ry: 0deg !important; --nx-lift: 0px !important; }
  #root .nx-reveal { opacity: 1; }
  #root .nx-timeline li { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   12. Agenda — mapa semanal do cliente e liberação de dias do dono
   ========================================================================== */
#root .nx-field-hidden { display: none !important; }
#root .nx-agenda { order: 4; }
#root .portal-form label:has(textarea[name="notes"]) { order: 6; }
#root .portal-form .form-actions { order: 9; }
#root .nx-slot-adv { order: 5; }

/* --- Cliente --- */
#root .nx-agenda {
  display: grid;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(47, 227, 236, 0.16);
  border-radius: 14px;
  background: rgba(6, 10, 17, 0.6);
}
#root .nx-agenda-title {
  color: #7e8999;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
#root .nx-agenda-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
#root .nx-agenda-nav {
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 50%;
  border: 1px solid rgba(47, 227, 236, 0.25);
  background: rgba(47, 227, 236, 0.05);
  color: #d9f6f8;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}
#root .nx-agenda-nav:hover:not(:disabled) {
  border-color: rgba(47, 227, 236, 0.7);
  background: rgba(47, 227, 236, 0.12);
}
#root .nx-agenda-nav:disabled { opacity: 0.22; cursor: default; }
#root .nx-agenda-range {
  color: #8b97a9;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

#root .nx-agenda-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
#root .nx-agenda-day {
  display: grid;
  gap: 3px;
  justify-items: center;
  padding: 9px 2px 7px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 11px;
  background: #0a0f18;
  color: #8b97a9;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease,
    transform 0.3s var(--nx-ease);
}
#root .nx-agenda-day:disabled { opacity: 0.28; cursor: default; }
#root .nx-agenda-day:hover:not(:disabled) { transform: translateY(-2px); }
#root .nx-agenda-day.is-active {
  border-color: rgba(47, 227, 236, 0.6);
  background: rgba(47, 227, 236, 0.09);
  box-shadow: 0 0 22px -9px rgba(47, 227, 236, 0.95);
}
#root .nx-agenda-dow {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
#root .nx-agenda-num { color: #dfe7f2; font-size: 14px; font-weight: 600; }
#root .nx-agenda-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--nx-neon);
  box-shadow: 0 0 8px rgba(47, 227, 236, 0.9);
}

#root .nx-agenda-times { display: flex; flex-wrap: wrap; gap: 7px; }
#root .nx-agenda-time {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: #0a0f18;
  color: #c2ccd9;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease,
    box-shadow 0.3s ease;
}
#root .nx-agenda-time:hover { border-color: rgba(47, 227, 236, 0.5); color: #fff; }
#root .nx-agenda-time.is-selected {
  border-color: rgba(47, 227, 236, 0.8);
  background: rgba(47, 227, 236, 0.14);
  color: #eafcfd;
  box-shadow: 0 0 24px -9px rgba(47, 227, 236, 1);
}

#root .nx-agenda-hint {
  margin: 0;
  color: #6f7b8c;
  font-size: 9.5px;
  line-height: 1.6;
}
#root .nx-agenda-hint.is-set { color: var(--nx-neon); font-weight: 600; }
#root .nx-agenda-hint.is-error { color: #ffb08a; font-weight: 600; }
#root .nx-agenda-empty { margin: 0; color: #6f7b8c; font-size: 10px; }

/* --- Dono --- */
#root .nx-slot-adv { display: grid; gap: 15px; }
#root .nx-slot-label {
  display: block;
  color: #7e8999;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
#root .nx-slot-hint {
  display: block;
  margin-top: 8px;
  color: #5f6b7c;
  font-size: 8px;
  line-height: 1.6;
}
#root .nx-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-top: 8px;
}
#root .nx-weekdays label { position: relative; display: block; cursor: pointer; }
#root .nx-weekdays input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
}
#root .nx-weekdays span {
  display: grid;
  place-items: center;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: #070b12;
  color: #8b97a9;
  font-size: 11px;
  font-weight: 700;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease,
    box-shadow 0.3s ease;
}
#root .nx-weekdays input:checked + span {
  border-color: rgba(47, 227, 236, 0.65);
  background: rgba(47, 227, 236, 0.12);
  color: #eafcfd;
  box-shadow: 0 0 20px -9px rgba(47, 227, 236, 0.95);
}
#root .nx-weekdays input:focus-visible + span {
  outline: 2px solid var(--nx-neon);
  outline-offset: 2px;
}
