@layer reset, base, components, utilities;

.page-home .legislation-inline-link {
  color: #55b9ff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.page-home .legislation-inline-link:hover {
  color: #8ed0ff;
}

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, p, ul, ol { margin: 0; }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button, input, textarea, select { font: inherit; }
}

@layer base {
  :root {
    --yellow: #f7c617;
    --yellow-bright: #ffdc35;
    --ink: #090a0c;
    --panel: #111317;
    --panel-2: #171a1f;
    --grey: #a9adb4;
    --silver: #d9dbdf;
    --white: #f7f8fa;
    --line: rgba(255, 255, 255, .11);
    --yellow-line: rgba(247, 198, 23, .3);
    --shell: min(1220px, calc(100vw - 48px));
    --display: "Segoe UI Variable Display", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    --body: "Segoe UI Variable Text", "Helvetica Neue", Arial, sans-serif;
  }

  body {
    min-width: 320px;
    background: var(--ink);
    color: var(--white);
    font-family: var(--body);
    line-height: 1.65;
    overflow-x: hidden;
  }

  body::before {
    position: fixed;
    inset: 0;
    z-index: -5;
    background:
      radial-gradient(circle at 14% 4%, rgba(247, 198, 23, .09), transparent 28rem),
      radial-gradient(circle at 88% 25%, rgba(255, 255, 255, .035), transparent 30rem),
      #090a0c;
    content: "";
  }

  ::selection { background: var(--yellow); color: #080808; }
  :focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; }
  .shell { width: var(--shell); margin-inline: auto; }
  .skip-link { position: fixed; top: -80px; left: 18px; z-index: 200; padding: 11px 16px; background: var(--yellow); color: #080808; font-weight: 800; }
  .skip-link:focus { top: 18px; }
}

@layer components {
  .site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background .35s ease, border-color .35s ease, transform .35s ease;
  }

  .site-header.scrolled {
    border-color: var(--line);
    background: rgba(9, 10, 12, .86);
    box-shadow: 0 12px 50px rgba(0, 0, 0, .22);
    backdrop-filter: blur(22px);
  }

  .header-row { display: grid; grid-template-columns: 230px 1fr auto; align-items: center; min-height: 92px; gap: 28px; }
  .brand { position: relative; width: 210px; }
  .brand img { width: 100%; height: auto; filter: drop-shadow(0 8px 22px rgba(0,0,0,.45)); }
  .brand::after { position: absolute; right: -13px; top: 50%; width: 4px; height: 4px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 12px var(--yellow); content: ""; }
  .desktop-nav { display: flex; justify-content: center; align-items: center; gap: clamp(14px, 2vw, 30px); }
  .desktop-nav > a, .nav-more > button {
    position: relative;
    border: 0;
    background: none;
    color: #c7c9ce;
    cursor: pointer;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s ease;
  }

  .desktop-nav > a::after {
    position: absolute;
    right: 50%;
    bottom: -13px;
    left: 50%;
    height: 2px;
    background: var(--yellow);
    box-shadow: 0 0 12px rgba(247, 198, 23, .7);
    content: "";
    transition: inset .25s ease;
  }

  .desktop-nav > a:hover, .desktop-nav > a[aria-current="page"], .nav-more > button:hover { color: var(--white); }
  .desktop-nav > a:hover::after, .desktop-nav > a[aria-current="page"]::after { right: 0; left: 0; }
  .nav-more { position: relative; padding-block: 20px; }
  .nav-more button span { margin-left: 5px; color: var(--yellow); }
  .nav-more > div {
    position: absolute;
    top: 56px;
    right: -22px;
    width: 200px;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(16, 18, 21, .97);
    box-shadow: 0 22px 60px rgba(0,0,0,.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav-more:hover > div, .nav-more:focus-within > div { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-more > div a { display: block; padding: 11px 12px; color: #c7c9ce; font-size: 12px; }
  .nav-more > div a:hover { background: rgba(247,198,23,.08); color: var(--yellow); }
  .header-actions { display: flex; align-items: center; gap: 12px; }
  .language-link {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--line);
    color: var(--silver);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    transition: border-color .2s, color .2s;
  }

  .language-link:hover { border-color: var(--yellow); color: var(--yellow); }
  .tracking-link {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(247,198,23,.25);
    color: var(--yellow);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .tracking-link i, .eyebrow i, .stage-head i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 4px rgba(247,198,23,.12), 0 0 16px rgba(247,198,23,.7);
    animation: pulse 2s ease-in-out infinite;
  }

  .tracking-link span { margin-left: 3px; }
  .menu-toggle { display: none; width: 44px; height: 40px; border: 1px solid var(--line); background: transparent; color: white; cursor: pointer; }
  .menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .25s; }
  .mobile-menu { display: none; }

  .hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
      linear-gradient(90deg, transparent 49.92%, rgba(255,255,255,.04) 50%, transparent 50.08%),
      linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 100% 100%, 76px 76px, 76px 76px;
  }

  .hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(9,10,12,.96) 0%, rgba(9,10,12,.84) 45%, rgba(9,10,12,.28) 100%);
    content: "";
  }

  .hero-home { min-height: 800px; padding-top: 94px; }
  .hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; min-height: 690px; gap: 50px; }
  .hero-copy { padding-block: 70px 85px; }
  .eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 22px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .18em;
    text-transform: uppercase;
  }

  .hero h1, .page-copy h2, .showcase-head h2, .closing-band h2 {
    font-family: var(--display);
    font-weight: 720;
    letter-spacing: -.055em;
    line-height: .97;
  }

  .hero-home h1 { max-width: 700px; font-size: clamp(54px, 5.3vw, 84px); text-wrap: balance; }
  .hero-home h1::after { color: var(--yellow); content: " /"; }
  .hero-lead { max-width: 650px; margin-top: 28px; color: #b4b7bd; font-size: clamp(17px, 1.55vw, 20px); line-height: 1.65; }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  }

  .button-primary { background: var(--yellow); color: #0a0a0a; box-shadow: 0 12px 40px rgba(247,198,23,.14); }
  .button-primary:hover { background: var(--yellow-bright); transform: translateY(-3px); }
  .button-primary span { font-size: 17px; }
  .button-ghost { border-color: var(--line); background: rgba(255,255,255,.025); color: var(--white); }
  .button-ghost:hover { border-color: rgba(247,198,23,.5); color: var(--yellow); }
  .hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 680px; margin-top: 58px; border-top: 1px solid var(--line); }
  .hero-metrics > div { position: relative; min-height: 112px; padding: 21px 18px 0 0; }
  .hero-metrics > div + div { padding-left: 24px; border-left: 1px solid var(--line); }
  .hero-metrics strong { font-family: var(--display); font-size: 31px; line-height: 1; letter-spacing: -.04em; }
  .hero-metrics sup { position: relative; top: -8px; color: var(--yellow); font-size: 14px; }
  .hero-metrics span { display: block; margin-top: 8px; color: #7e828a; font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }

  .network-stage {
    position: relative;
    width: min(100%, 580px);
    aspect-ratio: 1 / .95;
    justify-self: end;
    border: 1px solid var(--line);
    background:
      radial-gradient(circle at 50% 48%, rgba(247,198,23,.16), transparent 38%),
      linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
    box-shadow: inset 0 0 100px rgba(0,0,0,.55), 0 35px 90px rgba(0,0,0,.32);
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  }

  .stage-grid {
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 92%);
  }

  .stage-head { position: absolute; inset: 20px 20px auto; display: flex; justify-content: space-between; color: #7f838a; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
  .stage-head span { display: flex; align-items: center; gap: 10px; color: #c2c5ca; }
  .digital-globe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48%;
    aspect-ratio: 1;
    border: 1px solid rgba(247,198,23,.65);
    border-radius: 50%;
    background:
      radial-gradient(circle at 62% 36%, rgba(255,255,255,.13), transparent 25%),
      repeating-radial-gradient(circle at center, transparent 0 18px, rgba(247,198,23,.07) 19px 20px),
      radial-gradient(circle, rgba(247,198,23,.06), rgba(247,198,23,.01) 62%, transparent 63%);
    box-shadow: inset 0 0 45px rgba(247,198,23,.12), 0 0 55px rgba(247,198,23,.1);
    transform: translate(-50%, -50%);
    animation: globe-breathe 5s ease-in-out infinite;
  }

  .digital-globe::before, .digital-globe::after {
    position: absolute;
    inset: 12% 34%;
    border: 1px solid rgba(247,198,23,.45);
    border-radius: 50%;
    content: "";
  }

  .digital-globe::after { inset: 34% 4%; }
  .digital-globe div { position: absolute; inset: 49.8% -8%; height: 1px; background: linear-gradient(90deg, transparent, rgba(247,198,23,.8), transparent); transform: rotate(-22deg); }
  .digital-globe > i { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 12px var(--yellow); }
  .digital-globe > i:nth-of-type(1) { top: 24%; left: 36%; }
  .digital-globe > i:nth-of-type(2) { top: 56%; right: 18%; animation-delay: .6s; }
  .digital-globe > i:nth-of-type(3) { bottom: 17%; left: 28%; animation-delay: 1.2s; }
  .orbital { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; transform: translate(-50%,-50%); }
  .orbital-a { width: 64%; aspect-ratio: 1; animation: orbit 16s linear infinite; }
  .orbital-b { width: 82%; aspect-ratio: 1; border-style: dashed; animation: orbit 28s linear infinite reverse; }
  .orbital-a::after, .orbital-b::after { position: absolute; top: 10%; left: 14%; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 14px var(--yellow); content: ""; }
  .route { position: absolute; height: 1px; transform-origin: left; background: linear-gradient(90deg, rgba(247,198,23,.75), rgba(247,198,23,.04)); }
  .route::after { position: absolute; right: 0; top: -2px; width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); content: ""; }
  .route-a { top: 30%; left: 16%; width: 31%; transform: rotate(25deg); }
  .route-b { right: 6%; bottom: 29%; width: 37%; transform: rotate(-24deg); }
  .route-c { top: 63%; left: 7%; width: 34%; transform: rotate(-15deg); }
  .node { position: absolute; width: 8px; height: 8px; border: 1px solid var(--yellow); background: #101115; box-shadow: 0 0 0 5px rgba(247,198,23,.07); }
  .node-a { top: 26%; left: 15%; }.node-b { top: 22%; right: 18%; }.node-c { bottom: 24%; left: 10%; }.node-d { right: 8%; bottom: 23%; }
  .signal-card { position: absolute; min-width: 166px; padding: 12px 14px; border: 1px solid var(--line); background: rgba(10,11,13,.82); box-shadow: 0 18px 30px rgba(0,0,0,.26); backdrop-filter: blur(12px); }
  .signal-card small { display: block; color: var(--yellow); font-size: 8px; font-weight: 900; letter-spacing: .18em; }
  .signal-card strong { display: block; margin-top: 4px; font-size: 12px; }
  .signal-card span { display: block; margin-top: 2px; color: #70747b; font: 8px/1.4 ui-monospace, monospace; letter-spacing: .08em; }
  .signal-origin { top: 18%; left: 7%; animation: float 6s ease-in-out infinite; }
  .signal-destination { right: 4%; bottom: 14%; animation: float 7s ease-in-out 1s infinite; }
  .compliance-chip { position: absolute; right: 7%; top: 15%; display: flex; align-items: center; gap: 8px; color: #bec1c7; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .compliance-chip i { display: grid; width: 20px; height: 20px; place-items: center; border: 1px solid rgba(247,198,23,.35); border-radius: 50%; color: var(--yellow); font-style: normal; }
  .trade-ticker { position: absolute; right: 0; bottom: 0; left: 0; overflow: hidden; border-block: 1px solid var(--line); background: rgba(7,8,9,.6); }
  .trade-ticker div { display: flex; width: max-content; align-items: center; gap: 32px; padding: 14px 0; animation: ticker 28s linear infinite; }
  .trade-ticker span { color: #5f636a; font-size: 10px; font-weight: 900; letter-spacing: .2em; }
  .trade-ticker i { color: var(--yellow); font-size: 7px; }

  .hero-inner { min-height: 0; padding-top: 92px; }
  .inner-hero-grid { display: grid; grid-template-columns: 1fr 210px; align-items: start; min-height: 0; gap: 40px; padding-block: 125px 56px; }
  .hero-inner h1 { max-width: 920px; font-size: clamp(46px, 5.2vw, 76px); text-wrap: balance; }
  .inner-orbit { position: absolute; right: -120px; bottom: -230px; width: 650px; aspect-ratio: 1; border: 1px solid rgba(247,198,23,.14); border-radius: 50%; }
  .inner-orbit::before, .inner-orbit::after { position: absolute; inset: 14%; border: 1px dashed rgba(255,255,255,.07); border-radius: 50%; content: ""; animation: orbit 32s linear infinite; }
  .inner-orbit::after { inset: 31%; animation-direction: reverse; }
  .inner-orbit i { position: absolute; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 20px rgba(247,198,23,.6); }
  .inner-orbit i:nth-child(1) { top: 9%; left: 28%; width: 6px; height: 6px; }
  .inner-orbit i:nth-child(2) { right: 19%; top: 33%; width: 3px; height: 3px; }
  .inner-orbit i:nth-child(3) { left: 20%; bottom: 29%; width: 4px; height: 4px; }
  .route-index { justify-self: end; width: 100%; padding-top: 13px; border-top: 1px solid var(--line); }
  .route-index small { display: block; color: #73777e; font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
  .route-index strong { display: block; margin-top: 7px; font: 12px ui-monospace, monospace; letter-spacing: .1em; }
  .route-index span { display: block; width: 45%; height: 2px; margin-top: 15px; background: var(--yellow); box-shadow: 0 0 14px rgba(247,198,23,.5); }

  .page-main { background: #0d0f12; }
  .content-section { padding-block: 105px 120px; }
  .page-services .content-section,
  .page-partners .content-section,
  .page-contact .content-section { padding-top: 68px; }
  .section-kicker { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; margin-bottom: 62px; color: var(--yellow); font-size: 10px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
  .section-kicker i { height: 1px; background: linear-gradient(90deg, var(--yellow-line), var(--line)); }
  .section-kicker b { color: #60646b; font: 10px ui-monospace, monospace; }
  .content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; align-items: start; gap: clamp(60px, 8vw, 120px); }
  .page-copy { color: #c2c5ca; font-size: 17px; }
  .page-copy h2 { max-width: 800px; margin-bottom: 25px; color: var(--white); font-size: clamp(38px, 4vw, 58px); }
  .page-copy h3 { margin: 38px 0 12px; color: var(--white); font-family: var(--display); font-size: 26px; }
  .page-copy p + p { margin-top: 22px; }
  .page-copy p a, .page-copy li a { color: var(--yellow); text-decoration-line: underline; text-decoration-color: rgba(247,198,23,.3); text-underline-offset: 4px; }
  .page-copy p a:hover, .page-copy li a:hover { text-decoration-color: var(--yellow); }
  .section-lead { max-width: 750px; margin-bottom: 48px; color: #a9adb4; font-size: 19px; }
  .page-copy ul { display: grid; gap: 9px; margin: 28px 0; padding: 0; list-style: none; }
  .page-copy ul:not(.servicos) li { position: relative; padding: 14px 18px 14px 45px; border: 1px solid var(--line); background: rgba(255,255,255,.018); }
  .page-copy ul:not(.servicos) li::before { position: absolute; left: 18px; top: 22px; width: 8px; height: 8px; border: 1px solid var(--yellow); content: ""; transform: rotate(45deg); }
  .page-copy ul.servicos { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
  .page-copy ul.servicos li { min-height: 88px; background: #111317; }
  .page-copy ul.servicos a { display: flex; height: 100%; align-items: center; padding: 21px 22px; color: var(--silver); font-size: 14px; font-weight: 720; text-decoration: none; transition: background .25s, color .25s, padding .25s; }
  .page-copy ul.servicos a::after { margin-left: auto; color: var(--yellow); content: "↗"; }
  .page-copy ul.servicos a:hover { padding-left: 28px; background: rgba(247,198,23,.08); color: var(--yellow); }
  .page-services .service-directory a { gap: 16px; padding: 17px 20px; }
  .page-services .service-directory a:hover { padding-left: 22px; }
  .page-services .service-directory a > span { flex: 1; color: inherit; }
  .page-services .service-icon {
    position: relative;
    display: block;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(247,198,23,.23);
    background: rgba(247,198,23,.025);
    font-style: normal;
    transition: border-color .25s, background .25s, transform .25s;
  }
  .page-services .service-directory a:hover .service-icon {
    border-color: rgba(247,198,23,.65);
    background: rgba(247,198,23,.08);
    transform: translateY(-2px);
  }
  .page-services .service-icon::before,
  .page-services .service-icon::after,
  .page-services .service-icon i::before,
  .page-services .service-icon i::after { position: absolute; content: ""; }
  .page-services .icon-import i,
  .page-services .icon-export i {
    position: absolute;
    left: 12px;
    bottom: 8px;
    width: 18px;
    height: 11px;
    border: 1px solid var(--yellow);
    background: repeating-linear-gradient(90deg, transparent 0 4px, rgba(247,198,23,.35) 4px 5px);
  }
  .page-services .icon-import::before,
  .page-services .icon-export::before { left: 20px; top: 7px; width: 1px; height: 13px; background: var(--yellow); }
  .page-services .icon-import::after { left: 17px; top: 14px; width: 6px; height: 6px; border-right: 1px solid var(--yellow); border-bottom: 1px solid var(--yellow); transform: rotate(45deg); }
  .page-services .icon-export::after { left: 17px; top: 7px; width: 6px; height: 6px; border-top: 1px solid var(--yellow); border-left: 1px solid var(--yellow); transform: rotate(45deg); }
  .page-services .icon-route::before { left: 9px; top: 20px; width: 23px; height: 1px; background: var(--yellow); transform: rotate(-22deg); }
  .page-services .icon-route::after { left: 8px; top: 23px; width: 5px; height: 5px; border: 1px solid var(--yellow); border-radius: 50%; box-shadow: 21px -8px 0 -1px #111317, 21px -8px 0 0 var(--yellow); }
  .page-services .icon-route i::before { left: 19px; top: 16px; width: 4px; height: 4px; border-radius: 50%; background: var(--yellow); }
  .page-services .icon-cargo::before { left: 9px; top: 11px; width: 10px; height: 8px; border: 1px solid var(--yellow); box-shadow: 12px 0 0 -1px #111317, 12px 0 0 0 var(--yellow), 6px 11px 0 -1px #111317, 6px 11px 0 0 var(--yellow); }
  .page-services .icon-cargo::after { left: 12px; top: 14px; width: 4px; height: 1px; background: var(--yellow); box-shadow: 12px 0 var(--yellow), 6px 11px var(--yellow); }
  .page-services .icon-license::before { left: 12px; top: 8px; width: 17px; height: 24px; border: 1px solid var(--yellow); }
  .page-services .icon-license::after { left: 15px; top: 14px; width: 9px; height: 1px; background: var(--yellow); box-shadow: 0 4px 0 rgba(247,198,23,.65); }
  .page-services .icon-license i::before { left: 18px; top: 23px; width: 7px; height: 3px; border-bottom: 1px solid var(--yellow); border-left: 1px solid var(--yellow); transform: rotate(-45deg); }
  .page-services .icon-shield::before { left: 11px; top: 8px; width: 18px; height: 22px; border: 1px solid var(--yellow); border-radius: 2px 2px 10px 10px; }
  .page-services .icon-shield::after { left: 17px; top: 15px; width: 8px; height: 4px; border-bottom: 1px solid var(--yellow); border-left: 1px solid var(--yellow); transform: rotate(-45deg); }
  .page-services .icon-drawback::before { left: 10px; top: 10px; width: 20px; height: 20px; border: 1px solid var(--yellow); border-left-color: transparent; border-radius: 50%; transform: rotate(-20deg); }
  .page-services .icon-drawback::after { left: 7px; top: 8px; width: 7px; height: 7px; border-top: 1px solid var(--yellow); border-right: 1px solid var(--yellow); transform: rotate(-18deg); }
  .page-services .icon-drawback i::before { right: 7px; bottom: 8px; width: 7px; height: 7px; border-bottom: 1px solid var(--yellow); border-left: 1px solid var(--yellow); transform: rotate(-18deg); }
  .page-services .icon-special::before { left: 11px; top: 11px; width: 18px; height: 18px; border: 1px solid var(--yellow); transform: rotate(45deg); }
  .page-services .icon-special::after { left: 18px; top: 18px; width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); }
  .page-services .icon-support::before { left: 7px; top: 13px; width: 21px; height: 13px; border: 1px solid var(--yellow); background: repeating-linear-gradient(90deg, transparent 0 5px, rgba(247,198,23,.28) 5px 6px); }
  .page-services .icon-support::after { left: 11px; top: 28px; width: 4px; height: 4px; border: 1px solid var(--yellow); border-radius: 50%; box-shadow: 16px 0 0 -1px #111317, 16px 0 0 0 var(--yellow); }
  .page-services .icon-support i::before { left: 29px; top: 17px; width: 6px; height: 9px; border: 1px solid var(--yellow); border-left: 0; }
  .page-services .icon-tax::before { left: 10px; top: 7px; width: 20px; height: 27px; border: 1px solid var(--yellow); }
  .page-services .icon-tax::after { left: 14px; top: 13px; width: 12px; height: 1px; background: var(--yellow); box-shadow: 0 5px 0 rgba(247,198,23,.7), 0 10px 0 rgba(247,198,23,.45); }
  .page-services .icon-data::before { left: 9px; top: 9px; width: 5px; height: 5px; border: 1px solid var(--yellow); box-shadow: 18px 0 0 -1px #111317, 18px 0 0 0 var(--yellow), 0 18px 0 -1px #111317, 0 18px 0 0 var(--yellow), 18px 18px 0 -1px #111317, 18px 18px 0 0 var(--yellow); }
  .page-services .icon-data::after { left: 12px; top: 12px; width: 18px; height: 18px; border-right: 1px dashed rgba(247,198,23,.65); border-bottom: 1px dashed rgba(247,198,23,.65); }
  .page-services .icon-catalog::before { left: 9px; top: 7px; width: 22px; height: 28px; border: 1px solid var(--yellow); background: linear-gradient(135deg, rgba(247,198,23,.12), transparent 48%); }
  .page-services .icon-catalog::after { left: 13px; top: 12px; width: 5px; height: 5px; border: 1px solid var(--yellow); box-shadow: 9px 0 0 -1px #111317, 9px 0 0 0 var(--yellow), 0 9px 0 -1px #111317, 0 9px 0 0 var(--yellow), 9px 9px 0 -1px #111317, 9px 9px 0 0 var(--yellow); }
  .page-services .icon-catalog i::before { left: 13px; bottom: 9px; width: 13px; height: 1px; background: var(--yellow); box-shadow: 0 3px 0 rgba(247,198,23,.5); }
  .page-services .icon-catalog i::after { right: 7px; top: 6px; width: 4px; height: 4px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 8px rgba(247,198,23,.7); }
  .page-services .icon-engineering::before { left: 19px; top: 6px; width: 4px; height: 29px; background: var(--yellow); transform: rotate(45deg); }
  .page-services .icon-engineering::after { left: 19px; top: 6px; width: 4px; height: 29px; border: 1px solid var(--yellow); transform: rotate(-45deg); }
  .page-services .icon-engineering i::before { left: 17px; top: 17px; width: 8px; height: 8px; border-radius: 50%; background: #111317; box-shadow: inset 0 0 0 1px var(--yellow); }
  .page-copy .mais { margin-top: 28px; }
  .page-copy .mais a { display: inline-flex; min-height: 44px; align-items: center; padding: 0 16px; border: 1px solid var(--yellow-line); text-decoration: none; }
  .page-links .page-copy ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-links .page-copy ul li { padding: 0; }
  .page-links .page-copy ul li::before { display: none; }
  .page-links .page-copy ul a { display: flex; min-height: 78px; align-items: center; padding: 16px 20px; color: var(--silver); text-decoration: none; }
  .page-links .page-copy ul a::after { margin-left: auto; color: var(--yellow); content: "↗"; }
  .contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; overflow: hidden; border: 1px solid var(--line); background: var(--line); }
  .page-contact .contact-grid { grid-template-columns: 1fr; }
  .contact-card { display: flex; min-height: 190px; flex-direction: column; padding: 24px; background: #111317; transition: background .25s, transform .25s; }
  .contact-card:hover { z-index: 1; background: #171a1f; transform: translateY(-3px); }
  .contact-card > span { color: var(--yellow); font: 10px ui-monospace, monospace; }
  .contact-card small { margin-top: auto; color: #777b82; font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
  .contact-card strong { margin-top: 6px; color: var(--white); font-size: 14px; overflow-wrap: anywhere; }
  .contact-card em { margin-top: 5px; color: #787c83; font-size: 11px; font-style: normal; }

  .operation-panel { position: sticky; top: 125px; overflow: hidden; border: 1px solid var(--line); background: #111317; }
  .panel-top { display: flex; align-items: center; gap: 14px; padding: 17px 18px; border-bottom: 1px solid var(--line); color: #858990; font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
  .panel-top i { flex: 1; height: 1px; background: var(--line); }
  .operation-panel > a { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 8px; min-height: 80px; padding: 14px 18px; border-bottom: 1px solid var(--line); transition: background .25s; }
  .operation-panel > a:hover { background: rgba(247,198,23,.07); }
  .operation-panel > a small { color: #5e6269; font: 9px ui-monospace, monospace; }
  .operation-panel > a strong { font-size: 12px; }
  .operation-panel > a b { color: var(--yellow); }
  .panel-scan { position: relative; display: flex; height: 78px; align-items: end; justify-content: center; gap: 5px; padding: 18px; background: linear-gradient(90deg, transparent, rgba(247,198,23,.025), transparent); }
  .panel-scan::after { position: absolute; inset: 50% 0 auto; height: 1px; background: linear-gradient(90deg, transparent, var(--yellow), transparent); content: ""; animation: scan 3s ease-in-out infinite; }
  .panel-scan span, .panel-scan i { width: 16%; background: rgba(247,198,23,.2); }
  .panel-scan span { height: 13px; }.panel-scan i:nth-of-type(1) { height: 24px; }.panel-scan i:nth-of-type(2) { height: 37px; }.panel-scan i:nth-of-type(3) { height: 19px; }

  .service-showcase { padding-block: 115px; border-top: 1px solid var(--line); background: #090a0c; }
  .showcase-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 58px; }
  .showcase-head h2 { max-width: 650px; font-size: clamp(42px, 5vw, 66px); }
  .showcase-head > div { max-width: 760px; }
  .service-selection-note { max-width: 660px; margin-top: 18px; color: #8d9198; font-size: 14px; line-height: 1.65; }
  .text-link { padding-bottom: 7px; border-bottom: 1px solid var(--yellow-line); color: var(--yellow); font-size: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
  .text-link span { margin-left: 10px; }
  .service-lines { border-top: 1px solid var(--line); padding: 0; list-style: none; }
  .service-lines li { border-bottom: 1px solid var(--line); }
  .service-lines a { display: grid; grid-template-columns: 64px 1fr auto; align-items: center; min-height: 86px; color: #b9bcc2; transition: color .25s, padding .25s, background .25s; }
  .service-lines a:hover { padding-inline: 14px; background: linear-gradient(90deg, rgba(247,198,23,.06), transparent); color: var(--white); }
  .service-lines span { color: #5e6269; font: 10px ui-monospace, monospace; }
  .service-lines b { color: var(--yellow); font-size: 18px; }

  .closing-band { position: relative; overflow: hidden; padding-block: 88px; border-block: 1px solid var(--yellow-line); background: linear-gradient(120deg, rgba(247,198,23,.08), rgba(255,255,255,.015)); }
  .closing-band::after { position: absolute; right: 8%; bottom: -180px; width: 380px; aspect-ratio: 1; border: 1px solid rgba(247,198,23,.14); border-radius: 50%; box-shadow: 0 0 0 52px rgba(247,198,23,.025), 0 0 0 104px rgba(247,198,23,.018); content: ""; }
  .closing-grid { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
  .closing-band h2 { max-width: 740px; font-size: clamp(38px, 4vw, 58px); }

  .site-footer { padding-top: 78px; background: #070809; }
  .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 55px; padding-bottom: 70px; }
  .footer-brand img { width: 230px; height: auto; }
  .footer-brand p { max-width: 330px; margin-top: 24px; color: #73777e; font-size: 13px; }
  .footer-brand > a { display: inline-flex; gap: 10px; margin-top: 25px; color: var(--yellow); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
  .site-footer h3 { margin-bottom: 20px; color: #656970; font-size: 9px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
  .footer-column a, .footer-contact a { display: block; margin: 9px 0; color: #a7aab0; font-size: 12px; transition: color .2s; }
  .footer-column a:hover, .footer-contact a:hover { color: var(--yellow); }
  .footer-contact address { margin-top: 19px; color: #686c73; font-size: 11px; font-style: normal; line-height: 1.7; }
  .footer-bottom { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid var(--line); color: #555961; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .footer-bottom > div { display: flex; gap: 25px; }
  .footer-bottom a:hover { color: var(--yellow); }
  .back-top { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line); background: transparent; color: var(--yellow); cursor: pointer; }

  .cursor-glow {
    position: fixed;
    z-index: 150;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247,198,23,.085), transparent 68%);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%,-50%);
    transition: opacity .3s;
    mix-blend-mode: screen;
  }

  body.pointer-active .cursor-glow { opacity: 1; }
}

@layer utilities {
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s cubic-bezier(.2,.8,.2,1), transform .85s cubic-bezier(.2,.8,.2,1); }
  .reveal.in-view { opacity: 1; transform: translateY(0); }
}

@keyframes pulse { 0%,100% { opacity: .5; transform: scale(.86); } 50% { opacity: 1; transform: scale(1.18); } }
@keyframes orbit { to { transform: translate(-50%,-50%) rotate(1turn); } }
@keyframes globe-breathe { 0%,100% { transform: translate(-50%,-50%) scale(.97); } 50% { transform: translate(-50%,-50%) scale(1.03); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes scan { 0%,100% { transform: translateY(-26px); opacity: 0; } 20%,80% { opacity: 1; } 50% { transform: translateY(26px); } }

@media (max-width: 1120px) {
  .header-row { grid-template-columns: 190px 1fr auto; gap: 18px; }
  .brand { width: 180px; }
  .desktop-nav { gap: 14px; }
  .tracking-link { display: none; }
  .hero-grid { grid-template-columns: 1.05fr .85fr; }
  .network-stage { transform: none; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-contact { grid-column: 2 / 4; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 34px, 720px); }
  .site-header { background: rgba(9,10,12,.82); backdrop-filter: blur(18px); }
  .header-row { grid-template-columns: 1fr auto; min-height: 78px; }
  .brand { width: 176px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .mobile-menu {
    position: absolute;
    inset: 78px 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding-inline: 17px;
    border-bottom: 1px solid transparent;
    background: rgba(9,10,12,.98);
    transition: max-height .35s ease, padding .35s ease, border-color .35s;
  }
  .mobile-menu.open { max-height: 620px; padding-block: 14px 22px; border-color: var(--line); }
  .mobile-menu a { padding: 13px 10px; border-bottom: 1px solid var(--line); color: #c7c9ce; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  .hero-home { min-height: auto; padding-top: 90px; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 40px 100px; }
  .hero-copy { padding: 30px 0 0; }
  .network-stage { width: min(100%, 600px); justify-self: center; }
  .trade-ticker { position: relative; }
  .hero-inner { padding-top: 78px; }
  .inner-hero-grid { grid-template-columns: 1fr; align-content: start; padding-block: 80px 46px; }
  .route-index { justify-self: start; max-width: 240px; }
  .inner-orbit { opacity: .65; }
  .content-section { padding-block: 78px 90px; }
  .page-services .content-section,
  .page-partners .content-section,
  .page-contact .content-section { padding-top: 58px; }
  .content-grid { grid-template-columns: 1fr; gap: 54px; }
  .operation-panel { position: relative; top: auto; max-width: 430px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: auto; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100vw - 28px); }
  .header-row { min-height: 72px; }
  .mobile-menu { top: 72px; }
  .brand { width: 155px; }
  .header-actions { gap: 8px; }
  .language-link { width: 36px; height: 36px; }
  .hero-home { padding-top: 72px; }
  .hero-grid { gap: 32px; padding-bottom: 70px; }
  .hero-copy { padding-top: 45px; }
  .hero-home h1 { font-size: clamp(44px, 13.5vw, 64px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-metrics { grid-template-columns: 1fr; margin-top: 38px; }
  .hero-metrics > div { min-height: auto; padding: 16px 0; }
  .hero-metrics > div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .network-stage { aspect-ratio: .88; }
  .signal-card { min-width: 140px; }
  .signal-destination { right: 2%; }
  .digital-globe { width: 55%; }
  .hero-inner { min-height: 0; padding-top: 72px; }
  .inner-hero-grid { min-height: 0; padding-block: 45px 38px; }
  .hero-inner h1 { font-size: clamp(40px, 12vw, 58px); }
  .inner-orbit { right: -300px; }
  .section-kicker { gap: 12px; margin-bottom: 40px; }
  .section-kicker span { max-width: 220px; }
  .content-section { padding-block: 65px 75px; }
  .page-services .content-section,
  .page-partners .content-section,
  .page-contact .content-section { padding-top: 48px; }
  .page-copy { font-size: 15px; }
  .page-copy h2 { font-size: 39px; }
  .page-copy ul.servicos, .page-links .page-copy ul, .contact-grid { grid-template-columns: 1fr; }
  .page-services .service-directory a { gap: 12px; padding: 15px 16px; }
  .page-services .service-directory a:hover { padding-left: 18px; }
  .service-selection-note { margin-top: 14px; font-size: 13px; }
  .contact-card { min-height: 160px; }
  .showcase-head { align-items: start; flex-direction: column; }
  .service-showcase { padding-block: 78px; }
  .service-lines a { grid-template-columns: 45px 1fr auto; min-height: 76px; font-size: 13px; }
  .closing-band { padding-block: 68px; }
  .closing-grid { align-items: stretch; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand, .footer-contact { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-wrap: wrap; padding-block: 22px; }
  .footer-bottom > div { flex-wrap: wrap; gap: 10px 18px; }
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}
