:root {
  --bg: #07090c;
  --panel: #10151a;
  --panel-soft: #f3f6f7;
  --text: #172027;
  --muted: #5b6872;
  --line: #dce4e8;
  --white: #ffffff;
  --gold: #f5bd3f;
  --gold-dark: #cc8e15;
  --teal: #2aa198;
  --green: #25d366;
  --shadow: 0 20px 60px rgba(7, 9, 12, 0.18);
  --radius: 8px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.cursor-ready,
body.cursor-ready a,
body.cursor-ready button,
body.cursor-ready textarea {
  cursor: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 4px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
  backdrop-filter: blur(0);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 9, 12, 0.94);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 84px;
}

.brand img,
.footer-brand img {
  width: 190px;
  max-height: 74px;
  object-fit: contain;
}

.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold);
  outline: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 4px;
  font-weight: 800;
  transition: transform 180ms var(--ease-out), background 180ms ease, box-shadow 180ms ease;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--bg);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.12;
  background:
    linear-gradient(90deg, transparent 0, rgba(245, 189, 63, 0.18) 50%, transparent 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 86px);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  animation: signalSweep 9s linear infinite;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 9, 12, 0), rgba(7, 9, 12, 0.85));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0.78) 0%, rgba(7, 9, 12, 0.16) 32%, rgba(7, 9, 12, 0.14) 72%, rgba(7, 9, 12, 0.82) 100%),
    linear-gradient(90deg, rgba(7, 9, 12, 0.58) 0%, rgba(7, 9, 12, 0.22) 38%, rgba(7, 9, 12, 0.14) 72%, rgba(7, 9, 12, 0.34) 100%),
    url("../img/home-hero-integrated.webp") center / cover no-repeat;
  transform: translate3d(calc(var(--hero-x, 0) * 1px), calc(var(--hero-y, 0) * 1px), 0) scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 150px 0 90px;
}

.home-hero .hero-content {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  min-height: 92vh;
  padding: 112px 0 56px;
}

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

.home-hero .hero-copy-panel {
  display: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.home-hero h1 {
  max-width: 620px;
  font-size: 58px;
  line-height: 1.04;
}

.home-hero .hero-copy {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.hero-mindmap {
  position: relative;
  justify-self: center;
  width: min(82vw, 900px);
  margin-left: clamp(-92px, -5vw, -56px);
  min-height: 0;
  aspect-ratio: 560 / 460;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(calc(var(--hero-x, 0) * -0.35px), calc(var(--hero-y, 0) * -0.45px), 0);
  animation: mindmapReveal 900ms var(--ease-out) 320ms forwards;
  will-change: transform, opacity, filter;
}

.mindmap-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  opacity: 0.7;
  filter: drop-shadow(0 0 12px rgba(245, 189, 63, 0.13));
  mix-blend-mode: screen;
}

.mindmap-connection {
  fill: none;
  stroke: #f5bd3f;
  stroke: url(#mindmap-line);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 3 15;
  opacity: 0.34;
  animation: mindmapDash 18s linear infinite;
}

.connection-2,
.connection-5,
.connection-7,
.connection-8 {
  animation-duration: 16s;
}

.connection-3,
.connection-6 {
  animation-duration: 11s;
  animation-direction: reverse;
}

.mindmap-packet {
  fill: var(--gold);
  opacity: 0.66;
  filter: drop-shadow(0 0 8px rgba(245, 189, 63, 0.55));
}

.mindmap-core,
.mindmap-node {
  position: absolute;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.62);
}

.mindmap-core {
  left: 50%;
  top: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 182px;
  min-height: 182px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 9, 12, 0.38) 0%, rgba(7, 9, 12, 0.2) 52%, rgba(7, 9, 12, 0) 72%);
  text-align: center;
  translate: -50% -50%;
  animation: corePulse 4.8s ease-in-out infinite;
}

.mindmap-core::before,
.mindmap-core::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(245, 189, 63, 0.2);
  border-radius: inherit;
  pointer-events: none;
  animation: coreOrbit 6s ease-in-out infinite;
}

.mindmap-core::after {
  inset: -20px;
  border-color: rgba(42, 161, 152, 0.14);
  animation-delay: 1.6s;
}

.mindmap-core span,
.mindmap-node span {
  color: rgba(245, 189, 63, 0.82);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.mindmap-core strong {
  margin-top: 6px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.05;
}

.mindmap-core small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.35;
}

.mindmap-node {
  z-index: 4;
  display: grid;
  align-content: center;
  gap: 3px;
  width: 164px;
  min-height: 56px;
  padding: 6px 0 6px 20px;
  color: rgba(255, 255, 255, 0.76);
  translate: 0 0;
  animation: nodeFloat 6.6s ease-in-out infinite;
  transition: color 220ms ease, opacity 220ms ease, translate 220ms var(--ease-out);
}

.mindmap-node strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.mindmap-node::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 189, 63, 0.86);
  box-shadow: 0 0 14px rgba(245, 189, 63, 0.5);
}

.mindmap-node::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 18px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 189, 63, 0.42), rgba(42, 161, 152, 0));
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: left;
  transition: opacity 220ms ease, transform 220ms var(--ease-out);
}

.mindmap-node:hover,
.mindmap-node:focus-visible {
  color: var(--white);
  outline: none;
  translate: 0 -3px;
}

.mindmap-node:hover strong,
.mindmap-node:focus-visible strong {
  color: var(--white);
}

.mindmap-node:hover::after,
.mindmap-node:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.node-redes {
  left: 0;
  top: 10%;
}

.node-seguranca {
  right: 6%;
  top: 10%;
  animation-delay: -1.2s;
}

.node-suporte {
  right: 0;
  top: 42%;
  animation-delay: -2.1s;
}

.node-manutencao {
  right: 8%;
  bottom: 8%;
  animation-delay: -3s;
}

.node-monitoramento {
  left: 8%;
  bottom: 8%;
  animation-delay: -2.5s;
}

.node-diagnostico {
  left: 0;
  top: 42%;
  animation-delay: -0.8s;
}

.node-gamer {
  left: calc(50% - 82px);
  bottom: -1%;
  animation-delay: -3.6s;
}

.node-consoles {
  left: calc(50% - 82px);
  top: 9%;
  animation-delay: -4.1s;
}

.node-redes,
.node-monitoramento,
.node-diagnostico {
  padding: 6px 20px 6px 0;
  text-align: right;
}

.node-redes::before,
.node-monitoramento::before,
.node-diagnostico::before {
  left: auto;
  right: 0;
}

.node-redes::after,
.node-monitoramento::after,
.node-diagnostico::after {
  left: 18px;
  right: 20px;
  background: linear-gradient(270deg, rgba(245, 189, 63, 0.42), rgba(42, 161, 152, 0));
  transform-origin: right;
}

.node-gamer {
  padding: 12px 14px 6px;
  text-align: center;
}

.node-consoles {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 4px 14px 14px;
  text-align: center;
}

.node-consoles span,
.node-consoles strong {
  display: block;
  width: 100%;
  text-align: center;
}

.node-gamer::before,
.node-consoles::before {
  left: 50%;
  translate: -50% 0;
}

.node-gamer::before {
  top: -2px;
}

.node-consoles::before {
  top: auto;
  bottom: -2px;
}

.node-gamer::after,
.node-consoles::after {
  left: 22px;
  right: 22px;
  background: linear-gradient(90deg, rgba(42, 161, 152, 0), rgba(245, 189, 63, 0.42), rgba(42, 161, 152, 0));
  transform-origin: center;
}

.node-consoles::after {
  bottom: 4px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 180ms var(--ease-out), border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 12px 30px rgba(245, 189, 63, 0.22);
}

.btn-primary:hover,
.header-cta:hover {
  background: #ffd36b;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(245, 189, 63, 0.26);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-secondary.dark {
  color: var(--text);
  border-color: #c9d3d9;
  background: transparent;
}

.btn-secondary.dark:hover {
  color: var(--bg);
  border-color: var(--gold);
  background: #fff5dc;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 170px));
  gap: 12px;
  margin: 44px 0 0;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 220ms var(--ease-out), border-color 220ms ease, background 220ms ease;
}

.hero-metrics div:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 189, 63, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.hero-metrics dt {
  color: var(--gold);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.home-hero .hero-metrics {
  grid-template-columns: repeat(3, minmax(84px, max-content));
  gap: 0;
  width: fit-content;
  margin-top: 36px;
}

.home-hero .hero-metrics div {
  min-height: auto;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-hero .hero-metrics div:first-child {
  padding-left: 0;
}

.home-hero .hero-metrics div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.home-hero .hero-metrics div:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
}

.home-hero .hero-metrics dt {
  font-size: 25px;
}

.home-hero .hero-metrics dd {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 720px;
}

.section-heading h2,
.split-copy h2,
.contract-layout h2,
.contact-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-heading p,
.split-copy p,
.contract-layout p,
.contact-copy p {
  max-width: 690px;
  margin: 16px 0 0;
  color: var(--muted);
}

.service-band {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  isolation: isolate;
  min-height: 300px;
  overflow: hidden;
  padding: 0 0 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(42, 161, 152, 0.1), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f8fafb 100%);
  box-shadow: 0 12px 28px rgba(7, 9, 12, 0.06);
  transform-style: preserve-3d;
  transition: transform 360ms var(--ease-out), box-shadow 360ms ease, border-color 360ms ease, background 360ms ease;
  will-change: transform;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(245, 189, 63, 0.72), rgba(42, 161, 152, 0.55), rgba(245, 189, 63, 0.72)) top / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(42, 161, 152, 0.38), transparent 42%) right / 1px 100% no-repeat,
    linear-gradient(180deg, rgba(245, 189, 63, 0.34), transparent 52%) left / 1px 100% no-repeat;
  transform: scaleX(0.78);
  transition: opacity 280ms ease, transform 560ms var(--ease-out);
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(42, 161, 152, 0.16), transparent 34%),
    linear-gradient(115deg, transparent 10%, rgba(245, 189, 63, 0.18) 42%, rgba(42, 161, 152, 0.2) 50%, transparent 64%);
  background-size: 100% 100%, 230% 100%;
  background-position: center, -145% 0;
  transition: opacity 240ms ease, background-position 780ms var(--ease-out);
  pointer-events: none;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(-1.5deg);
  border-color: rgba(42, 161, 152, 0.45);
  box-shadow:
    0 26px 64px rgba(7, 9, 12, 0.15),
    0 0 0 1px rgba(245, 189, 63, 0.08),
    0 0 34px rgba(42, 161, 152, 0.11);
}

.service-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
  background-position: center, 135% 0;
}

.service-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0b0d10;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out), filter 700ms ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.065);
  filter: contrast(1.06) saturate(1.04);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 42px;
  margin: 24px 26px 24px;
  border-radius: 4px;
  background: #10151a;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(245, 189, 63, 0.1);
  transition: transform 320ms var(--ease-out), box-shadow 320ms ease, background 320ms ease;
}

.service-card:hover .service-icon {
  transform: translateY(-2px);
  background: #07090c;
  box-shadow:
    inset 0 0 0 1px rgba(245, 189, 63, 0.24),
    0 0 22px rgba(245, 189, 63, 0.16);
}

.service-card h3,
.service-card p,
.service-card a {
  margin-left: 26px;
  margin-right: 26px;
}

.service-card h3,
.contract-items h3,
.process-list h3 {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.25;
}

.service-card p,
.contract-items p,
.process-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.service-card a {
  display: inline-block;
  margin-top: 22px;
  color: #775000;
  font-weight: 800;
}

.service-card h3,
.service-card p,
.service-card a {
  margin-left: 26px;
  margin-right: 26px;
}

.split-section {
  background: var(--panel-soft);
}

.split-section.alt {
  background: var(--white);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 48px;
}

.split-section.alt .split-grid {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.check-list,
.compact-list {
  margin-top: 26px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #25313a;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 15px;
  height: 9px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
}

.feature-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #0b0d10;
  transition: transform 360ms var(--ease-out), box-shadow 360ms ease;
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.feature-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(7, 9, 12, 0.24);
}

.feature-image:hover img {
  transform: scale(1.045);
}

.contract-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 9, 12, 0.96), rgba(7, 9, 12, 0.88)),
    url("../img/suporte-real.webp") center / cover no-repeat;
}

.contract-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 50px;
}

.contract-layout h2,
.contract-layout p {
  color: var(--white);
}

.contract-layout p {
  color: rgba(255, 255, 255, 0.74);
}

.contract-items {
  display: grid;
  gap: 14px;
}

.contract-items article {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(42, 161, 152, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transition: transform 320ms var(--ease-out), border-color 320ms ease, background 320ms ease, box-shadow 320ms ease;
}

.contract-items article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 260ms var(--ease-out);
}

.contract-items article::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(120deg, transparent 12%, rgba(245, 189, 63, 0.2) 42%, rgba(42, 161, 152, 0.16) 50%, transparent 68%),
    linear-gradient(90deg, rgba(245, 189, 63, 0.42), transparent 48%, rgba(42, 161, 152, 0.32)) top / 100% 1px no-repeat;
  background-size: 230% 100%, 100% 1px;
  background-position: -150% 0, 0 0;
  transition: opacity 240ms ease, background-position 760ms var(--ease-out);
  pointer-events: none;
}

.contract-items article > * {
  position: relative;
  z-index: 1;
}

.contract-items article:hover {
  transform: translateX(8px) translateY(-2px);
  border-color: rgba(42, 161, 152, 0.46);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18), 0 0 28px rgba(42, 161, 152, 0.08);
}

.contract-items article:hover::before {
  transform: scaleY(1);
}

.contract-items article:hover::after {
  opacity: 1;
  background-position: 130% 0, 0 0;
}

.contract-items span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
}

.contract-items h3,
.contract-items p {
  color: var(--white);
}

.contract-items p {
  color: rgba(255, 255, 255, 0.72);
}

.compact-list {
  display: grid;
  gap: 12px;
}

.inline-actions {
  margin-top: 28px;
}

.compact-list div {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background:
    radial-gradient(circle at var(--mx, 10%) var(--my, 50%), rgba(245, 189, 63, 0.1), transparent 38%),
    #f8fafb;
  transition: transform 300ms var(--ease-out), box-shadow 300ms ease, background 300ms ease;
}

.compact-list div::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(115deg, transparent 16%, rgba(42, 161, 152, 0.13) 46%, transparent 68%);
  background-size: 220% 100%;
  background-position: -130% 0;
  transition: opacity 220ms ease, background-position 680ms var(--ease-out);
  pointer-events: none;
}

.compact-list div:hover {
  transform: translateX(6px);
  box-shadow: 0 16px 36px rgba(7, 9, 12, 0.07);
}

.compact-list div:hover::after {
  opacity: 1;
  background-position: 120% 0;
}

.compact-list div > * {
  position: relative;
  z-index: 1;
}

.compact-list strong,
.compact-list span {
  display: block;
}

.compact-list strong {
  color: var(--text);
  font-size: 17px;
}

.compact-list span {
  margin-top: 4px;
  color: var(--muted);
}

.process-section {
  background: #f8fafb;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.process-list li {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(42, 161, 152, 0.1), transparent 36%),
    var(--white);
  transition: transform 320ms var(--ease-out), box-shadow 320ms ease, border-color 320ms ease;
}

.process-list li::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(245, 189, 63, 0.44), rgba(42, 161, 152, 0.28), transparent) top / 100% 1px no-repeat,
    linear-gradient(115deg, transparent 14%, rgba(42, 161, 152, 0.14) 48%, transparent 68%);
  background-size: 100% 1px, 230% 100%;
  background-position: 0 0, -145% 0;
  transition: opacity 240ms ease, background-position 760ms var(--ease-out);
  pointer-events: none;
}

.process-list li > * {
  position: relative;
  z-index: 1;
}

.process-list li:hover {
  transform: translateY(-8px) rotateX(2deg);
  border-color: rgba(42, 161, 152, 0.42);
  box-shadow: 0 22px 48px rgba(7, 9, 12, 0.1), 0 0 26px rgba(42, 161, 152, 0.08);
}

.process-list li:hover::before {
  opacity: 1;
  background-position: 0 0, 130% 0;
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 4px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 900;
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: start;
  gap: 42px;
}

.contact-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(42, 161, 152, 0.1), transparent 38%),
    #f8fafb;
  box-shadow: 0 16px 40px rgba(7, 9, 12, 0.08);
  font-style: normal;
  transition: transform 320ms var(--ease-out), border-color 320ms ease, box-shadow 320ms ease;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(245, 189, 63, 0.44), rgba(42, 161, 152, 0.28), transparent) top / 100% 1px no-repeat,
    linear-gradient(115deg, transparent 12%, rgba(245, 189, 63, 0.12) 44%, rgba(42, 161, 152, 0.14) 52%, transparent 70%);
  background-size: 100% 1px, 230% 100%;
  background-position: 0 0, -145% 0;
  transition: opacity 240ms ease, background-position 760ms var(--ease-out);
  pointer-events: none;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(42, 161, 152, 0.34);
  box-shadow: 0 22px 52px rgba(7, 9, 12, 0.12), 0 0 26px rgba(42, 161, 152, 0.08);
}

.contact-card:hover::after {
  opacity: 1;
  background-position: 0 0, 130% 0;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card a,
.contact-card p {
  display: inline-block;
  margin: 4px 0 0;
  color: var(--text);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-grid nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-grid p {
  margin: 0;
  font-size: 14px;
}

.chatbot-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  color: var(--text);
}

.chatbot-launcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 58px;
  height: 58px;
  padding: 0 16px 0 10px;
  border: 1px solid rgba(245, 189, 63, 0.34);
  border-radius: 999px;
  background:
    radial-gradient(circle at 22% 18%, rgba(245, 189, 63, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(16, 21, 26, 0.98), rgba(7, 9, 12, 0.98));
  color: var(--white);
  box-shadow: 0 18px 42px rgba(7, 9, 12, 0.28);
  overflow: hidden;
  isolation: isolate;
}

.chatbot-launcher::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent, rgba(42, 161, 152, 0.22), transparent);
  transform: translateX(-110%);
  animation: chatbotSheen 4.2s ease-in-out infinite;
  z-index: -1;
}

.chatbot-launcher-orbit {
  position: absolute;
  inset: 8px auto auto 8px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(42, 161, 152, 0.38);
  border-radius: 50%;
  animation: chatbotOrbit 6s linear infinite;
}

.chatbot-launcher-orbit::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(245, 189, 63, 0.72);
}

.chatbot-launcher-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.chatbot-launcher-copy {
  position: relative;
  font-size: 13px;
  font-weight: 800;
}

.chatbot-unread {
  position: absolute;
  top: 4px;
  right: 6px;
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--bg);
  font-size: 11px;
  font-weight: 900;
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  display: flex;
  flex-direction: column;
  width: min(390px, calc(100vw - 36px));
  max-height: min(640px, calc(100vh - 132px));
  border: 1px solid rgba(245, 189, 63, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(16, 21, 26, 0.98), rgba(7, 9, 12, 0.96) 34%, rgba(255, 255, 255, 0.98) 34%);
  box-shadow: 0 24px 70px rgba(7, 9, 12, 0.36);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 16px, 0) scale(0.97);
  transform-origin: right bottom;
  transition: opacity 220ms ease, transform 260ms var(--ease-out);
}

.chatbot-widget.is-open .chatbot-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.chatbot-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  background:
    radial-gradient(circle at 92% 18%, rgba(42, 161, 152, 0.2), transparent 36%),
    linear-gradient(135deg, #10151a, #07090c);
  color: var(--white);
}

.chatbot-header span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.chatbot-header strong {
  display: block;
  font-size: 18px;
  line-height: 1.15;
}

.chatbot-header small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.chatbot-close {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
}

.chatbot-log {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 245px;
  padding: 16px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    repeating-linear-gradient(90deg, rgba(42, 161, 152, 0.08) 0 1px, transparent 1px 34px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.chatbot-message {
  display: flex;
  animation: chatbotMessageIn 260ms var(--ease-out) both;
}

.chatbot-message.is-user {
  justify-content: flex-end;
}

.chatbot-bubble {
  max-width: 88%;
  padding: 11px 12px;
  border: 1px solid rgba(220, 228, 232, 0.9);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  box-shadow: 0 10px 28px rgba(7, 9, 12, 0.08);
  font-size: 14px;
  line-height: 1.45;
}

.chatbot-message.is-user .chatbot-bubble {
  border-color: rgba(245, 189, 63, 0.32);
  background: var(--panel);
  color: var(--white);
}

.chatbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 126px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  overflow-y: auto;
}

.chatbot-quick button {
  padding: 8px 10px;
  border: 1px solid rgba(204, 142, 21, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(245, 189, 63, 0.12), rgba(245, 189, 63, 0.04)),
    var(--white);
  color: #7a520a;
  font-size: 12px;
  font-weight: 900;
  transition: transform 180ms var(--ease-out), border-color 180ms ease, background 180ms ease;
}

.chatbot-quick button:hover,
.chatbot-quick button:focus-visible {
  border-color: var(--gold);
  background: rgba(245, 189, 63, 0.2);
  transform: translateY(-1px);
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.chatbot-form textarea {
  width: 100%;
  min-height: 42px;
  max-height: 118px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafb;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  line-height: 1.35;
  resize: none;
  outline: none;
}

.chatbot-form textarea:focus {
  border-color: rgba(42, 161, 152, 0.62);
  box-shadow: 0 0 0 3px rgba(42, 161, 152, 0.12);
}

.chatbot-form button {
  align-self: end;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--bg);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(245, 189, 63, 0.22);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 180ms ease, width 180ms var(--ease-out), height 180ms var(--ease-out), border-color 180ms ease, background 180ms ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(245, 189, 63, 0.65);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(245, 189, 63, 0.78);
  border-radius: 50%;
  background: rgba(245, 189, 63, 0.04);
  backdrop-filter: blur(2px);
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-ring {
  width: 62px;
  height: 62px;
  border-color: rgba(42, 161, 152, 0.86);
  background: rgba(42, 161, 152, 0.08);
}

body.cursor-down .cursor-ring {
  width: 28px;
  height: 28px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 760ms var(--ease-out),
    transform 760ms var(--ease-out),
    filter 760ms var(--ease-out);
  transition-delay: var(--stagger, 0ms);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.service-card[data-animate],
.contract-items article[data-animate],
.compact-list > div[data-animate],
.process-list li[data-animate],
.contact-card[data-animate] {
  transform: translateY(34px) perspective(900px) rotateX(7deg) scale(0.965);
}

.service-card[data-animate].is-visible:not(:hover),
.contract-items article[data-animate].is-visible:not(:hover),
.compact-list > div[data-animate].is-visible:not(:hover),
.process-list li[data-animate].is-visible:not(:hover),
.contact-card[data-animate].is-visible:not(:hover) {
  transform: translateY(0) perspective(900px) rotateX(0) scale(1);
}

.service-card[data-animate].is-visible:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(-1.5deg);
}

.contract-items article[data-animate].is-visible:hover {
  transform: translateX(8px) translateY(-2px);
}

.compact-list > div[data-animate].is-visible:hover {
  transform: translateX(6px);
}

.process-list li[data-animate].is-visible:hover {
  transform: translateY(-8px) rotateX(2deg);
}

.contact-card[data-animate].is-visible:hover {
  transform: translateY(-6px);
}

@keyframes heroDrift {
  from {
    transform: translate3d(calc(var(--hero-x, 0) * 1px), calc(var(--hero-y, 0) * 1px), 0) scale(1.04);
  }
  to {
    transform: translate3d(calc(var(--hero-x, 0) * 1px + 12px), calc(var(--hero-y, 0) * 1px - 8px), 0) scale(1.075);
  }
}

@keyframes signalSweep {
  from {
    background-position: -55vw 0, 0 0;
  }
  to {
    background-position: 55vw 0, 86px 0;
  }
}

@keyframes mindmapReveal {
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes mindmapDash {
  to {
    stroke-dashoffset: -220;
  }
}

@keyframes topologyReveal {
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes cableFlow {
  to {
    stroke-dashoffset: -180;
  }
}

@keyframes corePulse {
  0%,
  100% {
    filter: drop-shadow(0 0 12px rgba(245, 189, 63, 0.14));
  }
  50% {
    filter: drop-shadow(0 0 22px rgba(42, 161, 152, 0.18));
  }
}

@keyframes coreOrbit {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.78;
    transform: scale(1.04);
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    opacity: 0.74;
    filter: drop-shadow(0 0 0 rgba(245, 189, 63, 0));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(245, 189, 63, 0.12));
  }
}

@keyframes chatbotSheen {
  0%,
  42% {
    transform: translateX(-110%);
  }
  58%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes chatbotOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes chatbotMessageIn {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.network-hero .hero-media {
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0.74) 0%, rgba(7, 9, 12, 0.08) 31%, rgba(7, 9, 12, 0.1) 70%, rgba(7, 9, 12, 0.82) 100%),
    radial-gradient(circle at 46% 50%, rgba(7, 9, 12, 0.02) 0%, rgba(7, 9, 12, 0.12) 42%, rgba(7, 9, 12, 0.54) 100%),
    linear-gradient(90deg, rgba(7, 9, 12, 0.14) 0%, rgba(7, 9, 12, 0.06) 32%, rgba(7, 9, 12, 0.1) 66%, rgba(7, 9, 12, 0.44) 100%),
    url("../img/redes-hero-cable-map-v3.png") center / cover no-repeat;
}

.network-hero .hero-content {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  min-height: 92vh;
  padding: 118px 0 66px;
}

.network-copy-panel {
  display: none;
}

.network-hero .hero-copy {
  max-width: 640px;
}

.network-hero .hero-metrics {
  grid-template-columns: repeat(3, minmax(92px, max-content));
  gap: 0;
  width: fit-content;
}

.network-hero .hero-metrics div {
  min-height: auto;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.network-hero .hero-metrics div:first-child {
  padding-left: 0;
}

.network-hero .hero-metrics div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.network-hero .hero-metrics div:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
}

.network-hero .hero-metrics dt {
  font-size: 25px;
}

.network-hero .hero-metrics dd {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.network-topology {
  position: relative;
  justify-self: center;
  width: min(84vw, 900px);
  margin-left: clamp(-72px, -4.2vw, -34px);
  min-height: 0;
  aspect-ratio: 560 / 440;
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(calc(var(--hero-x, 0) * -0.28px), calc(var(--hero-y, 0) * -0.4px), 0);
  animation: topologyReveal 860ms var(--ease-out) 300ms forwards;
  will-change: transform, opacity, filter;
}

.topology-cables {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  opacity: 0.68;
  filter: drop-shadow(0 0 12px rgba(245, 189, 63, 0.14));
  mix-blend-mode: screen;
}

.topology-cable {
  fill: none;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 3 15;
  opacity: 0.42;
  animation: cableFlow 12s linear infinite;
}

.cable-gold {
  stroke: #f5bd3f;
  stroke: url(#topology-cable-gold);
}

.cable-blue {
  stroke: #2aa198;
  stroke: url(#topology-cable-blue);
  opacity: 0.48;
  animation-duration: 15s;
  animation-direction: reverse;
}

.topology-packet {
  opacity: 0.78;
  filter: drop-shadow(0 0 10px rgba(245, 189, 63, 0.75));
}

.packet-gold {
  fill: var(--gold);
}

.packet-blue {
  fill: #7bbcff;
  filter: drop-shadow(0 0 10px rgba(123, 188, 255, 0.65));
}

.topology-node {
  position: absolute;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 3px;
  width: 150px;
  min-height: 54px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
  cursor: pointer;
  animation: nodeFloat 6.8s ease-in-out infinite;
}

.topology-node::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 189, 63, 0.9);
  box-shadow: 0 0 15px rgba(245, 189, 63, 0.55);
}

.topology-node::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 18px;
  bottom: 3px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 189, 63, 0.42), rgba(42, 161, 152, 0));
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: opacity 220ms ease, transform 220ms var(--ease-out);
}

.topology-node span {
  color: rgba(245, 189, 63, 0.86);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.topology-node strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.2;
}

.topology-node:hover,
.topology-node:focus-visible {
  color: var(--white);
  outline: none;
}

.topology-node:hover::after,
.topology-node:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.topology-node:focus-visible::before {
  box-shadow: 0 0 0 5px rgba(245, 189, 63, 0.18), 0 0 18px rgba(245, 189, 63, 0.68);
}

#escopo-tecnico,
#diagnostico-desenho,
#implantacao-redes,
#operacao-sla,
#wifi-cabeamento,
#seguranca-continuidade,
#contato {
  scroll-margin-top: 128px;
}

.topology-core {
  left: 50%;
  top: 50%;
  z-index: 3;
  place-items: center;
  width: 172px;
  min-height: 172px;
  padding: 0;
  border: 1px solid rgba(245, 189, 63, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 9, 12, 0.36) 0%, rgba(7, 9, 12, 0.14) 56%, rgba(7, 9, 12, 0) 72%);
  text-align: center;
  translate: -50% -50%;
  animation: corePulse 5.4s ease-in-out infinite;
}

.topology-core::before {
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  translate: -50% -50%;
}

.topology-core::after {
  display: none;
}

.topology-core strong {
  font-size: 18px;
}

.topology-wifi {
  left: 6%;
  top: 10%;
  animation-delay: -0.8s;
}

.topology-firewall {
  right: 6%;
  top: 10%;
  animation-delay: -1.8s;
}

.topology-vlans {
  right: 0;
  top: 42%;
  animation-delay: -2.6s;
}

.topology-vpn {
  left: 0;
  top: 42%;
  animation-delay: -1.1s;
}

.topology-noc {
  left: 8%;
  bottom: 8%;
  animation-delay: -3.2s;
}

.topology-access {
  right: 8%;
  bottom: 8%;
  animation-delay: -2s;
}

.topology-wifi,
.topology-vpn,
.topology-noc {
  padding: 6px 20px 6px 0;
  text-align: right;
}

.topology-wifi::before,
.topology-vpn::before,
.topology-noc::before {
  left: auto;
  right: 0;
}

.topology-wifi::after,
.topology-vpn::after,
.topology-noc::after {
  left: 18px;
  right: 20px;
  background: linear-gradient(270deg, rgba(245, 189, 63, 0.42), rgba(42, 161, 152, 0));
  transform-origin: right;
}

.gamer-hero .hero-media {
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0.82) 0%, rgba(7, 9, 12, 0.08) 30%, rgba(7, 9, 12, 0.12) 68%, rgba(7, 9, 12, 0.9) 100%),
    radial-gradient(circle at 75% 48%, rgba(245, 189, 63, 0.16) 0%, rgba(7, 9, 12, 0.04) 36%, rgba(7, 9, 12, 0.5) 100%),
    linear-gradient(90deg, rgba(7, 9, 12, 0.64) 0%, rgba(7, 9, 12, 0.36) 42%, rgba(7, 9, 12, 0.08) 68%, rgba(7, 9, 12, 0.28) 100%),
    url("../img/pc-gamer-brand-map-hero.webp") center / cover no-repeat;
}

.gamer-hero .hero-content {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center start;
  min-height: 92vh;
  padding: 112px 0 58px;
}

.gamer-copy-panel {
  display: none;
}

.gamer-map {
  position: relative;
  justify-self: start;
  width: min(52vw, 690px);
  margin-left: clamp(-30px, -1.8vw, -10px);
  min-height: 0;
  aspect-ratio: 560 / 440;
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(calc(var(--hero-x, 0) * -0.22px), calc(var(--hero-y, 0) * -0.35px), 0);
  animation: topologyReveal 860ms var(--ease-out) 260ms forwards;
  will-change: transform, opacity, filter;
}

.gamer-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  opacity: 0.74;
  filter: drop-shadow(0 0 12px rgba(245, 189, 63, 0.2));
  mix-blend-mode: screen;
}

.gamer-connection {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 4 14;
  opacity: 0.5;
  animation: cableFlow 12s linear infinite;
}

.gamer-line-teal {
  stroke: #f5bd3f;
  stroke: url(#gamer-line-teal);
}

.gamer-line-gold {
  stroke: #f5bd3f;
  stroke: url(#gamer-line-gold);
  animation-duration: 14s;
  animation-direction: reverse;
}

.gamer-packet {
  opacity: 0.82;
  filter: drop-shadow(0 0 10px rgba(245, 189, 63, 0.72));
}

.gamer-packet.teal {
  fill: var(--gold);
}

.gamer-packet.gold {
  fill: #ffd36b;
  filter: drop-shadow(0 0 10px rgba(255, 211, 107, 0.72));
}

.gamer-node {
  position: absolute;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 3px;
  width: 154px;
  min-height: 56px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
  cursor: pointer;
  animation: nodeFloat 6.8s ease-in-out infinite;
}

.gamer-node::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 189, 63, 0.94);
  box-shadow: 0 0 16px rgba(245, 189, 63, 0.62);
}

.gamer-node::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 18px;
  bottom: 3px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 189, 63, 0.48), rgba(255, 211, 107, 0));
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: opacity 220ms ease, transform 220ms var(--ease-out);
}

.gamer-node span {
  color: rgba(245, 189, 63, 0.94);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.gamer-node strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.2;
}

.gamer-node:hover,
.gamer-node:focus-visible {
  color: var(--white);
  outline: none;
}

.gamer-node:hover::after,
.gamer-node:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.gamer-node:focus-visible::before {
  box-shadow: 0 0 0 5px rgba(245, 189, 63, 0.18), 0 0 18px rgba(245, 189, 63, 0.68);
}

.gamer-core {
  left: 50%;
  top: 50%;
  z-index: 3;
  place-items: center;
  width: 174px;
  min-height: 174px;
  padding: 0;
  border: 1px solid rgba(245, 189, 63, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 9, 12, 0.42) 0%, rgba(7, 9, 12, 0.14) 58%, rgba(7, 9, 12, 0) 74%);
  text-align: center;
  translate: -50% -50%;
  animation: corePulse 5.4s ease-in-out infinite;
}

.gamer-core::before {
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(245, 189, 63, 0.64);
  translate: -50% -50%;
}

.gamer-core::after {
  display: none;
}

.gamer-core strong {
  font-size: 18px;
}

.gamer-montagem {
  left: 6%;
  top: 10%;
  animation-delay: -0.8s;
}

.gamer-manutencao {
  right: 6%;
  top: 10%;
  animation-delay: -1.7s;
}

.gamer-otimizacao {
  right: 0;
  top: 42%;
  animation-delay: -2.6s;
}

.gamer-pasta {
  left: 0;
  top: 42%;
  animation-delay: -1.2s;
}

.gamer-overclock {
  right: 8%;
  bottom: 8%;
  animation-delay: -3s;
}

.gamer-upgrade {
  left: 8%;
  bottom: 8%;
  animation-delay: -2.2s;
}

.gamer-montagem,
.gamer-pasta,
.gamer-upgrade {
  padding: 6px 20px 6px 0;
  text-align: right;
}

.gamer-montagem::before,
.gamer-pasta::before,
.gamer-upgrade::before {
  left: auto;
  right: 0;
}

.gamer-montagem::after,
.gamer-pasta::after,
.gamer-upgrade::after {
  left: 18px;
  right: 20px;
  background: linear-gradient(270deg, rgba(245, 189, 63, 0.48), rgba(255, 211, 107, 0));
  transform-origin: right;
}

.console-hero .hero-media {
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0.72) 0%, rgba(7, 9, 12, 0.08) 28%, rgba(7, 9, 12, 0.18) 68%, rgba(7, 9, 12, 0.9) 100%),
    radial-gradient(circle at 38% 54%, rgba(245, 189, 63, 0.1) 0%, rgba(245, 189, 63, 0.02) 32%, rgba(7, 9, 12, 0.24) 62%, rgba(7, 9, 12, 0.68) 100%),
    linear-gradient(90deg, rgba(7, 9, 12, 0.04) 0%, rgba(7, 9, 12, 0.08) 42%, rgba(7, 9, 12, 0.28) 70%, rgba(7, 9, 12, 0.66) 100%),
    url("../img/consoles-hero-ultrareal.webp") center / cover no-repeat;
}

.console-hero .hero-content {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center end;
  min-height: 92vh;
  padding: 112px 0 58px;
}

.console-copy-panel {
  display: none;
}

.console-limpeza {
  left: 6%;
  top: 10%;
  animation-delay: -0.8s;
}

.console-pasta {
  right: 6%;
  top: 10%;
  animation-delay: -1.7s;
}

.console-refrigeracao {
  right: 0;
  top: 42%;
  animation-delay: -2.6s;
}

.console-diagnostico {
  left: 0;
  top: 42%;
  animation-delay: -1.2s;
}

.console-armazenamento {
  right: 8%;
  bottom: 8%;
  animation-delay: -3s;
}

.console-controles {
  left: 8%;
  bottom: 8%;
  animation-delay: -2.2s;
}

.console-limpeza,
.console-diagnostico,
.console-controles {
  padding: 6px 20px 6px 0;
  text-align: right;
}

.console-limpeza::before,
.console-diagnostico::before,
.console-controles::before {
  left: auto;
  right: 0;
}

.console-limpeza::after,
.console-diagnostico::after,
.console-controles::after {
  left: 18px;
  right: 20px;
  background: linear-gradient(270deg, rgba(99, 214, 209, 0.42), rgba(245, 189, 63, 0));
  transform-origin: right;
}

#escopo-gamer,
#montagem-gamer,
#manutencao-gamer,
#otimizacao-gamer,
#pasta-termica,
#overclock-upgrade,
#upgrade-gamer,
#escopo-consoles,
#limpeza-consoles,
#pasta-console,
#refrigeracao-console,
#diagnostico-console,
#armazenamento-console,
#controles-console,
#contato {
  scroll-margin-top: 128px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.detail-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 9, 12, 0.06);
  transition: transform 240ms var(--ease-out), box-shadow 240ms ease, border-color 240ms ease;
}

.detail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 189, 63, 0.38);
  box-shadow: 0 22px 46px rgba(7, 9, 12, 0.12);
}

.mini-service-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.mini-service-list li {
  position: relative;
  padding-left: 16px;
  color: #3e4a54;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.mini-service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(245, 189, 63, 0.48);
}

.detail-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 4px;
  background: var(--panel);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.detail-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}

.detail-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.tech-band {
  background: #0b1014;
  color: #fff;
}

.tech-band .section-heading h2,
.tech-band .section-heading p {
  color: #fff;
}

.tech-band .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.gamer-calculator-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(245, 189, 63, 0.16), transparent 32%),
    radial-gradient(circle at 86% 20%, rgba(42, 161, 152, 0.16), transparent 34%),
    #07090c;
  color: #fff;
  overflow: hidden;
}

.gamer-calculator-section .section-heading h2 {
  color: #fff;
}

.gamer-calculator-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.calculator-frame-wrap {
  margin-top: 34px;
  border: 1px solid rgba(245, 189, 63, 0.16);
  border-radius: var(--radius);
  background: #07090c;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.calculator-frame {
  display: block;
  width: 100%;
  height: 1900px;
  border: 0;
  background: #07090c;
}

.calculator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.tech-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.tech-list li {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 980px) {
  body.cursor-ready,
  body.cursor-ready a,
  body.cursor-ready button,
  body.cursor-ready textarea {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 74px;
  }

  .brand img {
    width: 158px;
    max-height: 62px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    right: 20px;
    left: auto;
    width: min(260px, calc(100vw - 40px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    color: var(--text);
    padding: 14px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding: 118px 0 70px;
  }

  .home-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .network-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .gamer-hero .hero-content,
  .console-hero .hero-content {
    grid-template-columns: 1fr;
    place-items: center;
    gap: 0;
  }

  .hero-mindmap {
    justify-self: center;
    width: min(100%, 760px);
    margin-left: 0;
    min-height: 0;
    aspect-ratio: 560 / 460;
    transform: none;
  }

  .network-topology {
    justify-self: center;
    width: min(100%, 760px);
    margin-left: 0;
    min-height: 0;
    aspect-ratio: 560 / 440;
    transform: none;
  }

  .gamer-map {
    justify-self: center;
    width: min(100%, 760px);
    min-height: 0;
    aspect-ratio: 560 / 440;
    transform: none;
  }

  .hero h1 {
    font-size: 48px;
  }

  .home-hero h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .service-grid,
  .detail-grid,
  .split-grid,
  .split-section.alt .split-grid,
  .contract-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-list {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    justify-self: center;
  }

  .calculator-frame {
    height: 2320px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .calculator-frame {
    height: 2620px;
  }

  .calculator-actions {
    display: grid;
  }

  .hero h1 {
    font-size: 38px;
  }

  .home-hero .hero-content {
    padding: 102px 0 42px;
    gap: 0;
  }

  .network-hero .hero-content {
    padding: 96px 0 36px;
    gap: 18px;
  }

  .gamer-hero .hero-content,
  .console-hero .hero-content {
    padding: 98px 0 38px;
    gap: 0;
  }

  .home-hero h1 {
    font-size: 34px;
  }

  .network-hero h1 {
    font-size: 31px;
    line-height: 1.06;
  }

  .hero-copy {
    font-size: 16px;
  }

  .network-hero .hero-copy {
    margin-top: 16px;
    font-size: 15px;
  }

  .hero-mindmap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin-left: 0;
    min-height: 0;
    aspect-ratio: auto;
    transform: none;
  }

  .mindmap-lines {
    display: none;
  }

  .network-topology {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin-left: 0;
    min-height: 0;
    transform: none;
  }

  .gamer-map {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    min-height: 0;
    aspect-ratio: auto;
    transform: none;
  }

  .topology-cables,
  .gamer-lines {
    display: none;
  }

  .mindmap-core,
  .mindmap-node,
  .topology-node,
  .gamer-node {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 78px;
    translate: 0 0;
  }

  .topology-node,
  .gamer-node {
    min-height: 52px;
    padding: 10px 12px 10px 18px;
    text-align: left;
  }

  .mindmap-core {
    grid-column: 1 / -1;
    min-height: 88px;
    padding: 16px;
    border-radius: var(--radius);
    background: linear-gradient(90deg, rgba(7, 9, 12, 0.34), rgba(7, 9, 12, 0.08));
  }

  .mindmap-core::before,
  .mindmap-core::after {
    inset: -7px;
    border-radius: var(--radius);
  }

  .mindmap-core strong {
    font-size: 21px;
  }

  .topology-core,
  .gamer-core {
    grid-column: 1 / -1;
    min-height: 68px;
    border-radius: var(--radius);
    background: linear-gradient(90deg, rgba(7, 9, 12, 0.34), rgba(7, 9, 12, 0.08));
  }

  .topology-core strong,
  .gamer-core strong {
    font-size: 15px;
  }

  .mindmap-core small {
    font-size: 11px;
  }

  .mindmap-node {
    min-height: 70px;
    padding: 12px 14px;
    text-align: left;
  }

  .mindmap-node strong {
    font-size: 13px;
  }

  .topology-node strong,
  .gamer-node strong {
    font-size: 12px;
  }

  .mindmap-node::before {
    left: 0;
    right: auto;
    top: 16px;
    translate: 0 0;
  }

  .node-gamer::before,
  .node-consoles::before {
    left: 0;
    top: 16px;
    bottom: auto;
    translate: 0 0;
  }

  .node-redes::after,
  .node-consoles::after,
  .node-monitoramento::after,
  .node-diagnostico::after {
    left: 20px;
    right: 18px;
    background: linear-gradient(90deg, rgba(245, 189, 63, 0.42), rgba(42, 161, 152, 0));
    transform-origin: left;
  }

  .topology-node::before,
  .gamer-node::before {
    left: 0;
    right: auto;
    top: 18px;
    translate: 0 0;
  }

  .topology-wifi::after,
  .topology-vpn::after,
  .topology-noc::after {
    left: 20px;
    right: 18px;
    background: linear-gradient(90deg, rgba(245, 189, 63, 0.42), rgba(42, 161, 152, 0));
    transform-origin: left;
  }

  .gamer-montagem::after,
  .gamer-pasta::after,
  .gamer-upgrade::after {
    left: 20px;
    right: 18px;
    background: linear-gradient(90deg, rgba(245, 189, 63, 0.48), rgba(255, 211, 107, 0));
    transform-origin: left;
  }

  .console-limpeza::after,
  .console-diagnostico::after,
  .console-controles::after {
    left: 20px;
    right: 18px;
    background: linear-gradient(90deg, rgba(99, 214, 209, 0.42), rgba(245, 189, 63, 0));
    transform-origin: left;
  }

  .topology-core::before,
  .gamer-core::before {
    left: 12px;
    top: 18px;
    translate: 0 0;
  }

  .topology-node::after,
  .gamer-node::after {
    opacity: 0.6;
    transform: scaleX(1);
  }

  .node-monitoramento,
  .node-diagnostico {
    display: none;
  }

  .topology-vpn,
  .topology-noc {
    display: none;
  }

  .home-hero .hero-actions,
  .network-hero .hero-actions {
    flex-direction: row;
    gap: 8px;
    margin-top: 22px;
  }

  .home-hero .hero-actions .btn,
  .network-hero .hero-actions .btn {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 42px;
    padding: 0 10px;
    font-size: 13px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 20px;
  }

  .network-hero .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin-top: 20px;
  }

  .hero-metrics div {
    min-height: 66px;
    padding: 10px 8px;
  }

  .network-hero .hero-metrics div {
    padding: 0 8px;
  }

  .hero-metrics dt {
    font-size: 20px;
  }

  .hero-metrics dd {
    margin-top: 6px;
    font-size: 10px;
  }

  .home-hero .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin-top: 18px;
  }

  .home-hero .hero-metrics div {
    padding: 0 8px;
  }

  .home-hero .hero-metrics dt {
    font-size: 18px;
  }

  .network-hero .hero-metrics dt {
    font-size: 18px;
  }

  .home-hero .hero-metrics dd {
    font-size: 10px;
  }

  .network-hero .hero-metrics dd {
    font-size: 10px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .split-copy h2,
  .contract-layout h2,
  .contact-copy h2 {
    font-size: 30px;
  }

  .service-grid,
  .detail-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .contact-card {
    padding: 22px;
  }

  .service-card {
    padding: 0 0 22px;
  }

  .service-card h3,
  .service-card p,
  .service-card a {
    margin-left: 22px;
    margin-right: 22px;
  }

  .service-icon {
    margin-left: 22px;
    margin-right: 22px;
  }
}

@media (max-width: 420px) {
  .hero-mindmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mindmap-node {
    padding-inline: 12px;
  }
}

@media (max-width: 760px) {
  .home-hero,
  .network-hero {
    min-height: 100svh;
  }

  .home-hero .hero-media,
  .network-hero .hero-media {
    transform: none;
    animation: none;
  }

  .home-hero .hero-media {
    background-position: 58% center;
  }

  .network-hero .hero-media {
    background-position: 42% center;
  }

  .home-hero .hero-content,
  .network-hero .hero-content {
    align-content: start;
    justify-items: stretch;
    min-height: 100svh;
    padding: 88px 0 36px;
  }

  .hero-mindmap,
  .network-topology {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 430px);
    margin: clamp(44px, 7svh, 72px) auto 0;
    gap: 10px;
    aspect-ratio: auto;
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }

  .network-topology {
    margin-top: clamp(58px, 9svh, 92px);
  }

  .mindmap-lines,
  .topology-cables {
    display: none;
  }

  .mindmap-core,
  .mindmap-node,
  .topology-node {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 64px;
    translate: 0 0;
    animation: none;
    filter: none;
  }

  .mindmap-core,
  .topology-core {
    grid-column: 1 / -1;
    order: 0;
    min-height: 90px;
    padding: 16px;
    border: 1px solid rgba(245, 189, 63, 0.2);
    border-radius: var(--radius);
    background:
      linear-gradient(90deg, rgba(7, 9, 12, 0.66), rgba(7, 9, 12, 0.34)),
      radial-gradient(circle at 50% 50%, rgba(42, 161, 152, 0.14), rgba(7, 9, 12, 0));
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
    text-align: center;
  }

  .mindmap-core::before,
  .mindmap-core::after {
    inset: -5px;
    border-radius: var(--radius);
    animation: none;
  }

  .topology-core::before {
    left: 14px;
    top: 22px;
    translate: 0 0;
  }

  .mindmap-core strong {
    font-size: 22px;
  }

  .mindmap-core small {
    font-size: 11px;
  }

  .topology-core strong {
    font-size: 16px;
  }

  .mindmap-node,
  .topology-node {
    display: grid;
    align-content: center;
    min-height: 66px;
    padding: 12px 12px 12px 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(7, 9, 12, 0.64), rgba(7, 9, 12, 0.28));
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    text-align: left;
    overflow: hidden;
  }

  .topology-wifi,
  .topology-vpn,
  .topology-noc {
    padding: 12px 12px 12px 34px;
    text-align: left;
  }

  .mindmap-node::before,
  .topology-node::before {
    left: 13px;
    right: auto;
    top: 18px;
    width: 8px;
    height: 8px;
    translate: 0 0;
  }

  .mindmap-node::after,
  .topology-node::after,
  .topology-wifi::after,
  .topology-vpn::after,
  .topology-noc::after {
    left: 34px;
    right: 12px;
    bottom: 10px;
    opacity: 0.6;
    transform: scaleX(1);
    transform-origin: left;
    background: linear-gradient(90deg, rgba(245, 189, 63, 0.42), rgba(42, 161, 152, 0));
  }

  .mindmap-node span,
  .topology-node span {
    font-size: 10px;
  }

  .mindmap-node strong,
  .topology-node strong {
    font-size: 13px;
    line-height: 1.18;
  }

  .node-redes,
  .topology-wifi {
    order: 1;
  }

  .node-seguranca,
  .topology-firewall {
    order: 2;
  }

  .node-suporte,
  .topology-vlans {
    order: 3;
  }

  .node-manutencao,
  .topology-access {
    order: 4;
  }

  .node-gamer {
    order: 5;
  }

  .node-consoles {
    order: 6;
    display: grid;
    align-content: center;
    justify-content: stretch;
    gap: 0;
    padding: 12px 12px 12px 34px;
    text-align: left;
  }

  .node-consoles span,
  .node-consoles strong {
    width: auto;
    text-align: left;
  }

  .node-consoles::before {
    left: 13px;
    right: auto;
    top: 18px;
    bottom: auto;
    translate: 0 0;
  }

  .node-consoles::after {
    left: 34px;
    right: 12px;
    bottom: 10px;
    transform-origin: left;
    background: linear-gradient(90deg, rgba(245, 189, 63, 0.42), rgba(42, 161, 152, 0));
  }

  .node-monitoramento,
  .node-diagnostico,
  .topology-vpn,
  .topology-noc {
    display: none;
  }

  .chatbot-widget {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
  }

  .chatbot-launcher {
    width: 52px;
    min-width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
  }

  .chatbot-launcher-copy {
    display: none;
  }

  .chatbot-launcher-orbit {
    inset: 7px auto auto 7px;
    width: 38px;
    height: 38px;
  }

  .chatbot-launcher-icon {
    width: 34px;
    height: 34px;
  }

  .chatbot-widget.is-open .chatbot-launcher {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.92);
  }

  .chatbot-panel {
    position: fixed;
    right: 14px;
    left: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: auto;
    max-height: calc(100vh - 52px);
    transform-origin: right bottom;
  }

  .chatbot-log {
    min-height: 220px;
    padding: 14px;
  }

  .chatbot-form {
    grid-template-columns: 1fr;
  }

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

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

  [data-animate] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-mindmap {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .network-topology {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .gamer-map {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .mindmap-connection,
  .topology-cable,
  .gamer-connection {
    stroke-dasharray: none;
  }

  .mindmap-packet,
  .topology-packet,
  .gamer-packet {
    display: none;
  }
}
