@keyframes float {
  0% {
    transform: translateY(0px) rotateX(0) rotateY(0);
  }
  50% {
    transform: translateY(-20px) rotateX(5deg) rotateY(5deg);
  }
  100% {
    transform: translateY(0px) rotateX(0) rotateY(0);
  }
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}
.cube-wrapper {
  perspective: 1000px;
  width: 200px;
  height: 200px;
}
.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-30deg) rotateY(-45deg);
  animation: spin 15s infinite linear;
}
.cube-face {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2) inset;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(2px);
}
.face-front {
  transform: rotateY(0deg) translateZ(100px);
}
.face-right {
  transform: rotateY(90deg) translateZ(100px);
}
.face-back {
  transform: rotateY(180deg) translateZ(100px);
}
.face-left {
  transform: rotateY(-90deg) translateZ(100px);
}
.face-top {
  transform: rotateX(90deg) translateZ(100px);
  border-color: rgba(6, 182, 212, 0.6);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
}
.face-bottom {
  transform: rotateX(-90deg) translateZ(100px);
}
.cube-face::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@keyframes spin {
  0% {
    transform: rotateX(-20deg) rotateY(0deg);
  }
  100% {
    transform: rotateX(-20deg) rotateY(360deg);
  }
}
.glass-panel {
  background: rgba(15, 15, 20, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.glass-nav {
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.text-glow {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #050505;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.client-logo-glow:hover svg {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}
@keyframes neon-pulse-border {
  0%,
  100% {
    box-shadow:
      0 0 20px rgba(139, 92, 246, 0.6),
      inset 0 0 10px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.6);
  }
  50% {
    box-shadow:
      0 0 40px rgba(6, 182, 212, 0.9),
      inset 0 0 20px rgba(6, 182, 212, 0.4);
    border-color: rgba(6, 182, 212, 1);
  }
}
.btn-hero-pulse {
  animation: neon-pulse-border 3s infinite ease-in-out;
}
.btn-hero-pulse:hover {
  animation: none;
  box-shadow: 0 0 50px rgba(217, 70, 239, 0.9);
  border-color: rgba(217, 70, 239, 1);
}
.swiper {
  width: 100%;
  height:  100%;
}
.background_projeto {
    background-image: url('/assets/portal_embraer.png');
}