:root {
  --bg: #050505;
  --panel: rgb(9 11 13 / 78%);
  --line: rgb(255 255 255 / 12%);
  --text: #f7fbff;
  --muted: #a9b7c7;
  --orange: #ff7518;
  --orange-2: #ff9c3d;
  --cyan: #19e6ff;
  --green: #8cff7a;
  --shadow: 0 28px 90px rgb(0 0 0 / 44%);
  --topbar: 112px;
}

/* Systems section — layout fix */
.systems-showcase {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(0, 0.82fr) minmax(32rem, 1.18fr);
  width: min(1440px, calc(100% - clamp(2rem, 7vw, 8rem)));
  gap: clamp(2.5rem, 6vw, 6.5rem);
  margin-block: clamp(2rem, 4vw, 4rem);
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 4vw, 4.5rem);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: clamp(1.5rem, 3vw, 2.75rem);
  background:
    radial-gradient(circle at 90% 12%, rgb(255 117 24 / 18%), transparent 25rem),
    linear-gradient(135deg, rgb(255 255 255 / 5%), rgb(255 255 255 / 1.5%));
  box-shadow: 0 2rem 7rem rgb(0 0 0 / 32%);
}

.systems-showcase::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 55%, #000);
  content: "";
}

.systems-copy {
  align-self: center;
}

.systems-copy .eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--orange-2);
}

.systems-copy h2 {
  max-width: 12ch;
  margin: 0 0 1.25rem;
  font-size: clamp(2.45rem, 4.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.systems-copy p {
  max-width: 38rem;
  margin: 0;
  color: rgb(218 227 237 / 82%);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.7;
}

.systems-actions {
  align-items: stretch;
  margin-top: 2rem;
}

.systems-actions .btn {
  min-height: 3.35rem;
  padding-inline: 1.35rem;
  text-align: center;
}

.systems-panel {
  position: relative;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 1.5rem;
  background: rgb(4 6 8 / 92%);
  box-shadow: 0 2rem 5rem rgb(0 0 0 / 48%);
}

.systems-panel::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--orange-2), transparent);
  content: "";
}

.systems-panel img {
  width: 100%;
  height: clamp(17rem, 28vw, 27rem);
  max-height: none;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92) contrast(1.04);
}

.systems-panel ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
}

.systems-panel li {
  min-height: 5.8rem;
  padding: 1.35rem 1.25rem 1.25rem 3rem;
  border-top: 1px solid rgb(255 255 255 / 8%);
  color: rgb(231 237 244 / 88%);
  line-height: 1.45;
}

.systems-panel li:nth-child(odd) {
  border-right: 1px solid rgb(255 255 255 / 8%);
}

.systems-panel li::before {
  top: 1.48rem;
  left: 1.3rem;
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid rgb(255 163 79 / 38%);
  background: var(--orange);
  box-shadow: 0 0 0 5px rgb(255 117 24 / 9%);
}

@media (max-width: 1080px) {
  .systems-showcase {
    grid-template-columns: 1fr;
    width: min(100% - 2rem, 900px);
  }

  .systems-copy h2 {
    max-width: 15ch;
  }
}

/* Final systems overrides: keep these after the legacy theme rules. */
.systems-showcase {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(0, .82fr) minmax(32rem, 1.18fr);
  width: min(1440px, calc(100% - clamp(2rem, 7vw, 8rem)));
  gap: clamp(2.5rem, 6vw, 6.5rem);
  margin-block: clamp(2rem, 4vw, 4rem);
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 4vw, 4.5rem);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: clamp(1.5rem, 3vw, 2.75rem);
  background: radial-gradient(circle at 90% 12%, rgb(255 117 24 / 18%), transparent 25rem), linear-gradient(135deg, rgb(255 255 255 / 5%), rgb(255 255 255 / 1.5%));
  box-shadow: 0 2rem 7rem rgb(0 0 0 / 32%);
}
.systems-copy h2 { max-width: 12ch; margin: 0 0 1.25rem; font-size: clamp(2.45rem, 4.6vw, 5rem); line-height: .98; letter-spacing: -.045em; text-wrap: balance; }
.systems-copy p { max-width: 38rem; margin: 0; color: rgb(218 227 237 / 82%); font-size: clamp(1rem, 1.25vw, 1.18rem); line-height: 1.7; }
.systems-actions { align-items: stretch; margin-top: 2rem; }
.systems-actions .btn { min-height: 3.35rem; padding-inline: 1.35rem; text-align: center; }
.systems-panel { position: relative; align-self: center; overflow: hidden; border: 1px solid rgb(255 255 255 / 13%); border-radius: 1.5rem; background: rgb(4 6 8 / 92%); box-shadow: 0 2rem 5rem rgb(0 0 0 / 48%); }
.systems-panel img { width: 100%; height: clamp(17rem, 28vw, 27rem); max-height: none; object-fit: cover; object-position: center top; }
.systems-panel ul { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; padding: 0; }
.systems-panel li { min-height: 5.8rem; padding: 1.35rem 1.25rem 1.25rem 3rem; border-top: 1px solid rgb(255 255 255 / 8%); }
.systems-panel li:nth-child(odd) { border-right: 1px solid rgb(255 255 255 / 8%); }
.systems-panel li::before { top: 1.48rem; left: 1.3rem; width: .72rem; height: .72rem; border: 2px solid rgb(255 163 79 / 38%); box-shadow: 0 0 0 5px rgb(255 117 24 / 9%); }
@media (max-width: 1080px) {
  .systems-showcase { grid-template-columns: 1fr; width: min(100% - 2rem, 900px); }
  .systems-copy h2 { max-width: 15ch; }
}
@media (max-width: 640px) {
  .systems-showcase { width: min(100% - 1rem, 640px); gap: 2rem; margin-block: 1rem 2.5rem; padding: 2.75rem 1rem 1rem; border-radius: 1.35rem; }
  .systems-copy h2 { font-size: clamp(2.2rem, 11vw, 3.25rem); }
  .systems-actions { grid-template-columns: 1fr; }
  .systems-actions .btn { width: 100%; }
  .systems-panel { border-radius: 1rem; }
  .systems-panel img { height: clamp(13rem, 58vw, 19rem); }
  .systems-panel ul { grid-template-columns: 1fr; }
  .systems-panel li { min-height: auto; padding-block: 1.15rem; }
  .systems-panel li:nth-child(odd) { border-right: 0; }
  .systems-panel li::before { top: 1.28rem; }
}

/* Diagnostic workspace */
.site-routed main > section.diagnostic[data-site-screen] {
  position: relative;
  isolation: isolate;
  display: grid;
  width: min(1280px, calc(100% - 4rem));
  min-height: 100svh;
  grid-template-columns: minmax(20rem, 0.72fr) minmax(37rem, 1.28fr);
  align-content: center;
  align-items: center;
  gap: 4.5rem;
  margin: 0 auto;
  padding: calc(var(--topbar) + 1.75rem) 0 2.25rem;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: none;
}

.site-routed main > section.diagnostic[data-site-screen]::before {
  position: absolute;
  z-index: -1;
  inset: var(--topbar) -18vw 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 2.5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2.5%) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
  opacity: 0.42;
  pointer-events: none;
}

.diagnostic-intro {
  position: relative;
  max-width: 31rem;
}

.diagnostic-intro .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.15rem;
  color: #ff8128;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.diagnostic-intro .eyebrow svg {
  width: 1rem;
  height: 1rem;
}

.site-routed .diagnostic-intro h2 {
  max-width: 12ch;
  margin: 0 0 1rem;
  color: #fff;
  font-size: 3.25rem;
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: none;
}

.site-routed .diagnostic-intro > p {
  max-width: 30rem;
  margin: 0;
  color: #aeb8c4;
  font-size: 1.02rem;
  line-height: 1.6;
}

.diagnostic-assurances {
  display: grid;
  gap: 0;
  margin-top: 1.65rem;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.diagnostic-assurances > span {
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  min-height: 3.65rem;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.diagnostic-assurances svg {
  width: 1.12rem;
  height: 1.12rem;
  color: #32d4c8;
  stroke-width: 1.8;
}

.diagnostic-assurances strong,
.diagnostic-assurances small {
  display: block;
  letter-spacing: 0;
}

.diagnostic-assurances strong {
  color: #eef2f6;
  font-size: 0.84rem;
}

.diagnostic-assurances small {
  margin-top: 0.18rem;
  color: #778391;
  font-size: 0.7rem;
}

.site-routed .diagnostic-console {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 8px;
  background: #080a0d;
  box-shadow: 0 1.5rem 4rem rgb(0 0 0 / 34%);
  backdrop-filter: none;
}

.diagnostic-console__head {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid rgb(255 255 255 / 9%);
  background: linear-gradient(90deg, rgb(255 117 24 / 10%), transparent 42%);
}

.diagnostic-console__head div > span,
.diagnostic-console__head div > strong {
  display: block;
  letter-spacing: 0;
}

.diagnostic-console__head div > span {
  margin-bottom: 0.18rem;
  color: #ff8128;
  font-size: 0.63rem;
  font-weight: 850;
  text-transform: uppercase;
}

.diagnostic-console__head div > strong {
  color: #fff;
  font-size: 1.12rem;
}

.diagnostic-online {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: #8fe5b7;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
}

.diagnostic-online svg {
  width: 0.92rem;
  height: 0.92rem;
}

.site-routed .diagnostic-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1.1rem;
}

.site-routed .diagnostic-fields label {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  color: #d5dbe2;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.diagnostic-field-label {
  display: flex;
  align-items: center;
  gap: 0.48rem;
}

.diagnostic-field-label em {
  display: inline-grid;
  width: 1.42rem;
  height: 1.42rem;
  place-items: center;
  border: 1px solid rgb(255 117 24 / 36%);
  border-radius: 5px;
  color: #ff8128;
  font-size: 0.58rem;
  font-style: normal;
}

.site-routed .diagnostic-fields select {
  min-height: 3.45rem;
  padding-inline: 0.8rem;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 7px;
  background: #0d1014;
  color: #f4f6f8;
  font-size: 0.83rem;
  font-weight: 700;
  outline: none;
}

.site-routed .diagnostic-fields select:hover,
.site-routed .diagnostic-fields select:focus {
  border-color: rgb(255 117 24 / 62%);
}

.site-routed .diagnostic-result {
  display: grid;
  grid-template-columns: 2.65rem minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  margin: 0 1.1rem;
  padding: 1.05rem 0;
  border: 0;
  border-top: 1px solid rgb(255 255 255 / 8%);
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  border-radius: 0;
  background: transparent;
}

.diagnostic-result__icon {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid rgb(255 117 24 / 32%);
  border-radius: 7px;
  background: rgb(255 117 24 / 8%);
  color: #ff8128;
}

.diagnostic-result__icon svg {
  width: 1.18rem;
  height: 1.18rem;
}

.diagnostic-result__copy,
.diagnostic-result__copy small,
.diagnostic-result__copy strong,
.diagnostic-result__copy p {
  display: block;
  min-width: 0;
  letter-spacing: 0;
}

.diagnostic-result__copy small {
  margin-bottom: 0.18rem;
  color: #ff8128;
  font-size: 0.63rem;
  font-weight: 850;
  text-transform: uppercase;
}

.diagnostic-result__copy strong {
  color: #f7f8fa;
  font-size: 0.98rem;
}

.site-routed .diagnostic-result__copy p {
  margin: 0.28rem 0 0;
  color: #919ca9;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
  text-transform: none;
}

.diagnostic-submit {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr) 1rem;
  min-height: 3.65rem;
  align-items: center;
  gap: 0.65rem;
  margin: 1rem 1.1rem 1.1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #ff8128;
  border-radius: 7px;
  background: #ff7518;
  color: #090a0b;
  font-size: 0.83rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 0.85rem 2rem rgb(255 117 24 / 17%);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.diagnostic-submit svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 2.2;
}

.diagnostic-submit:hover,
.diagnostic-submit:focus-visible {
  background: #ff8b36;
  box-shadow: 0 1rem 2.4rem rgb(255 117 24 / 24%);
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .site-routed main > section.diagnostic[data-site-screen] {
    width: min(820px, calc(100% - 2rem));
    grid-template-columns: 1fr;
    align-content: start;
    gap: 2rem;
    padding-top: calc(var(--topbar) + 2.25rem);
  }

  .diagnostic-intro {
    max-width: 46rem;
  }

  .site-routed .diagnostic-intro h2 {
    max-width: 18ch;
    font-size: 2.65rem;
  }

  .diagnostic-assurances {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .diagnostic-assurances > span {
    grid-template-columns: 1.7rem minmax(0, 1fr);
    padding-right: 0.65rem;
  }
}

@media (max-width: 680px) {
  .site-routed main > section.diagnostic[data-site-screen] {
    width: min(100% - 1rem, 640px);
    gap: 1.35rem;
    padding-top: calc(var(--topbar) + 1.2rem);
    padding-bottom: 1rem;
  }

  .site-routed .diagnostic-intro h2 {
    font-size: 2.25rem;
  }

  .site-routed .diagnostic-intro > p {
    font-size: 0.95rem;
  }

  .diagnostic-assurances {
    grid-template-columns: 1fr;
  }

  .site-routed .diagnostic-fields {
    grid-template-columns: 1fr;
  }

  .diagnostic-console__head {
    min-height: 4.5rem;
  }

  .diagnostic-online {
    font-size: 0;
  }

  .diagnostic-online svg {
    width: 1rem;
    height: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .diagnostic-submit {
    transition: none;
  }
}

/* Store marketplace */
.store-marketplace {
  width: min(1660px, calc(100% - 3rem));
  padding-bottom: 2.5rem !important;
}

.store-marketplace .storefront-hero {
  position: relative;
  display: block;
  min-height: 35rem;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 8px;
  background: #05070a;
  box-shadow: 0 1.8rem 5rem rgb(0 0 0 / 42%);
}

.storefront-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.store-marketplace .storefront-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(3 5 8 / 98%) 0%, rgb(3 5 8 / 90%) 35%, rgb(3 5 8 / 22%) 68%, rgb(3 5 8 / 5%) 100%);
  content: "";
  pointer-events: none;
}

.store-marketplace .storefront-copy {
  position: relative;
  z-index: 2;
  display: block;
  width: min(43rem, 53%);
  padding: 4.4rem 3.8rem 8rem;
}

.store-marketplace .storefront-copy::after { content: none; }
.store-marketplace .storefront-copy .eyebrow { display: inline-flex; align-items: center; gap: 0.45rem; }
.store-marketplace .storefront-copy .eyebrow svg { width: 0.95rem; height: 0.95rem; }
.store-marketplace .storefront-copy h2 {
  max-width: 14ch;
  margin: 0.8rem 0 0;
  font-size: 3.4rem;
  line-height: 1.05;
  letter-spacing: 0;
}
.store-marketplace .storefront-copy h2 strong { color: #ff7518; font-weight: 850; }
.store-marketplace .storefront-copy > p { max-width: 37rem; margin-top: 1rem; color: #b4bfca; font-size: 1rem; line-height: 1.6; }
.store-marketplace .storefront-actions { margin-top: 1.5rem; }

.store-marketplace .storefront-trust {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  display: grid;
  width: min(48rem, 59%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
  border-right: 1px solid rgb(255 255 255 / 10%);
  background: rgb(4 6 9 / 86%);
  backdrop-filter: blur(14px);
}
.store-marketplace .storefront-trust > span { min-width: 0; gap: 0.7rem; padding: 1rem 1.15rem; border-right: 1px solid rgb(255 255 255 / 9%); }
.store-marketplace .storefront-trust > span:last-child { border-right: 0; }
.store-marketplace .storefront-trust svg { width: 1.25rem; height: 1.25rem; flex: 0 0 auto; color: #ff7518; }
.store-marketplace .storefront-trust strong,
.store-marketplace .storefront-trust small { display: block; }
.store-marketplace .storefront-trust strong { color: #eef3f8; font-size: 0.72rem; }
.store-marketplace .storefront-trust small { margin-top: 0.2rem; color: #818d99; font-size: 0.6rem; font-weight: 600; }

.store-marketplace .store-toolbar {
  grid-template-columns: minmax(20rem, 0.85fr) minmax(34rem, 1.6fr) auto;
  min-height: 4.3rem;
  margin-top: 0.9rem;
  padding: 0.55rem;
  background: #090d11;
}
.store-marketplace .store-search { min-height: 3.15rem; }
.store-marketplace .store-filters { justify-content: center; overflow-x: auto; scrollbar-width: none; }
.store-marketplace .store-filters::-webkit-scrollbar { display: none; }
.store-marketplace .store-filters button { display: inline-flex; min-height: 3rem; flex: 0 0 auto; align-items: center; gap: 0.45rem; padding-inline: 0.85rem; }
.store-marketplace .store-filters button svg { width: 0.9rem; height: 0.9rem; }
.store-cart-trigger {
  position: relative;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.9rem;
  border: 1px solid rgb(255 117 24 / 30%);
  border-radius: 6px;
  background: rgb(255 117 24 / 8%);
  color: #ff8d3d;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
}
.store-cart-trigger svg { width: 1rem; height: 1rem; }
.store-cart-trigger em { display: grid; min-width: 1.25rem; height: 1.25rem; place-items: center; border-radius: 50%; background: #ff7518; color: #080a0d; font-size: 0.58rem; font-style: normal; }

.store-catalog-shell { display: grid; grid-template-columns: 18rem minmax(0, 1fr); gap: 0.9rem; margin-top: 0.9rem; }
.store-sidebar { display: grid; align-content: start; gap: 0.75rem; }
.store-sidebar > section { overflow: hidden; border: 1px solid rgb(255 255 255 / 10%); border-radius: 7px; background: #090d11; }
.store-sidebar header { display: flex; min-height: 3rem; align-items: center; justify-content: space-between; padding: 0 0.85rem; border-bottom: 1px solid rgb(255 255 255 / 8%); }
.store-sidebar header strong { font-size: 0.76rem; }
.store-sidebar header button { border: 0; background: transparent; color: #ff8d3d; font: inherit; font-size: 0.62rem; font-weight: 750; cursor: pointer; }
.store-sidebar nav { display: grid; padding: 0.45rem; }
.store-sidebar nav button {
  display: grid;
  min-height: 2.45rem;
  grid-template-columns: 1rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.55rem;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #9ba7b3;
  cursor: pointer;
  font: inherit;
  font-size: 0.67rem;
  text-align: left;
}
.store-sidebar nav button:hover,
.store-sidebar nav button.active { background: rgb(255 117 24 / 9%); color: #ff8d3d; }
.store-sidebar nav button svg { width: 0.85rem; height: 0.85rem; }
.store-sidebar nav button span { color: #5e6975; font-size: 1rem; }
.store-filter-panel { padding-bottom: 0.75rem; }
.store-price-filter { display: grid; gap: 0.55rem; padding: 0.85rem; border-bottom: 1px solid rgb(255 255 255 / 8%); color: #a8b2bd; font-size: 0.65rem; }
.store-price-filter input { width: 100%; accent-color: #ff7518; }
.store-price-filter output { color: #e8edf3; font-size: 0.66rem; }
.store-filter-panel fieldset { display: grid; gap: 0.55rem; margin: 0; padding: 0.85rem; border: 0; border-bottom: 1px solid rgb(255 255 255 / 8%); }
.store-filter-panel legend { margin-bottom: 0.65rem; color: #a8b2bd; font-size: 0.65rem; }
.store-filter-panel fieldset label { display: flex; align-items: center; gap: 0.5rem; color: #8f9aa6; font-size: 0.65rem; }
.store-filter-panel input[type="checkbox"] { width: 0.9rem; height: 0.9rem; accent-color: #ff7518; }
.store-stock-filter { display: flex; align-items: flex-start; gap: 0.55rem; padding: 0.85rem; color: #9da8b4; }
.store-stock-filter strong,
.store-stock-filter small { display: block; }
.store-stock-filter strong { font-size: 0.67rem; }
.store-stock-filter small { margin-top: 0.15rem; color: #687481; font-size: 0.58rem; }

.store-results { min-width: 0; }
.store-results-head { display: flex; min-height: 3rem; align-items: center; justify-content: space-between; gap: 1rem; padding: 0 0.15rem 0.65rem; }
.store-results-head > div { display: flex; align-items: baseline; gap: 0.65rem; }
.store-results-head > div > span { color: #f1f5f8; font-size: 0.82rem; font-weight: 800; }
.store-results-head .store-count { min-width: 0; color: #77838f; text-align: left; }
.store-results-head label { display: inline-flex; align-items: center; gap: 0.55rem; color: #77838f; font-size: 0.62rem; }
.store-results-head select { min-height: 2.25rem; padding: 0 2rem 0 0.65rem; border: 1px solid rgb(255 255 255 / 10%); border-radius: 5px; outline: 0; background: #090d11; color: #c4ccd5; font: inherit; font-size: 0.65rem; }

.store-marketplace .store-grid { grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr)); gap: 0.65rem; margin-top: 0; }
.store-marketplace .store-product { min-height: 30rem; border-radius: 7px; background: #090d11; transform: none; }
.store-marketplace .store-product:hover { transform: translateY(-2px); }
.store-marketplace .store-product__image { aspect-ratio: 1.3 / 1; padding: 0.85rem; background: radial-gradient(circle at 50% 55%, #17202a, #090c10 65%); }
.store-marketplace .store-product__image img { object-fit: contain; }
.store-product__favorite {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
  background: rgb(4 6 8 / 76%);
  color: #9ba6b1;
  cursor: pointer;
}
.store-product__favorite:hover,
.store-product__favorite.active { border-color: rgb(255 117 24 / 38%); color: #ff7518; }
.store-product__favorite.active svg { fill: currentColor; }
.store-product__favorite svg { width: 0.9rem; height: 0.9rem; }
.store-marketplace .store-product__badge { border: 0; background: #2b9f56; color: #fff; }
.store-marketplace .store-product__body { padding: 0.85rem; }
.store-marketplace .store-product__body > small { color: #ff8730; font-size: 0.58rem; }
.store-marketplace .store-product__body h3 { display: -webkit-box; min-height: 2.55rem; margin-top: 0.42rem; overflow: hidden; font-size: 0.83rem; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.store-marketplace .store-product__body p { display: -webkit-box; min-height: 2.1rem; overflow: hidden; color: #7f8b98; font-size: 0.64rem; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.store-marketplace .store-product__specs { min-height: 1.4rem; margin-top: 0.55rem; overflow: hidden; flex-wrap: nowrap; }
.store-marketplace .store-product__specs li { overflow: hidden; max-width: 7rem; flex: 0 1 auto; text-overflow: ellipsis; white-space: nowrap; }
.store-marketplace .store-product__price { margin-top: auto; padding-top: 0.7rem; }
.store-marketplace .store-product__price del { display: block; color: #697581; font-size: 0.58rem; }
.store-marketplace .store-product__price strong { display: block; margin-top: 0.1rem; font-size: 1.05rem; }
.store-marketplace .store-product__price span { display: block; min-height: 1.3rem; margin-top: 0.2rem; color: #75818e; font-size: 0.57rem; line-height: 1.35; }
.store-product__actions { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0.4rem; margin-top: 0.7rem; }
.store-product__actions button { display: inline-flex; min-height: 2.3rem; align-items: center; justify-content: center; gap: 0.35rem; padding: 0 0.45rem; border: 1px solid rgb(255 255 255 / 13%); border-radius: 5px; background: transparent; color: #dce3ea; cursor: pointer; font: inherit; font-size: 0.6rem; font-weight: 800; }
.store-product__actions button.buy { border-color: #ff7518; background: #ff7518; color: #080a0c; }
.store-product__actions button:hover { border-color: rgb(255 117 24 / 52%); }
.store-product__actions button.buy:hover { background: #ff8b3d; }
.store-product__actions svg { width: 0.8rem; height: 0.8rem; }

.store-marketplace .store-empty { min-height: 19rem; margin-top: 0; }
.store-marketplace .store-services { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin-top: 0.9rem; overflow: hidden; border: 1px solid rgb(255 255 255 / 10%); border-radius: 7px; background: #090d11; }
.store-marketplace .store-services article { display: flex; min-height: 6.2rem; align-items: center; gap: 0.85rem; padding: 1rem 1.2rem; overflow: visible; border: 0; border-right: 1px solid rgb(255 255 255 / 9%); border-radius: 0; background: transparent; }
.store-marketplace .store-services article:last-child { border-right: 0; }
.store-marketplace .store-services article > span { width: 2.6rem; height: 2.6rem; flex: 0 0 auto; border: 0; color: #ff7518; }
.store-marketplace .store-services article strong { margin: 0; font-size: 0.76rem; }
.store-marketplace .store-services article p { margin-top: 0.25rem; font-size: 0.63rem; line-height: 1.4; }

.store-dialog { width: min(100% - 2rem, 52rem); max-height: min(90vh, 50rem); padding: 0; overflow: hidden; border: 1px solid rgb(255 255 255 / 14%); border-radius: 8px; background: #090d11; color: #f3f6f9; box-shadow: 0 2rem 7rem rgb(0 0 0 / 70%); }
.store-dialog::backdrop { background: rgb(0 0 0 / 72%); backdrop-filter: blur(6px); }
.store-dialog-shell { display: flex; max-height: min(90vh, 50rem); flex-direction: column; }
.store-dialog-shell > header { display: flex; min-height: 4.6rem; align-items: center; justify-content: space-between; gap: 1rem; padding: 0 1.1rem; border-bottom: 1px solid rgb(255 255 255 / 10%); }
.store-dialog-shell > header span { color: #ff8730; font-size: 0.6rem; font-weight: 800; text-transform: uppercase; }
.store-dialog-shell > header h2 { margin: 0.25rem 0 0; font-size: 1rem; }
.store-dialog-shell > header button,
.store-cart-quantity button,
.store-cart-remove { display: grid; width: 2.2rem; height: 2.2rem; place-items: center; border: 1px solid rgb(255 255 255 / 10%); border-radius: 5px; background: transparent; color: #9aa6b2; cursor: pointer; }
.store-dialog-shell > header button svg,
.store-cart-quantity button svg,
.store-cart-remove svg { width: 0.9rem; height: 0.9rem; }
.store-cart-list { min-height: 15rem; overflow-y: auto; padding: 0.6rem 1rem; }
.store-cart-item { display: grid; grid-template-columns: 4rem minmax(0, 1fr) auto auto; align-items: center; gap: 0.75rem; padding: 0.7rem 0; border-bottom: 1px solid rgb(255 255 255 / 8%); }
.store-cart-item > span { display: grid; width: 4rem; height: 3.5rem; place-items: center; overflow: hidden; border-radius: 5px; background: #11171d; }
.store-cart-item img { width: 100%; height: 100%; object-fit: contain; }
.store-cart-item strong,
.store-cart-item small { display: block; }
.store-cart-item strong { font-size: 0.72rem; }
.store-cart-item small { margin-top: 0.2rem; color: #8b97a3; font-size: 0.62rem; }
.store-cart-quantity { display: flex; align-items: center; gap: 0.35rem; }
.store-cart-quantity button { width: 1.8rem; height: 1.8rem; }
.store-cart-quantity em { min-width: 1.4rem; font-size: 0.67rem; font-style: normal; text-align: center; }
.store-cart-empty { display: grid; min-height: 14rem; place-items: center; align-content: center; gap: 0.45rem; color: #7f8b97; text-align: center; }
.store-cart-empty svg { width: 2rem; height: 2rem; color: #ff7518; }
.store-cart-empty strong { color: #edf2f6; font-size: 0.84rem; }
.store-cart-empty span { font-size: 0.65rem; }
.store-cart-dialog .store-dialog-shell > footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem; border-top: 1px solid rgb(255 255 255 / 10%); }
.store-cart-dialog footer span,
.store-cart-dialog footer strong,
.store-cart-dialog footer small { display: block; }
.store-cart-dialog footer span { color: #84909c; font-size: 0.6rem; }
.store-cart-dialog footer strong { margin-top: 0.2rem; font-size: 1.15rem; }
.store-cart-dialog footer small { margin-top: 0.2rem; color: #66727e; font-size: 0.56rem; }
.store-cart-dialog footer .disabled { pointer-events: none; opacity: 0.45; }
.store-detail-body { display: grid; grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1.1fr); min-height: 26rem; }
.store-detail-media { display: grid; min-height: 26rem; place-items: center; padding: 1.5rem; border-right: 1px solid rgb(255 255 255 / 9%); background: radial-gradient(circle, #17202a, #080b0e 68%); }
.store-detail-media img { width: 100%; height: 100%; max-height: 23rem; object-fit: contain; }
.store-detail-media > svg { width: 4rem; height: 4rem; color: #ff7518; }
.store-detail-copy { display: flex; flex-direction: column; padding: 1.4rem; }
.store-detail-copy > p { margin: 0; color: #9ba6b2; font-size: 0.76rem; line-height: 1.65; }
.store-detail-copy ul { display: grid; gap: 0.55rem; margin: 1.1rem 0 0; padding: 0; list-style: none; }
.store-detail-copy li { display: flex; align-items: center; gap: 0.5rem; color: #c9d1d9; font-size: 0.68rem; }
.store-detail-copy li svg { width: 0.85rem; height: 0.85rem; color: #3bc9b8; }
.store-detail-price { margin-top: auto; padding: 1rem 0; }
.store-detail-price strong,
.store-detail-price small { display: block; }
.store-detail-price strong { font-size: 1.4rem; }
.store-detail-price small { margin-top: 0.3rem; color: #7f8b97; font-size: 0.62rem; line-height: 1.45; }
.store-detail-copy .btn { width: 100%; }

@media (max-width: 1180px) {
  .store-marketplace { width: min(100% - 2rem, 1100px); }
  .store-marketplace .store-toolbar { grid-template-columns: minmax(16rem, 1fr) auto; }
  .store-marketplace .store-filters { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; }
  .store-catalog-shell { grid-template-columns: 15.5rem minmax(0, 1fr); }
  .store-marketplace .store-services { grid-template-columns: 1fr 1fr; }
  .store-marketplace .store-services article:nth-child(2) { border-right: 0; }
  .store-marketplace .store-services article:nth-child(-n + 2) { border-bottom: 1px solid rgb(255 255 255 / 9%); }
}

@media (max-width: 900px) {
  .store-marketplace .storefront-hero { min-height: 38rem; }
  .store-marketplace .storefront-copy { width: 70%; padding-inline: 2rem; }
  .store-marketplace .storefront-trust { width: 100%; }
  .store-catalog-shell { grid-template-columns: 1fr; }
  .store-sidebar { display: none; }
}

@media (max-width: 640px) {
  .store-marketplace { width: min(100% - 1rem, 640px); }
  .store-marketplace .storefront-hero { min-height: 43rem; }
  .storefront-hero-media { object-position: 66% center; }
  .store-marketplace .storefront-hero::after { background: linear-gradient(180deg, rgb(3 5 8 / 94%) 0%, rgb(3 5 8 / 75%) 56%, rgb(3 5 8 / 94%) 100%); }
  .store-marketplace .storefront-copy { width: 100%; padding: 2rem 1.15rem 13rem; }
  .store-marketplace .storefront-copy h2 { max-width: 13ch; font-size: 2.4rem; }
  .store-marketplace .storefront-copy > p { font-size: 0.88rem; }
  .store-marketplace .storefront-trust { grid-template-columns: 1fr; }
  .store-marketplace .storefront-trust > span { min-height: 3.6rem; padding: 0.65rem 0.85rem; border-right: 0; border-bottom: 1px solid rgb(255 255 255 / 9%); }
  .store-marketplace .storefront-trust > span:last-child { border-bottom: 0; }
  .store-marketplace .store-toolbar { grid-template-columns: minmax(0, 1fr) auto; }
  .store-marketplace .store-filters { margin-inline: -0.55rem; padding-inline: 0.55rem; }
  .store-cart-trigger span { display: none; }
  .store-marketplace .store-grid { grid-template-columns: 1fr; }
  .store-marketplace .store-product { min-height: 0; }
  .store-marketplace .store-product__image { aspect-ratio: 1.5 / 1; }
  .store-results-head { align-items: flex-start; flex-direction: column; }
  .store-results-head label { width: 100%; justify-content: space-between; }
  .store-results-head select { flex: 1; }
  .store-marketplace .store-services { grid-template-columns: 1fr; }
  .store-marketplace .store-services article { border-right: 0; border-bottom: 1px solid rgb(255 255 255 / 9%); }
  .store-marketplace .store-services article:last-child { border-bottom: 0; }
  .store-dialog { width: calc(100% - 1rem); }
  .store-cart-item { grid-template-columns: 3.5rem minmax(0, 1fr) auto; }
  .store-cart-item > span { width: 3.5rem; }
  .store-cart-remove { grid-column: 3; grid-row: 2; justify-self: end; }
  .store-cart-dialog .store-dialog-shell > footer { align-items: stretch; flex-direction: column; }
  .store-cart-dialog footer .btn { width: 100%; }
  .store-detail-body { grid-template-columns: 1fr; overflow-y: auto; }
  .store-detail-media { min-height: 14rem; border-right: 0; border-bottom: 1px solid rgb(255 255 255 / 9%); }
}

/* Screen-based public navigation and store */
.site-routed .topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
}

.site-routed main > [data-site-screen]:not(.is-active-screen) {
  display: none !important;
}

.site-routed main > [data-site-screen] {
  box-sizing: border-box;
  min-height: 100svh;
  scroll-margin-top: 0;
}

.site-routed main > [data-site-screen]:not(.hero) {
  margin-top: 0;
  padding-top: calc(var(--topbar) + 5.8rem);
  padding-bottom: 4rem;
}

.site-routed .hero {
  min-height: 100svh;
  padding-top: calc(var(--topbar) + 3rem);
}

.screen-tabs {
  position: fixed;
  z-index: 35;
  top: var(--topbar);
  left: 50%;
  display: flex;
  width: min(100% - 2rem, 890px);
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.3rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: rgb(6 8 11 / 94%);
  box-shadow: 0 0.9rem 2rem rgb(0 0 0 / 28%);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.screen-tabs a {
  display: inline-flex;
  min-height: 2.55rem;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #aeb8c4;
  font-size: 0.79rem;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.screen-tabs a svg {
  width: 1rem;
  height: 1rem;
}

.screen-tabs a:hover,
.screen-tabs a.active {
  border-color: rgb(255 117 24 / 28%);
  background: rgb(255 117 24 / 9%);
  color: #ff8b36;
}

.site-routed .site-footer {
  padding-top: 2.2rem;
}

.storefront {
  position: relative;
  isolation: isolate;
  width: min(1460px, calc(100% - 4rem));
  margin-inline: auto;
}

.storefront::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 24%, rgb(255 117 24 / 11%), transparent 28rem),
    radial-gradient(circle at 14% 82%, rgb(19 181 189 / 7%), transparent 24rem),
    #030507;
  content: "";
}

.storefront-hero {
  display: grid;
  min-height: 29rem;
  grid-template-columns: minmax(0, 0.84fr) minmax(32rem, 1.16fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 8px;
  background: #080b0f;
  box-shadow: 0 2rem 5rem rgb(0 0 0 / 38%);
}

.storefront-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem clamp(2rem, 4vw, 4.5rem);
}

.storefront-copy::after {
  position: absolute;
  inset: 0 -8rem 0 auto;
  z-index: -1;
  width: 15rem;
  background: linear-gradient(90deg, #080b0f, transparent);
  content: "";
}

.storefront-copy h2 {
  max-width: 12ch;
  margin: 0;
  color: #f7f9fb;
  font-size: 3.65rem;
  line-height: 1.02;
}

.storefront-copy > p {
  max-width: 40rem;
  margin: 1.25rem 0 0;
  color: #b9c3ce;
  font-size: 1.04rem;
  line-height: 1.68;
}

.storefront-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.storefront-actions .btn {
  gap: 0.55rem;
}

.storefront-actions svg {
  width: 1.1rem;
  height: 1.1rem;
}

.storefront-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.1rem;
  margin-top: 1.6rem;
  color: #9da8b5;
  font-size: 0.76rem;
  font-weight: 750;
}

.storefront-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.storefront-trust svg {
  width: 0.95rem;
  height: 0.95rem;
  color: #42c7b5;
}

.storefront-visual {
  position: relative;
  min-height: 29rem;
  overflow: hidden;
  background: #050608;
}

.storefront-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(8 11 15 / 38%), transparent 36%, rgb(0 0 0 / 20%));
  content: "";
}

.storefront-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.storefront-visual > span {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.12rem 0.65rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 7px;
  background: rgb(3 5 7 / 87%);
  backdrop-filter: blur(14px);
}

.storefront-visual > span svg {
  width: 1.25rem;
  height: 1.25rem;
  grid-row: 1 / 3;
  align-self: center;
  color: #ff7a1a;
}

.storefront-visual > span strong {
  color: #f7f9fb;
  font-size: 0.8rem;
}

.storefront-visual > span small {
  color: #98a4b1;
  font-size: 0.67rem;
}

.store-toolbar {
  display: grid;
  grid-template-columns: minmax(15rem, 1fr) auto auto;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1rem;
  padding: 0.7rem;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 8px;
  background: rgb(9 12 16 / 92%);
}

.store-search {
  display: flex;
  min-height: 2.85rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0 0.9rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 6px;
  background: #05070a;
  color: #74808e;
}

.store-search svg {
  width: 1rem;
  height: 1rem;
}

.store-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f4f7fa;
  font: inherit;
}

.store-filters {
  display: flex;
  gap: 0.3rem;
}

.store-filters button {
  min-height: 2.6rem;
  padding: 0 0.75rem;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: #9ca7b4;
  cursor: pointer;
  font: inherit;
  font-size: 0.73rem;
  font-weight: 800;
}

.store-filters button:hover,
.store-filters button.active {
  border-color: rgb(255 117 24 / 30%);
  background: rgb(255 117 24 / 10%);
  color: #ff8b36;
}

.store-count {
  min-width: 5.2rem;
  color: #7f8b99;
  font-size: 0.72rem;
  text-align: right;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.store-product {
  position: relative;
  display: flex;
  min-height: 25rem;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 8px;
  background: #090c10;
  transition: border-color 180ms ease, transform 180ms ease;
}

.store-product:hover {
  border-color: rgb(255 117 24 / 42%);
  transform: translateY(-3px);
}

.store-product__image {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #10151b, #05070a);
}

.store-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-product__image > svg {
  width: 3rem;
  height: 3rem;
  color: #ff7a1a;
}

.store-product__badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.32rem 0.5rem;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 5px;
  background: rgb(4 6 8 / 88%);
  color: #dbe2e9;
  font-size: 0.62rem;
  font-weight: 850;
  text-transform: uppercase;
}

.store-product__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
}

.store-product__body small {
  color: #ff7a1a;
  font-size: 0.65rem;
  font-weight: 850;
  text-transform: uppercase;
}

.store-product__body h3 {
  margin: 0.5rem 0 0;
  color: #f4f7fa;
  font-size: 1rem;
  line-height: 1.3;
}

.store-product__body p {
  margin: 0.55rem 0 0;
  color: #909ba7;
  font-size: 0.76rem;
  line-height: 1.55;
}

.store-product__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.store-product__specs li {
  padding: 0.3rem 0.45rem;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 4px;
  color: #aab4bf;
  font-size: 0.64rem;
}

.store-product__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 1rem;
}

.store-product__price strong {
  display: block;
  color: #f5f7fa;
  font-size: 1.05rem;
}

.store-product__price span {
  color: #7f8b97;
  font-size: 0.62rem;
}

.store-product__footer a {
  display: inline-grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border-radius: 6px;
  background: #ff7518;
  color: #080a0c;
}

.store-product__footer a svg {
  width: 1rem;
  height: 1rem;
}

.store-empty {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px dashed rgb(255 255 255 / 15%);
  border-radius: 8px;
  background: rgb(8 11 15 / 72%);
}

.store-empty[hidden] {
  display: none;
}

.store-empty > span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgb(255 117 24 / 28%);
  border-radius: 7px;
  color: #ff7a1a;
}

.store-empty > span svg {
  width: 1.35rem;
  height: 1.35rem;
}

.store-empty strong {
  display: block;
  color: #eef2f6;
  font-size: 0.92rem;
}

.store-empty p {
  max-width: 54rem;
  margin: 0.25rem 0 0;
  color: #8e99a6;
  font-size: 0.74rem;
  line-height: 1.5;
}

.store-empty > a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #ff8b36;
  font-size: 0.76rem;
  font-weight: 850;
  text-decoration: none;
}

.store-empty > a svg {
  width: 1rem;
  height: 1rem;
}

.store-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.store-services article {
  position: relative;
  min-height: 13.5rem;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 8px;
  background: linear-gradient(145deg, rgb(13 17 22 / 96%), rgb(6 8 11 / 96%));
}

.store-services article > span {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 1px solid rgb(255 117 24 / 28%);
  border-radius: 7px;
  color: #ff7a1a;
}

.store-services article > span svg {
  width: 1.25rem;
  height: 1.25rem;
}

.store-services article > small {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  color: rgb(255 117 24 / 48%);
  font-size: 0.72rem;
  font-weight: 900;
}

.store-services strong {
  display: block;
  margin-top: 1rem;
  color: #eef2f6;
  font-size: 0.98rem;
}

.store-services p {
  margin: 0.45rem 0 0;
  color: #8d99a6;
  font-size: 0.76rem;
  line-height: 1.5;
}

.store-services a {
  display: inline-block;
  margin-top: 0.9rem;
  color: #ff8b36;
  font-size: 0.73rem;
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .site-routed .main-nav {
    gap: 0.8rem;
  }

  .site-routed .main-nav a {
    font-size: 0.76rem;
  }

  .site-routed .main-nav .support-link {
    min-width: 0;
    padding-inline: 0.8rem;
  }

  .storefront {
    width: min(100% - 2rem, 980px);
  }

  .storefront-hero {
    grid-template-columns: 1fr;
  }

  .storefront-copy::after {
    content: none;
  }

  .storefront-visual {
    min-height: 23rem;
  }

  .store-toolbar {
    grid-template-columns: 1fr auto;
  }

  .store-filters {
    grid-column: 1 / -1;
    grid-row: 2;
    overflow-x: auto;
  }

  .store-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .site-routed .topbar .main-nav {
    top: var(--topbar);
  }

  .screen-tabs {
    right: 0;
    left: 0;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    transform: none;
    scrollbar-width: none;
  }

  .screen-tabs::-webkit-scrollbar {
    display: none;
  }

  .screen-tabs a {
    flex: 0 0 auto;
  }

  .site-routed main > [data-site-screen]:not(.hero) {
    padding-top: calc(var(--topbar) + 5rem);
  }

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

  .store-services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-routed .hero {
    min-height: 100svh;
    padding-top: calc(var(--topbar) + 3.4rem);
  }

  .site-routed main > [data-site-screen]:not(.hero) {
    min-height: 100svh;
    padding-top: calc(var(--topbar) + 4.5rem);
    padding-bottom: 2rem;
  }

  .screen-tabs {
    min-height: 3rem;
    padding-inline: 0.45rem;
  }

  .screen-tabs a {
    min-height: 2.35rem;
    padding-inline: 0.65rem;
    font-size: 0.7rem;
  }

  .storefront {
    width: min(100% - 1rem, 640px);
  }

  .storefront-hero {
    min-height: 0;
  }

  .storefront-copy {
    padding: 2rem 1.1rem;
  }

  .storefront-copy h2 {
    font-size: 2.45rem;
  }

  .storefront-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .storefront-actions .btn {
    width: 100%;
  }

  .storefront-visual {
    min-height: 16rem;
  }

  .storefront-visual > span {
    right: 0.65rem;
    bottom: 0.65rem;
    left: 0.65rem;
  }

  .store-toolbar {
    grid-template-columns: 1fr auto;
  }

  .store-filters {
    margin-inline: -0.7rem;
    padding-inline: 0.7rem;
  }

  .store-count {
    min-width: 4.4rem;
  }

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

  .store-product {
    min-height: 0;
  }

  .store-empty {
    grid-template-columns: auto 1fr;
  }

  .store-empty > a {
    grid-column: 1 / -1;
  }
}

/* Compact full-width footer */
.site-routed .site-footer,
.site-footer {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(255 117 24 / 22%);
  background: #030405;
  color: #9ca8b5;
  font-size: 0.82rem;
}

.footer-shell {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.48fr) minmax(0, 1.35fr) minmax(0, 0.82fr);
  gap: clamp(1.5rem, 3vw, 3.2rem);
  align-items: start;
  margin-inline: auto;
  padding: 2.6rem clamp(1.5rem, 4vw, 5rem) 2.35rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.footer-brand img {
  width: 10.5rem;
  height: auto;
  object-fit: contain;
}

.footer-brand p {
  max-width: 23rem;
  margin: 1rem 0 0;
  color: #909ca8;
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.footer-location > svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  color: #ff7a1a;
}

.footer-location span,
.footer-location small,
.footer-location strong {
  display: block;
}

.footer-location small {
  color: #74808c;
  font-size: 0.6rem;
}

.footer-location strong {
  margin-top: 0.18rem;
  color: #dbe1e7;
  font-size: 0.72rem;
}

.footer-column > strong {
  display: block;
  margin-bottom: 0.9rem;
  color: #f1f4f7;
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.footer-links a {
  display: inline-flex;
  width: auto;
  align-items: center;
  gap: 0.48rem;
  color: #9ca8b5;
  font-size: 0.74rem;
  line-height: 1.45;
  text-decoration: none;
}

.footer-links a {
  position: relative;
  padding-left: 0.75rem;
}

.footer-links a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: rgb(255 117 24 / 46%);
  content: "";
  transform: translateY(-50%);
}

.footer-links a:hover {
  color: #ff8b36;
}

.footer-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgb(255 255 255 / 8%);
  border-left: 1px solid rgb(255 255 255 / 8%);
}

.footer-solution-grid > a {
  display: grid;
  min-height: 4.3rem;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  padding: 0.7rem 0.8rem;
  border-right: 1px solid rgb(255 255 255 / 8%);
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease;
}

.footer-solution-grid > a:hover {
  background: rgb(255 117 24 / 6%);
}

.footer-solution-grid > a > svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #ff7a1a;
}

.footer-solution-grid span,
.footer-solution-grid strong,
.footer-solution-grid small {
  display: block;
  min-width: 0;
}

.footer-solution-grid strong {
  overflow: hidden;
  color: #edf1f5;
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-solution-grid small {
  margin-top: 0.22rem;
  overflow: hidden;
  color: #8793a0;
  font-size: 0.61rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-cta {
  min-height: 9.2rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgb(255 255 255 / 9%);
}

.footer-cta > span {
  color: #ff7a1a;
  font-size: 0.65rem;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-cta > strong {
  display: block;
  max-width: 18rem;
  margin-top: 0.45rem;
  color: #f1f4f7;
  font-size: 1rem;
  line-height: 1.35;
}

.footer-cta > p {
  max-width: 17rem;
  margin: 0.6rem 0 0;
  color: #8995a1;
  font-size: 0.7rem;
  line-height: 1.5;
}

.footer-cta > .footer-whatsapp {
  display: grid;
  width: min(100%, 18rem);
  min-height: 3.2rem;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.05rem 0.65rem;
  margin-top: 1rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgb(255 117 24 / 68%);
  border-radius: 7px;
  background: rgb(255 117 24 / 8%);
  color: #ff8b36;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.footer-cta > .footer-whatsapp:hover {
  border-color: #ff7a1a;
  background: rgb(255 117 24 / 14%);
}

.footer-cta > .footer-whatsapp svg {
  width: 1.15rem;
  height: 1.15rem;
  grid-row: 1 / 3;
}

.footer-cta > .footer-whatsapp span {
  color: #f6f8fa;
  font-size: 0.76rem;
  font-weight: 850;
}

.footer-cta > .footer-whatsapp small {
  color: #aab5c0;
  font-size: 0.64rem;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
  color: #9da9b5;
  font-size: 0.68rem;
  text-decoration: none;
}

.footer-email:hover {
  color: #ff8b36;
}

.footer-email svg {
  width: 0.95rem;
  height: 0.95rem;
  color: #ff7a1a;
}

.footer-bottom {
  display: grid;
  width: 100%;
  min-height: 3.8rem;
  grid-template-columns: minmax(15rem, 0.9fr) minmax(18rem, 1fr) auto auto;
  gap: 1.2rem;
  align-items: center;
  margin-inline: auto;
  padding: 0 clamp(1.5rem, 4vw, 5rem);
  border-top: 1px solid rgb(255 255 255 / 8%);
}

.footer-bottom > div {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom > div svg {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
  color: #48c7b5;
}

.footer-bottom p,
.footer-bottom small {
  margin: 0;
  color: #768391;
  font-size: 0.65rem;
  line-height: 1.4;
}

.site-footer .footer-bottom small,
.site-footer .footer-bottom > a {
  grid-column: auto;
}

.footer-bottom a {
  color: #9ca8b5;
  font-size: 0.65rem;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ff8b36;
}

@media (max-width: 980px) {
  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-cta {
    padding-left: 0;
    border-left: 0;
  }

  .footer-solutions {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
    padding: 0.9rem 0;
  }
}

@media (max-width: 640px) {
  .footer-shell {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 2.2rem 1rem 1.8rem;
  }

  .footer-brand,
  .footer-links {
    align-items: flex-start;
  }

  .footer-shell {
    text-align: left;
  }

  .footer-solutions {
    grid-column: auto;
  }

  .footer-solution-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    min-height: 0;
    padding-top: 1.4rem;
    border-top: 1px solid rgb(255 255 255 / 8%);
  }

  .footer-bottom {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 1rem 1rem 1.2rem;
  }

  .footer-bottom > div {
    align-items: flex-start;
  }
}

/* Mantem o acesso interno alinhado aos ajustes finais do cabecalho. */
@media (max-width: 1540px) and (min-width: 721px) {
  .topbar .main-nav {
    gap: clamp(0.72rem, 1.18vw, 1.2rem);
  }

  .topbar .main-nav .support-link {
    min-width: 9.5rem;
  }
}

@media (max-width: 720px) {
  .topbar .main-nav .private-link {
    width: 100%;
    justify-content: flex-start;
  }

  .topbar .main-nav .private-link span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }
}

@media (max-width: 640px) {
  .systems-showcase {
    width: min(100% - 1rem, 640px);
    gap: 2rem;
    margin-block: 1rem 2.5rem;
    padding: 2.75rem 1rem 1rem;
    border-radius: 1.35rem;
  }

  .systems-copy h2 {
    font-size: clamp(2.2rem, 11vw, 3.25rem);
  }

  .systems-actions {
    grid-template-columns: 1fr;
  }

  .systems-actions .btn {
    width: 100%;
  }

  .systems-panel {
    border-radius: 1rem;
  }

  .systems-panel img {
    height: clamp(13rem, 58vw, 19rem);
  }

  .systems-panel ul {
    grid-template-columns: 1fr;
  }

  .systems-panel li {
    min-height: auto;
    padding-block: 1.15rem;
  }

  .systems-panel li:nth-child(odd) {
    border-right: 0;
  }

  .systems-panel li::before {
    top: 1.28rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 73% 24%, rgb(255 117 24 / 9%), transparent 27rem),
    radial-gradient(circle at 8% 18%, rgb(25 230 255 / 6%), transparent 21rem),
    linear-gradient(180deg, #030303 0%, #070808 48%, #030303 100%);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(180deg, rgb(0 0 0 / 58%), transparent 74%);
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent, rgb(255 255 255 / 2%), transparent),
    radial-gradient(circle at 50% 50%, transparent, rgb(0 0 0 / 54%));
}

a {
  color: inherit;
}

.support-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  background:
    radial-gradient(circle at 70% 20%, rgb(255 117 24 / 12%), transparent 24rem),
    rgb(0 0 0 / 68%);
  backdrop-filter: blur(8px);
}

.support-backdrop[hidden],
.support-assistant[hidden] {
  display: none !important;
}

.support-assistant {
  position: fixed;
  z-index: 56;
  top: 50%;
  right: clamp(1rem, 4vw, 5rem);
  display: grid;
  width: min(31rem, calc(100vw - 2rem));
  max-height: calc(100dvh - 2rem);
  grid-template-rows: auto minmax(18rem, 1fr) auto auto;
  overflow: hidden;
  border: 1px solid rgb(255 117 24 / 55%);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgb(255 117 24 / 13%), transparent 20rem),
    linear-gradient(180deg, rgb(255 255 255 / 4%), transparent 38%),
    rgb(4 6 7 / 96%);
  box-shadow: 0 2rem 6rem rgb(0 0 0 / 64%), 0 0 3rem rgb(255 117 24 / 12%);
  transform: translateY(-50%);
}

.support-assistant-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.support-avatar {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgb(255 117 24 / 52%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgb(255 255 255 / 18%), transparent 34%),
    linear-gradient(180deg, #ff8a24, #ff6e08);
  color: #060606;
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 0 1.2rem rgb(255 117 24 / 24%);
}

.support-assistant-head span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-assistant-head h2 {
  margin: 0.16rem 0 0;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.support-assistant-head button {
  margin-left: auto;
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 9px;
  background: rgb(255 255 255 / 5%);
  color: var(--text);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.support-thread {
  display: flex;
  min-height: 27rem;
  flex-direction: column;
  gap: 0.65rem;
  overflow-y: auto;
  padding: 1rem;
  background:
    linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px),
    radial-gradient(circle at 70% 18%, rgb(255 117 24 / 8%), transparent 16rem);
  background-size: 34px 34px, 34px 34px, auto;
}

.support-message {
  width: fit-content;
  max-width: 86%;
  margin: 0;
  padding: 0.78rem 0.9rem;
  border: 1px solid rgb(255 255 255 / 9%);
  color: #e4ecf5;
  font-size: 0.95rem;
  line-height: 1.42;
  white-space: pre-line;
  box-shadow: 0 0.7rem 1.6rem rgb(0 0 0 / 16%);
}

.support-message.bot {
  align-self: flex-start;
  border-radius: 13px 13px 13px 4px;
  background:
    linear-gradient(135deg, rgb(255 117 24 / 11%), transparent 75%),
    rgb(255 255 255 / 4%);
}

.support-message.user {
  align-self: flex-end;
  border-color: rgb(255 117 24 / 50%);
  border-radius: 13px 13px 4px 13px;
  background: linear-gradient(180deg, #ff8a24, #ff6e08);
  color: #070707;
  font-weight: 800;
}

.support-message.summary {
  max-width: 95%;
  border-color: rgb(25 230 255 / 26%);
  background:
    linear-gradient(135deg, rgb(25 230 255 / 10%), transparent 70%),
    rgb(255 255 255 / 5%);
}

.support-actions {
  display: flex;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid rgb(255 255 255 / 9%);
  background: rgb(1 2 3 / 60%);
}

.support-actions[hidden] {
  display: none;
}

.support-reset {
  min-height: 3rem;
  padding: 0 0.9rem;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 8px;
  background: rgb(255 255 255 / 5%);
  color: var(--text);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.support-composer {
  display: flex;
  gap: 0.65rem;
  padding: 0.9rem 1rem 1rem;
  border-top: 1px solid rgb(255 255 255 / 9%);
  background: rgb(1 2 3 / 78%);
}

.support-composer[hidden] {
  display: none;
}

input,
textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #07090a;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

textarea {
  min-height: 6.5rem;
  resize: vertical;
}

.support-composer input {
  min-height: 3rem;
  border-radius: 999px;
}

.support-composer button {
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgb(255 117 24 / 76%);
  border-radius: 50%;
  background: linear-gradient(180deg, #ff8a24, #ff6e08);
  color: #050505;
  cursor: pointer;
}

.support-composer button svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgb(255 117 24 / 28%);
  border-color: rgb(255 117 24 / 62%);
}

.topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: var(--topbar);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1.25rem, 4.5vw, 5rem);
  border-bottom: 1px solid rgb(255 117 24 / 72%);
  background: rgb(1 2 3 / 94%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: clamp(10.5rem, 12vw, 14.5rem);
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.7vw, 2.6rem);
}

.main-nav a {
  position: relative;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  padding: 0;
  border: 1px solid transparent;
  color: #f4f7fb;
  font-size: 0.9rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
}

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

.main-nav .support-link {
  min-height: 3.65rem;
  gap: 0.55rem;
  padding: 0 1.45rem;
  border-color: rgb(255 117 24 / 75%);
  border-radius: 8px;
  color: var(--orange);
}

.main-nav .support-link svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.main-nav .support-link::after {
  display: none;
}

.menu-button {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 4%);
}

.menu-button span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 3px auto;
  border-radius: 99px;
  background: var(--text);
}

main {
  display: grid;
  gap: clamp(3.8rem, 7vw, 6.2rem);
}

main section[id] {
  scroll-margin-top: calc(var(--topbar) + 20px);
}

.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  display: grid;
  align-items: start;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-bg img,
.hero-bg iframe {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.075;
  filter: saturate(0.9) contrast(0.95) brightness(0.58);
  transform: scale(1.01);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 65%, rgb(255 117 24 / 9%), transparent 18rem),
    radial-gradient(circle at 68% 43%, rgb(255 117 24 / 6%), transparent 25rem),
    linear-gradient(90deg, rgb(0 0 0 / 96%) 0%, rgb(0 0 0 / 88%) 44%, rgb(0 0 0 / 82%) 100%),
    linear-gradient(180deg, rgb(0 0 0 / 2%) 0%, rgb(0 0 0 / 28%) 100%);
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(180deg, transparent 0%, rgb(0 0 0 / 42%) 100%);
  background-size: 60px 60px, 60px 60px, auto;
  opacity: 0.26;
  content: "";
}

.hero-shell {
  display: grid;
  width: min(1600px, calc(100% - clamp(4rem, 8vw, 10rem)));
  min-height: auto;
  grid-template-columns: minmax(32rem, 1.24fr) minmax(22rem, 0.76fr);
  gap: clamp(2rem, 4vw, 4.6rem);
  align-content: start;
  align-items: center;
  margin-inline: auto;
  padding: clamp(3rem, 5.2vh, 4.7rem) 0 clamp(1.35rem, 3vh, 2.4rem);
}

.hero-copy {
  position: relative;
  max-width: 45rem;
  padding: clamp(1rem, 2vw, 1.7rem) 0 clamp(1rem, 2vw, 1.7rem) clamp(1.1rem, 2.3vw, 2rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-copy::before {
  position: absolute;
  top: 0.35rem;
  bottom: 0.35rem;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, var(--orange) 22%, var(--orange) 78%, transparent);
  box-shadow: 0 0 1rem rgb(255 117 24 / 42%);
  content: "";
}

.hero-copy::after {
  position: absolute;
  inset: -1.1rem -2rem -1.2rem -1.4rem;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 35%, rgb(255 117 24 / 8%), transparent 15rem),
    linear-gradient(90deg, rgb(255 117 24 / 4%), transparent 64%);
  clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
  opacity: 0.9;
  content: "";
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  color: var(--orange);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow i {
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0.75rem rgb(255 117 24 / 62%);
  content: "";
}

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

.hero-title {
  position: relative;
  display: grid;
  max-width: 15.8ch;
  margin-bottom: 0.8rem;
  font-size: clamp(3.25rem, 4.9vw, 5.65rem);
  font-weight: 950;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 1.1rem 2.6rem rgb(0 0 0 / 54%);
}

.hero-title .title-line {
  display: block;
  color: #f8fbff;
  background: linear-gradient(180deg, #fff 0%, #f5f7fb 46%, #b7c0cc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-wrap: balance;
  -webkit-text-fill-color: transparent;
}

.hero-title em {
  color: var(--text);
  font-style: normal;
  background: linear-gradient(180deg, #fff 0%, #dce3ec 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title strong {
  color: var(--orange);
  background: linear-gradient(180deg, #ffb067 0%, #ff7618 45%, #e65a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 950;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 0.45rem rgb(255 117 24 / 22%));
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 4.15rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy > p,
.section-head p,
.experience-copy p,
.diagnostic > div p,
.contact p {
  max-width: 38rem;
  color: #c9d2df;
  font-size: clamp(1.1rem, 1.55vw, 1.38rem);
  line-height: 1.58;
}

.hero-rule {
  display: block;
  width: clamp(5rem, 10vw, 9rem);
  height: 2px;
  margin: 1.35rem 0 1.15rem;
  background: linear-gradient(90deg, var(--orange), rgb(255 117 24 / 20%), transparent);
  box-shadow: 0 0 0.8rem rgb(255 117 24 / 38%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: 0.86rem 1.18rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn.primary {
  border-color: rgb(255 117 24 / 95%);
  background: linear-gradient(180deg, #ff8a24 0%, #ff6e08 100%);
  color: #060606;
  box-shadow: 0 0 0 1px rgb(255 255 255 / 16%) inset, 0 1.2rem 2.8rem rgb(255 117 24 / 24%);
}

.whatsapp-btn {
  min-height: 4.05rem;
  padding-inline: 1.7rem;
  color: #050505;
  font-size: 1rem;
  text-transform: uppercase;
}

.whatsapp-btn svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-media {
  position: relative;
  justify-self: end;
  width: min(100%, 34rem);
  min-width: 0;
}

.hero-media::before {
  position: absolute;
  inset: 18% 8% -4% 18%;
  z-index: -1;
  border-radius: 999px;
  background: rgb(255 117 24 / 8%);
  filter: blur(3.4rem);
  content: "";
}

.video-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgb(255 117 24 / 38%);
  border-radius: 10px;
  background: #050505;
  box-shadow:
    0 0 0 1px rgb(255 117 24 / 13%) inset,
    0 1.2rem 3rem rgb(0 0 0 / 42%),
    0 0 1.8rem rgb(255 117 24 / 6%);
}

.video-card::before,
.video-card::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  transition: opacity 180ms ease;
}

.video-card::before {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 24%), transparent 34%, transparent 70%, rgb(0 0 0 / 18%)),
    linear-gradient(180deg, rgb(0 0 0 / 8%) 0%, transparent 42%, rgb(0 0 0 / 26%) 100%);
}

.video-card::after {
  background: linear-gradient(180deg, rgb(255 255 255 / 6%), transparent 16%, transparent 84%, rgb(0 0 0 / 16%));
  mix-blend-mode: soft-light;
}

.hero-video,
.video-poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050505;
  filter: saturate(1.08) contrast(1.08) brightness(0.92);
  transform: none;
}

.hero-video {
  cursor: pointer;
}

.video-card.is-playing .hero-video {
  filter: saturate(1.06) contrast(1.06) brightness(0.96);
}

.video-glow {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 56%, rgb(255 117 24 / 8%), transparent 11rem);
  mix-blend-mode: screen;
  opacity: 0.55;
  transition: opacity 180ms ease;
}

.play-button {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(3.7rem, 4.5vw, 4.9rem);
  height: clamp(3.7rem, 4.5vw, 4.9rem);
  place-items: center;
  border: 1px solid rgb(255 117 24 / 58%);
  border-radius: 50%;
  background: rgb(0 0 0 / 42%);
  color: #fff;
  box-shadow:
    0 0 0 0.45rem rgb(255 117 24 / 6%),
    0 0 1.25rem rgb(255 117 24 / 24%);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.play-button svg {
  width: 1.8rem;
  height: 1.8rem;
  margin-left: 0.22rem;
  fill: currentColor;
}

.video-card.is-playing .play-button {
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
}

.video-card.is-playing::before,
.video-card.is-playing::after,
.video-card.is-playing .video-glow {
  opacity: 0;
}

.video-card.is-paused .play-button,
.video-card.is-ended .play-button {
  visibility: visible;
  opacity: 1;
}

.btn.ghost {
  background: rgb(255 255 255 / 7%);
}

.btn.wide {
  width: 100%;
}

.service-dock {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1320px, calc(100% - clamp(4rem, 10vw, 12rem)));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0 auto clamp(2.6rem, 4.5vw, 4rem);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.hero-services {
  width: min(1380px, calc(100% - clamp(4rem, 9vw, 11rem)));
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.2rem;
}

.service-dock a {
  position: relative;
  display: flex;
  min-height: 9.2rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.48rem;
  overflow: hidden;
  padding: 1.05rem 0.95rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgb(255 117 24 / 12%), transparent 8rem),
    linear-gradient(180deg, rgb(255 255 255 / 4%), transparent 48%),
    rgb(3 5 6 / 76%);
  color: var(--text);
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 1rem 2.8rem rgb(0 0 0 / 24%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-services a {
  min-height: 6.9rem;
  gap: 0.42rem;
  padding: 0.8rem 0.65rem;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 3%), transparent 56%),
    rgb(3 5 6 / 58%);
  box-shadow: 0 0.8rem 2rem rgb(0 0 0 / 18%);
}

.service-dock a::before {
  position: absolute;
  top: 0;
  left: 18%;
  width: 64%;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgb(255 117 24 / 90%), transparent);
  opacity: 0.58;
  content: "";
}

.service-dock a::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgb(255 255 255 / 7%), transparent 28%, transparent 72%, rgb(255 117 24 / 6%));
  opacity: 0.55;
  content: "";
}

.service-dock a:last-child {
  border-right: 1px solid rgb(255 255 255 / 10%);
}

.service-dock a:hover {
  border-color: rgb(255 117 24 / 50%);
  background:
    radial-gradient(circle at 50% 0%, rgb(255 117 24 / 18%), transparent 8rem),
    linear-gradient(180deg, rgb(255 255 255 / 5%), transparent 48%),
    rgb(5 7 8 / 88%);
  transform: translateY(-3px);
}

.service-dock svg {
  display: block;
  width: 2.45rem;
  height: 2.45rem;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 0.75rem rgb(255 117 24 / 34%));
}

.hero-services svg {
  width: 2rem;
  height: 2rem;
  filter: drop-shadow(0 0 0.45rem rgb(255 117 24 / 28%));
}

.desktop-screen,
.desktop-tower,
.desktop-stand,
.notebook-screen,
.notebook-base,
.support-tool,
.support-spark {
  transform-box: fill-box;
  transform-origin: center;
}

.desktop-screen,
.notebook-screen {
  fill: rgb(255 117 24 / 5%);
}

.desktop-screen {
  animation: desktopBoot 3.1s ease-in-out infinite;
}

.desktop-tower {
  animation: towerBlink 3.1s ease-in-out infinite;
}

.desktop-stand {
  stroke-dasharray: 34;
  animation: standTrace 3.1s ease-in-out infinite;
}

.notebook-screen {
  transform-origin: 50% 100%;
  animation: notebookWake 3.4s ease-in-out infinite;
}

.notebook-base {
  stroke-dasharray: 36;
  animation: baseTrace 3.4s ease-in-out infinite;
}

.support-icon {
  overflow: visible;
}

.support-tool {
  animation: toolPulse 3.2s ease-in-out infinite;
}

.support-spark {
  opacity: 0;
  stroke-width: 2;
  animation: sparkFlash 3.2s ease-in-out infinite;
}

.spark-1 {
  animation-delay: 0.2s;
}

.spark-2 {
  animation-delay: 0.42s;
}

.desktop-service:hover .desktop-screen,
.desktop-service:hover .desktop-tower,
.desktop-service:hover .desktop-stand,
.notebook-service:hover .notebook-screen,
.notebook-service:hover .notebook-base,
.support-service:hover .support-tool,
.support-service:hover .support-spark {
  animation-duration: 1.65s;
}

.service-dock .wifi-service {
  gap: 0.32rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  isolation: isolate;
}

.service-dock .wifi-service::before {
  background: linear-gradient(90deg, transparent, rgb(255 117 24 / 96%), rgb(255 185 82 / 92%), transparent);
}

.service-dock .wifi-service::after {
  background:
    radial-gradient(circle at 50% 32%, rgb(255 117 24 / 18%), transparent 5.7rem),
    linear-gradient(135deg, rgb(255 255 255 / 7%), transparent 28%, transparent 72%, rgb(255 117 24 / 9%));
}

.service-dock .wifi-icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.08rem;
  overflow: visible;
  filter:
    drop-shadow(0 0 0.55rem rgb(255 117 24 / 38%))
    drop-shadow(0 0 1.15rem rgb(255 117 24 / 16%));
}

.service-dock .wifi-service b {
  margin-top: 0.1rem;
}

.service-dock .wifi-service p {
  max-width: 11.5rem;
  line-height: 1.32;
}

.wifi-ring,
.wifi-dot {
  opacity: 0.22;
  transform-box: fill-box;
  transform-origin: center;
}

.wifi-ring {
  stroke-dasharray: 44;
  stroke-dashoffset: 44;
  animation: wifiSignal 2.2s ease-in-out infinite;
}

.wifi-dot {
  fill: var(--orange);
  stroke: none;
  animation: wifiDot 2.2s ease-in-out infinite;
}

.ring-1 {
  animation-delay: 0.1s;
}

.ring-2 {
  animation-delay: 0.32s;
}

.ring-3 {
  animation-delay: 0.54s;
}

.wifi-service:hover .wifi-ring,
.wifi-service:hover .wifi-dot {
  animation-duration: 1.45s;
}

.service-dock b {
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.015em;
}

.hero-services b {
  font-size: 0.76rem;
  line-height: 1.2;
}

.service-dock p {
  max-width: 16.5rem;
  margin: 0;
  color: #b9c4d1;
  font-size: 0.86rem;
  line-height: 1.36;
  text-transform: none;
}

.hero-services p {
  display: none;
}

.command-grid,
.solution-grid,
.section-head,
.experience,
.differentials,
.diagnostic,
.portal,
.proof,
.reviews,
.contact {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

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

.command-grid article,
.solution-card,
.experience-panel,
.differential-grid article,
.diagnostic-console,
.portal-card,
.work-card,
.review-card,
.contact {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 1.1rem 3.2rem rgb(0 0 0 / 22%);
  backdrop-filter: blur(16px);
}

.command-grid article {
  padding: 1.05rem;
}

.metric {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--orange);
  font-size: 2.2rem;
  font-weight: 950;
}

.command-grid p,
.solution-card p,
.differential-grid p,
.tab-pane p,
.diagnostic-result p,
.portal-card p,
.work-card p,
.review-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.48;
}

.section-head {
  position: relative;
  display: grid;
  width: min(1440px, calc(100% - clamp(4rem, 9vw, 12rem)));
  grid-template-columns: minmax(0, 0.82fr) minmax(20rem, 0.42fr);
  gap: clamp(2.8rem, 8vw, 8rem);
  align-items: center;
  justify-items: stretch;
  padding: clamp(3.2rem, 6vw, 5rem) 0 clamp(1.2rem, 2vw, 1.7rem);
  text-align: left;
}

.section-head::before {
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: min(18rem, 34vw);
  height: 1px;
  background: linear-gradient(90deg, rgb(255 117 24 / 82%), transparent);
  content: "";
}

.section-head .eyebrow,
.experience .eyebrow,
.differentials .eyebrow,
.diagnostic .eyebrow,
.portal .eyebrow,
.proof .eyebrow,
.reviews .eyebrow,
.contact .eyebrow {
  color: var(--orange);
}

.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-head h2 {
  grid-column: 1;
  max-width: 15ch;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4vw, 4.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.section-head p {
  grid-column: 2;
  justify-self: end;
  max-width: 29rem;
  margin-bottom: 0;
  padding: 1.05rem 1.1rem;
  border-left: 2px solid rgb(255 117 24 / 76%);
  border-radius: 0 8px 8px 0;
  background:
    linear-gradient(90deg, rgb(255 117 24 / 10%), transparent 80%),
    rgb(255 255 255 / 2%);
  color: #d7e0eb;
  font-size: clamp(1rem, 1.15vw, 1.13rem);
  line-height: 1.55;
}

.solution-grid {
  display: grid;
  width: min(1440px, calc(100% - clamp(4rem, 9vw, 12rem)));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2vw, 2rem);
  margin-bottom: clamp(1.8rem, 4vw, 3.2rem);
}

.solution-card {
  position: relative;
  display: grid;
  min-height: 12rem;
  align-content: start;
  overflow: hidden;
  padding: 1.1rem 1.05rem 1.15rem;
  border-color: rgb(255 255 255 / 11%);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 0%, rgb(255 117 24 / 10%), transparent 8rem),
    linear-gradient(180deg, rgb(255 255 255 / 3%), transparent 52%),
    rgb(4 7 8 / 76%);
  box-shadow: 0 1rem 2.6rem rgb(0 0 0 / 20%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.solution-card::before {
  position: absolute;
  top: 0;
  left: 1.05rem;
  right: 1.05rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgb(255 117 24 / 74%), transparent);
  content: "";
  opacity: 0.34;
  transition: opacity 180ms ease;
}

.solution-card::after {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid rgb(255 117 24 / 74%);
  border-radius: 50%;
  background: rgb(255 117 24 / 16%);
  box-shadow: 0 0 1rem rgb(255 117 24 / 20%);
  content: "";
}

.solution-card:hover,
.solution-card.active {
  border-color: rgb(255 117 24 / 52%);
  background:
    radial-gradient(circle at 82% 0%, rgb(255 117 24 / 16%), transparent 8rem),
    linear-gradient(180deg, rgb(255 255 255 / 4%), transparent 52%),
    rgb(8 8 8 / 86%);
  transform: translateY(-3px);
}

.solution-card:hover::before,
.solution-card.active::before {
  opacity: 1;
}

.solution-card b {
  display: inline-flex;
  width: fit-content;
  min-height: 1.65rem;
  align-items: center;
  margin-bottom: 1.55rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgb(25 230 255 / 20%);
  border-radius: 999px;
  background: rgb(25 230 255 / 5%);
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.solution-card strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.02rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.solution-card p {
  font-size: 0.95rem;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(22rem, 1.12fr);
  gap: 1.2rem;
  align-items: center;
}

.experience-panel,
.diagnostic-console,
.portal-card {
  padding: 1.25rem;
  border-color: rgb(255 255 255 / 14%);
  background:
    linear-gradient(145deg, rgb(255 117 24 / 7%), transparent 46%),
    rgb(5 8 9 / 82%);
}

.experience-copy {
  padding: clamp(1.2rem, 3vw, 2rem);
  border-left: 3px solid var(--orange);
}

.technical-owner {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.15rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgb(255 117 24 / 36%);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgb(255 117 24 / 12%), rgb(255 255 255 / 3%)),
    rgb(5 8 9 / 70%);
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  box-shadow: 0 0.8rem 2rem rgb(0 0 0 / 20%);
}

.technical-owner::before {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0.9rem rgb(255 117 24 / 70%);
  content: "";
}

.experience-copy h2,
.diagnostic h2,
.portal h2,
.contact h2 {
  text-transform: uppercase;
}

.tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tab-row button {
  min-height: 2.55rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 4%);
  color: var(--muted);
  font: inherit;
  font-weight: 900;
}

.tab-row button.active {
  border-color: rgb(255 117 24 / 55%);
  background: rgb(255 117 24 / 13%);
  color: var(--text);
}

.tab-pane {
  display: none;
  min-height: 10rem;
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(25 230 255 / 10%), transparent),
    rgb(255 255 255 / 4%);
}

.tab-pane.active {
  display: block;
}

.tab-pane strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.differentials {
  display: grid;
  grid-template-columns: minmax(15rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  padding: clamp(1.1rem, 2.6vw, 1.6rem);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 20%, rgb(255 117 24 / 12%), transparent 16rem),
    rgb(3 5 6 / 58%);
}

.differentials-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  text-transform: uppercase;
}

.differential-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.differential-grid article {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  min-height: 10.5rem;
  padding: 1rem;
  border-color: rgb(255 255 255 / 11%);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 4%), transparent 54%),
    rgb(5 8 9 / 78%);
}

.differential-grid span {
  width: fit-content;
  padding: 0.2rem 0.5rem;
  border: 1px solid rgb(255 117 24 / 28%);
  border-radius: 999px;
  background: rgb(255 117 24 / 8%);
  color: var(--orange);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.differential-grid strong {
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.18;
  text-transform: uppercase;
}

.diagnostic {
  display: grid;
  grid-template-columns: minmax(17rem, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
  align-items: center;
  padding: clamp(1rem, 2.4vw, 1.55rem);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 8px;
  background:
    radial-gradient(circle at 9% 20%, rgb(255 117 24 / 14%), transparent 20rem),
    rgb(3 5 6 / 62%);
}

.diagnostic-console {
  display: grid;
  gap: 0.72rem;
}

.diagnostic-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

select {
  width: 100%;
  min-height: 3.2rem;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #07090a;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

.diagnostic-result {
  display: grid;
  gap: 0.18rem;
  padding: 0.82rem 0.9rem;
  border: 1px solid rgb(255 117 24 / 24%);
  border-radius: 8px;
  background: rgb(255 117 24 / 8%);
}

.diagnostic-result span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.diagnostic-result strong {
  font-size: 1.12rem;
}

.diagnostic-result p {
  font-size: 0.92rem;
}

.portal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 20%, rgb(25 230 255 / 10%), transparent 20rem),
    rgb(3 5 6 / 62%);
}

.portal-card {
  max-width: 58rem;
}

.tracker {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.tracker span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.7rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.tracker i {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: rgb(255 255 255 / 18%);
}

.tracker .done i,
.tracker .active i {
  background: var(--green);
  box-shadow: 0 0 0.85rem var(--green);
}

.tracker .active {
  border-color: rgb(140 255 122 / 34%);
  color: var(--text);
}

.proof,
.reviews {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
}

.proof-head,
.reviews-copy {
  max-width: 54rem;
  padding-left: clamp(1rem, 2vw, 1.6rem);
  border-left: 3px solid var(--orange);
}

.proof-head h2,
.reviews-copy h2 {
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.proof-head p,
.reviews-copy p {
  max-width: 48rem;
  margin-bottom: 0;
  color: #c9d2df;
  font-size: clamp(1rem, 1.22vw, 1.14rem);
  line-height: 1.58;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.work-card {
  display: grid;
  gap: 0.65rem;
  overflow: hidden;
  padding: 0.75rem;
}

.work-card video,
.work-card img,
.work-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgb(255 117 24 / 18%);
  border-radius: 8px;
  background: #050505;
  object-fit: cover;
}

.work-card video,
.work-card img {
  filter: saturate(1.05) contrast(1.04);
}

.work-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px),
    radial-gradient(circle at 50% 20%, rgb(255 117 24 / 18%), transparent 8rem),
    rgb(4 7 8 / 90%);
  background-size: 34px 34px, 34px 34px, auto, auto;
  color: rgb(255 117 24 / 92%);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-card span,
.review-card span {
  width: fit-content;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgb(25 230 255 / 20%);
  border-radius: 999px;
  background: rgb(25 230 255 / 5%);
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-card strong,
.review-card strong {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.work-card.pending,
.review-card.pending {
  border-style: dashed;
  background:
    radial-gradient(circle at 20% 0%, rgb(255 117 24 / 8%), transparent 9rem),
    rgb(5 8 9 / 62%);
}

.work-card.pending span,
.review-card.pending span {
  border-color: rgb(255 117 24 / 28%);
  background: rgb(255 117 24 / 8%);
  color: var(--orange);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.review-card {
  display: grid;
  min-height: 13rem;
  align-content: start;
  gap: 0.75rem;
  padding: 1.1rem;
}

.review-card.callout {
  border-color: rgb(255 117 24 / 38%);
  background:
    linear-gradient(145deg, rgb(255 117 24 / 15%), transparent 48%),
    rgb(5 8 9 / 86%);
}

.review-card a {
  display: inline-flex;
  width: fit-content;
  min-height: 2.7rem;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgb(255 117 24 / 86%);
  border-radius: 8px;
  background: rgb(255 117 24 / 12%);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-color: rgb(255 117 24 / 36%);
  background:
    linear-gradient(135deg, rgb(255 117 24 / 13%), rgb(255 255 255 / 3%)),
    rgb(4 6 7 / 84%);
}

.contact h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.contact-list {
  display: grid;
  gap: 0.55rem;
  max-width: 32rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  color: #d7e0eb;
  line-height: 1.35;
}

.contact-list span {
  min-width: 6.2rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-list a {
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.service-model {
  margin-top: 0.8rem;
  padding: 0.75rem 0.9rem;
  border-left: 2px solid rgb(255 117 24 / 78%);
  border-radius: 0 8px 8px 0;
  background: rgb(255 117 24 / 8%);
  font-size: 0.95rem !important;
}

.site-footer {
  display: grid;
  width: min(1180px, calc(100% - 2rem));
  grid-template-columns: minmax(14rem, 1.1fr) minmax(12rem, 0.8fr) minmax(14rem, 0.9fr);
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: start;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.footer-brand {
  display: grid;
  gap: 0.45rem;
}

.footer-brand img {
  width: 8.8rem;
  height: auto;
  object-fit: contain;
}

.footer-brand strong {
  color: #fff;
  font-size: 1.2rem;
}

.footer-brand p,
.footer-privacy,
.site-footer small {
  margin: 0;
  line-height: 1.5;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.55rem;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--orange);
}

.footer-privacy {
  grid-column: 1 / -1;
  max-width: 52rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 8px;
  background: rgb(255 255 255 / 3%);
}

.site-footer small {
  grid-column: 1 / -1;
  color: rgb(169 183 199 / 76%);
}

@keyframes desktopBoot {
  0%,
  18% {
    opacity: 0.45;
    transform: scale(0.96);
    fill: rgb(255 117 24 / 2%);
  }

  36%,
  72% {
    opacity: 1;
    transform: scale(1);
    fill: rgb(255 117 24 / 9%);
    filter: drop-shadow(0 0 0.5rem rgb(255 117 24 / 54%));
  }

  100% {
    opacity: 0.68;
    transform: scale(0.98);
  }
}

@keyframes towerBlink {
  0%,
  26%,
  100% {
    opacity: 0.55;
  }

  34%,
  42%,
  58% {
    opacity: 1;
    filter: drop-shadow(0 0 0.45rem rgb(255 117 24 / 62%));
  }
}

@keyframes standTrace {
  0%,
  20% {
    opacity: 0.35;
    stroke-dashoffset: 34;
  }

  42%,
  76% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 0.55;
    stroke-dashoffset: 0;
  }
}

@keyframes notebookWake {
  0%,
  16% {
    opacity: 0.52;
    transform: perspective(80px) rotateX(12deg) scaleY(0.86);
    fill: rgb(255 117 24 / 2%);
  }

  38%,
  70% {
    opacity: 1;
    transform: perspective(80px) rotateX(0deg) scaleY(1);
    fill: rgb(255 117 24 / 9%);
    filter: drop-shadow(0 0 0.5rem rgb(255 117 24 / 50%));
  }

  100% {
    opacity: 0.66;
    transform: perspective(80px) rotateX(4deg) scaleY(0.96);
  }
}

@keyframes baseTrace {
  0%,
  22% {
    opacity: 0.35;
    stroke-dashoffset: 36;
  }

  44%,
  76% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 0.58;
    stroke-dashoffset: 0;
  }
}

@keyframes toolPulse {
  0%,
  18%,
  100% {
    opacity: 0.62;
    transform: rotate(0deg) scale(0.98);
  }

  36%,
  64% {
    opacity: 1;
    transform: rotate(-5deg) scale(1.03);
    filter: drop-shadow(0 0 0.55rem rgb(255 117 24 / 58%));
  }
}

@keyframes sparkFlash {
  0%,
  30%,
  100% {
    opacity: 0;
    stroke-dasharray: 7;
    stroke-dashoffset: 7;
  }

  42%,
  54% {
    opacity: 1;
    stroke-dashoffset: 0;
    filter: drop-shadow(0 0 0.5rem rgb(255 117 24 / 78%));
  }

  68% {
    opacity: 0;
  }
}

@keyframes wifiSignal {
  0%,
  18% {
    opacity: 0.18;
    stroke-dashoffset: 44;
    transform: scale(0.94);
  }

  34%,
  68% {
    opacity: 1;
    stroke-dashoffset: 0;
    transform: scale(1);
    filter: drop-shadow(0 0 0.55rem rgb(255 117 24 / 62%));
  }

  86%,
  100% {
    opacity: 0.26;
    stroke-dashoffset: 0;
    transform: scale(1.02);
  }
}

@keyframes wifiDot {
  0%,
  12% {
    opacity: 0.28;
    transform: scale(0.68);
  }

  24%,
  72% {
    opacity: 1;
    transform: scale(1.12);
    filter: drop-shadow(0 0 0.5rem rgb(255 117 24 / 78%));
  }

  100% {
    opacity: 0.38;
    transform: scale(0.86);
  }
}

@media (max-width: 1180px) {
  .hero-shell {
    width: min(1180px, calc(100% - 2rem));
    grid-template-columns: minmax(28rem, 1.08fr) minmax(22rem, 0.82fr);
    gap: 2rem;
  }

  .hero-services {
    width: min(1180px, calc(100% - 2rem));
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  h1 {
    font-size: clamp(3.4rem, 6vw, 5.2rem);
  }
}

@media (max-width: 980px) {
  .experience,
  .differentials,
  .diagnostic,
  .portal,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    width: min(1180px, calc(100% - 2rem));
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3.5rem 0 1.5rem;
  }

  .hero-media {
    width: min(100%, 760px);
  }

  .service-dock,
  .command-grid,
  .solution-grid,
  .differential-grid,
  .work-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-dock {
    margin: 1.5rem auto clamp(2.5rem, 5vw, 4rem);
  }

  .section-head .eyebrow,
  .section-head h2,
  .section-head p {
    grid-column: 1;
  }

  .section-head h2 {
    max-width: 14ch;
  }

  .section-head p {
    max-width: 40rem;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  :root {
    --topbar: 82px;
  }

  .topbar {
    min-height: var(--topbar);
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: var(--topbar) 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgb(5 5 5 / 94%);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .support-assistant {
    inset: 0;
    width: auto;
    max-height: none;
    border-width: 0;
    border-radius: 0;
    transform: none;
  }

  .support-thread {
    min-height: 0;
  }

  .support-assistant-head,
  .support-thread,
  .support-actions,
  .support-composer {
    padding-inline: 1rem;
  }

  .support-message {
    max-width: 100%;
  }

  .brand {
    font-size: 0.82rem;
  }

  .brand img {
    width: 10rem;
    height: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg img {
    object-position: 62% center;
    opacity: 0.14;
  }

  .hero::before {
    background:
      radial-gradient(circle at 20% 56%, rgb(255 117 24 / 8%), transparent 16rem),
      linear-gradient(90deg, #050505 0%, rgb(5 5 5 / 91%) 58%, rgb(5 5 5 / 78%) 100%),
      linear-gradient(180deg, transparent 0%, #050505 100%);
  }

  .hero-shell {
    min-height: calc(100svh - var(--topbar));
    padding: 3rem 0 1.4rem;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero-title {
    max-width: 13ch;
    font-size: clamp(2.75rem, 12vw, 3.45rem);
    line-height: 0.94;
  }

  .hero-copy > p,
  .section-head p,
  .experience-copy p,
  .diagnostic > div p,
  .contact p {
    font-size: 1rem;
  }

  .hero-actions,
  .service-dock,
  .command-grid,
  .solution-grid,
  .differential-grid,
  .work-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .diagnostic-fields {
    grid-template-columns: 1fr;
  }

  .service-dock {
    position: relative;
    width: min(1180px, calc(100% - 2rem));
    margin: 1.4rem auto;
  }

  .service-dock a {
    min-height: 8.9rem;
    border: 1px solid rgb(255 255 255 / 13%);
  }

  .hero-services a {
    min-height: 5.8rem;
  }

  .service-dock a:last-child {
    border: 1px solid rgb(255 255 255 / 13%);
  }

  .service-dock svg {
    width: 2.35rem;
    height: 2.35rem;
  }

  .video-card {
    border-radius: 12px;
  }

  .play-button {
    width: 4.9rem;
    height: 4.9rem;
  }

  .solution-card {
    min-height: 9.8rem;
  }

  .btn,
  .contact .btn {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    justify-items: center;
  }
}

/* Acesso discreto ao ambiente interno da empresa */
.main-nav .private-link {
  min-width: 3rem;
  min-height: 3rem;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 0.8rem;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 8px;
  background: rgb(255 255 255 / 4%);
  color: rgb(255 255 255 / 78%);
}

.main-nav .private-link::after {
  display: none;
}

.main-nav .private-link svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  stroke: var(--orange);
}

.main-nav .private-link:hover {
  border-color: rgb(255 117 24 / 58%);
  background: rgb(255 117 24 / 8%);
}

@media (max-width: 1540px) and (min-width: 721px) {
  .main-nav {
    gap: clamp(0.75rem, 1.35vw, 1.3rem);
  }

  .main-nav .support-link,
  .support-link {
    min-width: 9.5rem;
  }
}

@media (max-width: 720px) {
  .main-nav .private-link {
    width: 100%;
    justify-content: flex-start;
    padding: 0 1rem;
  }

  .main-nav .private-link span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Elite redesign */
:root {
  --bg: #030405;
  --surface: rgb(10 12 14 / 82%);
  --surface-strong: rgb(14 16 18 / 92%);
  --line: rgb(255 255 255 / 11%);
  --line-orange: rgb(255 117 24 / 42%);
  --text: #f7f8fb;
  --muted: #aeb8c5;
  --muted-2: #7f8a98;
  --orange: #ff7518;
  --orange-2: #ff9b3d;
  --shadow: 0 2rem 5rem rgb(0 0 0 / 38%);
  --topbar: 106px;
}

body {
  background:
    radial-gradient(circle at 82% 8%, rgb(255 117 24 / 10%), transparent 29rem),
    radial-gradient(circle at 18% 22%, rgb(255 255 255 / 4%), transparent 22rem),
    linear-gradient(180deg, #020303 0%, #060708 50%, #030303 100%);
  color: var(--text);
}

body::before {
  opacity: 0.32;
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgb(0 0 0 / 52%), transparent 68%);
}

.site-noise {
  background:
    radial-gradient(circle at 50% 12%, rgb(255 255 255 / 4%), transparent 27rem),
    linear-gradient(120deg, transparent, rgb(255 255 255 / 1.5%), transparent);
}

.topbar {
  min-height: var(--topbar);
  padding: 0 clamp(1.25rem, 5vw, 4.5rem);
  border-bottom: 1px solid rgb(255 117 24 / 22%);
  background: rgb(2 3 4 / 82%);
  backdrop-filter: blur(18px);
}

.brand img {
  width: clamp(11.2rem, 15vw, 15.5rem);
}

.main-nav {
  gap: clamp(1.1rem, 2vw, 2rem);
}

.main-nav a {
  min-height: 3rem;
  color: #f3f5f8;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.main-nav a::after {
  height: 2px;
}

.support-link {
  min-width: 9.6rem;
  border-color: rgb(255 117 24 / 58%);
  background: rgb(255 117 24 / 5%);
}

.hero {
  min-height: calc(100svh - var(--topbar));
  padding: clamp(2.4rem, 4vw, 4.2rem) 0 0;
  isolation: isolate;
}

.hero-bg img {
  object-position: center;
  opacity: 0.42;
  filter: saturate(0.98) contrast(1.06) brightness(0.58);
  transform: scale(1.02);
}

.hero::before {
  background:
    linear-gradient(90deg, rgb(2 3 4 / 98%) 0%, rgb(2 3 4 / 86%) 43%, rgb(2 3 4 / 58%) 100%),
    linear-gradient(180deg, rgb(2 3 4 / 18%) 0%, rgb(2 3 4 / 88%) 100%);
}

.hero::after {
  background:
    linear-gradient(rgb(255 255 255 / 2.5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2.5%) 1px, transparent 1px),
    radial-gradient(circle at 80% 48%, rgb(255 117 24 / 13%), transparent 25rem);
  background-size: 76px 76px, 76px 76px, auto;
  opacity: 0.7;
}

.hero-shell {
  width: min(1540px, calc(100% - clamp(2rem, 8vw, 9rem)));
  grid-template-columns: minmax(31rem, 1.06fr) minmax(24rem, 0.86fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
  padding: clamp(1.5rem, 4vh, 3rem) 0 clamp(1.6rem, 4vh, 2.8rem);
}

.hero-copy {
  max-width: 58rem;
  padding: 0;
}

.hero-copy::before,
.hero-copy::after {
  content: none;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--orange);
  font-size: clamp(0.86rem, 1vw, 1.02rem);
  letter-spacing: 0.06em;
}

.eyebrow::before,
.eyebrow i {
  width: 0.55rem;
  height: 0.55rem;
  box-shadow: 0 0 1rem rgb(255 117 24 / 44%);
}

.hero-title {
  max-width: 14ch;
  margin-bottom: 1.1rem;
  font-size: clamp(3.45rem, 5.65vw, 6.35rem);
  line-height: 0.9;
  text-shadow: 0 1.8rem 4rem rgb(0 0 0 / 54%);
}

.hero-title .title-line {
  text-wrap: balance;
  white-space: nowrap;
}

.hero-title strong {
  background: linear-gradient(180deg, #ffb56c 0%, #ff7518 42%, #dc5200 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 0.65rem rgb(255 117 24 / 22%));
}

.hero-lead,
.hero-copy > p {
  max-width: 47rem;
  color: #d7dee8;
  font-size: clamp(1.12rem, 1.35vw, 1.36rem);
  line-height: 1.62;
}

.hero-actions {
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  min-height: 3.35rem;
  border-radius: 10px;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.btn.primary {
  border-color: rgb(255 117 24 / 92%);
  box-shadow: 0 1rem 2.2rem rgb(255 117 24 / 18%);
}

.btn.ghost {
  border-color: rgb(255 255 255 / 15%);
  background: rgb(255 255 255 / 5%);
}

.whatsapp-btn {
  min-height: 3.85rem;
  padding-inline: 1.45rem;
  font-size: 0.92rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 999px;
  background: rgb(255 255 255 / 4%);
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-media {
  justify-self: end;
  width: min(100%, 40rem);
}

.hero-media::before {
  inset: 10% 2% -8% 12%;
  background: rgb(255 117 24 / 12%);
  filter: blur(4.5rem);
}

.video-card {
  border-color: rgb(255 117 24 / 48%);
  border-radius: 16px;
  background: #050505;
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 7%) inset,
    0 2rem 5rem rgb(0 0 0 / 50%),
    0 0 3.5rem rgb(255 117 24 / 10%);
}

.video-card::before {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 18%), transparent 30%, transparent 74%, rgb(0 0 0 / 18%)),
    linear-gradient(180deg, rgb(0 0 0 / 5%) 0%, transparent 56%, rgb(0 0 0 / 18%) 100%);
}

.video-card::after {
  opacity: 0.35;
}

.hero-video,
.video-poster {
  filter: saturate(1.02) contrast(1.03) brightness(0.92);
}

.video-glow {
  opacity: 0.28;
}

.play-button {
  width: 3.7rem;
  height: 3.7rem;
  border-color: rgb(255 117 24 / 48%);
  background: rgb(0 0 0 / 36%);
  box-shadow: 0 0 1.3rem rgb(255 117 24 / 18%);
}

.video-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 12px;
  background: rgb(5 7 8 / 66%);
  color: #d7dee8;
}

.video-caption span {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-caption strong {
  font-size: 0.88rem;
}

.hero-metrics {
  display: grid;
  width: min(1320px, calc(100% - clamp(2rem, 8vw, 9rem)));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.hero-metrics article {
  min-height: 6.2rem;
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgb(255 117 24 / 9%), transparent 58%),
    rgb(4 6 7 / 72%);
  box-shadow: 0 1.1rem 2.8rem rgb(0 0 0 / 24%);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #fff;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 1;
}

.hero-metrics p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.service-strip {
  display: grid;
  width: min(1320px, calc(100% - clamp(2rem, 8vw, 9rem)));
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
  margin: clamp(1.3rem, 3vw, 2.2rem) auto 0;
}

.service-strip a {
  display: grid;
  gap: 0.42rem;
  min-height: 6.5rem;
  align-content: center;
  padding: 0.75rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 12px;
  background: rgb(255 255 255 / 3.5%);
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-strip a:hover {
  border-color: rgb(255 117 24 / 48%);
  background: rgb(255 117 24 / 8%);
  transform: translateY(-2px);
}

.service-strip span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 950;
}

.service-strip strong {
  font-size: 0.78rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-head,
.experience,
.differentials,
.diagnostic,
.process-flow,
.proof,
.reviews,
.contact {
  width: min(1320px, calc(100% - clamp(2rem, 8vw, 9rem)));
}

.section-head {
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.55fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(5rem, 8vw, 8rem) 0 clamp(1.8rem, 3vw, 2.5rem);
}

.section-head::before {
  width: min(22rem, 40vw);
  background: linear-gradient(90deg, rgb(255 117 24 / 82%), transparent);
}

.section-head h2,
.process-copy h2,
.experience-copy h2,
.differentials-head h2,
.diagnostic h2,
.proof-head h2,
.reviews-copy h2,
.contact h2 {
  color: #fff;
  text-transform: uppercase;
}

.section-head h2 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
}

.section-head p {
  padding: 1.2rem 1.25rem;
  border-left: 2px solid rgb(255 117 24 / 78%);
  background: rgb(255 255 255 / 4%);
}

.solution-grid {
  width: min(1320px, calc(100% - clamp(2rem, 8vw, 9rem)));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.solution-card {
  min-height: 17rem;
  padding: 1.2rem;
  border-color: rgb(255 255 255 / 10%);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 4%), transparent 50%),
    rgb(5 7 8 / 72%);
  box-shadow: 0 1.2rem 3.2rem rgb(0 0 0 / 24%);
}

.solution-card::before {
  left: 1.2rem;
  right: 1.2rem;
  opacity: 0.18;
}

.solution-card::after {
  content: none;
}

.solution-card:hover,
.solution-card.active {
  border-color: rgb(255 117 24 / 46%);
  background:
    radial-gradient(circle at 80% 0%, rgb(255 117 24 / 13%), transparent 10rem),
    linear-gradient(180deg, rgb(255 255 255 / 5%), transparent 50%),
    rgb(7 8 9 / 86%);
}

.solution-icon {
  display: inline-grid;
  width: 3.3rem;
  height: 3.3rem;
  place-items: center;
  margin-bottom: 1.05rem;
  border: 1px solid rgb(255 117 24 / 38%);
  border-radius: 12px;
  background: rgb(255 117 24 / 8%);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
}

.solution-card b {
  min-height: auto;
  margin-bottom: 0.8rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--orange);
}

.solution-card strong {
  margin-bottom: 0.65rem;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
}

.solution-card p {
  color: #bdc8d4;
  font-size: 0.96rem;
}

.process-flow {
  display: grid;
  grid-template-columns: minmax(20rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
  border-top: 1px solid rgb(255 255 255 / 8%);
}

.process-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  line-height: 0.96;
}

.process-copy p {
  max-width: 35rem;
  color: #c8d2df;
  font-size: 1.08rem;
  line-height: 1.62;
}

.process-actions {
  margin-top: 1.4rem;
}

.process-steps {
  display: grid;
  gap: 0.75rem;
}

.process-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 13px;
  background: rgb(255 255 255 / 3.5%);
}

.process-steps span {
  grid-row: 1 / 3;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  background: rgb(255 117 24 / 11%);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 950;
}

.process-steps strong {
  color: #fff;
  text-transform: uppercase;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.experience {
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 0.7fr);
  gap: clamp(2rem, 6vw, 6rem);
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.experience-copy h2 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 4.8vw, 5.1rem);
}

.experience-copy p {
  color: #c8d2df;
}

.technical-owner {
  width: fit-content;
  border-radius: 999px;
  background: rgb(255 117 24 / 9%);
}

.experience-panel {
  gap: 0.9rem;
  padding: 1rem;
  border-color: rgb(255 117 24 / 22%);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgb(255 117 24 / 10%), transparent 17rem),
    rgb(5 7 8 / 76%);
}

.owner-card,
.tab-pane {
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 12px;
  background: rgb(255 255 255 / 4%);
}

.owner-card span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.owner-card strong {
  display: block;
  margin: 0.55rem 0;
  color: #fff;
  font-size: 1.35rem;
}

.owner-card p {
  margin: 0;
  color: #c3cdd9;
  line-height: 1.55;
}

.tab-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.tab-row button {
  border-radius: 10px;
}

.differentials {
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.differentials-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.25rem;
}

.differentials-head h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
}

.differential-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.differential-grid article {
  min-height: 12.5rem;
  padding: 1.05rem;
  border-radius: 14px;
  background: rgb(255 255 255 / 3.5%);
}

.differential-grid span {
  color: var(--orange);
}

.diagnostic {
  grid-template-columns: minmax(0, 0.68fr) minmax(27rem, 0.88fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid rgb(255 255 255 / 8%);
}

.diagnostic h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 4.3vw, 4.7rem);
}

.diagnostic > div p {
  color: #c8d2df;
}

.diagnostic-console {
  padding: 1rem;
  border-color: rgb(255 117 24 / 26%);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgb(255 117 24 / 12%), transparent 18rem),
    rgb(5 7 8 / 82%);
}

.diagnostic-fields {
  gap: 0.7rem;
}

.diagnostic-fields label,
.diagnostic-result {
  border-radius: 12px;
}

.diagnostic-result {
  padding: 1rem;
  background: rgb(255 255 255 / 4%);
}

.proof,
.reviews {
  margin-inline: auto;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.proof-head,
.reviews-copy {
  max-width: 68rem;
  margin-bottom: 1.5rem;
}

.proof-head h2,
.reviews-copy h2 {
  max-width: 16ch;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.work-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 0.9rem;
}

.work-card {
  min-height: 100%;
  padding: 0.85rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 14px;
  background: rgb(255 255 255 / 3.5%);
}

.featured-work {
  grid-row: span 2;
}

.featured-work video {
  aspect-ratio: 16 / 12;
}

.work-card video,
.work-card img,
.work-placeholder {
  border-radius: 12px;
}

.work-placeholder {
  min-height: 11rem;
  background:
    linear-gradient(135deg, rgb(255 117 24 / 15%), transparent 58%),
    rgb(6 8 9 / 88%);
  color: rgb(255 255 255 / 72%);
}

.work-card span,
.review-card span {
  border-color: rgb(255 117 24 / 24%);
  background: rgb(255 117 24 / 7%);
  color: var(--orange);
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.review-card {
  min-height: 13rem;
  border-radius: 14px;
  background: rgb(255 255 255 / 3.5%);
}

.review-card.callout {
  background:
    linear-gradient(135deg, rgb(255 117 24 / 13%), transparent 60%),
    rgb(5 7 8 / 82%);
}

.contact {
  border-radius: 18px;
  margin: clamp(2rem, 5vw, 4rem) auto clamp(4rem, 7vw, 6rem);
  padding: clamp(1.4rem, 4vw, 2.8rem);
  background:
    radial-gradient(circle at 100% 0%, rgb(255 117 24 / 15%), transparent 23rem),
    linear-gradient(135deg, rgb(255 255 255 / 5%), transparent 58%),
    rgb(5 7 8 / 82%);
}

.contact h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 4.3vw, 4.8rem);
}

.contact-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 1.2rem 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: #d7dee8;
}

.contact-list span {
  color: var(--orange);
  font-weight: 950;
}

.service-model {
  max-width: 44rem;
  color: #aeb8c5;
}

.site-footer {
  padding-top: 2.3rem;
  background: #020303;
}

@media (max-width: 1180px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-media {
    justify-self: start;
    width: min(100%, 46rem);
  }

  .service-strip,
  .solution-grid,
  .differential-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-flow,
  .experience,
  .diagnostic,
  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head p {
    grid-column: 1;
    justify-self: start;
  }

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

@media (max-width: 720px) {
  :root {
    --topbar: 84px;
  }

  .topbar {
    padding: 0 1rem;
  }

  .brand img {
    width: 10.5rem;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-shell {
    min-height: auto;
    gap: 1.6rem;
    padding: 1.1rem 0 1.2rem;
  }

  .hero-bg img {
    opacity: 0.2;
  }

  .hero-shell,
  .hero-metrics,
  .service-strip,
  .section-head,
  .solution-grid,
  .process-flow,
  .experience,
  .differentials,
  .diagnostic,
  .proof,
  .reviews,
  .contact {
    width: min(100% - 1.2rem, 640px);
  }

  .hero-title {
    max-width: 12ch;
    font-size: clamp(2.65rem, 12vw, 3.55rem);
  }

  .hero-actions,
  .hero-metrics,
  .service-strip,
  .solution-grid,
  .differential-grid,
  .work-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-trust span,
  .video-caption {
    width: 100%;
  }

  .video-caption,
  .differentials-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .solution-card {
    min-height: 13rem;
  }

  .process-steps article {
    grid-template-columns: 1fr;
  }

  .process-steps span {
    grid-row: auto;
  }

  .featured-work {
    grid-row: auto;
  }
}

/* YouTube hero background and premium public layout */
.hero-bg {
  overflow: hidden;
  background: #020304;
}

.hero-bg iframe {
  position: absolute;
  top: 45%;
  left: 50%;
  width: max(118vw, 210vh);
  height: max(118vh, 66.38vw);
  border: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.8s ease;
}

.hero-bg.youtube-ready iframe {
  opacity: 0.9;
}

.hero-bg img {
  opacity: 0.18;
}

.hero::before {
  background:
    linear-gradient(90deg, rgb(2 3 4 / 96%) 0%, rgb(2 3 4 / 80%) 48%, rgb(2 3 4 / 58%) 100%),
    linear-gradient(180deg, rgb(2 3 4 / 28%) 0%, rgb(2 3 4 / 86%) 100%);
}

.hero::after {
  background:
    radial-gradient(circle at 20% 36%, rgb(255 117 24 / 12%), transparent 24rem),
    linear-gradient(180deg, transparent 0%, rgb(2 3 4 / 52%) 100%);
  opacity: 1;
}

.hero-shell {
  grid-template-columns: minmax(30rem, 0.92fr) minmax(25rem, 0.78fr);
}

.hero-title {
  max-width: 18ch;
  font-size: clamp(2.65rem, 3.85vw, 4.5rem);
  font-weight: 850;
  line-height: 1.04;
  text-transform: none;
}

.hero-title .title-line {
  text-wrap: balance;
}

.hero-title strong {
  color: var(--orange);
}

.hero-lead,
.hero-copy > p {
  max-width: 42rem;
  font-size: clamp(1.05rem, 1.22vw, 1.22rem);
}

.hero-trust {
  margin-top: 1.1rem;
}

.hero-trust span {
  width: auto;
  border-color: rgb(255 255 255 / 9%);
  background: rgb(255 255 255 / 3%);
  color: #d3dbe6;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 0.85rem;
  justify-self: end;
  width: min(100%, 30rem);
}

.visual-main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgb(255 117 24 / 32%);
  border-radius: 18px;
  background: rgb(5 7 8 / 72%);
  box-shadow: 0 1.5rem 4.5rem rgb(0 0 0 / 46%);
}

.visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.02) brightness(0.92);
}

.visual-main::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 36%, rgb(0 0 0 / 64%) 100%),
    linear-gradient(90deg, rgb(0 0 0 / 24%), transparent 52%);
  content: "";
}

.visual-overlay {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  gap: 0.3rem;
}

.visual-overlay span,
.visual-grid span {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-overlay strong {
  max-width: 25rem;
  color: #fff;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.2;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.48rem;
}

.visual-grid article {
  display: grid;
  gap: 0.2rem;
  padding: 0.62rem 0.78rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 14px;
  background: rgb(5 7 8 / 72%);
  backdrop-filter: blur(12px);
}

.visual-grid strong {
  color: #fff;
  font-size: 0.95rem;
}

.visual-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.support-link {
  min-width: 12.5rem;
}

.systems-showcase,
.company-video {
  display: grid;
  width: min(1320px, calc(100% - clamp(2rem, 8vw, 9rem)));
  margin-inline: auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.systems-showcase {
  grid-template-columns: minmax(0, 0.75fr) minmax(25rem, 0.95fr);
  align-items: center;
  border-top: 1px solid rgb(255 255 255 / 8%);
}

.systems-copy h2,
.company-video-copy h2 {
  max-width: 14ch;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 4.6rem);
  line-height: 0.98;
  text-transform: none;
}

.systems-copy p,
.company-video-copy p {
  max-width: 40rem;
  color: #c9d2df;
  font-size: clamp(1rem, 1.18vw, 1.15rem);
  line-height: 1.6;
}

.systems-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.systems-panel {
  overflow: hidden;
  border: 1px solid rgb(255 117 24 / 22%);
  border-radius: 18px;
  background: rgb(5 7 8 / 76%);
  box-shadow: 0 1.4rem 4rem rgb(0 0 0 / 34%);
}

.systems-panel img {
  display: block;
  width: 100%;
  max-height: 24rem;
  object-fit: cover;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.systems-panel ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 1.1rem;
  color: #d7e0eb;
  list-style: none;
}

.systems-panel li {
  position: relative;
  padding-left: 1.1rem;
  line-height: 1.45;
}

.systems-panel li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.company-video {
  grid-template-columns: minmax(0, 0.7fr) minmax(25rem, 0.95fr);
  align-items: center;
  border-top: 1px solid rgb(255 255 255 / 8%);
}

.company-video-card {
  aspect-ratio: 16 / 9;
}

.company-video-card video {
  cursor: default;
}

@media (max-width: 1180px) {
  .hero-shell,
  .systems-showcase,
  .company-video {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .hero-bg iframe {
    top: 45%;
    width: max(190vw, 210vh);
    transform: translate(-50%, -50%);
  }

  .hero-title {
    max-width: 12ch;
    font-size: clamp(2.45rem, 10.5vw, 3.25rem);
  }

  .hero-title .title-line {
    white-space: normal;
  }

  .hero-lead,
  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-visual,
  .systems-showcase,
  .company-video {
    width: min(100% - 1.2rem, 640px);
  }

  .hero-visual {
    justify-self: center;
  }

  .systems-actions {
    display: grid;
  }
}

/* Reference-style hero */
.topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 7.1rem;
  padding: 0 clamp(2rem, 3.4vw, 4.2rem);
  border-bottom: 0;
  background: linear-gradient(180deg, rgb(2 4 7 / 74%), transparent);
  backdrop-filter: none;
}

.brand img {
  width: clamp(11.2rem, 13vw, 14.2rem);
}

.main-nav {
  position: absolute;
  top: 50%;
  right: clamp(2rem, 3.4vw, 4.2rem);
  grid-column: 2;
  justify-self: end;
  gap: clamp(1.25rem, 2vw, 2.35rem);
  margin-right: 0;
  transform: translateY(-50%);
}

.main-nav a {
  min-height: 3rem;
  padding: 0;
  color: rgb(255 255 255 / 88%);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  text-transform: none;
}

.main-nav a.active,
.main-nav a:hover {
  color: #fff;
}

.main-nav a::after {
  bottom: 0.15rem;
  height: 2px;
}

.main-nav .support-link,
.support-link {
  min-width: 11.2rem;
  min-height: 3.85rem;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgb(255 117 24 / 76%);
  border-radius: 9px;
  background: rgb(2 4 7 / 26%);
  color: #fff;
}

.main-nav .support-link svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: var(--orange);
}

.hero {
  min-height: 100svh;
  align-items: center;
  padding: 0;
}

.hero-bg iframe {
  top: 50%;
  width: max(125vw, 230vh);
  height: max(160vh, 76vw);
  transform: translate(-50%, -50%);
}

.hero-bg img {
  opacity: 0.22;
  filter: saturate(0.95) contrast(1.03) brightness(0.62);
}

.hero::before {
  background:
    linear-gradient(90deg, rgb(3 8 13 / 94%) 0%, rgb(3 8 13 / 77%) 37%, rgb(3 8 13 / 42%) 100%),
    linear-gradient(180deg, rgb(3 8 13 / 18%) 0%, rgb(3 8 13 / 42%) 55%, rgb(3 8 13 / 88%) 100%);
}

.hero::after {
  background:
    radial-gradient(circle at 78% 22%, rgb(255 117 24 / 16%), transparent 26rem),
    linear-gradient(180deg, rgb(0 0 0 / 8%) 0%, rgb(0 0 0 / 52%) 100%);
  opacity: 1;
}

.hero-shell {
  display: block;
  width: min(1050px, calc(100% - clamp(2rem, 7vw, 8rem)));
  margin-left: clamp(4.5rem, 7vw, 8.5rem);
  margin-right: auto;
  padding: clamp(10rem, 21vh, 16rem) 0 clamp(9rem, 16vh, 13rem);
}

.hero-copy {
  max-width: 60rem;
}

.eyebrow {
  margin-bottom: 1.25rem;
  color: var(--orange);
  font-size: clamp(1.05rem, 1.32vw, 1.42rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow::before {
  content: none;
}

.hero-title {
  max-width: 15.6ch;
  margin-bottom: 1.6rem;
  color: #fff;
  font-size: clamp(4rem, 5.2vw, 6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 1.4rem 3rem rgb(0 0 0 / 42%);
}

.hero-title .title-line {
  color: #fff;
  background: none;
  -webkit-text-fill-color: currentColor;
  white-space: nowrap;
}

.hero-title strong {
  color: var(--orange);
  background: none;
  font-weight: 700;
  -webkit-text-fill-color: currentColor;
  filter: none;
}

.hero-lead,
.hero-copy > p {
  max-width: 39rem;
  color: rgb(230 236 244 / 78%);
  font-size: clamp(1.25rem, 1.45vw, 1.55rem);
  line-height: 1.48;
}

.hero-actions {
  gap: clamp(1rem, 2vw, 1.6rem);
  margin-top: clamp(2rem, 4vw, 3.2rem);
}

.hero-actions .btn {
  min-width: clamp(15rem, 18vw, 18rem);
  min-height: 4.55rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 800;
}

.hero-actions .btn.primary {
  color: #fff;
  background: linear-gradient(180deg, #ff8c24, #ff7618);
}

.hero-actions .btn.ghost {
  border-color: rgb(255 255 255 / 72%);
  background: rgb(2 4 7 / 18%);
  color: #fff;
}

.whatsapp-btn svg {
  display: none;
}

.hero-metrics,
.hero-visual {
  display: none !important;
}

.service-strip {
  position: relative;
  z-index: 3;
  width: min(1780px, calc(100% - clamp(2rem, 6.4vw, 7.6rem)));
  min-height: 8.5rem;
  margin: clamp(2.4rem, 5vw, 4.5rem) auto 0;
  padding: 1.2rem;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 12px;
  background: linear-gradient(180deg, rgb(12 15 19 / 94%), rgb(5 7 10 / 94%));
  box-shadow: 0 1.6rem 4rem rgb(0 0 0 / 22%);
}

.service-strip a {
  min-height: 5.8rem;
  border-color: rgb(255 255 255 / 8%);
  background: rgb(255 255 255 / 3%);
  color: #fff;
}

.service-strip span {
  color: var(--orange);
}

.service-strip strong {
  color: #fff;
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: auto auto;
  }

  .main-nav {
    justify-self: end;
  }

  .hero-shell {
    width: min(880px, calc(100% - 2rem));
    margin-left: 1rem;
    padding-top: clamp(9rem, 18vh, 12rem);
  }

  .hero-title {
    font-size: clamp(3.2rem, 6.5vw, 4.8rem);
  }
}

@media (max-width: 720px) {
  .topbar {
    min-height: 6.2rem;
    padding: 0 1rem;
    background: linear-gradient(180deg, rgb(2 4 7 / 88%), transparent);
  }

  .brand img {
    width: 11.3rem;
  }

  .main-nav.open {
    background: rgb(5 7 10 / 96%);
  }

  .main-nav {
    position: fixed;
    inset: var(--topbar) 1rem auto 1rem;
    top: auto;
    right: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    margin-right: 0;
    transform: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg iframe {
    width: max(230vw, 230vh);
    height: max(170vh, 130vw);
  }

  .hero-shell {
    width: min(100% - 1.5rem, 640px);
    margin-inline: auto;
    padding: 9.1rem 0 8rem;
  }

  .eyebrow {
    font-size: 1rem;
  }

  .hero-title {
    max-width: 11ch;
    font-size: clamp(3.05rem, 13vw, 4rem);
    line-height: 1.06;
  }

  .hero-title .title-line {
    white-space: normal;
  }

  .hero-lead,
  .hero-copy > p {
    max-width: 22rem;
    font-size: 1.08rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .service-strip {
    width: min(100% - 1.2rem, 640px);
    margin-top: 1.2rem;
    grid-template-columns: 1fr;
  }
}

/* Living solutions experience */
@media (min-width: 721px) {
  .hero + .solutions-experience {
    margin-top: clamp(-6.2rem, -7vw, -3.8rem);
  }
}

/* Transicao suave entre a area inicial e o rodape. */
body.site-routed .site-footer {
  position: relative;
  z-index: 6;
  margin-top: -4.5rem;
  padding-top: 6.2rem;
  border-top: 0;
  background: linear-gradient(180deg, rgb(3 4 5 / 0%) 0, #030405 5.5rem, #030405 100%);
}

body.site-routed .site-footer .footer-shell {
  position: relative;
}

@media (max-width: 720px) {
  body.site-routed .site-footer {
    margin-top: -2.5rem;
    padding-top: 4.3rem;
    background: linear-gradient(180deg, rgb(3 4 5 / 0%) 0, #030405 3.8rem, #030405 100%);
  }
}

.solutions-experience {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--topbar));
  overflow: hidden;
  padding: clamp(4.25rem, 5vw, 5.75rem) clamp(1rem, 4vw, 4.5rem) clamp(1.25rem, 2vw, 1.75rem);
  scroll-margin-top: 0;
  background:
    radial-gradient(circle at 68% 44%, rgb(255 117 24 / 13%), transparent 24rem),
    radial-gradient(circle at 14% 72%, rgb(25 230 255 / 5%), transparent 20rem),
    linear-gradient(90deg, rgb(2 3 4 / 98%) 0%, rgb(2 3 4 / 89%) 42%, rgb(2 3 4 / 72%) 100%),
    linear-gradient(180deg, rgb(0 0 0 / 18%), #030405 94%),
    url("hero-city-video-poster.png") center bottom / cover no-repeat;
}

.solutions-experience::before,
.solutions-experience::after {
  position: absolute;
  top: 12%;
  bottom: 12%;
  z-index: -1;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgb(255 117 24 / 80%), transparent);
  box-shadow: 0 0 1.5rem rgb(255 117 24 / 48%);
  content: "";
  opacity: 0.65;
  transform: skewX(-18deg);
}

.solutions-experience::before {
  left: 1.8rem;
}

.solutions-experience::after {
  right: 1.8rem;
}

.solutions-stage {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1700px, 100%);
  min-height: 45rem;
  grid-template-columns: minmax(27rem, 0.86fr) minmax(40rem, 1.14fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  margin-inline: auto;
}

.solutions-intro {
  max-width: 35rem;
}

.solutions-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.solutions-kicker > span {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: transparent;
  background: linear-gradient(90deg, var(--orange) 0 42%, #ffd2ad 50%, var(--orange) 58% 100%);
  background-position: 100% 50%;
  background-size: 220% 100%;
  background-clip: text;
  clip-path: inset(0 100% 0 0);
  -webkit-background-clip: text;
}

.solutions-kicker > span::after {
  position: absolute;
  top: 0.05em;
  right: 0;
  width: 1px;
  height: 1.1em;
  background: #ffd2ad;
  box-shadow: 0 0 0.65rem rgb(255 117 24 / 80%);
  content: "";
  opacity: 0;
}

.solutions-experience.is-visible .solutions-kicker > span {
  animation:
    solutionKickerType 820ms steps(16, end) 160ms forwards,
    solutionKickerSheen 3.8s ease-in-out 1.15s infinite;
}

.solutions-experience.is-visible .solutions-kicker > span::after {
  animation: solutionKickerCaret 540ms step-end 180ms 4;
}

.solutions-kicker i {
  position: relative;
  width: 2.2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: scaleX(0);
  transform-origin: left center;
}

.solutions-experience.is-visible .solutions-kicker i {
  animation: solutionKickerLine 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.solutions-kicker i::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 1rem rgb(255 117 24 / 70%);
  content: "";
  transform: translateY(-50%);
}

.solutions-experience.is-visible .solutions-kicker i::before {
  animation: solutionKickerPulse 2.6s ease-in-out 700ms infinite;
}

.solutions-intro h2 {
  max-width: none;
  margin: 0 0 1.35rem;
  color: #fff;
  font-size: clamp(3rem, 3.85vw, 4.25rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.01;
  text-transform: none;
}

.solutions-intro h2 span,
.solutions-intro h2 strong {
  display: block;
}

.solutions-intro h2 strong {
  color: var(--orange);
  font-weight: 750;
}

.solutions-intro > p {
  max-width: 31rem;
  margin: 0;
  color: rgb(226 233 241 / 82%);
  font-size: clamp(1.02rem, 1.12vw, 1.18rem);
  line-height: 1.56;
}

.solutions-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: clamp(1.6rem, 2.4vw, 2.1rem);
}

.solutions-actions .btn {
  min-width: 12.8rem;
  min-height: 3.65rem;
  font-size: 0.88rem;
}

.solutions-actions .btn svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.solutions-actions .btn.primary {
  box-shadow: 0 0.9rem 2.8rem rgb(255 117 24 / 22%);
}

.solutions-orbit {
  position: relative;
  isolation: isolate;
  justify-self: end;
  width: min(100%, 44rem);
  min-height: 45rem;
  aspect-ratio: 1.08;
}

.solutions-orbit::before {
  position: absolute;
  inset: 18% 21%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 117 24 / 14%), rgb(25 230 255 / 3%) 42%, transparent 69%);
  content: "";
  filter: blur(1.2rem);
  pointer-events: none;
}

.orbit-node-wheel {
  position: absolute;
  inset: 0;
  z-index: 4;
  transform-origin: center;
  animation: solutionServiceWheelSpin 110s linear infinite;
}

.solutions-orbit:hover .orbit-node-wheel,
.solutions-orbit:focus-within .orbit-node-wheel,
.solutions-orbit:hover .orbit-node__content,
.solutions-orbit:focus-within .orbit-node__content,
.solutions-orbit:hover .orbit-ring,
.solutions-orbit:focus-within .orbit-ring,
.solutions-orbit:hover .orbit-spokes span,
.solutions-orbit:focus-within .orbit-spokes span,
.solutions-orbit:hover .orbit-spokes span::after,
.solutions-orbit:focus-within .orbit-spokes span::after,
.solutions-orbit:hover .solution-core,
.solutions-orbit:focus-within .solution-core,
.solutions-orbit:hover .solution-core__dial,
.solutions-orbit:focus-within .solution-core__dial,
.solutions-orbit:hover .orbit-node__icon::after,
.solutions-orbit:focus-within .orbit-node__icon::after {
  animation-play-state: paused;
}

.orbit-rings,
.orbit-spokes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring--outer {
  width: 68%;
  aspect-ratio: 1;
  border: 1px dashed rgb(255 117 24 / 48%);
  box-shadow: inset 0 0 3rem rgb(255 117 24 / 3%);
  animation: solutionOrbitSpin 72s linear infinite;
}

.orbit-ring--outer::before,
.orbit-ring--middle::before {
  position: absolute;
  top: -0.22rem;
  left: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0.25rem rgb(255 117 24 / 9%), 0 0 1.1rem rgb(255 117 24 / 88%);
  content: "";
  transform: translateX(-50%);
}

.orbit-ring--middle {
  width: 49%;
  aspect-ratio: 1;
  border: 1px solid rgb(25 230 255 / 14%);
  box-shadow: inset 0 0 2.4rem rgb(25 230 255 / 3%);
  animation: solutionOrbitSpinReverse 54s linear infinite;
}

.orbit-ring--middle::before {
  top: auto;
  bottom: -0.18rem;
  background: var(--cyan);
  box-shadow: 0 0 0 0.22rem rgb(25 230 255 / 8%), 0 0 1rem rgb(25 230 255 / 65%);
}

.orbit-ring--inner {
  width: 30%;
  aspect-ratio: 1;
  border: 1px solid rgb(255 255 255 / 10%);
  box-shadow: 0 0 4rem rgb(255 117 24 / 11%);
}

.orbit-spokes span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35%;
  height: 1px;
  background: linear-gradient(90deg, rgb(255 117 24 / 78%), rgb(255 117 24 / 12%), transparent);
  transform: rotate(var(--spoke-angle));
  transform-origin: left center;
  animation: solutionSpokePulse 3.2s ease-in-out infinite alternate;
}

.orbit-spokes span::after {
  position: absolute;
  top: -0.14rem;
  left: 0;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: #ffd2ad;
  box-shadow: 0 0 0.8rem rgb(255 117 24 / 90%);
  content: "";
  animation: solutionDataFlow 4.2s ease-in-out infinite;
}

.orbit-spokes span:nth-child(2)::after,
.orbit-spokes span:nth-child(5)::after {
  animation-delay: -1.4s;
}

.orbit-spokes span:nth-child(3)::after,
.orbit-spokes span:nth-child(6)::after {
  animation-delay: -2.8s;
}

.solution-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: clamp(8.8rem, 10vw, 10.5rem);
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 28%, rgb(255 255 255 / 12%), transparent 26%),
    radial-gradient(circle, rgb(255 117 24 / 13%), rgb(3 4 5 / 96%) 68%);
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 9%),
    0 0 2.6rem rgb(255 117 24 / 30%),
    inset 0 0 2.4rem rgb(255 117 24 / 10%);
  transform: translate(-50%, -50%);
  animation: solutionCoreBreathe 3.8s ease-in-out infinite;
}

.solution-core__glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgb(255 117 24 / 26%);
  box-shadow: inset 0 0 2rem rgb(255 117 24 / 14%);
}

.solution-core__dial {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: conic-gradient(from 15deg, transparent 0 9%, rgb(255 117 24 / 78%) 9% 11%, transparent 11% 39%, rgb(25 230 255 / 48%) 39% 40.5%, transparent 40.5% 72%, rgb(255 255 255 / 48%) 72% 73.5%, transparent 73.5% 100%);
  mask: radial-gradient(circle, transparent 68%, #000 69%);
  opacity: 0.85;
  animation: solutionCoreDial 22s linear infinite;
}

.solution-core__mark {
  position: relative;
  display: block;
  width: 6.65rem;
  height: 5.9rem;
  overflow: hidden;
  transform: translateY(-0.32rem);
}

.solution-core__mark img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 23.2rem;
  max-width: none;
  height: auto;
  transform: translateY(-50%);
}

.solution-core__label {
  position: absolute;
  right: 0;
  bottom: 0.82rem;
  left: 0;
  color: rgb(255 255 255 / 62%);
  font-size: 0.46rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.orbit-node {
  --orbit-icon-size: 4.5rem;
  --node-accent: var(--orange);
  --node-number: "00";
  position: absolute;
  z-index: 4;
  display: grid;
  width: 13.5rem;
  justify-items: center;
  color: #fff;
  opacity: 0;
  text-align: center;
  text-decoration: none;
  filter: blur(8px);
  animation: solutionNodeReveal 720ms cubic-bezier(0.22, 1, 0.36, 1) 250ms forwards;
}

.orbit-node__content {
  display: grid;
  width: 100%;
  justify-items: center;
  transform-origin: 50% 2.25rem;
  animation: solutionNodeCounterSpin 110s linear infinite;
}

.orbit-node--support {
  --node-accent: #ff7518;
  --node-number: "01";
  --signal-delay: 0s;
  top: 16.75%;
  left: 50%;
  transform: translate(-50%, -2.25rem);
}

.orbit-node--network {
  --node-accent: #19e6ff;
  --node-number: "02";
  --signal-delay: 2s;
  top: 33.38%;
  left: 79.45%;
  transform: translate(-50%, -2.25rem);
}

.orbit-node--development {
  --node-accent: #f6c75b;
  --node-number: "03";
  --signal-delay: 4s;
  top: 66.62%;
  left: 79.45%;
  transform: translate(-50%, -2.25rem);
}

.orbit-node--infrastructure {
  --node-accent: #57d68d;
  --node-number: "04";
  --signal-delay: 6s;
  top: 83.25%;
  left: 50%;
  transform: translate(-50%, -2.25rem);
}

.orbit-node--ai {
  --node-accent: #ff8f6b;
  --node-number: "05";
  --signal-delay: 8s;
  top: 66.62%;
  left: 20.55%;
  transform: translate(-50%, -2.25rem);
}

.orbit-node--automation {
  --node-accent: #ff9c3d;
  --node-number: "06";
  --signal-delay: 10s;
  top: 33.38%;
  left: 20.55%;
  transform: translate(-50%, -2.25rem);
}

.orbit-node__icon {
  position: relative;
  display: grid;
  width: var(--orbit-icon-size);
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 0.65rem;
  border: 1px solid color-mix(in srgb, var(--node-accent) 52%, transparent);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 24%, rgb(255 255 255 / 10%), transparent 28%),
    linear-gradient(180deg, rgb(255 255 255 / 6%), color-mix(in srgb, var(--node-accent) 5%, transparent)),
    rgb(5 7 9 / 94%);
  color: var(--node-accent);
  box-shadow:
    0 0 0 0.45rem color-mix(in srgb, var(--node-accent) 4%, transparent),
    0 0 1.8rem color-mix(in srgb, var(--node-accent) 16%, transparent);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.orbit-node__icon::before {
  position: absolute;
  top: -0.18rem;
  right: -0.22rem;
  z-index: 2;
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border: 1px solid var(--node-accent);
  border-radius: 50%;
  background: #080a0d;
  color: var(--node-accent);
  content: var(--node-number);
  font-size: 0.46rem;
  font-weight: 800;
  box-shadow: 0 0 0.8rem rgb(0 0 0 / 72%);
}

.orbit-node__icon::after {
  position: absolute;
  inset: -0.48rem;
  border: 1px solid color-mix(in srgb, var(--node-accent) 58%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 1.7rem color-mix(in srgb, var(--node-accent) 24%, transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scale(0.82);
  animation: solutionNodeSignal 12s ease-in-out var(--signal-delay) infinite;
}

.orbit-node__icon svg {
  width: clamp(1.75rem, 2vw, 2.1rem);
  height: clamp(1.75rem, 2vw, 2.1rem);
  stroke-width: 1.8;
  filter: drop-shadow(0 0 0.7rem color-mix(in srgb, var(--node-accent) 38%, transparent));
}

.orbit-node strong {
  position: relative;
  max-width: 12rem;
  color: #fff;
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.orbit-node strong::after {
  display: block;
  width: 1.8rem;
  height: 1px;
  margin: 0.48rem auto 0;
  background: linear-gradient(90deg, transparent, var(--node-accent), transparent);
  content: "";
  opacity: 0.58;
}

.orbit-node small {
  display: block;
  max-width: 11rem;
  margin-top: 0.34rem;
  color: rgb(226 233 241 / 80%);
  font-size: 0.8rem;
  line-height: 1.42;
}

.orbit-node:hover .orbit-node__icon,
.orbit-node:focus-visible .orbit-node__icon {
  border-color: var(--node-accent);
  background: color-mix(in srgb, var(--node-accent) 12%, #06080a);
  box-shadow:
    0 0 0 0.55rem color-mix(in srgb, var(--node-accent) 7%, transparent),
    0 0 2.5rem color-mix(in srgb, var(--node-accent) 34%, transparent);
  transform: translateY(-3px) scale(1.06);
}

.orbit-node:focus-visible {
  border-radius: 8px;
  outline: 2px solid var(--orange);
  outline-offset: 5px;
}

.solutions-values {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1480px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(0.6rem, 1.2vw, 1rem) auto 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgb(255 117 24 / 5%), transparent 22%, transparent 78%, rgb(255 117 24 / 5%)),
    rgb(6 8 10 / 88%);
  box-shadow: 0 1.4rem 4rem rgb(0 0 0 / 30%);
  backdrop-filter: blur(10px);
}

.solutions-values::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -16rem;
  z-index: 2;
  width: 16rem;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 3.5%), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-14deg);
  animation: solutionValuesScan 10s ease-in-out infinite;
}

.solutions-values article {
  --value-accent: var(--orange);
  position: relative;
  display: flex;
  min-height: 6rem;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem clamp(1rem, 2vw, 1.8rem);
  transition: background 220ms ease;
}

.solutions-values article:nth-child(2) { --value-accent: var(--cyan); }
.solutions-values article:nth-child(3) { --value-accent: #57d68d; }
.solutions-values article:nth-child(4) { --value-accent: #f6c75b; }

.solutions-values article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--value-accent), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 220ms ease, transform 220ms ease;
}

.solutions-values article::after {
  position: absolute;
  top: 0.7rem;
  right: 0.85rem;
  color: rgb(255 255 255 / 13%);
  content: "0" counter(value-item);
  counter-increment: value-item;
  font-size: 0.56rem;
  font-weight: 800;
}

.solutions-values {
  counter-reset: value-item;
}

.solutions-values article:hover {
  background: rgb(255 255 255 / 2.5%);
}

.solutions-values article:hover::before {
  opacity: 0.85;
  transform: scaleX(1);
}

.solutions-experience.is-visible .solutions-values article {
  animation: solutionValueReveal 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.solutions-experience.is-visible .solutions-values article:nth-child(2) { animation-delay: 90ms; }
.solutions-experience.is-visible .solutions-values article:nth-child(3) { animation-delay: 180ms; }
.solutions-experience.is-visible .solutions-values article:nth-child(4) { animation-delay: 270ms; }

.solutions-values article + article {
  border-left: 1px solid rgb(255 255 255 / 11%);
}

.solutions-values article > span {
  display: grid;
  min-width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--value-accent) 34%, transparent);
  border-radius: 6px;
  background: color-mix(in srgb, var(--value-accent) 7%, transparent);
  color: var(--value-accent);
}

.solutions-values article > span svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke-width: 1.8;
}

.solutions-values strong {
  display: block;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.2;
}

.solutions-values p {
  margin: 0.32rem 0 0;
  color: rgb(222 230 239 / 66%);
  font-size: 0.77rem;
  line-height: 1.35;
}

@keyframes solutionOrbitSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes solutionOrbitSpinReverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes solutionServiceWheelSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes solutionNodeCounterSpin {
  to {
    rotate: -360deg;
  }
}

@keyframes solutionNodeSignal {
  0%,
  20%,
  100% {
    opacity: 0;
    transform: scale(0.82);
  }

  7%,
  13% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes solutionSpokePulse {
  from {
    opacity: 0.2;
  }

  to {
    opacity: 0.9;
  }
}

@keyframes solutionDataFlow {
  0% {
    left: 0;
    opacity: 0;
  }

  16%,
  82% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes solutionCoreDial {
  to {
    transform: rotate(360deg);
  }
}

@keyframes solutionValuesScan {
  0%,
  22% {
    left: -16rem;
  }

  66%,
  100% {
    left: calc(100% + 16rem);
  }
}

@keyframes solutionValueReveal {
  from {
    opacity: 0;
    transform: translateY(0.8rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes solutionCoreBreathe {
  50% {
    box-shadow:
      0 0 0 1px rgb(255 255 255 / 12%),
      0 0 4rem rgb(255 117 24 / 42%),
      inset 0 0 3rem rgb(255 117 24 / 16%);
  }
}

@keyframes solutionNodeReveal {
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes solutionNodeFloat {
  50% {
    transform: translateY(-5px);
  }
}

@keyframes solutionKickerType {
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes solutionKickerSheen {
  0%,
  72%,
  100% {
    background-position: 100% 50%;
  }

  86% {
    background-position: 0 50%;
  }
}

@keyframes solutionKickerCaret {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

@keyframes solutionKickerLine {
  to {
    transform: scaleX(1);
  }
}

@keyframes solutionKickerPulse {
  50% {
    box-shadow: 0 0 1.6rem rgb(255 117 24 / 95%);
    transform: translateY(-50%) scale(1.18);
  }
}

@media (max-width: 1280px) {
  .solutions-stage {
    grid-template-columns: minmax(22rem, 0.72fr) minmax(38rem, 1.28fr);
    gap: 2rem;
  }

  .solutions-orbit {
    width: min(100%, 44rem);
  }

  .orbit-node {
    width: 11.5rem;
  }
}

@media (max-width: 1080px) {
  .solutions-stage {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .solutions-intro {
    max-width: 48rem;
  }

  .solutions-intro h2 {
    max-width: none;
  }

  .solutions-orbit {
    justify-self: center;
    width: min(100%, 48rem);
  }

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

  .solutions-values article:nth-child(3) {
    border-top: 1px solid rgb(255 255 255 / 11%);
    border-left: 0;
  }

  .solutions-values article:nth-child(4) {
    border-top: 1px solid rgb(255 255 255 / 11%);
  }
}

@media (max-width: 720px) {
  .hero + .solutions-experience {
    margin-top: -2rem;
  }

  .solutions-experience {
    min-height: 0;
    padding: 4.5rem 0.6rem 1rem;
  }

  .solutions-experience::before,
  .solutions-experience::after {
    display: none;
  }

  .solutions-stage {
    min-height: 0;
    gap: 2.8rem;
  }

  .solutions-intro {
    padding-inline: 0.35rem;
  }

  .solutions-intro h2 {
    max-width: none;
    font-size: clamp(2.35rem, 10vw, 3rem);
    line-height: 1.03;
  }

  .solutions-intro > p {
    font-size: 1rem;
  }

  .solutions-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .solutions-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .solutions-orbit {
    display: grid;
    width: 100%;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    aspect-ratio: auto;
  }

  .orbit-rings,
  .orbit-spokes {
    display: none;
  }

  .orbit-node-wheel {
    display: contents;
    animation: none;
  }

  .orbit-node__content {
    animation: none;
  }

  .solution-core {
    position: relative;
    top: auto;
    left: auto;
    width: 8.2rem;
    grid-column: 1 / -1;
    justify-self: center;
    margin-bottom: 0.8rem;
    transform: none;
  }

  .solution-core__mark {
    width: 5.8rem;
    height: 5.2rem;
  }

  .solution-core__mark img {
    width: 19.2rem;
  }

  .orbit-node,
  .orbit-node--support,
  .orbit-node--network,
  .orbit-node--development,
  .orbit-node--infrastructure,
  .orbit-node--ai,
  .orbit-node--automation {
    position: relative;
    inset: auto;
    width: auto;
    min-width: 0;
    min-height: 11.5rem;
    align-content: center;
    padding: 1rem 0.6rem;
    border: 1px solid rgb(255 117 24 / 22%);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgb(255 255 255 / 4%), transparent),
      rgb(5 7 9 / 78%);
    rotate: none;
    transform: none;
    animation: solutionNodeReveal 720ms cubic-bezier(0.22, 1, 0.36, 1) 250ms forwards;
  }

  .orbit-node__icon {
    width: 4.25rem;
  }

  .orbit-node strong {
    font-size: 0.82rem;
  }

  .orbit-node small {
    font-size: 0.74rem;
  }

  .solutions-values {
    grid-template-columns: 1fr;
    margin-top: 1.2rem;
  }

  .solutions-values article {
    min-height: 5.8rem;
  }

  .solutions-values article + article,
  .solutions-values article:nth-child(3),
  .solutions-values article:nth-child(4) {
    border-top: 1px solid rgb(255 255 255 / 11%);
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-ring,
  .orbit-spokes span,
  .orbit-spokes span::after,
  .solution-core,
  .solution-core__dial,
  .orbit-node-wheel,
  .orbit-node,
  .orbit-node__content,
  .orbit-node__icon,
  .orbit-node__icon::after,
  .solutions-values::before,
  .solutions-values article {
    animation: none !important;
  }

  .orbit-node {
    opacity: 1;
    filter: none;
  }

  .solutions-kicker > span {
    color: var(--orange);
    background: none;
    clip-path: none;
    animation: none !important;
  }

  .solutions-kicker i {
    transform: none;
    animation: none !important;
  }

  .solutions-kicker i::before,
  .solutions-kicker > span::after {
    animation: none !important;
  }
}


/* Codex-inspired trusted teams row inside the hero */
.hero-partners {
  position: absolute;
  bottom: clamp(3.6rem, 5.8vh, 5.2rem);
  left: 50%;
  z-index: 4;
  width: min(1100px, calc(100% - clamp(3rem, 11vw, 10rem)));
  overflow: visible;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-partners__label {
  display: none;
}

.hero-partners__list {
  display: grid;
  min-height: 4.6rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 3.5vw, 3.8rem);
  align-items: center;
}

.hero-partner {
  position: relative;
  display: grid;
  grid-row: 1;
  grid-column: var(--partner-slot, 1);
  min-width: 0;
  min-height: 4.6rem;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 0.72rem;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  visibility: hidden;
  opacity: 0;
  filter: blur(9px);
  text-align: left;
  transform: translateY(0.8rem) scale(0.96);
  transition:
    opacity 280ms ease,
    filter 280ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter, transform;
}

.hero-partner.is-entering,
.hero-partner.is-active,
.hero-partner.is-leaving {
  visibility: visible;
}

.hero-partner.is-active {
  opacity: 1;
  filter: none;
  transform: translateY(0) scale(1);
}

.hero-partner::before {
  content: none;
}

.hero-partner.is-leaving {
  opacity: 0;
  filter: blur(9px);
  transform: translateY(-0.45rem) scale(0.96);
}

.hero-partner strong,
.hero-partner small {
  display: block;
  letter-spacing: 0;
}

.hero-partner__icon {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #ff7a1b;
}

.hero-partner__icon svg {
  width: 1.55rem;
  height: 1.55rem;
  filter: drop-shadow(0 0 0.65rem rgb(255 117 24 / 30%));
}

.hero-partner img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-partner--aciabac img,
.hero-partner--point img,
.hero-partner--pascoal img {
  width: clamp(3rem, 3.5vw, 3.7rem);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0.8rem 2rem rgb(0 0 0 / 45%);
}

.hero-partner strong {
  color: #fff;
  font-size: clamp(1.04rem, 1.12vw, 1.2rem);
  font-weight: 850;
  line-height: 1.1;
  text-shadow: none;
}

.hero-partner small {
  margin-top: 0.22rem;
  color: rgb(255 154 83 / 96%);
  font-size: clamp(0.68rem, 0.72vw, 0.78rem);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.hero-partner .hero-partner__name {
  min-height: 1rem;
  margin-top: 0.38rem;
  color: rgb(247 249 252 / 88%);
  font-size: clamp(0.65rem, 0.68vw, 0.72rem);
  font-weight: 650;
  line-height: 1.25;
  text-transform: none;
  text-shadow: 0 0.45rem 1rem rgb(0 0 0 / 65%);
}

.hero-partner--prefeitura strong {
  font-size: clamp(0.78rem, 1vw, 1.05rem);
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .hero-shell {
    padding-bottom: 9.5rem;
  }

  .hero-partners {
    bottom: 1.1rem;
    width: min(100% - 1.5rem, 640px);
  }

  .hero-partners__label {
    margin-bottom: 0.9rem;
  }

  .hero-partners__list {
    min-height: 7.6rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 1.25rem;
  }

  .hero-partner {
    min-height: 3.4rem;
    grid-template-columns: 1.9rem minmax(0, 1fr);
    gap: 0.55rem;
    padding: 0;
  }

  .hero-partner strong {
    font-size: 0.86rem;
  }

  .hero-partner small { font-size: 0.63rem; }
  .hero-partner__icon { width: 1.9rem; height: 1.9rem; }
  .hero-partner__icon svg { width: 1.3rem; height: 1.3rem; }

  .hero-partner--aciabac img,
  .hero-partner--point img,
  .hero-partner--pascoal img {
    width: 3rem;
  }

  .hero-partner .hero-partner__name {
    margin-top: 0.4rem;
    font-size: 0.7rem;
  }

  .hero-partner--prefeitura strong {
    font-size: 0.76rem;
  }

}

@media (max-width: 430px) {
  .hero-shell {
    padding-bottom: 9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-partner {
    transition: none !important;
  }
}

/* Entrada discreta das telas seguintes sem alterar a composição principal. */
@media (prefers-reduced-motion: no-preference) {
  [data-site-screen].scroll-reveal {
    opacity: 0.001;
    transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  [data-site-screen].scroll-reveal.is-revealed {
    opacity: 1;
  }
}

/* Hero spacing and direct-file YouTube fallback */
.hero-bg video[data-hero-fallback] {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(0.95) contrast(1.06) brightness(0.62);
  pointer-events: none;
  user-select: none;
  transition: opacity 0.8s ease;
}

.hero-bg.local-video-ready video[data-hero-fallback] {
  opacity: 0.72;
}

.hero-bg.youtube-ready video[data-hero-fallback] {
  opacity: 0;
}

.hero-bg iframe[hidden] {
  display: none;
}

.hero-bg.youtube-file-mode img {
  opacity: 0.58;
  filter: saturate(1.08) contrast(1.04) brightness(0.72);
  animation: heroPosterDrift 16s ease-in-out infinite alternate;
}

@keyframes heroPosterDrift {
  to {
    transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
  }
}

@media (min-width: 721px) {
  .hero-shell {
    width: min(1080px, calc(100% - clamp(2rem, 5vw, 5rem)));
    margin-left: clamp(1.5rem, 3.2vw, 3.8rem);
    margin-right: auto;
  }

  .hero-copy {
    max-width: 55rem;
    transform: translateY(-3.2rem);
  }

  .hero-copy .eyebrow {
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 0.9vw, 1.02rem);
    font-weight: 700;
  }

  .hero-title {
    max-width: 14.5ch;
    margin-bottom: 1.35rem;
    font-size: clamp(3.35rem, 4.15vw, 4.75rem);
    font-weight: 700;
    line-height: 1.04;
  }

  .hero-title strong {
    font-weight: 750;
  }

  .hero-lead,
  .hero-copy > p {
    max-width: 36rem;
    font-size: clamp(1.05rem, 1.15vw, 1.22rem);
    line-height: 1.55;
  }

  .hero-actions {
    gap: 0.9rem;
    margin-top: 1.75rem;
  }

  .hero-actions .btn {
    min-width: 14.5rem;
    min-height: 3.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 720px) {
  .hero-copy .eyebrow {
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
  }

  .hero-title {
    max-width: 12ch;
    margin-bottom: 1.2rem;
    font-size: clamp(2.55rem, 11vw, 3.25rem);
    font-weight: 700;
    line-height: 1.05;
  }

  .hero-lead,
  .hero-copy > p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 0.7rem;
    margin-top: 1.5rem;
  }

  .hero-actions .btn {
    min-height: 3.65rem;
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg.youtube-file-mode img {
    animation: none !important;
  }
}

/* Abertura restaurada: cidade noturna fixa, sem vídeo ou YouTube. */
.hero-bg--city img {
  opacity: 0.58;
  filter: saturate(1.08) contrast(1.04) brightness(0.72);
  transform: scale(1.01);
  animation: none;
}

/* Systems layout priority overrides */
@media (max-width: 960px) {
  :root {
    --topbar: 82px;
  }

  .topbar {
    min-height: var(--topbar);
    grid-template-columns: auto auto;
    padding: 0 1rem;
  }

  .topbar .brand img {
    width: 11.3rem;
  }

  .topbar .menu-button {
    display: block;
    justify-self: end;
  }

  .topbar .main-nav {
    position: fixed;
    inset: var(--topbar) 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    margin: 0;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgb(5 7 10 / 96%);
    box-shadow: var(--shadow);
    transform: none;
  }

  .topbar .main-nav.open {
    display: flex;
  }

  .topbar .main-nav a,
  .topbar .main-nav .private-link,
  .topbar .main-nav .support-link {
    width: 100%;
    min-width: 0;
    min-height: 3rem;
    justify-content: flex-start;
    padding: 0.25rem 0.8rem;
  }

  .topbar .main-nav .private-link span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }
}

.systems-showcase {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(0, .82fr) minmax(32rem, 1.18fr);
  width: min(1440px, calc(100% - clamp(2rem, 7vw, 8rem)));
  gap: clamp(2.5rem, 6vw, 6.5rem);
  margin-block: clamp(2rem, 4vw, 4rem);
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 4vw, 4.5rem);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: clamp(1.5rem, 3vw, 2.75rem);
  background: radial-gradient(circle at 90% 12%, rgb(255 117 24 / 18%), transparent 25rem), linear-gradient(135deg, rgb(255 255 255 / 5%), rgb(255 255 255 / 1.5%));
  box-shadow: 0 2rem 7rem rgb(0 0 0 / 32%);
}
.systems-copy h2 { max-width: 12ch; margin: 0 0 1.25rem; font-size: clamp(2.45rem, 4.6vw, 5rem); line-height: .98; letter-spacing: -.045em; text-wrap: balance; }
.systems-copy p { max-width: 38rem; margin: 0; color: rgb(218 227 237 / 82%); font-size: clamp(1rem, 1.25vw, 1.18rem); line-height: 1.7; }
.systems-actions { align-items: stretch; margin-top: 2rem; }
.systems-actions .btn { min-height: 3.35rem; padding-inline: 1.35rem; text-align: center; }
.systems-panel { position: relative; align-self: center; overflow: hidden; border: 1px solid rgb(255 255 255 / 13%); border-radius: 1.5rem; background: rgb(4 6 8 / 92%); box-shadow: 0 2rem 5rem rgb(0 0 0 / 48%); }
.systems-panel img { width: 100%; height: clamp(17rem, 28vw, 27rem); max-height: none; object-fit: cover; object-position: center top; }
.systems-panel ul { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; padding: 0; }
.systems-panel li { min-height: 5.8rem; padding: 1.35rem 1.25rem 1.25rem 3rem; border-top: 1px solid rgb(255 255 255 / 8%); }
.systems-panel li:nth-child(odd) { border-right: 1px solid rgb(255 255 255 / 8%); }
.systems-panel li::before { top: 1.48rem; left: 1.3rem; width: .72rem; height: .72rem; border: 2px solid rgb(255 163 79 / 38%); box-shadow: 0 0 0 5px rgb(255 117 24 / 9%); }
@media (max-width: 1080px) {
  .systems-showcase { grid-template-columns: 1fr; width: min(100% - 2rem, 900px); }
  .systems-copy h2 { max-width: 15ch; }
}
@media (max-width: 640px) {
  .systems-showcase { width: min(100% - 1rem, 640px); gap: 2rem; margin-block: 1rem 2.5rem; padding: 2.75rem 1rem 1rem; border-radius: 1.35rem; }
  .systems-copy h2 { font-size: clamp(2.2rem, 11vw, 3.25rem); }
  .systems-actions { grid-template-columns: 1fr; }
  .systems-actions .btn { width: 100%; }
  .systems-panel { border-radius: 1rem; }
  .systems-panel img { height: clamp(13rem, 58vw, 19rem); }
  .systems-panel ul { grid-template-columns: 1fr; }
  .systems-panel li { min-height: auto; padding-block: 1.15rem; }
  .systems-panel li:nth-child(odd) { border-right: 0; }
  .systems-panel li::before { top: 1.28rem; }
}
/* Store reference layout: compact retail viewport */
body.site-routed:has(#loja.is-active-screen) {
  --topbar: 72px;
  overflow-x: clip;
  background: #030507;
}

body.site-routed #loja,
body.site-routed #loja *,
body.site-routed #loja *::before,
body.site-routed #loja *::after {
  box-sizing: border-box;
}

body.site-routed:has(#loja.is-active-screen) .topbar {
  min-height: var(--topbar);
  padding-inline: max(2.5rem, calc((100vw - 1830px) / 2));
  border-bottom: 1px solid rgb(255 255 255 / 7%);
  background: rgb(2 4 6 / 96%);
}

body.site-routed:has(#loja.is-active-screen) .topbar .brand img {
  width: 11.5rem;
}

body.site-routed:has(#loja.is-active-screen) .topbar .main-nav {
  gap: 0.18rem;
}

body.site-routed:has(#loja.is-active-screen) .topbar .nav-menu-trigger {
  min-height: 2.4rem;
  padding-inline: 0.58rem;
  font-size: 0.72rem;
}

body.site-routed:has(#loja.is-active-screen) .topbar .support-link--premium {
  min-height: 2.75rem;
  padding-inline: 1rem;
}

body.site-routed main > #loja.store-marketplace.is-active-screen {
  width: min(1830px, calc(100% - 2.5rem));
  min-height: 100svh;
  padding-top: calc(var(--topbar) + 0.65rem) !important;
  padding-bottom: 1.25rem !important;
}

body.site-routed #loja .storefront-hero {
  min-height: 0;
  height: 22rem;
  border-color: rgb(255 255 255 / 13%);
  background: #020406;
  box-shadow: 0 1.2rem 3.5rem rgb(0 0 0 / 38%);
}

body.site-routed #loja .storefront-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(125deg, transparent 52%, rgb(255 106 0 / 85%) 52.15%, transparent 52.55%),
    linear-gradient(55deg, transparent 72%, rgb(255 106 0 / 58%) 72.15%, transparent 72.5%);
  opacity: 0.62;
  content: "";
  pointer-events: none;
}

body.site-routed #loja .storefront-hero::after {
  z-index: 1;
  background:
    linear-gradient(90deg, #030507 0%, rgb(3 5 7 / 96%) 31%, rgb(3 5 7 / 62%) 48%, rgb(3 5 7 / 8%) 76%),
    linear-gradient(0deg, rgb(2 4 6 / 42%), transparent 42%);
}

body.site-routed #loja .storefront-hero-media {
  position: absolute;
  inset: 0 0 0 38%;
  width: auto;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 40%, rgb(255 112 18 / 18%), transparent 31%),
    #030507;
}

body.site-routed #loja .storefront-hero-media img {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

body.site-routed #loja .store-hero-board {
  inset: -12% -2% -12% 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: 56% center;
  filter: brightness(0.82) saturate(1.12);
}

body.site-routed #loja .store-hero-case {
  z-index: 2;
  right: 2.4%;
  bottom: -22%;
  width: 25%;
  mix-blend-mode: screen;
  filter: brightness(0.42) sepia(0.2) saturate(1.25) drop-shadow(0 0 1.4rem rgb(255 108 14 / 22%));
  transform: rotate(-2deg);
}

body.site-routed #loja .store-hero-gpu {
  z-index: 4;
  right: 7%;
  bottom: -1%;
  width: 35%;
  border-radius: 4px;
  box-shadow: 0 1rem 2.5rem rgb(0 0 0 / 60%);
  clip-path: polygon(3% 20%, 100% 20%, 96% 91%, 0 91%);
  filter: sepia(0.18) saturate(1.15) brightness(0.82);
  transform: rotate(6deg);
}

body.site-routed #loja .store-hero-ram {
  z-index: 5;
  left: 24%;
  bottom: -18%;
  width: 25%;
  filter: brightness(0.72) sepia(0.18) saturate(1.2) drop-shadow(0 0.8rem 1.2rem rgb(0 0 0 / 78%));
  transform: rotate(8deg);
}

body.site-routed #loja .store-hero-ssd {
  z-index: 5;
  left: 45%;
  bottom: 0;
  width: 19%;
  border-radius: 4px;
  clip-path: polygon(0 34%, 100% 34%, 100% 78%, 0 78%);
  filter: sepia(0.55) saturate(1.6) hue-rotate(338deg) brightness(0.72);
  transform: rotate(-8deg);
}

body.site-routed #loja .storefront-hero-media .store-hero-art {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.08) saturate(1.14) contrast(1.04);
}

body.site-routed #loja .storefront-copy {
  width: min(38rem, 43%);
  padding: 1.4rem 2.6rem 4.2rem;
}

body.site-routed #loja .storefront-copy .eyebrow {
  margin-bottom: 0;
  font-size: 0.68rem;
}

body.site-routed #loja .storefront-copy h2 {
  max-width: none;
  margin-top: 0.55rem;
  font-size: 2.5rem;
  line-height: 1.04;
}

body.site-routed #loja .storefront-copy > p {
  max-width: 31rem;
  margin-top: 0.72rem;
  font-size: 0.82rem;
  line-height: 1.45;
}

body.site-routed #loja .storefront-actions {
  gap: 0.58rem;
  margin-top: 1.05rem;
}

body.site-routed #loja .storefront-actions .btn {
  min-height: 2.45rem;
  height: 2.45rem;
  padding-block: 0;
  padding-inline: 1rem;
  font-size: 0.7rem;
}

body.site-routed #loja .storefront-trust {
  width: min(35rem, 42%);
}

body.site-routed #loja .storefront-trust > span {
  min-height: 3.55rem;
  padding: 0.65rem 0.8rem;
}

body.site-routed #loja .storefront-trust svg {
  width: 1.05rem;
  height: 1.05rem;
}

body.site-routed #loja .storefront-trust strong {
  font-size: 0.65rem;
}

body.site-routed #loja .storefront-trust small {
  font-size: 0.54rem;
}

body.site-routed #loja .store-toolbar {
  min-height: 3.35rem;
  grid-template-columns: minmax(18rem, 0.68fr) minmax(35rem, 1.65fr) auto;
  gap: 0.5rem;
  margin-top: 0.7rem;
  padding: 0.35rem 0.45rem;
}

body.site-routed #loja .store-search,
body.site-routed #loja .store-filters button,
body.site-routed #loja .store-cart-trigger {
  min-height: 2.55rem;
}

body.site-routed #loja .store-search {
  font-size: 0.68rem;
}

body.site-routed #loja .store-filters button {
  padding-inline: 0.72rem;
  font-size: 0.64rem;
}

body.site-routed #loja .store-catalog-shell {
  grid-template-columns: 16rem minmax(0, 1fr);
  gap: 0.9rem;
  margin-top: 0.75rem;
}

body.site-routed #loja .store-sidebar {
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

body.site-routed #loja .store-sidebar > section {
  min-width: 0;
}

body.site-routed #loja .store-sidebar header {
  min-height: 2.85rem;
  padding-inline: 0.8rem;
}

body.site-routed #loja .store-sidebar header strong {
  font-size: 0.72rem;
}

body.site-routed #loja .store-sidebar nav {
  padding: 0.45rem;
}

body.site-routed #loja .store-sidebar nav button {
  min-height: 2.25rem;
  grid-template-columns: 0.9rem minmax(0, 1fr) auto;
  gap: 0.5rem;
  padding-inline: 0.55rem;
  font-size: 0.64rem;
}

body.site-routed #loja .store-sidebar nav button svg {
  width: 0.78rem;
  height: 0.78rem;
}

body.site-routed #loja .store-sidebar nav button span {
  font-size: 0.85rem;
}

body.site-routed #loja .store-filter-panel,
body.site-routed #loja .store-price-filter,
body.site-routed #loja .store-filter-panel fieldset,
body.site-routed #loja .store-stock-filter {
  font-size: 0.64rem;
}

body.site-routed #loja .store-price-filter,
body.site-routed #loja .store-filter-panel fieldset,
body.site-routed #loja .store-stock-filter {
  gap: 0.55rem;
  padding: 0.8rem;
}

body.site-routed #loja .store-filter-panel fieldset {
  gap: 0.55rem;
}

body.site-routed #loja .store-filter-panel legend {
  margin-bottom: 0.55rem;
  font-size: 0.62rem;
}

body.site-routed #loja .store-filter-panel fieldset label,
body.site-routed #loja .store-stock-filter strong,
body.site-routed #loja .store-price-filter output {
  font-size: 0.62rem;
}

body.site-routed #loja .store-stock-filter small {
  font-size: 0.54rem;
}

body.site-routed #loja .store-results-head {
  min-height: 2.85rem;
  padding: 0 0.15rem 0.65rem;
}

body.site-routed #loja .store-results-head > div > span {
  font-size: 0.82rem;
}

body.site-routed #loja .store-results-head label,
body.site-routed #loja .store-results-head select,
body.site-routed #loja .store-results-head .store-count {
  font-size: 0.62rem;
}

body.site-routed #loja .store-results-head select {
  min-height: 2.25rem;
}

body.site-routed #loja .store-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

body.site-routed #loja .store-product {
  min-height: 31rem;
  border-color: rgb(255 255 255 / 12%);
  background: #090d12;
  box-shadow: 0 0.8rem 2.2rem rgb(0 0 0 / 22%);
}

body.site-routed #loja .store-product__image {
  aspect-ratio: 1.42 / 1;
  padding: 1rem;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  background:
    radial-gradient(circle at 50% 44%, rgb(40 65 85 / 52%), transparent 56%),
    #080c10;
}

body.site-routed #loja .store-product__image img {
  transition: transform 220ms ease, filter 220ms ease;
}

body.site-routed #loja .store-product:hover .store-product__image img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

body.site-routed #loja .store-product.featured {
  border-color: rgb(255 117 24 / 28%);
}

body.site-routed #loja .store-product__favorite {
  top: 0.65rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
}

body.site-routed #loja .store-product__badge {
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.3rem 0.5rem;
  font-size: 0.58rem;
}

body.site-routed #loja .store-product__body {
  padding: 0.95rem;
}

body.site-routed #loja .store-product__body > small {
  font-size: 0.58rem;
}

body.site-routed #loja .store-product__body h3 {
  min-height: 2.7rem;
  margin-top: 0.42rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

body.site-routed #loja .store-product__body p {
  display: -webkit-box;
  min-height: 2.6rem;
  margin-top: 0.45rem;
  overflow: hidden;
  color: #8794a1;
  font-size: 0.68rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.site-routed #loja .store-product__specs {
  display: flex;
  min-height: 2rem;
  margin-top: 0.65rem;
  flex-wrap: wrap;
  gap: 0.35rem;
}

body.site-routed #loja .store-product__specs li {
  max-width: none;
  padding: 0.3rem 0.45rem;
  font-size: 0.56rem;
}

body.site-routed #loja .store-product__price {
  padding-top: 0.75rem;
}

body.site-routed #loja .store-product__price del {
  font-size: 0.58rem;
}

body.site-routed #loja .store-product__price strong {
  font-size: 1.08rem;
}

body.site-routed #loja .store-product__price span {
  min-height: 1.25rem;
  font-size: 0.56rem;
}

body.site-routed #loja .store-product__actions {
  gap: 0.45rem;
  margin-top: 0.7rem;
}

body.site-routed #loja .store-product__actions button {
  min-height: 2.35rem;
  padding-inline: 0.5rem;
  font-size: 0.62rem;
}

body.site-routed #loja .store-services {
  margin-top: 0.55rem;
}

body.site-routed #loja .store-services article {
  min-height: 4.6rem;
  padding: 0.65rem 0.9rem;
}

body.site-routed #loja .store-services article > span {
  width: 2rem;
  height: 2rem;
}

body.site-routed #loja .store-services article strong {
  font-size: 0.66rem;
}

body.site-routed #loja .store-services article p {
  font-size: 0.54rem;
}

@media (max-width: 1500px) {
  body.site-routed #loja .store-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.site-routed #loja .storefront-copy h2 {
    font-size: 2.35rem;
  }
}

@media (max-width: 1180px) {
  body.site-routed #loja .storefront-hero {
    height: 24rem;
  }

  body.site-routed #loja .store-toolbar {
    grid-template-columns: minmax(16rem, 1fr) auto;
  }

  body.site-routed #loja .store-catalog-shell {
    grid-template-columns: 15rem minmax(0, 1fr);
  }

  body.site-routed #loja .store-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.site-routed:has(#loja.is-active-screen) {
    --topbar: 82px;
  }

  body.site-routed main > #loja.store-marketplace.is-active-screen {
    width: min(100% - 1rem, 760px);
  }

  body.site-routed #loja .storefront-hero {
    height: 36rem;
  }

  body.site-routed #loja .storefront-hero-media {
    inset: 42% 0 0;
  }

  body.site-routed #loja .storefront-hero-media .store-hero-art {
    object-position: 73% center;
  }

  body.site-routed #loja .storefront-hero::after {
    background: linear-gradient(180deg, #030507 0%, rgb(3 5 7 / 92%) 44%, rgb(3 5 7 / 25%) 72%, rgb(3 5 7 / 76%) 100%);
  }

  body.site-routed #loja .storefront-copy {
    width: 100%;
    padding: 1.5rem 1.4rem 0;
  }

  body.site-routed #loja .storefront-trust {
    width: 100%;
  }

  body.site-routed #loja .store-catalog-shell {
    grid-template-columns: 1fr;
  }

  body.site-routed #loja .store-sidebar {
    display: none;
  }

  body.site-routed #loja .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.site-routed #loja .storefront-hero {
    height: 39rem;
  }

  body.site-routed #loja .storefront-copy h2 {
    max-width: 13ch;
    font-size: 2rem;
  }

  body.site-routed #loja .storefront-copy > p {
    max-width: 100%;
    font-size: 0.76rem;
  }

  body.site-routed #loja .storefront-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  body.site-routed #loja .storefront-actions .btn {
    width: 100%;
    min-width: 0;
  }

  body.site-routed #loja .storefront-trust {
    grid-template-columns: 1fr;
  }

  body.site-routed #loja .storefront-trust > span {
    min-height: 3rem;
    border-right: 0;
  }

  body.site-routed #loja .store-grid {
    grid-template-columns: 1fr;
  }

  body.site-routed #loja .store-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

/* Chamado rapido: entrada do cliente pela primeira tela */
body.site-routed #inicio .hero-shell {
  display: block;
  width: min(1050px, calc(100% - clamp(2rem, 7vw, 8rem)));
  margin-left: clamp(4.5rem, 7vw, 8.5rem);
  margin-right: auto;
  padding: clamp(10rem, 21vh, 16rem) 0 clamp(9rem, 16vh, 13rem);
}

.hero-support-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0 0;
  color: rgb(231 239 244 / 72%);
  font-size: 0.85rem;
}

.hero-support-note svg {
  width: 1rem;
  color: #48d597;
}

.quick-ticket {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 18px;
  background: linear-gradient(155deg, rgb(17 30 34 / 96%), rgb(5 11 14 / 96%));
  box-shadow: 0 1.75rem 4rem rgb(0 0 0 / 42%), 0 0 0 1px rgb(72 213 151 / 8%) inset;
}

.quick-ticket::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.28rem;
  content: "";
  background: linear-gradient(90deg, #40c98e, #25a66f);
}

.quick-ticket__head {
  padding: 1.45rem 1.5rem 1rem;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  background: rgb(255 255 255 / 3%);
}

.quick-ticket__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #8ae7bd;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-ticket__status i {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: #4ee19f;
  box-shadow: 0 0 0 0.25rem rgb(78 225 159 / 14%);
}

.quick-ticket__head h2 {
  margin: 0.55rem 0 0.35rem;
  color: #fff;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.12;
}

.quick-ticket__head p {
  margin: 0;
  color: rgb(225 235 239 / 70%);
  font-size: 0.86rem;
  line-height: 1.45;
}

.quick-ticket__form {
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem 1.5rem 1.2rem;
}

.quick-ticket__form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.quick-ticket__form legend,
.quick-ticket__message > span {
  display: block;
  margin-bottom: 0.55rem;
  color: rgb(240 245 247 / 88%);
  font-size: 0.79rem;
  font-weight: 750;
}

.quick-ticket__message > span small {
  color: rgb(216 229 232 / 50%);
  font-weight: 500;
}

.quick-ticket__topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.48rem;
}

.quick-ticket__topics button {
  display: flex;
  min-height: 2.7rem;
  align-items: center;
  gap: 0.48rem;
  padding: 0.55rem 0.62rem;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 9px;
  background: rgb(255 255 255 / 4%);
  color: rgb(240 245 247 / 90%);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.12;
  text-align: left;
  cursor: pointer;
  transition: 160ms ease;
}

.quick-ticket__topics button:last-child {
  grid-column: 1 / -1;
}

.quick-ticket__topics button svg {
  width: 1rem;
  min-width: 1rem;
  color: #7de8b3;
}

.quick-ticket__topics button:hover,
.quick-ticket__topics button:focus-visible,
.quick-ticket__topics button.is-selected {
  border-color: #46cf92;
  outline: none;
  background: rgb(70 207 146 / 16%);
  color: #fff;
}

.quick-ticket__message textarea {
  display: block;
  width: 100%;
  min-height: 4.75rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 10px;
  outline: none;
  background: rgb(0 0 0 / 22%);
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  line-height: 1.4;
  resize: vertical;
}

.quick-ticket__message textarea::placeholder {
  color: rgb(220 230 234 / 46%);
}

.quick-ticket__message textarea:focus {
  border-color: #46cf92;
  box-shadow: 0 0 0 0.2rem rgb(70 207 146 / 12%);
}

.quick-ticket__feedback {
  min-height: 1.1rem;
  margin: -0.2rem 0 0;
  color: #ffbd7d;
  font-size: 0.72rem;
  line-height: 1.35;
}

.quick-ticket__submit {
  display: inline-flex;
  width: 100%;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(180deg, #4fd69b, #22ad70);
  color: #062618;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 0.8rem 1.8rem rgb(24 166 104 / 22%);
}

.quick-ticket__submit:hover,
.quick-ticket__submit:focus-visible {
  filter: brightness(1.08);
  outline: 2px solid #a3f5cf;
  outline-offset: 2px;
}

.quick-ticket__submit svg {
  width: 1rem;
}

.quick-ticket__complete {
  justify-self: center;
  color: rgb(221 233 236 / 70%);
  font-size: 0.73rem;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.quick-ticket__complete:hover {
  color: #fff;
}

.quick-ticket > footer {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 9%);
  color: rgb(216 229 232 / 58%);
  font-size: 0.68rem;
}

.quick-ticket > footer svg {
  width: 0.95rem;
  color: #63dda6;
}

@media (max-width: 1180px) {
  body.site-routed #inicio .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.78fr);
    gap: 2rem;
    padding-block: 8.5rem 6rem;
  }
}

@media (max-width: 860px) {
  body.site-routed #inicio .hero-shell {
    grid-template-columns: minmax(0, 36rem);
    justify-content: start;
    padding-block: 8rem 5rem;
  }

  .quick-ticket {
    width: min(100%, 36rem);
  }
}

@media (max-width: 720px) {
  body.site-routed #inicio .hero-shell {
    width: min(100% - 1.5rem, 640px);
    margin-inline: auto;
    padding: 8.5rem 0 4rem;
  }

  .hero-support-note {
    align-items: flex-start;
    font-size: 0.78rem;
  }

  .quick-ticket__head,
  .quick-ticket__form {
    padding-inline: 1rem;
  }

  .quick-ticket > footer {
    padding-inline: 1rem;
  }
}

.hero-actions .whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.hero-actions .whatsapp-btn svg {
  display: block;
  width: 1.1rem;
  height: 1.1rem;
}

/* Abertura direta: a Chip permanece como único acesso ao atendimento no canto da tela. */
body.site-routed #inicio .hero-shell {
  width: min(980px, calc(100% - clamp(2rem, 7vw, 8rem)));
  min-height: min(760px, 100svh);
  margin-left: clamp(4.5rem, 7vw, 8.5rem);
  padding: clamp(7.5rem, 15vh, 10.5rem) 0 clamp(6rem, 12vh, 8rem);
}

body.site-routed #inicio .hero-copy {
  max-width: 44rem;
  padding: 0;
  transform: none;
}

body.site-routed #inicio .hero-copy::before,
body.site-routed #inicio .hero-copy::after { display: none; }

body.site-routed #inicio .hero-kicker {
  margin: 0 0 1rem;
  color: #ff8a33;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.25;
}

.hero-kicker {
  margin: 0 0 1rem;
  color: #ff8a33;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
}

body.site-routed #inicio .hero-title {
  max-width: 12.8ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.2rem, 4.3vw, 5.15rem);
  font-weight: 760;
  line-height: 1.01;
  letter-spacing: -.045em;
  text-transform: none;
}

body.site-routed #inicio .hero-lead {
  max-width: 35rem;
  margin-bottom: 0;
  color: rgb(224 233 236 / 80%);
  font-size: clamp(1rem, 1.16vw, 1.2rem);
  line-height: 1.58;
}

body.site-routed #inicio .hero-actions { margin-top: 1.8rem; }
body.site-routed #inicio .hero-actions .btn { min-width: 0; }

@media (max-width: 720px) {
  body.site-routed #inicio .hero-shell {
    width: min(100% - 1.5rem, 640px);
    min-height: 100svh;
    margin-inline: auto;
    padding: 8.3rem 0 5.5rem;
  }

  body.site-routed #inicio .hero-copy { max-width: 33rem; }
  .hero-kicker { margin-bottom: .85rem; font-size: .64rem; }
  body.site-routed #inicio .hero-title { max-width: 10.7ch; font-size: clamp(2.75rem, 11vw, 3.55rem); }
  body.site-routed #inicio .hero-actions .btn { width: 100%; }
}

/* Rodape premium: mais compacto, legivel e equilibrado. */
body.site-routed .site-footer {
  border-top-color: rgb(255 122 26 / 28%);
  background:
    radial-gradient(circle at 78% 18%, rgb(255 122 26 / 7%), transparent 24rem),
    linear-gradient(180deg, #06090a 0%, #030506 100%);
}

body.site-routed .site-footer .footer-shell {
  width: min(100%, 1280px);
  grid-template-columns: minmax(16rem, 0.9fr) minmax(31rem, 1.55fr) minmax(18rem, 0.95fr);
  gap: clamp(2rem, 3.3vw, 3.6rem);
  align-items: stretch;
  padding: 3.2rem clamp(1.5rem, 4vw, 3.6rem) 2.8rem;
}

body.site-routed .footer-brand {
  min-width: 0;
  padding: 0.55rem 0;
}

body.site-routed .footer-brand img {
  width: 11.25rem;
}

body.site-routed .footer-brand p {
  max-width: 21rem;
  margin-top: 1rem;
  color: #a7b1ba;
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer-brand__status {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  margin-top: 1rem;
  color: #d5dcdf;
  font-size: 0.67rem;
  font-weight: 750;
}

.footer-brand__status > span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #55d99f;
  box-shadow: 0 0 0 4px rgb(85 217 159 / 10%), 0 0 1rem rgb(85 217 159 / 30%);
}

body.site-routed .footer-location {
  width: min(100%, 21rem);
  margin-top: 1.25rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 11px;
  background: rgb(255 255 255 / 2.5%);
}

body.site-routed .footer-location strong {
  color: #f4f7f7;
  font-size: 0.76rem;
}

.footer-explore {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(7.5rem, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(1.5rem, 2.6vw, 2.8rem);
  padding: 0.55rem 0;
}

body.site-routed .footer-column > strong {
  margin-bottom: 1rem;
  color: #f5f7f8;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.site-routed .footer-links {
  gap: 0.62rem;
}

body.site-routed .footer-links a {
  padding: 0.2rem 0 0.2rem 0.8rem;
  color: #a7b1ba;
  font-size: 0.73rem;
  transition: color 160ms ease, transform 160ms ease;
}

body.site-routed .footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

body.site-routed .footer-solution-grid {
  gap: 0.55rem;
  border: 0;
}

body.site-routed .footer-solution-grid > a {
  min-height: 4.9rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 11px;
  background: rgb(255 255 255 / 2.2%);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

body.site-routed .footer-solution-grid > a:hover {
  border-color: rgb(255 122 26 / 45%);
  background: rgb(255 122 26 / 7%);
  transform: translateY(-2px);
}

body.site-routed .footer-solution-grid > a > svg {
  width: 1.15rem;
  height: 1.15rem;
}

body.site-routed .footer-solution-grid strong,
body.site-routed .footer-solution-grid small {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

body.site-routed .footer-solution-grid strong {
  color: #f4f7f7;
  font-size: 0.7rem;
}

body.site-routed .footer-solution-grid small {
  color: #8f9ba4;
  font-size: 0.61rem;
  line-height: 1.35;
}

body.site-routed .footer-cta {
  min-height: 0;
  align-self: stretch;
  margin: 0;
  padding: 1.35rem;
  border: 1px solid rgb(255 122 26 / 48%);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgb(255 122 26 / 8%), transparent 45%),
    rgb(14 16 16 / 94%);
  box-shadow: 0 1.25rem 3rem rgb(0 0 0 / 24%);
}

body.site-routed .footer-cta > span {
  letter-spacing: 0.09em;
}

body.site-routed .footer-cta > strong {
  max-width: 20rem;
  margin-top: 0.55rem;
  font-size: 1.22rem;
  line-height: 1.28;
}

body.site-routed .footer-cta > p {
  max-width: 20rem;
  margin-top: 0.7rem;
  color: #9ca7ad;
  font-size: 0.74rem;
  line-height: 1.55;
}

body.site-routed .footer-cta > .footer-whatsapp {
  width: 100%;
  min-height: 3.6rem;
  margin-top: 1rem;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff8a2d, #ff6f0f);
  box-shadow: 0 0.8rem 1.8rem rgb(255 111 15 / 18%);
}

body.site-routed .footer-cta > .footer-whatsapp:hover {
  border: 0;
  background: linear-gradient(135deg, #ff9b4f, #ff7a1a);
  transform: translateY(-1px);
}

body.site-routed .footer-phone {
  min-height: 3.5rem;
  margin-top: 0.65rem;
  border-radius: 10px;
  background: rgb(255 255 255 / 2%);
}

body.site-routed .footer-email {
  margin-top: 0.8rem;
  color: #b2bcc1;
}

body.site-routed .footer-bottom {
  display: grid;
  min-height: 4.25rem;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  padding-block: 0.85rem;
  border-top-color: rgb(255 255 255 / 8%);
  background: rgb(1 3 4 / 74%);
}

body.site-routed .footer-trust {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
}

body.site-routed .footer-trust > span,
body.site-routed .footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

body.site-routed .footer-trust svg {
  width: 0.9rem;
  height: 0.9rem;
  flex: 0 0 auto;
  color: #55d6c3;
}

body.site-routed .footer-trust > span,
body.site-routed .footer-legal small,
body.site-routed .footer-legal a {
  color: #7f8d95;
  font-size: 0.62rem;
  line-height: 1.4;
}

body.site-routed .footer-legal {
  gap: 1rem;
  margin-right: clamp(6.5rem, 9vw, 9rem);
  white-space: nowrap;
}

@media (max-width: 1100px) {
  body.site-routed .site-footer .footer-shell {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.95fr);
    gap: 2rem;
  }

  body.site-routed .footer-explore {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  body.site-routed .footer-cta {
    grid-column: 2;
    grid-row: 1;
  }

  body.site-routed .footer-bottom {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  body.site-routed .footer-legal {
    margin-right: 0;
  }
}

@media (max-width: 720px) {
  body.site-routed .site-footer .footer-shell {
    display: flex;
    flex-direction: column;
    gap: 2.15rem;
    padding: 2.6rem 1rem 2.25rem;
  }

  body.site-routed .footer-brand,
  body.site-routed .footer-explore,
  body.site-routed .footer-cta {
    width: 100%;
  }

  body.site-routed .footer-explore {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  body.site-routed .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.site-routed .footer-solution-grid {
    grid-template-columns: 1fr;
  }

  body.site-routed .footer-cta {
    padding: 1.2rem;
  }

  body.site-routed .footer-bottom {
    gap: 0.8rem;
    padding: 1rem;
  }

  body.site-routed .footer-trust {
    display: grid;
    gap: 0.55rem;
  }

  body.site-routed .footer-legal {
    justify-content: space-between;
    white-space: normal;
  }
}

/* Grade definitiva do rodape: impede sobreposicao em qualquer largura. */
body.site-routed .site-footer .footer-shell {
  display: grid;
  grid-template-columns:
    minmax(0, 1.02fr)
    minmax(7.5rem, 0.52fr)
    minmax(0, 1.32fr)
    minmax(17rem, 0.96fr);
  gap: clamp(1.25rem, 2.4vw, 2.6rem);
}

body.site-routed .site-footer .footer-explore {
  display: contents;
}

body.site-routed .site-footer .footer-shell > *,
body.site-routed .site-footer .footer-explore > * {
  min-width: 0;
  grid-column: auto;
  grid-row: auto;
}

@media (max-width: 1180px) {
  body.site-routed .site-footer .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body.site-routed .site-footer .footer-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Correção mobile final: fica no fim do arquivo para vencer os estilos legados. */
@media (max-width: 720px) {
  :root { --mobile-gutter: clamp(1rem, 4vw, 1.25rem); }

  html { scroll-padding-top: calc(var(--topbar) + env(safe-area-inset-top)); }
  body.site-routed { overflow-x: hidden; }

  body.site-routed #inicio,
  body.site-routed #inicio .hero-shell { min-height: 0; }

  body.site-routed #inicio .hero-shell {
    width: min(calc(100% - (var(--mobile-gutter) * 2)), 430px);
    margin-inline: auto;
    padding: calc(var(--topbar) + env(safe-area-inset-top) + 1.35rem) 0 1.5rem;
  }

  body.site-routed #inicio .hero-copy { width: 100%; max-width: none; }
  body.site-routed #inicio .hero-kicker { margin-bottom: .75rem; font-size: .64rem; }

  body.site-routed #inicio .hero-title {
    max-width: none;
    margin-bottom: .9rem;
    font-size: clamp(1.9rem, 8.7vw, 2.35rem);
    line-height: 1.07;
    letter-spacing: -.04em;
    text-wrap: balance;
  }

  body.site-routed #inicio .hero-title .title-line { white-space: nowrap; }
  body.site-routed #inicio .hero-lead { max-width: 33rem; font-size: clamp(.92rem, 4vw, 1rem); line-height: 1.5; }

  body.site-routed #inicio .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: .75rem;
    width: 100%;
    margin-top: 1.25rem;
  }

  body.site-routed #inicio .hero-actions .btn,
  body.site-routed .footer-cta > .footer-whatsapp { width: 100%; min-height: 3rem; }

  /* Os serviços deixam de ocupar uma área absoluta; nenhum conteúdo foi removido. */
  body.site-routed #inicio .hero-partners {
    position: static;
    display: block;
    width: 100%;
    margin: 1.15rem 0 0;
    overflow: visible;
    transform: none;
  }

  body.site-routed #inicio .hero-partners__list {
    min-height: 3.65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .6rem 1rem;
  }

  body.site-routed #inicio .hero-partner {
    min-height: 3.45rem;
    grid-template-columns: 1.75rem minmax(0, 1fr);
    gap: .45rem;
  }

  body.site-routed #inicio .hero-partner__icon { width: 1.75rem; height: 1.75rem; }
  body.site-routed #inicio .hero-partner__icon svg { width: 1.18rem; height: 1.18rem; }
  body.site-routed #inicio .hero-partner strong { font-size: .8rem; }
  body.site-routed #inicio .hero-partner small { font-size: .56rem; line-height: 1.28; }

  body.site-routed .site-footer { padding-bottom: 0; }

  body.site-routed .site-footer .footer-shell {
    display: grid !important;
    width: min(calc(100% - (var(--mobile-gutter) * 2)), 430px);
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1.5rem !important;
    margin-inline: auto;
    padding: 2rem 0 1.5rem;
  }

  body.site-routed .site-footer .footer-explore {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    padding: 0;
  }

  body.site-routed .footer-column > strong { margin-bottom: .7rem; }
  body.site-routed .footer-links { display: grid; grid-template-columns: minmax(0, 1fr); gap: .35rem; }
  body.site-routed .footer-links a { min-height: 2rem; padding-block: .2rem; font-size: .72rem; }
  body.site-routed .footer-solution-grid { grid-template-columns: minmax(0, 1fr); gap: .5rem; }
  body.site-routed .footer-solution-grid > a { min-height: 0; padding: .68rem .72rem; }
  body.site-routed .footer-solution-grid strong { font-size: .68rem; white-space: normal; }
  body.site-routed .footer-solution-grid small { font-size: .59rem; white-space: normal; }

  body.site-routed .footer-cta { min-height: 0; margin: 0; padding: 1.05rem; }
  body.site-routed .footer-cta > strong { font-size: 1.08rem; line-height: 1.3; }
  body.site-routed .footer-cta > p { font-size: .74rem; line-height: 1.5; }
  body.site-routed .footer-phone { min-height: 3rem; margin-top: .65rem; }
  body.site-routed .footer-email { margin-top: .75rem; overflow-wrap: anywhere; }

  body.site-routed .footer-bottom {
    display: grid;
    width: 100%;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: .55rem;
    padding: 1rem var(--mobile-gutter) calc(1rem + env(safe-area-inset-bottom));
  }

  body.site-routed .footer-trust { display: grid; gap: .5rem; }
  body.site-routed .footer-legal { display: flex; flex-wrap: wrap; gap: .45rem .8rem; white-space: normal; }
}

@media (max-width: 359px) {
  body.site-routed #inicio .hero-title { font-size: clamp(1.72rem, 8.4vw, 1.95rem); }
  body.site-routed #inicio .hero-title .title-line { white-space: normal; }
}

/* MOBILE-HERO-PREMIUM-REFERENCE: composição pensada para a primeira dobra no telefone. */
@media (max-width: 720px) {
  body.site-routed #inicio {
    display: block;
    min-height: max(900px, 100svh);
    padding: 0;
    background: #030405;
  }

  body.site-routed #inicio .hero-bg img {
    opacity: 1;
    object-position: 60% center;
    filter: saturate(.98) contrast(1.13) brightness(.67);
    transform: scale(1.045);
  }

  body.site-routed #inicio::before {
    background:
      linear-gradient(180deg, rgb(1 3 4 / 74%) 0%, rgb(1 3 4 / 15%) 25%, rgb(1 3 4 / 12%) 49%, rgb(1 3 4 / 88%) 88%, #030405 100%),
      linear-gradient(90deg, rgb(1 3 4 / 48%) 0%, transparent 74%);
  }

  body.site-routed #inicio::after { display: none; }

  body.site-routed #inicio .hero-shell {
    position: relative;
    z-index: 1;
    display: block;
    width: min(calc(100% - 2rem), 430px);
    min-height: max(900px, 100svh);
    margin-inline: auto;
    padding: clamp(17rem, 37svh, 22rem) 0 0;
  }

  body.site-routed #inicio .hero-copy { max-width: none; padding: 0; }
  body.site-routed #inicio .hero-copy::before,
  body.site-routed #inicio .hero-copy::after,
  body.site-routed #inicio .hero-kicker,
  body.site-routed #inicio .hero-lead { display: none; }

  body.site-routed #inicio .hero-title {
    display: grid;
    max-width: none;
    margin: 0;
    font-size: clamp(2.75rem, 12.2vw, 3.55rem);
    line-height: .99;
    letter-spacing: -.058em;
    text-wrap: initial;
  }

  body.site-routed #inicio .hero-title .title-line {
    display: block;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  body.site-routed #inicio .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: .8rem;
    margin-top: 2.2rem;
  }

  body.site-routed #inicio .hero-actions .btn {
    min-height: 4.35rem;
    padding-inline: 1rem;
    border-radius: .85rem;
    font-size: 1rem;
    font-weight: 850;
    letter-spacing: -.018em;
  }

  body.site-routed #inicio .hero-actions .btn svg { width: 1.45rem; height: 1.45rem; }

  body.site-routed #inicio .hero-partners {
    position: relative;
    z-index: 1;
    display: block;
    width: min(calc(100% - 2rem), 430px);
    margin: 4.25rem auto 0;
    overflow: visible;
    transform: none;
  }

  body.site-routed #inicio .hero-partners__list {
    display: grid;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  body.site-routed #inicio .hero-partner:nth-child(1),
  body.site-routed #inicio .hero-partner:nth-child(2) { display: none; }

  body.site-routed #inicio .hero-partner {
    position: relative;
    min-height: 4.35rem;
    grid-template-columns: 2.25rem minmax(0, 1fr) auto;
    gap: .65rem;
    padding: 0 .65rem 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  body.site-routed #inicio .hero-partner:nth-child(3) {
    padding-right: 1rem;
    border-right: 1px solid rgb(255 117 24 / 62%);
  }

  body.site-routed #inicio .hero-partner:nth-child(4) { padding-left: 1rem; }
  body.site-routed #inicio .hero-partner::after {
    color: #fff;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    content: '›';
  }

  body.site-routed #inicio .hero-partner__icon {
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    background: transparent;
  }

  body.site-routed #inicio .hero-partner__icon svg { width: 2rem; height: 2rem; stroke-width: 2; }
  body.site-routed #inicio .hero-partner strong { font-size: .96rem; line-height: 1.05; }
  body.site-routed #inicio .hero-partner small { margin-top: .24rem; color: #ff8c36; font-size: .62rem; font-weight: 800; line-height: 1.22; text-transform: uppercase; }
}

@media (max-width: 390px) {
  body.site-routed #inicio .hero-shell { padding-top: clamp(15rem, 34svh, 19rem); }
  body.site-routed #inicio .hero-title { font-size: clamp(2.48rem, 11.5vw, 2.95rem); }
  body.site-routed #inicio .hero-partners { margin-top: 3.4rem; }
  body.site-routed #inicio .hero-partner { grid-template-columns: 2rem minmax(0, 1fr) auto; gap: .45rem; }
  body.site-routed #inicio .hero-partner:nth-child(4) { padding-left: .7rem; }
  body.site-routed #inicio .hero-partner__icon { width: 2rem; height: 2rem; }
  body.site-routed #inicio .hero-partner__icon svg { width: 1.7rem; height: 1.7rem; }
  body.site-routed #inicio .hero-partner strong { font-size: .86rem; }
  body.site-routed #inicio .hero-partner small { font-size: .56rem; }
}

/* Ajuste solicitado para o cabeçalho da tela inicial. */
body.site-routed .topbar {
  border-bottom-color: transparent;
}

body.site-routed .topbar::after {
  display: none;
}

@media (min-width: 721px) {
  body.site-routed .topbar .brand img {
    width: clamp(10.2rem, 11vw, 12.5rem);
  }
}

/* MOBILE-FOOTER-COMPACT-V4 */
@media (max-width: 720px) {
  body.site-routed .site-footer .footer-shell {
    grid-template-areas: 'brand' 'cta' 'explore';
    gap: 1.35rem;
    padding-top: 1.7rem;
  }
  body.site-routed .footer-brand { grid-area: brand; gap: .72rem; }
  body.site-routed .footer-cta { grid-area: cta; padding: .95rem; }
  body.site-routed .footer-explore {
    grid-area: explore;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }
  body.site-routed .footer-column:first-child > strong,
  body.site-routed .footer-cta > p,
  body.site-routed .footer-solution-grid small { display: none; }
  body.site-routed .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem .5rem;
  }
  body.site-routed .footer-links a {
    min-height: 0;
    padding: .3rem .5rem;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 999px;
    background: rgb(255 255 255 / 3%);
    font-size: .66rem;
  }
  body.site-routed .footer-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
  }
  body.site-routed .footer-solution-grid > a {
    min-height: 4.65rem;
    padding: .65rem;
  }
  body.site-routed .footer-cta > strong { margin-bottom: .75rem; }
  body.site-routed .footer-whatsapp { min-height: 3rem !important; }
}

/* Mobile v4: rodapé como fechamento objetivo, não como página extra. */
@media (max-width: 720px) {
  body.site-routed .site-footer .footer-shell {
    grid-template-areas:
      'brand'
      'cta'
      'explore';
    gap: 1.35rem;
    padding-top: 1.7rem;
  }
  body.site-routed .footer-brand { grid-area: brand; gap: .72rem; }
  body.site-routed .footer-cta { grid-area: cta; }
  body.site-routed .footer-explore {
    grid-area: explore;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }
  body.site-routed .footer-column:first-child > strong { display: none; }
  body.site-routed .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem .5rem;
  }
  body.site-routed .footer-links a {
    min-height: 0;
    padding: .3rem .5rem;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 999px;
    background: rgb(255 255 255 / 3%);
    font-size: .66rem;
  }
  body.site-routed .footer-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
  }
  body.site-routed .footer-solution-grid > a {
    min-height: 4.65rem;
    padding: .65rem;
  }
  body.site-routed .footer-solution-grid small { display: none; }
  body.site-routed .footer-cta { padding: .95rem; }
  body.site-routed .footer-cta > p { display: none; }
  body.site-routed .footer-cta > strong { margin-bottom: .75rem; }
  body.site-routed .footer-whatsapp { min-height: 3rem !important; }
}

/* Mobile v2: leitura e ritmo próprios para telas pequenas. */
@media (max-width: 720px) {
  body.site-routed #inicio { isolation: isolate; }
  body.site-routed #inicio::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(90deg, rgb(2 5 7 / 84%) 0%, rgb(2 5 7 / 54%) 65%, rgb(2 5 7 / 34%) 100%), linear-gradient(0deg, rgb(2 5 7 / 72%) 0%, transparent 42%);
  }
  body.site-routed #inicio .hero-shell {
    width: min(calc(100% - 2rem), 430px);
    padding-top: calc(var(--topbar) + env(safe-area-inset-top) + 1.55rem);
    padding-bottom: 1.65rem;
  }
  body.site-routed #inicio .hero-title {
    max-width: 13.5ch;
    font-size: clamp(2.18rem, 10.1vw, 2.7rem);
    line-height: 1.01;
    letter-spacing: -.052em;
  }
  body.site-routed #inicio .hero-lead { max-width: 31rem; font-size: .92rem; line-height: 1.55; }
  body.site-routed #inicio .hero-actions { gap: .62rem; margin-top: 1.25rem; }
  body.site-routed #inicio .hero-actions .btn { min-height: 3.35rem; }
  body.site-routed #inicio .hero-partners { margin-top: 1.35rem; }
  body.site-routed #inicio .hero-partners__list { gap: .45rem .75rem; }
  body.site-routed #inicio .hero-partner { min-height: 3.1rem; }

  body.site-routed .site-footer { border-top-color: rgb(255 122 26 / 30%); }
  body.site-routed .site-footer .footer-shell {
    width: min(calc(100% - 2rem), 430px);
    gap: 1.6rem;
    padding: 2.1rem 0 1.55rem;
  }
  body.site-routed .footer-brand { display: grid; gap: .8rem; }
  body.site-routed .footer-brand > img { width: 8.4rem; }
  body.site-routed .footer-brand > p { max-width: 32rem; margin: 0; font-size: .76rem; line-height: 1.5; }
  body.site-routed .footer-explore { grid-template-columns: .72fr 1.28fr; gap: 1.05rem; }
  body.site-routed .footer-links a { min-height: 1.75rem; font-size: .7rem; }
  body.site-routed .footer-solution-grid > a { padding: .62rem .66rem; }
  body.site-routed .footer-cta { padding: 1.05rem; border-radius: .85rem; }
  body.site-routed .footer-cta > strong { max-width: 19ch; font-size: 1.02rem; }
  body.site-routed .footer-cta > p { margin-bottom: .85rem; }
  body.site-routed .footer-bottom { padding-bottom: calc(1.35rem + env(safe-area-inset-bottom)); }
}

/* Mobile v3: abertura editorial, com respiro e leitura antes da ação. */
@media (max-width: 720px) {
  body.site-routed #inicio .hero-bg img {
    object-position: 57% center;
    filter: saturate(.78) contrast(1.04) brightness(.72);
  }
  body.site-routed #inicio::after {
    background:
      linear-gradient(180deg, rgb(3 5 7 / 24%) 0%, rgb(3 5 7 / 54%) 42%, rgb(3 5 7 / 91%) 100%),
      linear-gradient(90deg, rgb(3 5 7 / 82%) 0%, rgb(3 5 7 / 38%) 78%, transparent 100%);
  }
  body.site-routed #inicio .hero-shell {
    width: min(calc(100% - 2.25rem), 430px);
    padding-top: calc(var(--topbar) + env(safe-area-inset-top) + 2.65rem);
    padding-bottom: 1.2rem;
  }
  body.site-routed #inicio .hero-copy { padding-bottom: .25rem; }
  body.site-routed #inicio .hero-kicker { letter-spacing: .12em; margin-bottom: 1rem; }
  body.site-routed #inicio .hero-title {
    max-width: 11.8ch;
    margin-bottom: 1.15rem;
    font-size: clamp(2.1rem, 9.3vw, 2.55rem);
    line-height: 1.03;
  }
  body.site-routed #inicio .hero-lead {
    max-width: 28ch;
    color: rgb(239 244 245 / 88%);
    font-size: .94rem;
    line-height: 1.58;
  }
  body.site-routed #inicio .hero-actions { margin-top: 1.45rem; gap: .68rem; }
  body.site-routed #inicio .hero-actions .btn { min-height: 3.2rem; font-size: .9rem; }
  body.site-routed #inicio .hero-partners { margin-top: 1.65rem; }
  body.site-routed #inicio .hero-partners__list { gap: .6rem; min-height: 0; }
  body.site-routed #inicio .hero-partner {
    min-height: 3.8rem;
    align-items: center;
    padding: .62rem;
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: .7rem;
    background: linear-gradient(145deg, rgb(8 13 16 / 79%), rgb(3 6 8 / 47%));
    backdrop-filter: blur(8px);
  }
  body.site-routed #inicio .hero-partner small { margin-top: .12rem; color: rgb(255 180 123 / 82%); }

  body.site-routed .solutions-experience { padding-top: 2.6rem; }
  body.site-routed .solutions-stage { gap: 1.7rem; }
  body.site-routed .solutions-intro h2 { max-width: 11.5ch; font-size: clamp(2rem, 9vw, 2.45rem); }
  body.site-routed .solutions-orbit { gap: .6rem; }
  body.site-routed .solution-core { margin: .15rem auto .45rem; }
}

/* Mobile v4: rodapé como fechamento objetivo, não como página extra. */
@media (max-width: 720px) {
  body.site-routed .site-footer .footer-shell {
    grid-template-areas:
      'brand'
      'cta'
      'explore';
    gap: 1.35rem;
    padding-top: 1.7rem;
  }
  body.site-routed .footer-brand { grid-area: brand; gap: .72rem; }
  body.site-routed .footer-cta { grid-area: cta; }
  body.site-routed .footer-explore {
    grid-area: explore;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }
  body.site-routed .footer-column:first-child > strong { display: none; }
  body.site-routed .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem .5rem;
  }
  body.site-routed .footer-links a {
    min-height: 0;
    padding: .3rem .5rem;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 999px;
    background: rgb(255 255 255 / 3%);
    font-size: .66rem;
  }
  body.site-routed .footer-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
  }
  body.site-routed .footer-solution-grid > a {
    min-height: 4.65rem;
    padding: .65rem;
  }
  body.site-routed .footer-solution-grid small { display: none; }
  body.site-routed .footer-cta { padding: .95rem; }
  body.site-routed .footer-cta > p { display: none; }
  body.site-routed .footer-cta > strong { margin-bottom: .75rem; }
  body.site-routed .footer-whatsapp { min-height: 3rem !important; }
}

/*
 * Chip Start // Visual system 2.0
 * A premium layer for the six flagship screens. It deliberately sits last so
 * the page keeps one source of truth while these routes share the same craft.
 */
:root {
  --cs-black: #030507;
  --cs-surface: #080c10;
  --cs-surface-2: #0b1116;
  --cs-line: rgb(211 225 235 / 13%);
  --cs-line-strong: rgb(255 133 38 / 34%);
  --cs-soft: rgb(218 229 236 / 68%);
  --cs-orange: #ff7b1a;
  --cs-orange-soft: #ffb15b;
  --cs-green: #54dfaa;
}

body.site-routed {
  background:
    radial-gradient(circle at 86% 6%, rgb(255 105 22 / 8%), transparent 28rem),
    linear-gradient(180deg, #030507 0%, #05080b 58%, #030507 100%);
}

body.site-routed .topbar {
  min-height: 76px;
  border-bottom: 0;
  background: linear-gradient(180deg, rgb(3 5 7 / 96%), rgb(3 5 7 / 79%));
  box-shadow: 0 1.1rem 3rem rgb(0 0 0 / 18%);
  backdrop-filter: blur(22px) saturate(1.12);
}

body.site-routed .topbar::after {
  display: none;
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 8%, rgb(255 123 26 / 52%), transparent 92%);
  content: "";
  opacity: .62;
}

body.site-routed .brand img {
  filter: drop-shadow(0 0 .8rem rgb(255 123 26 / 10%));
}

@media (min-width: 721px) {
  body.site-routed .brand img {
    width: clamp(10.2rem, 11vw, 12.5rem);
  }
}
body.site-routed .main-nav { align-items: center; }
body.site-routed .nav-menu-trigger {
  min-height: 2.65rem;
  border-radius: .7rem;
  color: rgb(238 244 247 / 78%);
  font-size: .73rem;
  letter-spacing: .015em;
}

body.site-routed .nav-menu-trigger:hover,
body.site-routed .nav-menu-trigger:focus-visible,
body.site-routed .nav-menu-trigger.active {
  color: #fff;
  background: rgb(255 123 26 / 8%);
}

body.site-routed .support-link--premium {
  min-height: 2.85rem;
  border-color: rgb(255 123 26 / 56%);
  border-radius: .8rem;
  background: linear-gradient(135deg, rgb(255 123 26 / 17%), rgb(255 123 26 / 5%));
  box-shadow: inset 0 1px rgb(255 255 255 / 12%), 0 .7rem 1.6rem rgb(0 0 0 / 18%);
}

/* Shared screen frame: one canvas, one visual rhythm. */
body.site-routed main > section[data-site-screen] {
  position: relative;
  isolation: isolate;
}

body.site-routed main > section[data-site-screen]::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 2.2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2.2%) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  content: "";
  opacity: .38;
  pointer-events: none;
}

body.site-routed main > section[data-site-screen]::after {
  position: absolute;
  z-index: -1;
  top: 10%;
  right: -13rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgb(255 123 26 / 11%);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgb(255 123 26 / 2%), 0 0 0 9rem rgb(255 123 26 / 1.4%);
  content: "";
  opacity: .8;
  pointer-events: none;
}

body.site-routed main > section[data-site-screen] :is(h1, h2, h3, strong) { text-wrap: balance; }
body.site-routed main > section[data-site-screen] :is(h2, h3) { letter-spacing: -.035em; }

/* 01 — reviews: editorial headline + real directory, not a card wall. */
body.site-routed main > #avaliacoes.reviews.is-active-screen,
body.site-routed main > #processo.process-flow.is-active-screen {
  width: min(1220px, calc(100% - clamp(3rem, 9vw, 9rem)));
  min-height: calc(100svh - var(--topbar));
  margin-inline: auto;
  padding: clamp(6.8rem, 12vh, 9rem) 0 4.2rem;
}

body.site-routed #avaliacoes .reviews-copy {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(20rem, .76fr);
  column-gap: clamp(2.8rem, 6vw, 6rem);
  align-items: center;
  max-width: none;
  padding: 0 0 1.8rem 1.65rem;
  border: 0;
}

body.site-routed #avaliacoes .reviews-copy::before {
  position: absolute;
  top: .15rem;
  left: 0;
  width: 2px;
  height: 8.5rem;
  background: linear-gradient(180deg, var(--cs-orange), transparent);
  box-shadow: 0 0 1.2rem rgb(255 123 26 / 32%);
  content: "";
}

body.site-routed #avaliacoes .reviews-copy { position: relative; }

body.site-routed #avaliacoes .reviews-copy .eyebrow {
  grid-column: 1;
  grid-row: 1;
}

body.site-routed #avaliacoes .reviews-copy h2 {
  grid-column: 1;
  grid-row: 2;
}

body.site-routed #avaliacoes .reviews-copy p {
  grid-column: 2;
  grid-row: 2;
}

body.site-routed #avaliacoes .reviews-copy h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.35rem, 3.15vw, 3.65rem);
  font-weight: 760;
  line-height: .96;
  text-transform: uppercase;
}

body.site-routed #avaliacoes .reviews-copy p {
  align-self: start;
  max-width: 27rem;
  margin: .9rem 0 0;
  color: var(--cs-soft);
  font-size: .94rem;
  line-height: 1.65;
}

body.site-routed #avaliacoes .reviews-hero-visual {
  position: relative;
  display: grid;
  min-height: 15rem;
  grid-column: 2;
  grid-row: 1 / span 3;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgb(255 123 26 / 20%);
  border-radius: 1.2rem;
  background: linear-gradient(145deg, rgb(255 123 26 / 9%), rgb(4 8 10 / 36%) 58%), rgb(3 6 8 / 66%);
  box-shadow: inset 0 1px rgb(255 255 255 / 6%), 0 1.5rem 3.5rem rgb(0 0 0 / 22%);
}

body.site-routed #avaliacoes .reviews-hero-visual__ring {
  position: absolute;
  width: 13rem;
  height: 13rem;
  border: 1px solid rgb(255 123 26 / 32%);
  border-radius: 50%;
  box-shadow: 0 0 0 1.6rem rgb(255 123 26 / 3%), 0 0 3rem rgb(255 123 26 / 12%);
  transform: rotate(-18deg);
}

body.site-routed #avaliacoes .reviews-hero-visual__card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(78%, 19rem);
  gap: .7rem;
  padding: 1.35rem;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: .95rem;
  background: rgb(5 9 11 / 84%);
  box-shadow: 0 .9rem 2.2rem rgb(0 0 0 / 28%);
}

body.site-routed #avaliacoes .reviews-hero-visual__mark {
  color: var(--cs-orange);
  font-family: Georgia, serif;
  font-size: 3.2rem;
  line-height: .5;
}

body.site-routed #avaliacoes .reviews-hero-visual__card strong { max-width: 14ch; font-size: 1.15rem; line-height: 1.08; }
body.site-routed #avaliacoes .reviews-hero-visual__card small { color: var(--cs-soft); font-size: .7rem; }

/* A descrição pertence à coluna editorial; nunca pode ficar atrás do painel. */
body.site-routed #avaliacoes .reviews-copy > p {
  grid-column: 1;
  grid-row: 3;
  align-self: start;
  max-width: 25rem;
  margin-top: .9rem;
}

body.site-routed #avaliacoes .reviews-directory {
  display: grid;
  grid-template-columns: 16.5rem minmax(0, 1fr);
  min-height: 21.5rem;
  overflow: hidden;
  border: 1px solid var(--cs-line);
  border-radius: 1.25rem;
  background:
    linear-gradient(135deg, rgb(255 123 26 / 7%), transparent 34%),
    linear-gradient(180deg, rgb(11 16 20 / 94%), rgb(4 7 9 / 88%));
  box-shadow: 0 2.2rem 5rem rgb(0 0 0 / 28%), inset 0 1px rgb(255 255 255 / 6%);
}

body.site-routed #avaliacoes .review-filter-sidebar {
  padding: 1.35rem;
  border-right: 1px solid var(--cs-line);
  background: linear-gradient(180deg, rgb(255 123 26 / 8%), transparent 60%);
}

body.site-routed #avaliacoes .review-filter-list li {
  min-height: 2.65rem;
  border: 1px solid transparent;
  border-radius: .65rem;
  color: rgb(226 236 241 / 64%);
  transition: .2s ease;
}

body.site-routed #avaliacoes .review-filter-list li:first-child,
body.site-routed #avaliacoes .review-filter-list li:hover {
  border-color: rgb(255 123 26 / 32%);
  background: rgb(255 123 26 / 9%);
  color: #fff;
}

body.site-routed #avaliacoes .review-listing { padding: 1.35rem 1.55rem; }
body.site-routed #avaliacoes .review-listing__head { padding-bottom: 1rem; border-bottom-color: var(--cs-line); }
body.site-routed #avaliacoes .review-empty-state {
  min-height: 12rem;
  margin-top: 1.1rem;
  border: 1px dashed rgb(255 123 26 / 28%);
  border-radius: .95rem;
  background: radial-gradient(circle at 20% 50%, rgb(255 123 26 / 11%), transparent 17rem), rgb(3 6 8 / 62%);
}

/* 02 — diagnostic: a calmer workbench with stronger information hierarchy. */
body.site-routed main > #diagnostico.diagnostic.is-active-screen {
  width: min(
    calc(100% - (2 * clamp(20px, 2.2vw, 44px))),
    1792px
  );
  min-height: calc(100svh - var(--topbar));
  grid-template-columns: minmax(26.25rem, .9fr) minmax(38.75rem, 1.35fr);
  gap: clamp(1.75rem, 3vw, 4rem);
  align-content: center;
  margin-inline: auto;
  padding: clamp(6.8rem, 11vh, 8.5rem) 0 4rem;
}

body.site-routed #diagnostico .diagnostic-intro h2 {
  max-width: 10ch;
  margin-bottom: 1.15rem;
  font-size: clamp(2.8rem, 3.8vw, 4.05rem);
  font-weight: 750;
  line-height: .98;
}

body.site-routed #diagnostico .diagnostic-intro > p {
  max-width: 24rem;
  color: var(--cs-soft);
  font-size: .96rem;
  line-height: 1.62;
}

body.site-routed #diagnostico .diagnostic-assurances { margin-top: 1.7rem; }
body.site-routed #diagnostico .diagnostic-assurances > span {
  min-height: 3.45rem;
  padding: .7rem 0;
  border-top-color: var(--cs-line);
}

body.site-routed #diagnostico .diagnostic-console {
  align-self: center;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 1.35rem;
  background:
    linear-gradient(135deg, rgb(255 123 26 / 8%), transparent 30%),
    linear-gradient(180deg, rgb(11 16 20 / 98%), rgb(4 7 9 / 96%));
  box-shadow: 0 2.4rem 5rem rgb(0 0 0 / 36%), inset 0 1px rgb(255 255 255 / 7%);
}

body.site-routed #diagnostico .diagnostic-console::before {
  position: absolute;
  top: 0;
  right: 14%;
  left: 14%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cs-orange), transparent);
  box-shadow: 0 0 1.5rem rgb(255 123 26 / 62%);
  content: "";
}

body.site-routed #diagnostico .diagnostic-fields { gap: .8rem; padding: 1.1rem 1.2rem 0; }
body.site-routed #diagnostico .diagnostic-fields label { gap: .55rem; }
body.site-routed #diagnostico .diagnostic-fields select {
  min-height: 3.25rem;
  border-color: rgb(221 235 242 / 14%);
  border-radius: .7rem;
  background: rgb(2 5 7 / 82%);
  box-shadow: inset 0 1px rgb(255 255 255 / 4%);
}

body.site-routed #diagnostico .diagnostic-result {
  margin: 1.1rem 1.2rem;
  padding: 1rem;
  border: 1px solid rgb(255 123 26 / 22%);
  border-radius: .85rem;
  background: linear-gradient(120deg, rgb(255 123 26 / 11%), transparent 62%), rgb(3 6 8 / 76%);
}

body.site-routed #diagnostico .diagnostic-submit {
  min-height: 3.55rem;
  margin: 0 1.2rem 1.2rem;
  border-radius: .75rem;
  box-shadow: 0 .9rem 1.8rem rgb(255 106 0 / 18%);
}

/* 03 — proof: featured case first, supporting work arranged as a gallery. */
body.site-routed #trabalhos .featured-work::before {
  position: absolute;
  inset: 1rem 1rem auto auto;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgb(255 123 26 / 48%);
  border-radius: .75rem;
  background: rgb(3 5 7 / 72%);
  box-shadow: 0 0 1.3rem rgb(255 123 26 / 18%);
  content: "↗";
  color: var(--cs-orange-soft);
  font-size: 1.2rem;
  line-height: 2.35rem;
  text-align: center;
}

body.site-routed #trabalhos .work-card video { display: none; }
body.site-routed #trabalhos .work-card > :is(span, strong, p) { position: relative; z-index: 1; }
body.site-routed #trabalhos .work-card > span { margin-bottom: .1rem; }
body.site-routed #trabalhos .work-card strong { font-size: .98rem; text-transform: none; }
body.site-routed #trabalhos .work-card p { font-size: .77rem; line-height: 1.45; }
body.site-routed #trabalhos .work-card:not(.featured-work)::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgb(255 123 26 / 12%), transparent 42%),
    repeating-linear-gradient(135deg, transparent 0 18px, rgb(255 255 255 / 3%) 19px 20px);
  content: "";
  opacity: .62;
}

/* 03b - works: wide editorial showcase, with a featured case and four project entries. */
body.site-routed main > #trabalhos.works-showcase.is-active-screen {
  width: min(calc(100% - (2 * clamp(1.25rem, 2.2vw, 2.75rem))), 1792px);
  min-height: calc(100svh - var(--topbar));
  margin-inline: auto;
  padding: clamp(3.25rem, 6vh, 4.75rem) 0 clamp(3rem, 5vh, 4.5rem);
}

body.site-routed #trabalhos.works-showcase { position: relative; display: grid; gap: clamp(1.5rem, 2.7vw, 2.8rem); overflow-x: clip; isolation: isolate; }
body.site-routed #trabalhos.works-showcase::before {
  position: absolute; z-index: -1; inset: -.9rem -1.2rem; border-radius: 2rem;
  background: radial-gradient(circle at 84% 20%, rgb(255 123 26 / 12%), transparent 20rem), linear-gradient(90deg, rgb(255 123 26 / 4%) 1px, transparent 1px), linear-gradient(rgb(255 123 26 / 3%) 1px, transparent 1px);
  background-size: auto, 2.8rem 2.8rem, 2.8rem 2.8rem; content: ""; opacity: .72; pointer-events: none;
}

body.site-routed #trabalhos .works-showcase__header { display: grid; grid-template-columns: minmax(26rem, 1fr) minmax(38rem, 1fr); gap: clamp(1.75rem, 3vw, 3.5rem); align-items: end; }
body.site-routed #trabalhos .works-showcase__intro { max-width: 47rem; }
body.site-routed #trabalhos .works-showcase__intro .eyebrow { gap: .55rem; }
body.site-routed #trabalhos .works-showcase__intro .eyebrow svg { width: .95rem; color: var(--cs-orange); }
body.site-routed #trabalhos .works-showcase__intro h2 { max-width: 24ch; margin: .8rem 0 0; color: var(--cs-white); font-size: clamp(2.35rem, 2.8vw, 3.45rem); font-weight: 760; line-height: .98; letter-spacing: -.055em; text-transform: uppercase; }
body.site-routed #trabalhos .works-showcase__intro h2 em { color: var(--cs-orange); font-style: normal; }
body.site-routed #trabalhos .works-showcase__line { display: block; width: min(11rem, 42%); height: 2px; margin: 1.6rem 0 1.25rem; background: linear-gradient(90deg, var(--cs-orange), rgb(255 123 26 / 18%) 72%, transparent); box-shadow: 0 0 .8rem rgb(255 123 26 / 34%); }
body.site-routed #trabalhos .works-showcase__intro p { max-width: 39rem; margin: 0; color: var(--cs-soft); font-size: clamp(.92rem, 1vw, 1.03rem); line-height: 1.65; }

body.site-routed #trabalhos .works-showcase__overview { position: relative; min-height: 15.25rem; overflow: hidden; padding: clamp(1.55rem, 2.25vw, 2.25rem); border: 1px solid rgb(255 123 26 / 29%); border-radius: 1.25rem; background: linear-gradient(135deg, rgb(20 12 7 / 94%), rgb(7 12 15 / 94%) 58%, rgb(5 8 10 / 98%)); box-shadow: inset 0 1px rgb(255 255 255 / 7%), 0 1.8rem 3.8rem rgb(0 0 0 / 24%); }
body.site-routed #trabalhos .works-showcase__overview::after { position: absolute; top: -5.5rem; right: -3.8rem; width: 15rem; aspect-ratio: 1; border: 1px solid rgb(255 123 26 / 30%); border-radius: 50%; box-shadow: 0 0 0 1.65rem rgb(255 123 26 / 3%), 0 0 2.8rem rgb(255 123 26 / 11%); content: ""; pointer-events: none; }
body.site-routed #trabalhos .works-showcase__overview > p { position: relative; z-index: 1; max-width: 47rem; margin: 0 0 1.5rem; color: var(--cs-soft); font-size: clamp(.92rem, 1vw, 1.02rem); line-height: 1.6; }
body.site-routed #trabalhos .works-showcase__features { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; }
body.site-routed #trabalhos .works-feature { display: flex; gap: .75rem; min-width: 0; padding: .8rem .85rem; border: 1px solid rgb(218 233 240 / 13%); border-radius: .78rem; background: rgb(3 7 9 / 55%); }
body.site-routed #trabalhos .works-feature > svg { flex: 0 0 auto; width: 1.48rem; color: var(--cs-orange); }
body.site-routed #trabalhos .works-feature span { display: grid; gap: .2rem; min-width: 0; }
body.site-routed #trabalhos .works-feature strong { color: var(--cs-white); font-size: .76rem; letter-spacing: -.015em; }
body.site-routed #trabalhos .works-feature small { color: var(--cs-muted); font-size: .67rem; line-height: 1.32; }

body.site-routed #trabalhos .works-showcase__grid { display: grid; grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr); gap: clamp(1rem, 1.55vw, 1.5rem); align-items: stretch; }
body.site-routed #trabalhos :is(.works-featured-card, .works-project-card) { position: relative; overflow: hidden; border: 1px solid rgb(218 233 240 / 16%); border-radius: 1.15rem; background: linear-gradient(155deg, rgb(15 21 25 / 94%), rgb(5 8 10 / 98%)); box-shadow: inset 0 1px rgb(255 255 255 / 6%), 0 1.35rem 3rem rgb(0 0 0 / 21%); transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease; }
body.site-routed #trabalhos :is(.works-featured-card, .works-project-card):hover { border-color: rgb(255 123 26 / 48%); box-shadow: inset 0 1px rgb(255 255 255 / 8%), 0 1.85rem 3.8rem rgb(0 0 0 / 30%), 0 0 1.8rem rgb(255 123 26 / 7%); transform: translateY(-3px); }
body.site-routed #trabalhos .works-featured-card { display: grid; min-height: 30rem; isolation: isolate; }
body.site-routed #trabalhos .works-card__media--featured { position: absolute; inset: 0; z-index: -1; }
body.site-routed #trabalhos .works-card__media--featured::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(3 6 8 / 82%) 0%, rgb(3 6 8 / 42%) 47%, rgb(3 6 8 / 8%) 100%), linear-gradient(0deg, rgb(3 6 8 / 94%) 0%, transparent 57%); content: ""; }
body.site-routed #trabalhos .works-card__media--featured img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
body.site-routed #trabalhos .works-card__content { position: relative; z-index: 1; }
body.site-routed #trabalhos .works-featured-card .works-card__content { display: grid; align-content: end; justify-items: start; min-height: 100%; padding: clamp(1.45rem, 2.3vw, 2.45rem); }
body.site-routed #trabalhos .works-card__tag { display: inline-flex; align-items: center; gap: .4rem; color: var(--cs-orange); font-size: .67rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
body.site-routed #trabalhos .works-card__tag svg { width: .88rem; }
body.site-routed #trabalhos .works-featured-card h3 { max-width: 12ch; margin: .85rem 0 .6rem; color: var(--cs-white); font-size: clamp(1.7rem, 2.2vw, 2.65rem); line-height: 1.02; }
body.site-routed #trabalhos .works-featured-card p { max-width: 25rem; margin: 0; color: var(--cs-soft); font-size: .9rem; line-height: 1.6; }
body.site-routed #trabalhos .works-card__action { display: inline-flex; align-items: center; gap: .68rem; margin-top: 1.45rem; padding: .8rem 1rem; border: 1px solid rgb(255 123 26 / 68%); border-radius: .65rem; color: var(--cs-white); font-size: .8rem; font-weight: 750; text-decoration: none; transition: background .2s ease, color .2s ease; }
body.site-routed #trabalhos .works-card__action:hover { background: var(--cs-orange); color: #160b04; }
body.site-routed #trabalhos .works-card__action svg { width: 1rem; }

body.site-routed #trabalhos .works-showcase__minor-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: clamp(.85rem, 1.2vw, 1.15rem); }
body.site-routed #trabalhos .works-project-card { display: grid; grid-template-rows: minmax(6.75rem, .76fr) minmax(0, 1fr); min-height: 14.25rem; }
body.site-routed #trabalhos .works-project-card .works-card__media { position: relative; display: flex; align-items: flex-end; gap: .5rem; overflow: hidden; padding: .9rem 1rem; color: rgb(255 177 105 / 82%); border-bottom: 1px solid rgb(218 233 240 / 11%); background-color: #080d10; background-image: linear-gradient(135deg, rgb(255 123 26 / 11%), transparent 46%), repeating-linear-gradient(90deg, transparent 0 20px, rgb(255 255 255 / 4%) 21px 22px); }
body.site-routed #trabalhos .works-project-card .works-card__media::before { position: absolute; top: 50%; left: 55%; width: 5.4rem; aspect-ratio: 1; border: 1px solid rgb(255 123 26 / 34%); border-radius: 50%; box-shadow: 0 0 0 .8rem rgb(255 123 26 / 3%); content: ""; transform: translate(-50%, -50%); }
body.site-routed #trabalhos .works-project-card .works-card__media svg { position: relative; z-index: 1; width: 1.35rem; }
body.site-routed #trabalhos .works-project-card .works-card__media span { position: relative; z-index: 1; font-size: .67rem; font-weight: 700; letter-spacing: .03em; }
body.site-routed #trabalhos .works-card__media--system { background-image: linear-gradient(135deg, rgb(17 112 138 / 19%), transparent 49%), repeating-linear-gradient(0deg, transparent 0 17px, rgb(115 206 231 / 5%) 18px 19px); color: rgb(131 219 240 / 82%); }
body.site-routed #trabalhos .works-card__media--network { background-image: linear-gradient(135deg, rgb(255 123 26 / 14%), transparent 49%), repeating-linear-gradient(45deg, transparent 0 15px, rgb(255 255 255 / 5%) 16px 17px); }
body.site-routed #trabalhos .works-card__media--compare { background-image: linear-gradient(135deg, rgb(255 123 26 / 16%), transparent 55%), linear-gradient(90deg, transparent 49%, rgb(255 123 26 / 24%) 50%, transparent 51%); }
body.site-routed #trabalhos .works-project-card .works-card__content { padding: 1rem 3.3rem 1.05rem 1rem; }
body.site-routed #trabalhos .works-project-card h3 { margin: .42rem 0 .35rem; color: var(--cs-white); font-size: clamp(1rem, 1.2vw, 1.2rem); line-height: 1.12; }
body.site-routed #trabalhos .works-project-card p { margin: 0; color: var(--cs-muted); font-size: .74rem; line-height: 1.45; }
body.site-routed #trabalhos .works-card__arrow { position: absolute; right: 1rem; bottom: 1rem; display: grid; width: 2rem; aspect-ratio: 1; place-items: center; border: 1px solid rgb(255 123 26 / 48%); border-radius: .58rem; color: var(--cs-orange); }
body.site-routed #trabalhos .works-card__arrow svg { width: 1rem; }
body.site-routed #trabalhos .works-project-card:last-child .works-card__content { padding-right: 5.15rem; }
body.site-routed #trabalhos .works-project-card:last-child .works-card__arrow { right: 4.15rem; }
body.site-routed #trabalhos .works-project-card:last-child .works-card__media span { display: none; }

@media (max-width: 1400px) {
  body.site-routed #trabalhos .works-showcase__header { grid-template-columns: minmax(22rem, .9fr) minmax(31rem, 1.1fr); gap: clamp(1.5rem, 3.5vw, 3.5rem); }
  body.site-routed #trabalhos .works-showcase__intro h2 { font-size: clamp(2.35rem, 2.8vw, 3.1rem); }
  body.site-routed #trabalhos .works-feature { padding: .68rem; gap: .55rem; }
  body.site-routed #trabalhos .works-feature small { font-size: .63rem; }
}

@media (max-width: 960px) {
  body.site-routed main > #trabalhos.works-showcase.is-active-screen { width: min(calc(100% - 2rem), 720px); min-height: 0; padding: calc(var(--topbar) + 2rem) 0 3rem; }
  body.site-routed #trabalhos .works-showcase__header, body.site-routed #trabalhos .works-showcase__grid { grid-template-columns: 1fr; }
  body.site-routed #trabalhos .works-showcase__header { gap: 1.5rem; }
  body.site-routed #trabalhos .works-showcase__intro h2 { max-width: 16ch; }
}

@media (max-width: 620px) {
  body.site-routed main > #trabalhos.works-showcase.is-active-screen { width: min(calc(100% - 1.5rem), 540px); padding-top: calc(var(--topbar) + 1.4rem); }
  body.site-routed #trabalhos.works-showcase { gap: 1.2rem; }
  body.site-routed #trabalhos.works-showcase::before { inset: -.5rem; border-radius: 1.25rem; background-size: auto, 2rem 2rem, 2rem 2rem; }
  body.site-routed #trabalhos .works-showcase__intro h2 { max-width: 13ch; font-size: clamp(1.9rem, 8.6vw, 2.5rem); }
  body.site-routed #trabalhos .works-showcase__line { margin: 1.25rem 0 1rem; }
  body.site-routed #trabalhos .works-showcase__overview { min-height: 0; padding: 1.2rem; }
  body.site-routed #trabalhos .works-showcase__overview > p { margin-bottom: 1rem; font-size: .84rem; }
  body.site-routed #trabalhos .works-showcase__overview::after { top: -4.8rem; right: -5.8rem; width: 12rem; }
  body.site-routed #trabalhos .works-showcase__features, body.site-routed #trabalhos .works-showcase__minor-grid { grid-template-columns: 1fr; }
  body.site-routed #trabalhos .works-showcase__features { gap: .55rem; }
  body.site-routed #trabalhos .works-feature { padding: .7rem .75rem; }
  body.site-routed #trabalhos .works-feature small { font-size: .66rem; }
  body.site-routed #trabalhos .works-featured-card { min-height: 27rem; }
  body.site-routed #trabalhos .works-card__media--featured img { object-position: 67% center; }
  body.site-routed #trabalhos .works-card__media--featured::after { background: linear-gradient(0deg, rgb(3 6 8 / 96%) 5%, rgb(3 6 8 / 44%) 70%, rgb(3 6 8 / 28%) 100%); }
  body.site-routed #trabalhos .works-featured-card .works-card__content { padding: 1.2rem; }
  body.site-routed #trabalhos .works-featured-card h3 { font-size: 1.7rem; }
  body.site-routed #trabalhos .works-featured-card p { font-size: .82rem; }
  body.site-routed #trabalhos .works-project-card { min-height: 14.5rem; }
  body.site-routed #trabalhos .works-project-card:last-child .works-card__content { padding-right: 4.7rem; }
  body.site-routed #trabalhos .works-project-card:last-child .works-card__arrow { right: 3.7rem; }
}

/* 04 — systems: product dashboard feeling, with deliberate asymmetry. */
body.site-routed main > #sistemas.systems-showcase.is-active-screen {
  width: min(1220px, calc(100% - clamp(3rem, 9vw, 9rem)));
  min-height: calc(100svh - var(--topbar) - 1.25rem);
  grid-template-columns: minmax(17rem, .78fr) minmax(0, 1.22fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  margin: 1.25rem auto 0;
  padding: clamp(4rem, 8vh, 6rem) clamp(2rem, 4.5vw, 4.8rem);
  border-color: rgb(218 233 240 / 12%);
  border-radius: 1.7rem;
  background:
    radial-gradient(circle at 91% 16%, rgb(255 123 26 / 19%), transparent 21rem),
    linear-gradient(145deg, rgb(14 21 26 / 94%), rgb(4 7 9 / 96%));
  box-shadow: 0 2.5rem 6rem rgb(0 0 0 / 38%), inset 0 1px rgb(255 255 255 / 7%);
}

body.site-routed #sistemas .systems-copy h2 {
  max-width: 11ch;
  font-size: clamp(2.75rem, 3.8vw, 4.05rem);
  font-weight: 750;
  line-height: .96;
}

body.site-routed #sistemas .systems-copy p {
  max-width: 27rem;
  color: var(--cs-soft);
  font-size: .95rem;
}

body.site-routed #sistemas .systems-panel {
  border-color: rgb(255 123 26 / 28%);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgb(6 11 14 / 98%), rgb(2 5 7 / 98%));
  box-shadow: 0 2rem 4rem rgb(0 0 0 / 36%), inset 0 1px rgb(255 255 255 / 5%);
}

body.site-routed #sistemas .systems-mockup {
  position: relative;
  min-height: 12.5rem;
  padding: 1.35rem 1.4rem 1.25rem;
  overflow: hidden;
  border-bottom: 1px solid var(--cs-line);
  background:
    linear-gradient(90deg, transparent 0 18%, rgb(255 123 26 / 10%) 18.2% 18.4%, transparent 18.6% 100%),
    linear-gradient(180deg, rgb(255 123 26 / 8%), transparent 56%),
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px),
    #05090c;
  background-size: auto, auto, 28px 28px, 28px 28px, auto;
}

body.site-routed #sistemas .systems-mockup::before,
body.site-routed #sistemas .systems-mockup::after {
  position: absolute;
  bottom: 1.25rem;
  height: 3.7rem;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: .65rem;
  background: linear-gradient(180deg, rgb(255 255 255 / 5%), rgb(255 255 255 / 1%));
  content: "";
}

body.site-routed #sistemas .systems-mockup::before { left: 1.4rem; width: 37%; }
body.site-routed #sistemas .systems-mockup::after { left: calc(37% + 2.1rem); width: 23%; }
body.site-routed #sistemas .systems-mockup > * { position: relative; z-index: 1; display: block; }
body.site-routed #sistemas .systems-mockup > span { color: var(--cs-orange-soft); font-size: .64rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
body.site-routed #sistemas .systems-mockup > strong { margin-top: .35rem; color: #fff; font-size: 1.25rem; }
body.site-routed #sistemas .systems-mockup > small { margin-top: .35rem; color: var(--cs-soft); font-size: .74rem; }
body.site-routed #sistemas .systems-panel ul { gap: 0; padding: 0; }
body.site-routed #sistemas .systems-panel li { min-height: 4.85rem; padding: 1.05rem 1.2rem 1.05rem 3rem; border-top-color: var(--cs-line); color: rgb(226 236 241 / 76%); font-size: .8rem; }

/* 05 — process: a vertical flow with a visible spine and progressive weight. */
body.site-routed #processo.process-flow {
  grid-template-columns: minmax(17rem, .7fr) minmax(0, 1.3fr);
  gap: clamp(2.7rem, 7vw, 7rem);
  align-items: center;
  border-top: 0;
  min-height: 100svh;
}

body.site-routed #processo .process-copy h2 {
  max-width: 11ch;
  font-size: clamp(2.75rem, 3.8vw, 4.05rem);
  font-weight: 750;
  line-height: .96;
}

body.site-routed #processo .process-copy p { max-width: 25rem; color: var(--cs-soft); font-size: .95rem; }
body.site-routed #processo .process-steps { position: relative; gap: .65rem; }
body.site-routed #processo .process-steps::before {
  position: absolute;
  top: 1.65rem;
  bottom: 1.65rem;
  left: 1.45rem;
  width: 1px;
  background: linear-gradient(180deg, var(--cs-orange), rgb(255 123 26 / 10%));
  content: "";
  opacity: .66;
}

body.site-routed #processo .process-steps article {
  position: relative;
  min-height: 4.85rem;
  padding: .85rem 1.1rem .85rem .8rem;
  border-color: var(--cs-line);
  border-radius: .9rem;
  background: linear-gradient(100deg, rgb(255 123 26 / 7%), rgb(10 15 19 / 92%) 46%);
  box-shadow: inset 0 1px rgb(255 255 255 / 5%);
}

body.site-routed #processo .process-steps article:nth-child(2) { margin-left: 1.5rem; }
body.site-routed #processo .process-steps article:nth-child(3) { margin-left: 3rem; }
body.site-routed #processo .process-steps article:nth-child(4) { margin-left: 1.5rem; }
body.site-routed #processo .process-steps article:nth-child(5) { margin-left: 0; }
body.site-routed #processo .process-steps span { position: relative; z-index: 1; width: 2.95rem; height: 2.95rem; border: 1px solid rgb(255 123 26 / 36%); background: #101417; box-shadow: 0 0 0 .35rem rgb(255 123 26 / 6%); }
body.site-routed #processo .process-steps strong { font-size: .82rem; }
body.site-routed #processo .process-steps p { font-size: .78rem; }

/* 06 — store: retail-grade hero and catalog introduction. */
body.site-routed #loja.store-marketplace.is-active-screen {
  background: #030507;
}

body.site-routed #loja .storefront-hero {
  height: 25.5rem;
  border: 1px solid rgb(221 234 240 / 13%);
  border-radius: 1.45rem;
  box-shadow: 0 2.2rem 5rem rgb(0 0 0 / 34%), inset 0 1px rgb(255 255 255 / 8%);
}

body.site-routed #loja .storefront-copy {
  width: min(40rem, 48%);
  padding: 2.2rem 2.8rem 4.4rem;
}

body.site-routed #loja .storefront-copy h2 {
  max-width: 8ch;
  font-size: clamp(2.8rem, 4.3vw, 4.55rem);
  font-weight: 750;
  line-height: .95;
}

body.site-routed #loja .store-campaign-kicker { color: rgb(235 244 247 / 72%); font-size: .72rem; letter-spacing: .16em; }
body.site-routed #loja .storefront-copy > p:not(.store-campaign-kicker) { max-width: 27rem; color: var(--cs-soft); font-size: .88rem; line-height: 1.6; }
body.site-routed #loja .storefront-trust { min-height: 4.6rem; border-color: rgb(218 231 238 / 12%); background: rgb(3 6 8 / 88%); backdrop-filter: blur(12px); }
body.site-routed #loja .storefront-trust > span { min-height: 4.6rem; border-right-color: var(--cs-line); }
body.site-routed #loja .store-build-strip { gap: .8rem; margin-top: 1.05rem; }
body.site-routed #loja .store-build-card { min-height: 6rem; border-color: var(--cs-line); border-radius: .95rem; background: linear-gradient(135deg, rgb(12 20 24 / 94%), rgb(4 8 10 / 94%)); box-shadow: inset 0 1px rgb(255 255 255 / 5%); }
body.site-routed #loja .store-build-card:hover { border-color: rgb(255 123 26 / 48%); box-shadow: 0 1rem 2rem rgb(0 0 0 / 22%), 0 0 1.4rem rgb(255 123 26 / 9%); }
body.site-routed #loja .store-products-intro { margin-top: 2.3rem; padding-top: 1.1rem; border-top: 1px solid var(--cs-line); }
body.site-routed #loja .store-products-intro h3 { font-size: clamp(1.45rem, 2.1vw, 2.1rem); font-weight: 720; }
body.site-routed #loja .store-toolbar { margin-top: 1rem; padding: .7rem; border: 1px solid var(--cs-line); border-radius: .9rem; background: rgb(7 12 15 / 82%); }
body.site-routed #loja .store-search { border-color: rgb(255 255 255 / 13%); border-radius: .65rem; background: #04080a; }
body.site-routed #loja .store-filters button { border-radius: .55rem; }

/* Responsive continuation: preserve the intent, not just the desktop silhouette. */
@media (max-width: 720px) {
  /* As órbitas decorativas são atmosféricas; no mobile elas ficam contidas
     para não criar uma faixa horizontal invisível fora da composição. */
  body.site-routed main > section[data-site-screen] {
    overflow-x: clip;
  }

  body.site-routed main > section[data-site-screen]::after {
    top: 12%;
    right: 0;
    width: 10rem;
    height: 10rem;
    box-shadow: 0 0 0 1.7rem rgb(255 123 26 / 2%), 0 0 0 3.5rem rgb(255 123 26 / 1.4%);
  }

  body.site-routed .topbar { min-height: 68px; }
  body.site-routed main > #avaliacoes.reviews.is-active-screen,
  body.site-routed main > #trabalhos.proof.is-active-screen,
  body.site-routed main > #processo.process-flow.is-active-screen,
  body.site-routed main > #diagnostico.diagnostic.is-active-screen {
    width: min(calc(100% - 1.5rem), 640px);
    min-height: 0;
    padding: calc(var(--topbar) + 1.5rem) 0 2.5rem;
  }

  body.site-routed #avaliacoes .reviews-copy,
  body.site-routed #trabalhos .proof-head {
    display: block;
    padding: 0 0 1.2rem 1rem;
  }

  body.site-routed #avaliacoes .reviews-copy h2,
  body.site-routed #trabalhos .proof-head h2,
  body.site-routed #diagnostico .diagnostic-intro h2,
  body.site-routed #processo .process-copy h2,
  body.site-routed #sistemas .systems-copy h2,
  body.site-routed #loja .storefront-copy h2 { max-width: 12ch; font-size: clamp(2.35rem, 10vw, 3.35rem); }

  body.site-routed #avaliacoes .reviews-copy p,
  body.site-routed #trabalhos .proof-head p { margin-top: 1rem; font-size: .86rem; }
  body.site-routed #avaliacoes .reviews-hero-visual { min-height: 11rem; margin: 1.3rem 0 1.2rem; }
  body.site-routed #avaliacoes .reviews-hero-visual__ring { width: 9rem; height: 9rem; }
  body.site-routed #avaliacoes .reviews-directory { grid-template-columns: 1fr; min-height: 0; }
  body.site-routed #avaliacoes .review-filter-sidebar { border-right: 0; border-bottom: 1px solid var(--cs-line); }
  body.site-routed #avaliacoes .review-filter-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.site-routed #avaliacoes .review-listing { padding: 1rem; }

  body.site-routed main > #diagnostico.diagnostic.is-active-screen { grid-template-columns: 1fr; gap: 1.5rem; }
  body.site-routed #diagnostico .diagnostic-intro > p { max-width: 32rem; font-size: .88rem; }
  body.site-routed #diagnostico .diagnostic-fields { grid-template-columns: 1fr; }
  body.site-routed #diagnostico .diagnostic-console { width: 100%; }

  body.site-routed #trabalhos .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.site-routed #trabalhos .featured-work { grid-column: 1 / -1; min-height: 18rem; }
  body.site-routed #trabalhos .work-card { min-height: 9.5rem; padding: .8rem; }
  body.site-routed #trabalhos .work-card p { font-size: .7rem; }

  body.site-routed main > #sistemas.systems-showcase.is-active-screen { width: min(calc(100% - 1rem), 640px); min-height: 0; grid-template-columns: 1fr; gap: 2rem; margin: .5rem auto 2rem; padding: 3rem 1rem 1rem; border-radius: 1.2rem; }
  body.site-routed #sistemas .systems-panel { width: 100%; }
  body.site-routed #sistemas .systems-mockup { min-height: 10.5rem; }
  body.site-routed #sistemas .systems-panel li { min-height: auto; padding-block: 1rem; }

  body.site-routed #processo.process-flow { grid-template-columns: 1fr; gap: 1.6rem; }
  body.site-routed #processo .process-steps article:nth-child(n) { margin-left: 0; }
  body.site-routed #processo .process-steps article { min-height: 4.4rem; }

  body.site-routed #loja .storefront-hero { height: 39rem; border-radius: 1rem; }
  body.site-routed #loja .storefront-copy { width: 100%; padding: 2rem 1.25rem 0; }
  body.site-routed #loja .storefront-copy h2 { max-width: 10ch; }
  body.site-routed #loja .store-build-strip { grid-template-columns: 1fr; }
  body.site-routed #loja .store-products-intro { margin-top: 1.8rem; }
}

/* Estabilização mobile: preserva a composição e elimina alturas/posicionamentos
   herdados que causavam cortes no Safari e espaçamento excessivo. */
@media (max-width: 720px) {
  :root {
    --mobile-gutter: 1.25rem;
  }

  html {
    scroll-padding-top: calc(var(--topbar) + env(safe-area-inset-top));
  }

  body.site-routed {
    overflow-x: clip;
  }

  body.site-routed #inicio,
  body.site-routed #inicio .hero-shell {
    min-height: 0;
  }

  body.site-routed #inicio .hero-shell {
    width: min(calc(100% - (var(--mobile-gutter) * 2)), 430px);
    margin-inline: auto;
    padding: calc(var(--topbar) + env(safe-area-inset-top) + 1.35rem) 0 1.5rem;
  }

  body.site-routed #inicio .hero-copy {
    width: 100%;
    max-width: none;
  }

  body.site-routed #inicio .hero-kicker {
    margin-bottom: .75rem;
    font-size: .64rem;
  }

  body.site-routed #inicio .hero-title {
    max-width: none;
    margin-bottom: .9rem;
    font-size: clamp(1.9rem, 8.7vw, 2.35rem);
    line-height: 1.07;
    letter-spacing: -.04em;
    text-wrap: balance;
  }

  body.site-routed #inicio .hero-title .title-line {
    white-space: nowrap;
  }

  body.site-routed #inicio .hero-lead {
    max-width: 33rem;
    font-size: clamp(.92rem, 4vw, 1rem);
    line-height: 1.5;
  }

  body.site-routed #inicio .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: .75rem;
    width: 100%;
    margin-top: 1.25rem;
  }

  body.site-routed #inicio .hero-actions .btn,
  body.site-routed .footer-cta > .footer-whatsapp {
    width: 100%;
    min-height: 3rem;
  }

  /* Os quatro serviços continuam presentes; no celular entram no fluxo normal. */
  body.site-routed #inicio .hero-partners {
    position: static;
    display: block;
    width: 100%;
    margin: 1.15rem 0 0;
    overflow: visible;
    transform: none;
  }

  body.site-routed #inicio .hero-partners__list {
    min-height: 3.65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .6rem 1rem;
  }

  body.site-routed #inicio .hero-partner {
    min-height: 3.45rem;
    grid-template-columns: 1.75rem minmax(0, 1fr);
    gap: .45rem;
  }

  body.site-routed #inicio .hero-partner__icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  body.site-routed #inicio .hero-partner__icon svg {
    width: 1.18rem;
    height: 1.18rem;
  }

  body.site-routed #inicio .hero-partner strong { font-size: .8rem; }
  body.site-routed #inicio .hero-partner small { font-size: .56rem; line-height: 1.28; }

  /* O rodapé volta a ser um fluxo simples: marca, duas colunas e atendimento. */
  body.site-routed .site-footer {
    padding-bottom: 0;
  }

  body.site-routed .site-footer .footer-shell {
    display: grid !important;
    width: min(calc(100% - (var(--mobile-gutter) * 2)), 430px);
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1.5rem !important;
    margin-inline: auto;
    padding: 2rem 0 1.5rem;
  }

  body.site-routed .site-footer .footer-explore {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    padding: 0;
  }

  body.site-routed .footer-column > strong {
    margin-bottom: .7rem;
  }

  body.site-routed .footer-links {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: .35rem;
  }

  body.site-routed .footer-links a {
    min-height: 2rem;
    padding-block: .2rem;
    font-size: .72rem;
  }

  body.site-routed .footer-solution-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: .5rem;
  }

  body.site-routed .footer-solution-grid > a {
    min-height: 0;
    padding: .68rem .72rem;
  }

  body.site-routed .footer-solution-grid strong {
    font-size: .68rem;
    white-space: normal;
  }

  body.site-routed .footer-solution-grid small {
    font-size: .59rem;
    white-space: normal;
  }

  body.site-routed .footer-cta {
    min-height: 0;
    margin: 0;
    padding: 1.05rem;
  }

  body.site-routed .footer-cta > strong {
    font-size: 1.08rem;
    line-height: 1.3;
  }

  body.site-routed .footer-cta > p {
    font-size: .74rem;
    line-height: 1.5;
  }

  body.site-routed .footer-phone {
    min-height: 3rem;
    margin-top: .65rem;
  }

  body.site-routed .footer-email {
    margin-top: .75rem;
    overflow-wrap: anywhere;
  }

  body.site-routed .footer-bottom {
    display: grid;
    width: 100%;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: .55rem;
    padding: 1rem var(--mobile-gutter) calc(1rem + env(safe-area-inset-bottom));
  }

  body.site-routed .footer-trust {
    display: grid;
    gap: .5rem;
  }

  body.site-routed .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem .8rem;
    white-space: normal;
  }
}

@media (max-width: 359px) {
  body.site-routed #inicio .hero-title {
    font-size: clamp(1.72rem, 8.4vw, 1.95rem);
  }

  body.site-routed #inicio .hero-title .title-line {
    white-space: normal;
  }
}

/* Abertura mobile: preserva a composição do desktop sem transformar o título em seis linhas. */
@media (max-width: 720px) {
  body.site-routed #inicio {
    min-height: auto;
    align-items: start;
  }

  body.site-routed #inicio .hero-shell {
    min-height: 0;
    padding: calc(var(--topbar) + 1.75rem) 0 3rem;
  }

  body.site-routed #inicio .hero-copy {
    max-width: none;
  }

  body.site-routed #inicio .hero-title {
    max-width: none;
    margin-bottom: 1rem;
    font-size: clamp(1.95rem, 9vw, 2.45rem);
    line-height: 1.04;
    letter-spacing: -.04em;
  }

  body.site-routed #inicio .hero-title .title-line {
    white-space: nowrap;
  }

  body.site-routed #inicio .hero-lead {
    max-width: 34rem;
    font-size: .96rem;
    line-height: 1.48;
  }

  body.site-routed #inicio .hero-actions {
    gap: .62rem;
    margin-top: 1.35rem;
  }

  body.site-routed #inicio .hero-actions .btn {
    min-height: 3.35rem;
  }

  body.site-routed #inicio .hero-partners {
    display: none;
  }
}

/* Avaliações de clientes: composição isolada, sem herdar a coluna lateral antiga. */
body.site-routed main > #avaliacoes.reviews-experience.is-active-screen {
  width: min(
    calc(100% - (2 * clamp(20px, 2.2vw, 44px))),
    1792px
  );
  min-height: calc(100svh - var(--topbar));
  margin-inline: auto;
  padding: clamp(2.8rem, 4.5vw, 4.5rem) 0 clamp(3rem, 4vw, 4.5rem);
}

body.site-routed main > #avaliacoes.reviews-experience::after { content: none; }

.reviews-experience__shell { display: grid; gap: clamp(1.5rem, 2.5vw, 2.35rem); }

.reviews-header {
  display: grid;
  grid-template-columns: minmax(26.25rem, .9fr) minmax(38.75rem, 1.35fr);
  gap: clamp(1.75rem, 3vw, 4rem);
  align-items: center;
}

.reviews-intro {
  position: relative;
  display: grid;
  gap: 1rem;
  padding-left: 1.5rem;
}

.reviews-intro::before {
  position: absolute;
  top: .25rem;
  bottom: .25rem;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), transparent 96%);
  box-shadow: 0 0 1rem rgb(255 117 24 / 35%);
  content: "";
}

.reviews-intro .eyebrow { color: var(--orange); font-size: clamp(.8rem, 1vw, 1rem); }

.reviews-intro h2 {
  max-width: 15ch;
  margin: 0;
  color: #f7f8f9;
  font-size: clamp(3rem, 4.2vw, 5.4rem);
  font-weight: 790;
  letter-spacing: -.055em;
  line-height: .95;
  text-transform: none;
}

.reviews-intro > p {
  max-width: 38rem;
  margin: 0;
  color: rgb(220 229 234 / 76%);
  font-size: clamp(.94rem, 1.15vw, 1.08rem);
  line-height: 1.6;
}

.reviews-trust-items { display: flex; flex-wrap: wrap; gap: .65rem; }
.reviews-trust-items span,
.reviews-authorized,
.reviews-card footer span {
  display: inline-flex;
  min-height: 2.55rem;
  align-items: center;
  gap: .5rem;
  padding: .55rem .75rem;
  border: 1px solid rgb(226 235 238 / 13%);
  border-radius: .55rem;
  background: rgb(4 8 10 / 64%);
  color: rgb(230 237 239 / 82%);
  font-size: .76rem;
  font-weight: 690;
}

.reviews-trust-items i { width: 1rem; height: 1rem; color: var(--orange); }

.reviews-featured {
  position: relative;
  display: grid;
  min-height: clamp(18rem, 22vw, 23rem);
  grid-template-rows: auto 1fr auto;
  gap: 1.2rem;
  overflow: hidden;
  padding: clamp(1.45rem, 2.4vw, 2.2rem);
  border: 1px solid rgb(255 117 24 / 50%);
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at 90% 28%, rgb(255 117 24 / 14%), transparent 17rem),
    linear-gradient(145deg, rgb(18 24 28 / 98%), rgb(4 7 9 / 98%));
  box-shadow: inset 0 1px rgb(255 255 255 / 7%), 0 1.7rem 4rem rgb(0 0 0 / 30%);
}

.reviews-featured::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(255 255 255 / 5%) .6px, transparent .7px);
  background-size: 5px 5px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 86%);
  opacity: .34;
  pointer-events: none;
}

.reviews-featured__topline,
.reviews-featured__footer,
.reviews-featured__content { position: relative; z-index: 1; }
.reviews-featured__topline { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.reviews-featured__stars,
.reviews-card__stars { color: var(--orange); font-size: 1.25rem; letter-spacing: .18em; line-height: 1; }
.reviews-featured[data-review-state="empty"] .reviews-featured__stars { opacity: .48; }

.reviews-authorized { min-height: 2rem; border: 0; background: rgb(68 225 163 / 8%); color: #63e5b0; white-space: nowrap; }
.reviews-authorized i { width: 1rem; height: 1rem; }

.reviews-featured__content { display: grid; grid-template-columns: auto minmax(0, 1fr); align-content: center; gap: 1rem; }
.reviews-featured__content > i { width: 2rem; height: 2rem; color: rgb(255 117 24 / 78%); }
.reviews-featured h3 { max-width: 23ch; margin: 0 0 .6rem; color: #f7f8f9; font-size: clamp(1.45rem, 2vw, 2rem); line-height: 1.08; }
.reviews-featured p { max-width: 47rem; margin: 0; color: rgb(220 229 234 / 72%); font-size: .96rem; line-height: 1.6; }

.reviews-featured__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(226 235 238 / 12%);
}

.reviews-featured__footer > span { display: inline-flex; align-items: center; gap: .45rem; color: rgb(220 229 234 / 64%); font-size: .78rem; }
.reviews-featured__footer > span i { width: .95rem; height: .95rem; color: var(--orange); }
.reviews-featured__navigation { display: flex; gap: .6rem; }
.reviews-featured__navigation button {
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 1px solid rgb(226 235 238 / 13%);
  border-radius: .6rem;
  background: rgb(255 255 255 / 3%);
  color: rgb(226 235 238 / 36%);
}
.reviews-featured__navigation button:disabled { cursor: not-allowed; }
.reviews-featured__navigation i { width: 1.15rem; height: 1.15rem; }

.reviews-panel {
  overflow: hidden;
  padding: clamp(1.2rem, 2.2vw, 2rem);
  border: 1px solid rgb(255 117 24 / 40%);
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at 3% 4%, rgb(255 117 24 / 12%), transparent 16rem),
    linear-gradient(145deg, rgb(12 18 21 / 97%), rgb(4 7 9 / 98%));
  box-shadow: inset 0 1px rgb(255 255 255 / 6%), 0 1.6rem 3.6rem rgb(0 0 0 / 23%);
}

.reviews-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgb(255 117 24 / 34%);
}

.reviews-toolbar__title { display: flex; min-width: max-content; align-items: center; gap: .8rem; }
.reviews-toolbar__icon { display: grid; width: 2.55rem; height: 2.55rem; place-items: center; border-right: 1px solid rgb(226 235 238 / 14%); color: var(--orange); }
.reviews-toolbar__icon i { width: 1.45rem; height: 1.45rem; }
.reviews-toolbar h3 { margin: 0; color: #fff; font-size: clamp(1.2rem, 1.55vw, 1.65rem); letter-spacing: -.03em; }
.reviews-toolbar small { color: #5ce1ab; font-size: .78rem; font-weight: 700; }
.reviews-toolbar small::before { display: inline-block; width: .32rem; height: .32rem; margin: 0 .65rem .15rem; border-radius: 50%; background: #5ce1ab; content: ""; }

.reviews-filters { display: flex; min-width: 0; align-items: center; justify-content: flex-end; gap: .55rem; }
.reviews-filters button {
  display: inline-flex;
  min-height: 2.55rem;
  align-items: center;
  gap: .48rem;
  padding: .55rem .8rem;
  border: 1px solid rgb(226 235 238 / 13%);
  border-radius: .55rem;
  background: rgb(255 255 255 / 2%);
  color: rgb(226 235 238 / 82%);
  font: inherit;
  font-size: .78rem;
  font-weight: 680;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}
.reviews-filters button:hover,
.reviews-filters button.is-active { border-color: rgb(255 117 24 / 72%); background: rgb(255 117 24 / 9%); color: #fff; }
.reviews-filters i { width: 1rem; height: 1rem; color: var(--orange); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; padding-top: 1.35rem; }
.reviews-card {
  display: grid;
  min-height: 16rem;
  grid-template-rows: auto 1fr auto;
  gap: 1.1rem;
  padding: 1.35rem;
  border: 1px solid rgb(226 235 238 / 13%);
  border-radius: .95rem;
  background: linear-gradient(155deg, rgb(255 255 255 / 3%), transparent 36%), rgb(4 8 10 / 84%);
  box-shadow: inset 0 1px rgb(255 255 255 / 5%);
  transition: opacity .18s ease, transform .18s ease;
}
.reviews-card[hidden] { display: none; }
.reviews-card__topline { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.reviews-card__stars { font-size: 1rem; opacity: .48; }
.reviews-card__topline small { display: inline-flex; align-items: center; gap: .42rem; color: rgb(226 235 238 / 70%); font-size: .76rem; }
.reviews-card__topline small i { width: 1rem; height: 1rem; color: var(--orange); }
.reviews-card__empty { display: grid; align-content: center; gap: .75rem; }
.reviews-card__empty > i { width: 1.65rem; height: 1.65rem; color: rgb(255 117 24 / 70%); }
.reviews-card__empty p { max-width: 26rem; margin: 0; color: rgb(220 229 234 / 73%); font-size: .94rem; line-height: 1.55; }
.reviews-card footer { padding-top: .9rem; border-top: 1px solid rgb(226 235 238 / 10%); }
.reviews-card footer span { min-height: 1.95rem; padding: .35rem .5rem; border: 0; background: rgb(92 225 171 / 7%); color: #63e5b0; font-size: .68rem; }
.reviews-card footer i { width: .9rem; height: .9rem; }
.reviews-panel__notice { display: flex; align-items: center; gap: .55rem; margin: 1rem 0 0; color: rgb(220 229 234 / 62%); font-size: .78rem; }
.reviews-panel__notice i { width: .95rem; height: .95rem; color: var(--orange); }

@media (min-width: 761px) and (max-width: 1400px) {
  body.site-routed main > #avaliacoes.reviews-experience.is-active-screen {
    padding: 1rem 0 1.4rem;
  }

  .reviews-header {
    grid-template-columns: minmax(26.25rem, .9fr) minmax(31rem, 1.1fr);
    gap: 1.6rem;
  }

  .reviews-intro { gap: .65rem; }
  .reviews-trust-items { flex-wrap: nowrap; gap: .4rem; }
  .reviews-trust-items span { min-height: 2.2rem; padding: .4rem .5rem; font-size: .66rem; }
  .reviews-trust-items i { width: .88rem; height: .88rem; }
  .reviews-featured { min-height: 16.5rem; gap: .75rem; padding: 1.2rem; }
  .reviews-featured h3 { margin-bottom: .35rem; font-size: 1.35rem; }
  .reviews-featured p { font-size: .84rem; line-height: 1.45; }
  .reviews-featured__footer { padding-top: .75rem; }
  .reviews-featured__navigation button { width: 2.5rem; height: 2.5rem; }
  .reviews-panel { padding: 1rem 1.15rem; }
  .reviews-toolbar { padding-bottom: .8rem; }
  .reviews-grid { gap: .8rem; padding-top: .85rem; }
  .reviews-card { min-height: 11.6rem; gap: .65rem; padding: 1rem; }
  .reviews-card__empty { gap: .5rem; }
  .reviews-card__empty p { font-size: .8rem; line-height: 1.4; }
  .reviews-card footer { padding-top: .6rem; }
  .reviews-panel__notice { display: none; }
}

@media (max-width: 1180px) {
  .reviews-header { grid-template-columns: minmax(0, .9fr) minmax(28rem, 1fr); gap: 2rem; }
  .reviews-toolbar { align-items: flex-start; flex-direction: column; }
  .reviews-filters { width: 100%; justify-content: flex-start; }
}

@media (max-width: 760px) {
  body.site-routed main > #avaliacoes.reviews-experience.is-active-screen {
    width: min(calc(100% - 1.5rem), 640px);
    min-height: 0;
    padding: calc(var(--topbar) + 1.35rem) 0 calc(6.5rem + env(safe-area-inset-bottom));
  }

  .reviews-header { grid-template-columns: 1fr; gap: 1.35rem; }
  .reviews-intro { gap: .85rem; padding-left: 1rem; }
  .reviews-intro h2 { max-width: 12ch; font-size: clamp(2.35rem, 10vw, 3.35rem); }
  .reviews-trust-items { gap: .5rem; }
  .reviews-trust-items span { min-height: 2.35rem; font-size: .7rem; }
  .reviews-featured { min-height: 18rem; padding: 1.2rem; }
  .reviews-featured__topline { align-items: flex-start; flex-direction: column; }
  .reviews-featured__footer { align-items: flex-start; flex-direction: column; padding-right: 3.7rem; }
  .reviews-toolbar { gap: .9rem; }
  .reviews-toolbar__title { flex-wrap: wrap; gap: .55rem; }
  .reviews-toolbar small::before { margin-left: .25rem; }
  .reviews-filters { width: calc(100% + 2.4rem); margin-inline: -1.2rem; padding-inline: 1.2rem; overflow-x: auto; scrollbar-width: none; }
  .reviews-filters::-webkit-scrollbar { display: none; }
  .reviews-filters button { flex: 0 0 auto; }
  .reviews-grid { display: grid; width: calc(100% + 2.4rem); grid-auto-columns: calc(100% - 2.4rem); grid-auto-flow: column; grid-template-columns: none; margin-inline: -1.2rem; padding: 1.15rem 1.2rem 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .reviews-card { min-height: 15rem; padding-right: 4rem; scroll-snap-align: start; }
}

/* Loja Chip Start — vitrine de e-commerce */
body.site-routed main > #loja.store-marketplace.is-active-screen {
  width: min(1720px, calc(100% - clamp(2rem, 7vw, 9rem)));
  padding: clamp(1.35rem, 2.6vw, 2.8rem) 0 clamp(4rem, 7vw, 7.5rem);
}

body.site-routed #loja .storefront-hero.store-campaign {
  position: relative;
  isolation: isolate;
  min-height: 0;
  height: clamp(27rem, 33vw, 32rem);
  overflow: hidden;
  border: 1px solid rgb(255 119 24 / 38%);
  border-radius: 1.25rem;
  background: #050708;
  box-shadow: 0 1.8rem 4.5rem rgb(0 0 0 / 32%);
}

body.site-routed #loja .storefront-hero.store-campaign::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #050708 0%, rgb(5 7 8 / 96%) 34%, rgb(5 7 8 / 50%) 59%, rgb(5 7 8 / 15%) 100%);
}

body.site-routed #loja .storefront-hero-media,
body.site-routed #loja .store-hero-generated,
body.site-routed #loja .store-hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

body.site-routed #loja .store-hero-art { object-fit: cover; object-position: center right; }

body.site-routed #loja .storefront-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(43rem, 53%);
  height: 100%;
  padding: clamp(2.4rem, 4vw, 4rem) clamp(2.2rem, 5.2vw, 6.4rem) 6.6rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

body.site-routed #loja .storefront-copy .eyebrow {
  margin-bottom: .75rem;
  color: #ff8b3d;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
}

body.site-routed #loja .store-campaign-kicker {
  margin: 0 0 .5rem;
  color: #78e9bd;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .15em;
}

body.site-routed #loja .storefront-copy h2 {
  max-width: 9.8ch;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 4.8vw, 5.2rem);
  font-weight: 780;
  line-height: .93;
  letter-spacing: -.065em;
}

body.site-routed #loja .storefront-copy h2 strong { color: #ff7417; }

body.site-routed #loja .storefront-copy > p:not(.store-campaign-kicker) {
  max-width: 31rem;
  margin: 1.2rem 0 0;
  color: rgb(235 242 244 / 78%);
  font-size: clamp(.95rem, 1.15vw, 1.08rem);
  line-height: 1.55;
}

body.site-routed #loja .storefront-actions { margin-top: 1.45rem; }
body.site-routed #loja .storefront-actions .btn { min-height: 3.25rem; padding-inline: 1.2rem; }

body.site-routed #loja .storefront-trust {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  display: grid;
  width: min(54rem, 65%);
  min-height: 4.7rem;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(255 255 255 / 12%);
  border-right: 1px solid rgb(255 255 255 / 9%);
  border-radius: 0 .9rem 0 0;
  overflow: hidden;
  background: rgb(5 8 10 / 88%);
  backdrop-filter: blur(12px);
}

body.site-routed #loja .storefront-trust span {
  display: grid;
  min-width: 0;
  padding: .7rem 1rem;
  grid-template-columns: 1.45rem 1fr;
  column-gap: .55rem;
  align-content: center;
  border-right: 1px solid rgb(255 255 255 / 10%);
}

body.site-routed #loja .storefront-trust span:last-child { border-right: 0; }
body.site-routed #loja .storefront-trust svg { grid-row: span 2; align-self: center; color: #ff7417; width: 1.05rem; }
body.site-routed #loja .storefront-trust strong { color: #fff; font-size: .78rem; line-height: 1.15; }
body.site-routed #loja .storefront-trust small { margin-top: .12rem; color: rgb(220 232 235 / 56%); font-size: .63rem; line-height: 1.15; }

body.site-routed #loja .store-build-strip {
  display: grid;
  margin-top: 1.25rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

body.site-routed #loja .store-build-card {
  position: relative;
  display: flex;
  min-height: 9.3rem;
  padding: 1.2rem 1.1rem;
  align-items: center;
  gap: .9rem;
  overflow: hidden;
  border: 1px solid rgb(126 157 164 / 24%);
  border-radius: .85rem;
  color: #f4f7f8;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(135deg, #11191b, #081012 74%);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

body.site-routed #loja .store-build-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: #ff7417;
}

body.site-routed #loja .store-build-card::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -4.8rem;
  width: 10rem;
  height: 10rem;
  border: 1px solid rgb(255 116 23 / 20%);
  border-radius: 50%;
}

body.site-routed #loja .store-build-card:hover,
body.site-routed #loja .store-build-card:focus-visible {
  z-index: 1;
  border-color: rgb(255 116 23 / 75%);
  outline: 0;
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgb(0 0 0 / 22%);
}

body.site-routed #loja .store-build-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgb(255 116 23 / 60%);
  border-radius: .72rem;
  color: #ff812a;
  background: rgb(255 116 23 / 8%);
}

body.site-routed #loja .store-build-card__icon svg { width: 1.3rem; }
body.site-routed #loja .store-build-card > span:nth-child(2) { position: relative; z-index: 1; display: grid; gap: .15rem; min-width: 0; }
body.site-routed #loja .store-build-card small { color: #a3b5ba; font-size: .62rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
body.site-routed #loja .store-build-card strong { color: #fff; font-size: 1.05rem; line-height: 1.1; }
body.site-routed #loja .store-build-card em { color: rgb(223 233 235 / 66%); font-size: .72rem; font-style: normal; line-height: 1.25; }
body.site-routed #loja .store-build-card__arrow { position: absolute; z-index: 1; top: .8rem; right: .8rem; width: .95rem; color: #f7a76f; }

body.site-routed #loja .store-build-card--gamer::before,
body.site-routed #loja .store-build-card--gamer .store-build-card__icon { border-color: rgb(69 220 167 / 62%); }
body.site-routed #loja .store-build-card--gamer::before { background: #39d69e; }
body.site-routed #loja .store-build-card--gamer .store-build-card__icon { color: #57e7b4; background: rgb(57 214 158 / 8%); }
body.site-routed #loja .store-build-card--upgrade::before { background: #3ec9e6; }
body.site-routed #loja .store-build-card--upgrade .store-build-card__icon { border-color: rgb(62 201 230 / 58%); color: #65d9ee; background: rgb(62 201 230 / 8%); }

body.site-routed #loja .store-products-intro {
  display: flex;
  margin: clamp(2.7rem, 5vw, 4.8rem) 0 1.05rem;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

body.site-routed #loja .store-products-intro > div { display: grid; gap: .35rem; }
body.site-routed #loja .store-products-intro span { color: #ff812a; font-size: .67rem; font-weight: 800; letter-spacing: .13em; }
body.site-routed #loja .store-products-intro h3 { margin: 0; color: #f8fafb; font-size: clamp(1.45rem, 2.2vw, 2.2rem); letter-spacing: -.035em; }
body.site-routed #loja .store-products-intro p { max-width: 25rem; margin: 0; color: #9aaeb3; font-size: .9rem; line-height: 1.5; }

body.site-routed #loja .store-toolbar {
  min-height: 4.8rem;
  padding: .7rem .85rem;
  border: 1px solid rgb(126 157 164 / 25%);
  border-radius: .9rem;
  background: #0b1214;
}

body.site-routed #loja .store-catalog-shell { display: block; margin-top: 1.25rem; }
body.site-routed #loja .store-sidebar { display: none; }
body.site-routed #loja .store-results { min-width: 0; }
body.site-routed #loja .store-results-head { margin-bottom: 1rem; }
body.site-routed #loja .store-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
body.site-routed #loja .store-product { min-height: 29rem; }
body.site-routed #loja .store-product__image { min-height: 13.8rem; }
body.site-routed #loja .store-product__graphic { min-height: 12.5rem; }
body.site-routed #loja .store-product__graphic strong { font-size: 1rem; }

@media (max-width: 1240px) {
  body.site-routed #loja .storefront-copy { width: min(43rem, 60%); }
  body.site-routed #loja .store-build-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.site-routed #loja .store-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 840px) {
  body.site-routed main > #loja.store-marketplace.is-active-screen { width: min(100% - 2rem, 720px); }
  body.site-routed #loja .storefront-hero.store-campaign { height: auto; min-height: 40rem; }
  body.site-routed #loja .storefront-hero.store-campaign::before { background: linear-gradient(180deg, rgb(5 7 8 / 72%) 0%, #050708 68%); }
  body.site-routed #loja .store-hero-art { object-position: 65% 50%; }
  body.site-routed #loja .storefront-copy { width: 100%; min-height: 34rem; padding: 4rem 2rem 7.5rem; justify-content: end; }
  body.site-routed #loja .storefront-trust { width: 100%; border-right: 0; border-radius: 0; }
  body.site-routed #loja .store-products-intro { align-items: start; flex-direction: column; gap: .75rem; }
  body.site-routed #loja .store-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  body.site-routed main > #loja.store-marketplace.is-active-screen { width: min(100% - 1.2rem, 520px); }
  body.site-routed #loja .storefront-hero.store-campaign { min-height: 43rem; border-radius: 1rem; }
  body.site-routed #loja .storefront-copy { min-height: 36rem; padding: 3rem 1.25rem 8.4rem; }
  body.site-routed #loja .storefront-copy h2 { font-size: clamp(3rem, 14vw, 4.15rem); }
  body.site-routed #loja .storefront-actions { display: grid; width: 100%; grid-template-columns: 1fr; }
  body.site-routed #loja .storefront-actions .btn { width: 100%; }
  body.site-routed #loja .storefront-trust { min-height: 6.2rem; }
  body.site-routed #loja .storefront-trust span { padding: .7rem .48rem; grid-template-columns: 1fr; text-align: center; }
  body.site-routed #loja .storefront-trust svg { display: none; }
  body.site-routed #loja .storefront-trust strong { font-size: .64rem; }
  body.site-routed #loja .storefront-trust small { font-size: .55rem; }
  body.site-routed #loja .store-build-strip { grid-template-columns: 1fr; gap: .7rem; }
  body.site-routed #loja .store-build-card { min-height: 6.7rem; }
  body.site-routed #loja .store-products-intro { margin-top: 2.7rem; }
  body.site-routed #loja .store-toolbar { align-items: stretch; }
  body.site-routed #loja .store-filters { overflow-x: auto; padding-bottom: .2rem; }
  body.site-routed #loja .store-grid { grid-template-columns: 1fr; }
}

/* Loja Chip Start: vitrine ampla, com leitura comercial e produtos bem dimensionados. */
body.site-routed main > #loja.store-marketplace.is-active-screen {
  width: min(1680px, calc(100% - clamp(2rem, 6vw, 8rem)));
  padding-top: calc(var(--topbar) + 1.15rem) !important;
  padding-bottom: 4rem !important;
}

body.site-routed #loja .storefront-hero {
  height: clamp(31rem, 39vw, 37rem);
  border: 1px solid rgb(255 139 45 / 25%);
  border-radius: 1.35rem;
  background: #050708;
  box-shadow: 0 2rem 5rem rgb(0 0 0 / 38%);
}

body.site-routed #loja .storefront-hero::before { display: none; }

body.site-routed #loja .storefront-hero::after {
  z-index: 1;
  background:
    linear-gradient(90deg, #040608 0%, rgb(4 6 8 / 98%) 31%, rgb(4 6 8 / 78%) 48%, rgb(4 6 8 / 18%) 74%, rgb(4 6 8 / 7%) 100%),
    linear-gradient(0deg, rgb(4 6 8 / 46%), transparent 46%);
}

body.site-routed #loja .storefront-hero-media {
  inset: 0;
  width: 100%;
  background: #050708;
}

body.site-routed #loja .storefront-hero-media .store-hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04) brightness(.93);
}

body.site-routed #loja .storefront-copy {
  display: flex;
  width: min(46rem, 56%);
  min-height: 100%;
  padding: clamp(2.8rem, 5.2vw, 5.6rem);
  flex-direction: column;
  justify-content: center;
}

body.site-routed #loja .storefront-copy .eyebrow {
  margin: 0;
  color: #ff913a;
  font-size: .78rem;
  letter-spacing: .11em;
}

body.site-routed #loja .storefront-copy h2 {
  max-width: 12ch;
  margin: 1rem 0 0;
  font-size: clamp(3rem, 4vw, 4.9rem);
  line-height: .98;
  letter-spacing: -.05em;
}

body.site-routed #loja .storefront-copy > p {
  max-width: 35rem;
  margin-top: 1.25rem;
  color: #c1cbd3;
  font-size: clamp(.97rem, 1.1vw, 1.14rem);
  line-height: 1.65;
}

body.site-routed #loja .storefront-actions { gap: .8rem; margin-top: 1.8rem; }
body.site-routed #loja .storefront-actions .btn { min-height: 3.1rem; padding-inline: 1.25rem; font-size: .8rem; }

body.site-routed #loja .storefront-trust {
  z-index: 4;
  width: min(52rem, 61%);
  border-radius: 0 1.1rem 0 1.25rem;
  background: rgb(6 9 12 / 84%);
}

body.site-routed #loja .storefront-trust > span { min-height: 4.65rem; padding: .95rem 1.25rem; }
body.site-routed #loja .storefront-trust svg { width: 1.25rem; height: 1.25rem; }
body.site-routed #loja .storefront-trust strong { font-size: .76rem; }
body.site-routed #loja .storefront-trust small { font-size: .64rem; }

body.site-routed #loja .store-toolbar {
  grid-template-columns: minmax(18rem, .85fr) minmax(31rem, 1.45fr) auto;
  min-height: 4.2rem;
  gap: .8rem;
  margin-top: 1.25rem;
  padding: .5rem .65rem;
  border-radius: 1rem;
  background: #0a0e12;
}

body.site-routed #loja .store-search,
body.site-routed #loja .store-filters button,
body.site-routed #loja .store-cart-trigger { min-height: 3rem; font-size: .75rem; }

body.site-routed #loja .store-catalog-shell {
  grid-template-columns: 14.5rem minmax(0, 1fr);
  gap: 1.4rem;
  margin-top: 1.6rem;
}

body.site-routed #loja .store-sidebar { gap: 1rem; }
body.site-routed #loja .store-sidebar > section { border-radius: 1rem; }
body.site-routed #loja .store-sidebar header { min-height: 3.2rem; }
body.site-routed #loja .store-sidebar nav button { min-height: 2.55rem; font-size: .72rem; }

body.site-routed #loja .store-results-head { min-height: 3.55rem; padding-bottom: .9rem; }
body.site-routed #loja .store-results-head > div > span { font-size: 1rem; }
body.site-routed #loja .store-results-head label,
body.site-routed #loja .store-results-head select,
body.site-routed #loja .store-results-head .store-count { font-size: .72rem; }

body.site-routed #loja .store-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

body.site-routed #loja .store-product {
  min-height: 33.5rem;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 1rem;
  background: linear-gradient(155deg, #10171e, #080b0f 58%);
  box-shadow: 0 1.2rem 2.7rem rgb(0 0 0 / 24%);
}

body.site-routed #loja .store-product:hover { border-color: rgb(255 128 29 / 46%); transform: translateY(-5px); }

body.site-routed #loja .store-product__image.store-product__image--graphic {
  display: grid;
  min-height: 15rem;
  aspect-ratio: auto;
  padding: 1rem;
  place-items: stretch;
  background:
    radial-gradient(circle at 82% 15%, rgb(255 117 24 / 30%), transparent 27%),
    radial-gradient(circle at 12% 86%, rgb(24 197 184 / 14%), transparent 34%),
    linear-gradient(140deg, #1a222b, #0a0f14 66%);
}

body.site-routed #loja .store-product__graphic {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid rgb(255 147 52 / 57%);
  border-radius: .8rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  background: linear-gradient(135deg, rgb(8 12 16 / 25%), rgb(5 7 10 / 62%));
}

body.site-routed #loja .store-product__graphic::before,
body.site-routed #loja .store-product__graphic::after {
  position: absolute;
  border: 1px solid rgb(255 117 24 / 60%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

body.site-routed #loja .store-product__graphic::before { top: -4.8rem; right: -3.7rem; width: 12rem; height: 12rem; }
body.site-routed #loja .store-product__graphic::after { right: 2.2rem; bottom: -6.8rem; width: 10rem; height: 10rem; border-color: rgb(30 202 192 / 30%); }

body.site-routed #loja .store-product__graphic > span {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgb(255 128 29 / 70%);
  border-radius: .8rem;
  place-items: center;
  background: rgb(9 13 18 / 84%);
  color: #ff841b;
}

body.site-routed #loja .store-product__graphic > span svg { width: 1.4rem; height: 1.4rem; }
body.site-routed #loja .store-product__graphic small,
body.site-routed #loja .store-product__graphic strong,
body.site-routed #loja .store-product__graphic em { position: relative; z-index: 1; }
body.site-routed #loja .store-product__graphic small { color: #ff9c50; font-size: .62rem; font-style: normal; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
body.site-routed #loja .store-product__graphic strong { display: -webkit-box; min-height: 2.55em; margin-top: .45rem; overflow: hidden; color: #f6f8fa; font-size: 1.1rem; line-height: 1.2; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
body.site-routed #loja .store-product__graphic em { margin-top: .5rem; color: #9ca8b3; font-size: .62rem; font-style: normal; }

body.site-routed #loja .store-product__badge { top: .8rem; left: .8rem; padding: .34rem .55rem; font-size: .6rem; }
body.site-routed #loja .store-product__favorite { top: .8rem; right: .8rem; }
body.site-routed #loja .store-product__body { display: flex; padding: 1.25rem; flex: 1; flex-direction: column; }
body.site-routed #loja .store-product__body > small { font-size: .66rem; }
body.site-routed #loja .store-product__body h3 { min-height: 2.6rem; margin-top: .5rem; font-size: 1rem; line-height: 1.28; }
body.site-routed #loja .store-product__body p { min-height: 3.15rem; font-size: .74rem; line-height: 1.5; }
body.site-routed #loja .store-product__specs li { font-size: .62rem; }
body.site-routed #loja .store-product__price { margin-top: auto; padding-top: 1rem; }
body.site-routed #loja .store-product__price strong { font-size: 1.25rem; }
body.site-routed #loja .store-product__price span { font-size: .62rem; }
body.site-routed #loja .store-product__actions button { min-height: 2.55rem; font-size: .68rem; }

body.site-routed #loja .store-services { gap: 0; margin-top: 1.35rem; border-radius: 1rem; }
body.site-routed #loja .store-services article { min-height: 5.3rem; padding: 1rem 1.25rem; }
body.site-routed #loja .store-services article strong { font-size: .78rem; }
body.site-routed #loja .store-services article p { font-size: .64rem; }

@media (max-width: 1240px) {
  body.site-routed #loja .storefront-hero { height: 31rem; }
  body.site-routed #loja .storefront-copy { width: min(43rem, 63%); }
  body.site-routed #loja .store-catalog-shell { grid-template-columns: 13rem minmax(0, 1fr); }
  body.site-routed #loja .store-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  body.site-routed main > #loja.store-marketplace.is-active-screen { width: min(100% - 1.25rem, 760px); padding-top: calc(var(--topbar) + .8rem) !important; }
  body.site-routed #loja .storefront-hero { height: 39rem; }
  body.site-routed #loja .storefront-hero-media { inset: 38% 0 0; }
  body.site-routed #loja .storefront-hero-media .store-hero-art { object-position: 72% center; }
  body.site-routed #loja .storefront-hero::after { background: linear-gradient(180deg, #040608 0%, rgb(4 6 8 / 94%) 43%, rgb(4 6 8 / 38%) 70%, rgb(4 6 8 / 86%) 100%); }
  body.site-routed #loja .storefront-copy { width: 100%; min-height: 0; padding: 2rem 1.5rem 0; justify-content: flex-start; }
  body.site-routed #loja .storefront-copy h2 { max-width: 12ch; font-size: clamp(2.35rem, 8vw, 3.3rem); }
  body.site-routed #loja .storefront-trust { width: 100%; border-radius: 0; }
  body.site-routed #loja .store-toolbar { grid-template-columns: minmax(0, 1fr) auto; }
  body.site-routed #loja .store-filters { grid-column: 1 / -1; justify-content: flex-start; }
  body.site-routed #loja .store-catalog-shell { grid-template-columns: 1fr; }
  body.site-routed #loja .store-sidebar { display: none; }
}

@media (max-width: 640px) {
  body.site-routed #loja .storefront-hero { height: 42rem; }
  body.site-routed #loja .storefront-copy { padding-inline: 1.1rem; }
  body.site-routed #loja .storefront-actions { flex-direction: column; align-items: stretch; }
  body.site-routed #loja .storefront-actions .btn { justify-content: center; }
  body.site-routed #loja .storefront-trust { grid-template-columns: 1fr; }
  body.site-routed #loja .storefront-trust > span { min-height: 3.5rem; border-right: 0; border-bottom: 1px solid rgb(255 255 255 / 9%); }
  body.site-routed #loja .storefront-trust > span:last-child { border-bottom: 0; }
  body.site-routed #loja .store-grid { grid-template-columns: 1fr; }
  body.site-routed #loja .store-product { min-height: 0; }
  body.site-routed #loja .store-product__image.store-product__image--graphic { min-height: 13rem; }
}

/* Reforca a hierarquia do rodape e deixa o contato principal mais visivel. */
.site-routed .site-footer {
  padding-top: 0;
  background: #050708;
}

.site-routed .footer-shell {
  grid-template-columns: minmax(16rem, 1.05fr) minmax(8rem, 0.55fr) minmax(24rem, 1.35fr) minmax(17rem, 0.95fr);
  gap: clamp(1.4rem, 2.6vw, 3rem);
  padding: 3.6rem clamp(1.5rem, 4vw, 5rem) 3.2rem;
}

.site-routed .footer-brand img {
  width: 12rem;
}

.site-routed .footer-brand p {
  max-width: 25rem;
  margin-top: 1.1rem;
  font-size: 0.82rem;
}

.site-routed .footer-column > strong {
  margin-bottom: 1.1rem;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.site-routed .footer-links {
  gap: 0.82rem;
}

.site-routed .footer-solution-grid > a {
  min-height: 4.7rem;
  padding: 0.85rem 0.95rem;
}

.site-routed .footer-cta {
  min-height: 16rem;
  padding: 1.25rem 1.2rem;
  border: 1px solid rgb(255 122 26 / 72%);
  border-radius: 10px;
  background: #11100d;
  box-shadow: 0 1rem 2.5rem rgb(0 0 0 / 22%);
}

.site-routed .footer-cta > strong {
  max-width: 18rem;
  margin-top: 0.5rem;
  font-size: 1.12rem;
}

.site-routed .footer-cta > p {
  margin-top: 0.7rem;
  font-size: 0.74rem;
}

.site-routed .footer-cta > .footer-whatsapp {
  width: 100%;
  min-height: 3.45rem;
  margin-top: 1.1rem;
  border-color: #ff7a1a;
  background: #ff7a1a;
  color: #15100b;
}

.site-routed .footer-cta > .footer-whatsapp span {
  color: #15100b;
  font-size: 0.82rem;
}

.site-routed .footer-cta > .footer-whatsapp small {
  color: rgb(21 16 11 / 72%);
}

.footer-phone {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.7rem 0.75rem;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 7px;
  color: #dbe5e3;
  text-decoration: none;
}

.footer-phone:hover {
  border-color: rgb(80 217 157 / 60%);
  background: rgb(80 217 157 / 7%);
}

.footer-phone > svg {
  width: 1.05rem;
  height: 1.05rem;
  color: #55d99f;
}

.footer-phone > svg:last-child {
  width: 0.85rem;
  color: #8a969f;
}

.footer-phone span,
.footer-phone small,
.footer-phone strong {
  display: block;
}

.footer-phone small {
  color: #8d9a9e;
  font-size: 0.6rem;
}

.footer-phone strong {
  margin-top: 0.16rem;
  color: #f6fbf9;
  font-size: 0.78rem;
}

.site-routed .footer-email {
  margin-top: 0.9rem;
}

.site-routed .footer-bottom {
  min-height: 4.4rem;
  padding-block: 0.8rem;
  background: #030405;
}

@media (min-width: 981px) {
  .site-routed .footer-cta {
    margin-right: clamp(3.5rem, 5vw, 5rem);
  }
}

@media (max-width: 980px) {
  .site-routed .footer-cta {
    min-height: 0;
    padding: 1.2rem;
  }
}

@media (max-width: 640px) {
  .site-routed .footer-shell {
    gap: 2.2rem;
    padding: 2.8rem 1rem 2.2rem;
  }

  .site-routed .footer-brand img {
    width: 10.5rem;
  }

  .site-routed .footer-cta {
    margin-right: 0;
    padding: 1.15rem;
  }

  .footer-phone {
    max-width: 24rem;
  }
}

/* Acabamento final: o rodape precisa comecar como uma secao limpa e unica. */
body.site-routed .site-footer {
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid rgb(255 122 26 / 20%);
  background: #050708;
}

body.site-routed .site-footer .footer-shell {
  width: min(100%, 1280px);
  grid-template-columns: minmax(17rem, 1.08fr) minmax(8rem, 0.6fr) minmax(23rem, 1.38fr) minmax(17rem, 0.92fr);
  gap: clamp(1.8rem, 3vw, 3.4rem);
  padding: 4.2rem clamp(1.5rem, 4vw, 3.6rem) 3.6rem;
}

body.site-routed .site-footer .footer-cta {
  align-self: start;
  margin-right: 0;
}

body.site-routed .site-footer .footer-bottom {
  padding-inline: max(clamp(1.5rem, 4vw, 3.6rem), calc((100% - 1280px) / 2 + 1.5rem));
}

@media (max-width: 980px) {
  body.site-routed .site-footer .footer-shell {
    width: 100%;
    padding-block: 3rem 2.6rem;
  }
}

/* Hero final: mensagem clara, sem segundo acesso para a Chip. */
body.site-routed #inicio .hero-shell {
  display: block;
  width: min(980px, calc(100% - clamp(2rem, 7vw, 8rem)));
  min-height: min(760px, 100svh);
  margin-left: clamp(4.5rem, 7vw, 8.5rem);
  margin-right: auto;
  padding: clamp(7.5rem, 15vh, 10.5rem) 0 clamp(6rem, 12vh, 8rem);
}

body.site-routed #inicio .hero-copy {
  max-width: 44rem;
  padding: 0;
  transform: none;
}

body.site-routed #inicio .hero-copy::before,
body.site-routed #inicio .hero-copy::after { display: none; }

body.site-routed #inicio .hero-title {
  max-width: 12.8ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.2rem, 4.3vw, 5.15rem);
  font-weight: 760;
  line-height: 1.01;
  letter-spacing: -.045em;
  text-transform: none;
}

body.site-routed #inicio .hero-lead {
  max-width: 35rem;
  margin-bottom: 0;
  color: rgb(224 233 236 / 80%);
  font-size: clamp(1rem, 1.16vw, 1.2rem);
  line-height: 1.58;
}

body.site-routed #inicio .hero-actions { margin-top: 1.8rem; }
body.site-routed #inicio .hero-actions .btn { min-width: 0; }

@media (max-width: 720px) {
  body.site-routed #inicio .hero-shell {
    width: min(100% - 1.5rem, 640px);
    min-height: 100svh;
    margin-inline: auto;
    padding: 8.3rem 0 5.5rem;
  }

  body.site-routed #inicio .hero-copy { max-width: 33rem; }
  body.site-routed #inicio .hero-kicker { margin-bottom: .85rem; font-size: .64rem; }
  body.site-routed #inicio .hero-title { max-width: 10.7ch; font-size: clamp(2.75rem, 11vw, 3.55rem); }
  body.site-routed #inicio .hero-actions .btn { width: 100%; }
}

/* Grade final do rodape: esta regra fica por ultimo para vencer estilos antigos. */
body.site-routed .site-footer .footer-shell {
  display: grid !important;
  grid-template-columns:
    minmax(0, 1.02fr)
    minmax(7.5rem, 0.52fr)
    minmax(0, 1.32fr)
    minmax(17rem, 0.96fr) !important;
  gap: clamp(1.25rem, 2.4vw, 2.6rem) !important;
}

body.site-routed .site-footer .footer-explore {
  display: contents !important;
}

body.site-routed .site-footer .footer-shell > *,
body.site-routed .site-footer .footer-explore > * {
  min-width: 0;
  grid-column: auto !important;
  grid-row: auto !important;
}

@media (max-width: 1180px) {
  body.site-routed .site-footer .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  body.site-routed .site-footer .footer-shell {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* Override efetivo no fim: somente a composição em telas móveis. */
@media (max-width: 720px) {
  :root { --mobile-gutter: 1.25rem; }
  html { scroll-padding-top: calc(var(--topbar) + env(safe-area-inset-top)); }
  body.site-routed { overflow-x: clip; }
  body.site-routed #inicio,
  body.site-routed #inicio .hero-shell { min-height: 0; }
  body.site-routed #inicio .hero-shell { width: min(calc(100% - (var(--mobile-gutter) * 2)), 430px); margin-inline: auto; padding: calc(var(--topbar) + env(safe-area-inset-top) + 1rem) 0 1.25rem; }
  body.site-routed #inicio .hero-copy { width: 100%; max-width: none; }
  body.site-routed #inicio .hero-kicker { margin-bottom: .75rem; font-size: .64rem; }
  body.site-routed #inicio .hero-title { max-width: 18ch; margin-bottom: .85rem; font-size: clamp(2rem, 9.5vw, 2.85rem); line-height: .99; letter-spacing: -.045em; text-wrap: balance; }
  body.site-routed #inicio .hero-title .title-line { display: inline; white-space: normal; }
  body.site-routed #inicio .hero-lead { max-width: 33rem; font-size: clamp(.92rem, 4vw, 1rem); line-height: 1.5; }
  body.site-routed #inicio .hero-actions { display: grid; grid-template-columns: minmax(0, 1fr); gap: .7rem; width: 100%; margin-top: 1.15rem; }
  body.site-routed #inicio .hero-actions .btn,
  body.site-routed .footer-cta > .footer-whatsapp { width: 100%; min-height: 3.25rem; }
  body.site-routed #inicio .hero-partners { position: static; display: block; width: 100%; margin: 1.15rem 0 0; overflow: visible; transform: none; }
  body.site-routed #inicio .hero-partners__list { min-height: 3.65rem; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem 1rem; }
  body.site-routed #inicio .hero-partner { min-height: 3.45rem; grid-template-columns: 1.75rem minmax(0, 1fr); gap: .45rem; }
  body.site-routed #inicio .hero-partner__icon { width: 1.75rem; height: 1.75rem; }
  body.site-routed #inicio .hero-partner__icon svg { width: 1.18rem; height: 1.18rem; }
  body.site-routed #inicio .hero-partner strong { font-size: .8rem; }
  body.site-routed #inicio .hero-partner small { font-size: .56rem; line-height: 1.28; }

  body.site-routed .solutions-experience {
    min-height: 0;
    padding: 3.1rem var(--mobile-gutter) 1.25rem;
    overflow: hidden;
  }
  body.site-routed .solutions-stage {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.45rem;
  }
  body.site-routed .solutions-intro { padding-inline: 0; }
  body.site-routed .solutions-intro h2 { max-width: 12ch; font-size: clamp(2.1rem, 10vw, 2.75rem); line-height: 1; }
  body.site-routed .solutions-intro > p { max-width: 34rem; font-size: .94rem; line-height: 1.5; }
  body.site-routed .solutions-actions { display: grid; grid-template-columns: minmax(0, 1fr); gap: .7rem; }
  body.site-routed .solutions-actions .btn { width: 100%; min-width: 0; min-height: 3.25rem; }
  body.site-routed .solutions-orbit {
    display: grid;
    width: 100%;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem;
    aspect-ratio: auto;
  }
  body.site-routed .solutions-orbit .orbit-rings,
  body.site-routed .solutions-orbit .orbit-spokes { display: none; }
  body.site-routed .solutions-orbit .orbit-node-wheel { display: contents; animation: none; }
  body.site-routed .solution-core {
    position: relative;
    top: auto;
    left: auto;
    width: 7rem;
    grid-column: 1 / -1;
    justify-self: center;
    margin-bottom: .2rem;
    transform: none;
  }
  body.site-routed .solution-core__mark { width: 5rem; height: 4.55rem; }
  body.site-routed .solution-core__mark img { width: 16rem; }
  body.site-routed .solutions-orbit .orbit-node {
    position: relative;
    inset: auto;
    width: auto;
    min-width: 0;
    min-height: 8.7rem;
    align-content: center;
    padding: 1rem .72rem;
    border: 1px solid rgb(255 117 24 / 22%);
    border-radius: .65rem;
    background: linear-gradient(180deg, rgb(255 255 255 / 4%), transparent), rgb(5 7 9 / 78%);
    rotate: none;
    transform: none;
  }
  body.site-routed .solutions-orbit .orbit-node__icon { width: 3.4rem; }
  body.site-routed .solutions-orbit .orbit-node strong { font-size: .78rem; line-height: 1.2; }
  body.site-routed .solutions-orbit .orbit-node small { font-size: .66rem; line-height: 1.3; }
  body.site-routed .solutions-values { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin-top: 1.1rem; }
  body.site-routed .solutions-values article { min-height: 4.75rem; padding: .72rem .55rem; gap: .55rem; }
  body.site-routed .solutions-values article + article,
  body.site-routed .solutions-values article:nth-child(3),
  body.site-routed .solutions-values article:nth-child(4) { border-top: 1px solid rgb(255 255 255 / 11%); border-left: 0; }
  body.site-routed .solutions-values article:nth-child(even) { border-left: 1px solid rgb(255 255 255 / 11%); }
  body.site-routed .solutions-values strong { font-size: .72rem; line-height: 1.2; }
  body.site-routed .solutions-values p { font-size: .62rem; line-height: 1.3; }

  body.site-routed .contact {
    align-items: stretch;
    gap: 1rem;
    margin-inline: var(--mobile-gutter);
    padding: 1.25rem;
  }
  body.site-routed .contact h2 { max-width: 12ch; font-size: clamp(1.7rem, 8vw, 2.35rem); line-height: 1.05; }
  body.site-routed .contact-list { gap: .4rem; margin-top: .8rem; }
  body.site-routed .contact-list li { gap: .25rem .45rem; font-size: .82rem; }
  body.site-routed .contact-list span { min-width: 5.8rem; font-size: .66rem; }
  body.site-routed .service-model { margin-top: .65rem; padding: .65rem .75rem; font-size: .78rem !important; }
  body.site-routed .contact > .btn { width: 100%; min-height: 3.25rem; }

  body.site-routed .site-footer { padding-bottom: 0; }
  body.site-routed .site-footer .footer-shell { display: grid; width: min(calc(100% - (var(--mobile-gutter) * 2)), 430px); grid-template-columns: minmax(0, 1fr); gap: 1.25rem; margin-inline: auto; padding: 1.8rem 0 1.35rem; }
  body.site-routed .site-footer .footer-explore { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; padding: 0; }
  body.site-routed .footer-column > strong { margin-bottom: .7rem; }
  body.site-routed .footer-links { display: grid; grid-template-columns: minmax(0, 1fr); gap: .35rem; }
  body.site-routed .footer-links a { min-height: 2rem; padding-block: .2rem; font-size: .72rem; }
  body.site-routed .footer-solution-grid { grid-template-columns: minmax(0, 1fr); gap: .5rem; }
  body.site-routed .footer-solution-grid > a { min-height: 0; padding: .68rem .72rem; }
  body.site-routed .footer-solution-grid strong { font-size: .68rem; white-space: normal; }
  body.site-routed .footer-solution-grid small { font-size: .59rem; white-space: normal; }
  body.site-routed .footer-cta { min-height: 0; margin: 0; padding: 1rem; }
  body.site-routed .footer-cta > strong { font-size: 1.08rem; line-height: 1.3; }
  body.site-routed .footer-cta > p { font-size: .74rem; line-height: 1.5; }
  body.site-routed .footer-phone { min-height: 3rem; margin-top: .65rem; }
  body.site-routed .footer-email { margin-top: .75rem; overflow-wrap: anywhere; }
  body.site-routed .footer-bottom { display: grid; width: 100%; min-height: 0; grid-template-columns: minmax(0, 1fr); gap: .55rem; padding: 1rem var(--mobile-gutter) calc(2rem + env(safe-area-inset-bottom)); }
  body.site-routed .footer-trust { display: grid; gap: .5rem; }
  body.site-routed .footer-legal { display: flex; flex-wrap: wrap; gap: .45rem .8rem; white-space: normal; }
}

/* MOBILE-FOOTER-COMPACT-FINAL */
@media (max-width: 720px) {
  body.site-routed .site-footer .footer-shell {
    grid-template-areas: 'brand' 'cta' 'explore';
    gap: 1.35rem;
    padding-top: 1.7rem;
  }
  body.site-routed .footer-brand { grid-area: brand; gap: .72rem; }
  body.site-routed .footer-cta { grid-area: cta; padding: .95rem; }
  body.site-routed .footer-explore {
    grid-area: explore;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }
  body.site-routed .footer-column:first-child > strong,
  body.site-routed .footer-cta > p,
  body.site-routed .footer-solution-grid small { display: none; }
  body.site-routed .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem .5rem;
  }
  body.site-routed .footer-links a {
    min-height: 0;
    padding: .3rem .5rem;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 999px;
    background: rgb(255 255 255 / 3%);
    font-size: .66rem;
  }
  body.site-routed .footer-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
  }
  body.site-routed .footer-solution-grid > a {
    min-height: 4.65rem;
    padding: .65rem;
  }
  body.site-routed .footer-cta > strong { margin-bottom: .75rem; }
  body.site-routed .footer-whatsapp { min-height: 3rem !important; }
}

@media (max-width: 359px) {
  body.site-routed #inicio .hero-title { font-size: clamp(1.72rem, 8.4vw, 1.95rem); }
  body.site-routed #inicio .hero-title .title-line { white-space: normal; }
}

/* MOBILE-HERO-PREMIUM-FINAL: esta é a regra vencedora da abertura no telefone. */
@media (max-width: 720px) {
  body.site-routed #inicio {
    display: block;
    min-height: max(900px, 100svh);
    padding: 0;
    background: #030405;
  }
  body.site-routed #inicio .hero-bg img {
    opacity: 1;
    object-position: 60% center;
    filter: saturate(.98) contrast(1.13) brightness(.67);
    transform: scale(1.045);
  }
  body.site-routed #inicio::before {
    background:
      linear-gradient(180deg, rgb(1 3 4 / 74%) 0%, rgb(1 3 4 / 15%) 25%, rgb(1 3 4 / 12%) 49%, rgb(1 3 4 / 88%) 88%, #030405 100%),
      linear-gradient(90deg, rgb(1 3 4 / 48%) 0%, transparent 74%);
  }
  body.site-routed #inicio::after { display: none; }
  body.site-routed #inicio .hero-shell {
    position: relative;
    z-index: 1;
    display: block;
    width: min(calc(100% - 2rem), 430px);
    min-height: max(900px, 100svh);
    margin-inline: auto;
    padding: clamp(17rem, 37svh, 22rem) 0 0;
  }
  body.site-routed #inicio .hero-copy { max-width: none; padding: 0; }
  body.site-routed #inicio .hero-copy::before,
  body.site-routed #inicio .hero-copy::after,
  body.site-routed #inicio .hero-kicker,
  body.site-routed #inicio .hero-lead { display: none; }
  body.site-routed #inicio .hero-title {
    display: grid;
    max-width: none;
    margin: 0;
    font-size: clamp(2.75rem, 12.2vw, 3.55rem);
    line-height: .99;
    letter-spacing: -.058em;
    text-wrap: initial;
  }
  body.site-routed #inicio .hero-title .title-line { display: block; white-space: nowrap; text-wrap: nowrap; }
  body.site-routed #inicio .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: .8rem;
    margin-top: 2.2rem;
  }
  body.site-routed #inicio .hero-actions .btn {
    min-height: 4.35rem;
    padding-inline: 1rem;
    border-radius: .85rem;
    font-size: 1rem;
    font-weight: 850;
    letter-spacing: -.018em;
  }
  body.site-routed #inicio .hero-actions .btn svg { width: 1.45rem; height: 1.45rem; }
  body.site-routed #inicio .hero-partners {
    position: relative;
    z-index: 1;
    display: block;
    width: min(calc(100% - 2rem), 430px);
    margin: 4.25rem auto 0;
    overflow: visible;
    transform: none;
  }
  body.site-routed #inicio .hero-partners__list { display: grid; min-height: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
  body.site-routed #inicio .hero-partner:nth-child(1),
  body.site-routed #inicio .hero-partner:nth-child(2) { display: none; }
  body.site-routed #inicio .hero-partner {
    position: relative;
    min-height: 4.35rem;
    grid-template-columns: 2.25rem minmax(0, 1fr) auto;
    gap: .65rem;
    padding: 0 .65rem 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }
  body.site-routed #inicio .hero-partner:nth-child(3) { padding-right: 1rem; border-right: 1px solid rgb(255 117 24 / 62%); }
  body.site-routed #inicio .hero-partner:nth-child(4) { padding-left: 1rem; }
  body.site-routed #inicio .hero-partner::after { color: #fff; font-size: 2rem; font-weight: 300; line-height: 1; content: '›'; }
  body.site-routed #inicio .hero-partner__icon { width: 2.25rem; height: 2.25rem; border: 0; background: transparent; }
  body.site-routed #inicio .hero-partner__icon svg { width: 2rem; height: 2rem; stroke-width: 2; }
  body.site-routed #inicio .hero-partner strong { font-size: .96rem; line-height: 1.05; }
  body.site-routed #inicio .hero-partner small { margin-top: .24rem; color: #ff8c36; font-size: .62rem; font-weight: 800; line-height: 1.22; text-transform: uppercase; }
}

@media (max-width: 390px) {
  body.site-routed #inicio .hero-shell { padding-top: clamp(15rem, 34svh, 19rem); }
  body.site-routed #inicio .hero-title { font-size: clamp(2.48rem, 11.5vw, 2.95rem); }
  body.site-routed #inicio .hero-title .title-line { white-space: nowrap; }
  body.site-routed #inicio .hero-partners { margin-top: 3.4rem; }
  body.site-routed #inicio .hero-partner { grid-template-columns: 2rem minmax(0, 1fr) auto; gap: .45rem; }
  body.site-routed #inicio .hero-partner:nth-child(4) { padding-left: .7rem; }
  body.site-routed #inicio .hero-partner__icon { width: 2rem; height: 2rem; }
  body.site-routed #inicio .hero-partner__icon svg { width: 1.7rem; height: 1.7rem; }
  body.site-routed #inicio .hero-partner strong { font-size: .86rem; }
  body.site-routed #inicio .hero-partner small { font-size: .56rem; }
}
