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

.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content {
    max-width: 1600px;
    margin-left: 48px;
    margin-right: auto;
    text-align: left;
    padding: 0 24px;
}


.hero-aligned {
    width: 93%;
    max-width: 1500px;
    margin: 0 auto;
    padding-top: 80px;
    text-align: left;
}

.hero-aligned h1 {
    font-size: clamp(2 rem, 3vw, 2.6rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 14px;
    white-space: nowrap;
}

.hero-aligned h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 400;
    line-height: 1.2;
    color: rgba(26, 26, 26, 0.55);
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 86px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    pointer-events: auto;
}

.topbar-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.35);
    opacity: 0;
    backdrop-filter: none;
}

.topbar-inner {
    width: 93%;
    max-width: 1500px;
    height: 45px;
    margin-top: 40px;
    padding: 0 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;
}

.logo {
    position: relative;
    width: clamp(200px, 22vw, 300px);
    height: clamp(48px, 5vw, 72px);
    transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}

.topbar.logo-compact .logo {
    transform: scale(0.9);
}

.logo-left,
.logo-icon,
.logo-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    transition:
        transform 0.9s cubic-bezier(.4,0,.2,1),
        opacity 0.8s ease;
}

.logo-left {
    position: absolute;
    left: 0%;
    top: 46%;
    height: clamp(34px, 4vw, 52px);
    transform: translateY(-50%);
}

.logo-icon {
    position: absolute;
    left: 47%;
    top: 50%;
    height: clamp(30px, 3.6vw, 46px);
    transform: translate(-50%, -50%);
}

.logo-right {
    position: absolute;
    left: 55%;
    top: 50%;
    height: clamp(28px, 3.4vw, 44px);
    transform: translateY(-50%);
}

.topbar.logo-compact .logo-left {
    opacity: 0;
    transform: translate(40%, -50%);
}

.topbar.logo-compact .logo-right {
    opacity: 0;
    transform: translate(-40%, -50%);
}

.topbar.logo-compact .logo-icon {
    transform: translate(-50%, -50%) translateX(-240%) scale(1.6);
}

.logo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1200;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.logo-overlay .topbar-inner {
    width: 93%;
    max-width: 1500px;
    height: 45px;
    margin-top: 40px;
    padding: 0 8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo-overlay .logo {
    transform: none;
}

body:not(.menu-open) .logo-overlay {
    opacity: 0;
}

body.menu-open .logo-overlay {
    opacity: 1;
}

body.menu-open .topbar .logo {
    opacity: 0;
    pointer-events: none;
}

body.menu-open .logo-overlay img {
    filter: grayscale(100%) brightness(0);
}

.logo-left,
.logo-icon,
.logo-right {
    transition:
        transform 0.9s cubic-bezier(.4,0,.2,1),
        opacity 0.8s ease,
        filter 0.45s ease;
}

.topbar .logo,
.logo-overlay .logo {
    transition: opacity 0.45s ease;
}

.topbar .logo {
    opacity: 1;
}

.logo-overlay .logo {
    opacity: 0;
}

body.menu-open .topbar .logo {
    opacity: 0;
}

body.menu-open .logo-overlay .logo {
    opacity: 1;
}

.menu-toggle {
    position: fixed;
    top: 40px;
    right: 35px;
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1300;
}

.menu-toggle span {
    width: 36px;
    height: 3px;
    background: #000;
    margin: 0 auto;
    transition:
        transform 0.45s cubic-bezier(.4,0,.2,1),
        opacity 0.25s ease,
        background-color 0.3s ease;
}

body:not(.menu-open) .menu-toggle:hover span {
    background: var(--orange-strong);
}

body:not(.menu-open) .menu-toggle:hover span:nth-child(1) {
    transform: translateY(-2px);
}

body:not(.menu-open) .menu-toggle:hover span:nth-child(3) {
    transform: translateY(2px);
}

body.menu-open .menu-toggle span {
    background: #000;
}

body.menu-open .menu-toggle:hover span {
    background: var(--orange-strong);
}

body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

body.menu-open .menu-toggle:hover span:nth-child(1) {
    transform: translateY(11px) rotate(45deg) scale(1.12);
}

body.menu-open .menu-toggle:hover span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg) scale(1.12);
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 900;
}

.sidebar {
    position: fixed;
    inset: 0;
    height: 100vh;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(.4,0,.2,1);
    z-index: 950;
    display: flex;
    flex-direction: column;
}

.sidebar-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 36px;
    justify-content: center;
    align-items: flex-start;
    padding-left: 800px;
}

.sidebar-nav a {
    font-size: 3rem;
    font-weight: 800;
    text-decoration: none;
    padding: 12px 28px;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.sidebar-nav a span {
    position: relative;
    display: inline-block;
    color: #000;
    transition: color 0.3s ease;
}

.sidebar-nav a span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 7px;
    background: var(--orange-strong);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}

.sidebar-nav a:hover span,
.sidebar-nav a:active span,
.sidebar-nav a:focus span,
.sidebar-nav a.active span {
    color: var(--orange-strong);
}

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

body.menu-open .sidebar {
    transform: translateY(0);
}

body.menu-open .sidebar-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.menu-open .sidebar-nav a {
    transform: translateY(0);
    opacity: 1;
}

section {
    padding: 100px 48px;
}

body {
    transition: top 0.9s cubic-bezier(.4,0,.2,1);
}

body.menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

body.menu-open .logo-overlay {
    opacity: 1;
}

#page-wrapper {
    transition: transform 0.9s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.sidebar-lang-fixed {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    display: flex;
    gap: 25px;
}

body.menu-open .sidebar-lang-fixed {
    opacity: 1;
    pointer-events: auto;
}

.lang-btn {
    position: relative;
    padding: 4px 14px;
    background: transparent;
    border: none;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #000;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.lang-btn svg {
    position: absolute;
    inset: -6px -10px;
    width: calc(100% + 20px);
    height: calc(100% + 12px);
    pointer-events: none;
}

.lang-btn rect {
    fill: none;
    stroke: #000;
    stroke-width: 1.5;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    opacity: 0;
    transition:
        stroke 0.3s ease,
        stroke-dashoffset 0.7s cubic-bezier(.4,0,.2,1),
        opacity 0.25s ease 0.45s;
}

.lang-btn:not(.active):hover {
    color: var(--orange-strong);
}

.lang-btn:not(.active):hover rect {
    stroke: var(--orange-strong);
    opacity: 1;
    stroke-dashoffset: 0;
    transition:
        stroke-dashoffset 0.7s cubic-bezier(.4,0,.2,1),
        opacity 0.1s ease;
}

.lang-btn.active {
    color: var(--orange-strong);
}

.lang-btn.active rect {
    stroke: var(--orange-strong);
    opacity: 1;
    stroke-dashoffset: 0;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

#page-wrapper {
    overflow-x: hidden;
}

html.is-loading .logo-left,
html.is-loading .logo-right {
    opacity: 0;
    transform: translateY(-50%) translateX(40px);
}

html.is-loading .logo-icon {
    transform: translate(-50%, -50%) translateX(-500%) scale(1.6);
}

.menu-toggle {
    transform: translateX(140vw);
    opacity: 0;
    animation: burger-from-right 1s cubic-bezier(.2,.9,.2,1) forwards;
}

@keyframes burger-from-right {
    0% {
        transform: translateX(140vw);
        opacity: 0;
    }
    70% {
        transform: translateX(-12px);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

body.menu-open #page-wrapper {
    transform: translateY(120px) scale(0.96);
    filter: blur(1.5px);
}

#page-wrapper {
    transform: translateY(0) scale(1);
    filter: none;
    transition: transform 0.9s cubic-bezier(.4,0,.2,1), filter 0.9s cubic-bezier(.4,0,.2,1);
}

[class*="logo"] { cursor: pointer; }

.sidebar-footer {
  position: relative;
  margin-top: auto;
  padding: 28px 48px 36px;
  padding-bottom: 64px;
  font-weight: 800;
}

.sidebar-footer-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr 3fr;
  gap: 48px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #000;
  align-items: start;
}

.footer-item,
.footer-item a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.footer-address {
  position: absolute;
  bottom: 55px;
  left: 1155px;
}

.footer-hours {
  position: absolute;
  bottom: 55px;
  left: 1555px;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #000;
}

.footer-email {
  position: absolute;
  bottom: 75px;
  left: 615px;
}

.sidebar-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-social {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: auto;
  margin-bottom: 24px;
  transform: translateY(50px);
}

.sidebar-social a {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sidebar-social svg {
  width: 100%;
  height: 100%;
  fill: #000;
  opacity: 0.9;
  transition: none;
}

[class*="logo"] {
  cursor: pointer;
}

.footer-phones {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start;
  gap: 4px;
  position: absolute;
  bottom: 47px;
  left: 215px;
}

.footer-phones a {
  display: block !important;
  width: 100%;
}

.sidebar-footer .footer-item,
.sidebar-footer .footer-item *,
.sidebar-footer .footer-item a {
  font-weight: 700;
}

.sidebar-nav a {
  text-decoration: none;
  display: inline-block;
}

.sidebar-nav a span {
  position: relative;
  display: inline-block;
  color: #000;
  transition: color 0.3s ease;
}

.sidebar-nav a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 7px;
  background: var(--orange-strong);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}

.sidebar-nav a:hover span {
  color: var(--orange-strong);
}

.sidebar-nav a:hover span::after {
  transform: scaleX(1);
}

.sidebar-nav a:not(:hover) span::after {
  transform-origin: right;
}

.sidebar-nav a.active span {
  color: var(--orange-strong);
}

.sidebar-nav a.active span::after {
  transform: scaleX(1);
  transform-origin: left;
}

.sidebar-nav a,
.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: transparent;
  box-shadow: none;
}

.sidebar-footer a:hover,
.sidebar-footer .footer-item:hover {
    color: var(--orange-strong);
}

.sidebar-footer a:hover *,
.sidebar-footer .footer-item:hover * {
    color: var(--orange-strong);
}

.sidebar-social a:hover svg {
    fill: var(--orange-strong);
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shader-hero {
    background: #000;
    display: grid;
    place-items: center;
}

.shader-hero::before,
.shader-hero::after {
    display: none;
}

.shader-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.shader-canvas canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.shader-title {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 100%;
    padding: 0 24px;
    color: #fff;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(2.4rem, 9vw, 8.8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 0;
    text-align: center;
    text-shadow: 0 0 32px rgba(255,159,28,0.34), 0 0 70px rgba(79,195,247,0.18);
    opacity: 0;
    transform: translate(-50%, calc(-50% + 18px)) scale(0.98);
    animation: shader-title-in 1.2s cubic-bezier(.2,.8,.2,1) 0.25s forwards;
}

@keyframes shader-title-in {
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

:root {
    --orange-light: #ffbe7a;
    --orange-strong: #ff9f1c;
    --white: #ffffff;
    --dark-bg: #2f3a2f;
}

.hero{
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}

.hero-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 48px;
    z-index: 2;
    pointer-events: none;
    gap: 32px;
}

.hero-text p {
    position: absolute;
    max-width: 1050px;
    padding: 0 36px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(1.9rem, 3.8vw, 3.4rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.18;
    color: #000;
    opacity: 0;
    transform: translateX(80px);
    transition:
        opacity 1.8s ease,
        transform 1.8s cubic-bezier(.22,.61,.36,1);
}

.hero-text p.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-text p.exit {
    opacity: 0;
    transform: translateX(-80px);
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 25vh;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.15) 50%,
        rgba(255,255,255,0.6) 75%,
        #ffffff 100%
    );
    pointer-events: none;
    z-index: 3;
}

.hero::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 22vh;
    background: linear-gradient(
        to top,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.15) 45%,
        rgba(255,255,255,0.6) 75%,
        #ffffff 100%
    );
    pointer-events: none;
    z-index: 3;
}

/*SERVIÃ‡OS*/

#servicos.services {
  padding: 140px 0;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 180px;
  min-height: 100vh;
}

.service {
  display: grid;
  grid-template-columns: 45vw 1fr;
  align-items: center;
  min-height: 90vh;
  position: relative;
}

.service.reverse {
  grid-template-columns: 1fr 49vw;
}

.service.reverse .service-media {
  order: 2;
}

.service.reverse .service-copy {
  order: 1;
}

.service-media {
  width: 50vw;
  height: 89vh;
  min-height: 780px;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateY(-120px);
  opacity: 0;
}

.service:hover .service-media img {
  transform: none;
}

.service-copy {
  padding: 0 8vw;
  max-width: 620px;
  transform: translateY(40px);
  opacity: 0;
}

.service.reverse .service-copy {
  margin-left: auto;
}

.service-copy h2 {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 1.05;
}

.service-copy p {
  font-size: 1.15rem;
  line-height: 1.75;
}

.service-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  color: #000;
  font-size: 1.1rem;
  border-bottom: 2px solid transparent;
}

.service-link:hover {
  color: var(--orange-strong);
  border-bottom-color: var(--orange-strong);
}

body.services-lock {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

/*SERVICOS ORBITAL*/

#servicos.services-orbital {
  min-height: 100vh;
  padding: 120px 24px 130px;
  display: block;
  width: 100%;
  color: #fff;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,159,28,0.16), transparent 22%),
    radial-gradient(circle at 18% 72%, rgba(255,255,255,0.08), transparent 18%),
    #030303;
}

.services-legacy {
  display: none;
}

.services-orbital-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(520px, 1.4fr);
  align-items: center;
  gap: 56px;
}

.services-heading span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-heading h2 {
  max-width: 420px;
  font-size: clamp(2rem, 3.6vw, 4.1rem);
  line-height: 1.02;
  font-weight: 800;
}

.services-orbit {
  --orbit-size: min(64vw, 620px);
  --orbit-radius: calc(var(--orbit-size) * 0.38);
  position: relative;
  width: var(--orbit-size);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  isolation: isolate;
}

.orbit-ring {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  box-shadow: inset 0 0 45px rgba(255,255,255,0.03);
}

.orbit-core {
  position: absolute;
  inset: 50%;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(from 40deg, #ff9f1c, #4fc3f7, #7c4dff, #ff9f1c);
  display: grid;
  place-items: center;
  z-index: 3;
  box-shadow: 0 0 36px rgba(255,159,28,0.2);
}

.orbit-core::before,
.orbit-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  animation: orbit-pulse 2.6s ease-out infinite;
}

.orbit-core::before {
  inset: -28px;
}

.orbit-core::after {
  inset: -54px;
  animation-delay: 0.7s;
}

.orbit-core span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
}

.orbit-node {
  --x: 0px;
  --y: 0px;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 126px;
  min-height: 88px;
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y)));
  display: grid;
  justify-items: center;
  gap: 9px;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.7);
  font-family: "Inter", sans-serif;
  font-weight: 800;
  cursor: pointer;
  z-index: 4;
  transition: opacity 0.35s ease, color 0.35s ease, transform 0.7s cubic-bezier(.2,.8,.2,1);
}

.orbit-node::before {
  content: "";
  position: absolute;
  top: 2px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 66%);
  opacity: 0;
  filter: blur(2px);
  transition: opacity 0.35s ease;
}

.node-icon {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255,255,255,0.34);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.72);
  box-shadow: 0 0 0 rgba(255,255,255,0);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.node-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.node-label {
  max-width: 126px;
  font-size: 0.78rem;
  line-height: 1.2;
  text-align: center;
  text-wrap: balance;
}

.orbit-node:hover,
.orbit-node:focus-visible,
.orbit-node.active {
  color: #fff;
}

.orbit-node:hover::before,
.orbit-node:focus-visible::before,
.orbit-node.active::before {
  opacity: 1;
}

.orbit-node.active .node-icon {
  color: #000;
  background: #fff;
  border-color: #fff;
  transform: scale(1.24);
  box-shadow: 0 0 34px rgba(255,255,255,0.34);
}

.orbit-node.is-related .node-icon {
  border-color: rgba(255,159,28,0.8);
  box-shadow: 0 0 22px rgba(255,159,28,0.25);
}

.service-orbit-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(330px, 72%);
  transform: translate(-50%, -28%);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(4,4,4,0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 28px rgba(255,255,255,0.07);
  z-index: 8;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.services-orbit.has-active .service-orbit-card {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -18%);
}

.card-line {
  position: absolute;
  left: 50%;
  top: -34px;
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.32);
}

.service-card-top,
.service-energy div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.service-card-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card-date {
  color: rgba(255,255,255,0.45);
  font-size: 0.76rem;
  font-weight: 800;
}

.service-orbit-card h3 {
  margin-top: 18px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.service-orbit-card p {
  margin-top: 14px;
  color: rgba(255,255,255,0.76);
  font-size: 0.92rem;
  line-height: 1.55;
}

.service-energy,
.service-connections {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.service-energy span,
.service-connections > span {
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-energy strong {
  font-size: 0.78rem;
}

.energy-track {
  display: block;
  width: 100%;
  height: 5px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}

.energy-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff9f1c, #7c4dff, #4fc3f7);
  transition: width 0.35s ease;
}

.service-connections div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.service-connections button {
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  background: transparent;
  color: rgba(255,255,255,0.82);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.service-connections button:hover,
.service-connections button:focus-visible {
  border-color: var(--orange-strong);
  color: #fff;
}

@keyframes orbit-pulse {
  0% { opacity: 0.6; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(1.15); }
}

/*SOBRE NOS*/

.about-section {
  min-height: 100vh;
  padding: 130px 24px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,159,28,0.12), transparent 32%),
    linear-gradient(315deg, rgba(79,195,247,0.12), transparent 36%),
    #f7f7f4;
  color: #111;
}

.about-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: 72px;
}

.about-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange-strong);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-copy h2 {
  max-width: 720px;
  font-size: clamp(2.2rem, 4.8vw, 5.2rem);
  line-height: 0.98;
  font-weight: 900;
}

.about-copy p {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(17,17,17,0.72);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.75;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.about-points span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(17,17,17,0.14);
  border-radius: 4px;
  background: rgba(255,255,255,0.54);
  color: rgba(17,17,17,0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.about-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.about-logo-mark {
  position: absolute;
  top: 20px;
  right: 8%;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 18px 48px rgba(17,17,17,0.18);
  z-index: 2;
}

.about-logo-mark img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.about-device {
  position: relative;
  width: min(390px, 88vw);
  aspect-ratio: 0.78;
  border: 1px solid rgba(17,17,17,0.16);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.92), rgba(255,255,255,0.5)),
    linear-gradient(135deg, rgba(255,159,28,0.22), rgba(79,195,247,0.18));
  box-shadow: 0 34px 90px rgba(17,17,17,0.16);
  overflow: hidden;
}

.about-device::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(17,17,17,0.08);
  transform: rotate(-12deg);
}

.about-device-bar {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 32px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff9f1c, #4fc3f7, #7c4dff);
}

.about-device-grid {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.about-device-grid span {
  aspect-ratio: 1.25;
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: 6px;
  background: rgba(255,255,255,0.56);
}

.about-spline-loader,
.about-spline {
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  #servicos.services-orbital {
    padding: 96px 18px 110px;
  }

  .services-orbital-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .services-heading {
    text-align: center;
  }

  .services-heading h2 {
    max-width: 620px;
    margin: 0 auto;
  }

  .services-orbit {
    --orbit-size: min(92vw, 560px);
  }

  .about-section {
    padding: 110px 18px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-visual {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .services-orbit {
    --orbit-size: min(94vw, 430px);
    --orbit-radius: calc(var(--orbit-size) * 0.36);
  }

  .orbit-node {
    width: 94px;
    min-height: 78px;
  }

  .node-icon {
    width: 40px;
    height: 40px;
  }

  .node-label {
    max-width: 94px;
    font-size: 0.68rem;
  }

  .orbit-core {
    width: 58px;
    height: 58px;
  }

  .orbit-core span {
    width: 26px;
    height: 26px;
  }

  .service-orbit-card {
    width: min(310px, 86vw);
    padding: 18px;
  }

  .about-copy h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .about-points {
    display: grid;
  }

  .about-visual {
    min-height: 340px;
  }

  .about-logo-mark {
    width: 72px;
    height: 72px;
  }

  .about-logo-mark img {
    width: 46px;
    height: 46px;
  }
}

/*SOBRE NOS - INSTITUCIONAL*/

.about-section {
  min-height: 100vh;
  padding: 132px 24px 140px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 32%, rgba(79,195,247,0.14), transparent 24%),
    radial-gradient(circle at 18% 76%, rgba(255,159,28,0.12), transparent 22%),
    linear-gradient(180deg, #030303 0%, #0c0c0c 48%, #f5f5f2 48%, #f5f5f2 100%);
  color: #fff;
}

.about-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: 68px;
}

.about-copy {
  position: relative;
  z-index: 2;
}

.about-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-copy h2 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(2.6rem, 5.1vw, 5.7rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}

.about-copy p {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(255,255,255,0.72);
  font-size: clamp(1.04rem, 1.45vw, 1.25rem);
  line-height: 1.72;
  font-weight: 500;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.about-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 4px;
  background: #fff;
  color: #050505;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.about-link:hover,
.about-link:focus-visible {
  background: var(--orange-strong);
}

.about-actions span {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  font-weight: 800;
}

.about-visual {
  position: relative;
  min-height: 560px;
}

.about-orbit {
  position: relative;
  width: min(440px, 88vw);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.about-orbit::before {
  content: "";
  position: absolute;
  inset: 19%;
  border-radius: 50%;
  background: conic-gradient(from 30deg, #ff9f1c, #4fc3f7, #7c4dff, #ff9f1c);
  filter: blur(22px);
  opacity: 0.26;
}

.about-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
}

.about-ring-one {
  inset: 10%;
}

.about-ring-two {
  inset: 24%;
  border-color: rgba(255,159,28,0.34);
  transform: rotate(18deg);
}

.about-logo-core {
  position: relative;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 0 46px rgba(255,255,255,0.16), 0 24px 70px rgba(0,0,0,0.34);
  z-index: 2;
}

.about-logo-core img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.about-chip {
  position: absolute;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  background: rgba(8,8,8,0.84);
  color: rgba(255,255,255,0.86);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0,0,0,0.28);
  z-index: 3;
}

.chip-support {
  left: 3%;
  top: 24%;
}

.chip-network {
  right: 0;
  top: 32%;
}

.chip-software {
  left: 12%;
  bottom: 20%;
}

.chip-security {
  right: 12%;
  bottom: 13%;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: -26px;
}

.about-metrics div {
  min-height: 116px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255,255,255,0.95);
  color: #111;
  box-shadow: 0 26px 60px rgba(0,0,0,0.16);
}

.about-metrics strong,
.about-metrics span {
  display: block;
}

.about-metrics strong {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1;
  font-weight: 900;
}

.about-metrics span {
  margin-top: 9px;
  color: rgba(17,17,17,0.6);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about-section {
    padding: 104px 18px 116px;
    background:
      radial-gradient(circle at 72% 28%, rgba(79,195,247,0.16), transparent 28%),
      linear-gradient(180deg, #030303 0%, #0c0c0c 58%, #f5f5f2 58%, #f5f5f2 100%);
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-copy {
    text-align: left;
  }

  .about-visual {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .about-section {
    padding: 92px 14px 96px;
  }

  .about-copy h2 {
    font-size: clamp(2.25rem, 12vw, 3.65rem);
  }

  .about-copy p {
    font-size: 1rem;
  }

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

  .about-orbit {
    width: min(360px, 92vw);
  }

  .about-logo-core {
    width: 104px;
    height: 104px;
  }

  .about-logo-core img {
    width: 66px;
    height: 66px;
  }

  .about-chip {
    font-size: 0.7rem;
  }

  .about-metrics {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }
}

/*HARMONY PASS*/

body {
  background: #030303;
  color: #111;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

section {
  padding-left: 24px;
  padding-right: 24px;
}

.topbar-backdrop {
  background: rgba(255,255,255,0.54);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.topbar.show-blur .topbar-backdrop {
  opacity: 1;
}

.menu-toggle {
  mix-blend-mode: difference;
}

.menu-toggle span {
  background: #fff;
}

body.menu-open .menu-toggle {
  mix-blend-mode: normal;
}

body.menu-open .menu-toggle span {
  background: #000;
}

.shader-hero {
  min-height: 100svh;
  background: #030303;
}

.shader-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  display: block;
  background: linear-gradient(to bottom, rgba(3,3,3,0), #030303);
  pointer-events: none;
  z-index: 3;
}

#servicos.services-orbital {
  padding: 116px 24px 126px;
  background:
    radial-gradient(circle at 52% 40%, rgba(255,159,28,0.14), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(79,195,247,0.11), transparent 20%),
    linear-gradient(180deg, #030303 0%, #070707 100%);
}

.services-orbital-inner,
.about-inner,
.contact-inner {
  width: min(1180px, 100%);
}

.services-heading span,
.about-kicker,
.contact-heading span {
  color: var(--orange-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-heading h2,
.about-copy h2,
.contact-heading h2 {
  letter-spacing: 0;
}

.service-orbit-card,
.about-metrics div,
.contact-item {
  border-radius: 8px;
}

.about-section {
  padding: 126px 24px 132px;
  background:
    linear-gradient(180deg, #070707 0%, #101010 100%);
  color: #fff;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(255,159,28,0.12), transparent 24%),
    radial-gradient(circle at 82% 58%, rgba(79,195,247,0.12), transparent 26%);
  pointer-events: none;
}

.about-section {
  position: relative;
  overflow: hidden;
}

.about-inner {
  position: relative;
}

.about-copy p {
  color: rgba(255,255,255,0.7);
}

.about-metrics {
  margin-top: 24px;
}

.about-metrics div {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.08);
  color: #fff;
  backdrop-filter: blur(14px);
}

.about-metrics span {
  color: rgba(255,255,255,0.58);
}

.contact-section {
  min-height: 78vh;
  padding: 126px 24px 96px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,159,28,0.1), transparent 24%),
    #f5f5f2;
  color: #111;
}

.contact-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1fr);
  gap: 64px;
  align-items: start;
}

.contact-heading h2 {
  max-width: 620px;
  margin-top: 18px;
  font-size: clamp(2.45rem, 4.8vw, 5.1rem);
  line-height: 0.98;
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-item {
  min-height: 132px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(17,17,17,0.1);
  background: rgba(255,255,255,0.72);
  color: #111;
  text-decoration: none;
  box-shadow: 0 22px 54px rgba(17,17,17,0.08);
}

.contact-wide {
  grid-column: span 2;
}

.contact-item span {
  color: rgba(17,17,17,0.48);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-item strong {
  margin-top: 28px;
  color: #111;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1.35;
  font-weight: 900;
  overflow-wrap: anywhere;
}

a.contact-item:hover,
a.contact-item:focus-visible {
  border-color: rgba(255,159,28,0.55);
  transform: translateY(-3px);
}

.sidebar {
  background: rgba(245,245,242,0.86);
}

.sidebar-nav {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding-left: 0;
}

.sidebar-footer {
  padding: 24px 48px 42px;
}

.sidebar-footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer-phones,
.footer-email,
.footer-address,
.footer-hours {
  position: static;
  bottom: auto;
  left: auto;
}

.sidebar-social {
  transform: none;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  #servicos.services-orbital,
  .about-section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

@media (max-width: 560px) {
  #servicos.services-orbital,
  .about-section,
  .contact-section {
    padding-left: 14px;
    padding-right: 14px;
  }

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

  .contact-wide {
    grid-column: auto;
  }

  .contact-heading h2 {
    font-size: clamp(2.2rem, 12vw, 3.45rem);
  }

  .contact-item {
    min-height: 118px;
  }

  .sidebar-footer-grid {
    grid-template-columns: 1fr;
  }
}
/* Ajustes finais: menu fixo e Sobre nos */
.topbar {
  height: 82px;
}

.topbar-inner,
.logo-overlay .topbar-inner {
  height: 82px;
  margin-top: 0;
  align-items: center;
}

.topbar.show-blur {
  box-shadow: 0 10px 34px rgba(0,0,0,0.08);
}

.topbar.show-blur .logo {
  width: 72px;
  height: 58px;
}

.topbar.show-blur .logo-left,
.topbar.show-blur .logo-right {
  opacity: 0;
  pointer-events: none;
}

.topbar.show-blur .logo-icon {
  left: 50%;
  top: 50%;
  height: 46px;
  transform: translate(-50%, -50%);
}

.topbar.logo-compact .logo {
  transform: none;
}

.topbar.logo-compact .logo-icon {
  transform: translate(-50%, -50%);
}

.menu-toggle {
  top: 18px;
}

.about-inner {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 56px;
}

.about-copy h2 {
  max-width: 650px;
  font-size: clamp(2.35rem, 4.3vw, 4.9rem);
}

.about-text-card {
  max-width: 650px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.065);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 70px rgba(0,0,0,0.18);
}

.about-text-card p {
  max-width: none;
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 1rem;
  line-height: 1.7;
}

.about-text-card p + p {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.09);
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.about-points span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 900;
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text-card {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .about-text-card {
    padding: 18px;
  }

  .about-points {
    display: grid;
  }
}

