.barra__navegacao {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(17, 150, 243, 0.12);
  background: rgba(2, 7, 17, 0.82);
  box-shadow:
    0 0 20px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(17, 150, 243, 0.08);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.barra__navegacao.ativa {
  border-color: rgba(17, 150, 243, 0.24);
  background: rgba(2, 7, 17, 0.94);
  box-shadow:
    0 10px 34px rgba(0, 0, 0, 0.36),
    0 0 40px rgba(17, 150, 243, 0.1);
}

.navegacao {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 82px;
  align-items: center;
  gap: 40px;
  padding: 0 5%;
}

.logo {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-self: start;
  transition: transform 0.4s ease;
}

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

.logo img {
  width: 80px;
  height: auto;
  filter:
    drop-shadow(0 0 5px rgba(37, 99, 235, 0.8))
    drop-shadow(0 0 12px rgba(37, 99, 235, 0.7))
    drop-shadow(0 0 24px rgba(59, 130, 246, 0.6));
  animation: neonPulse 3s ease-in-out infinite;
  transition: 0.4s ease;
}

.logo img:hover {
  transform: scale(1.03);
  filter:
    drop-shadow(0 0 8px rgba(37, 99, 235, 1))
    drop-shadow(0 0 18px rgba(37, 99, 235, 0.9))
    drop-shadow(0 0 36px rgba(59, 130, 246, 0.8));
}

@keyframes neonPulse {
  0% {
    filter:
      drop-shadow(0 0 5px rgba(37, 99, 235, 0.7))
      drop-shadow(0 0 12px rgba(37, 99, 235, 0.6))
      drop-shadow(0 0 24px rgba(59, 130, 246, 0.5));
  }

  50% {
    filter:
      drop-shadow(0 0 8px rgba(37, 99, 235, 1))
      drop-shadow(0 0 18px rgba(37, 99, 235, 0.9))
      drop-shadow(0 0 36px rgba(59, 130, 246, 0.8));
  }

  100% {
    filter:
      drop-shadow(0 0 5px rgba(37, 99, 235, 0.7))
      drop-shadow(0 0 12px rgba(37, 99, 235, 0.6))
      drop-shadow(0 0 24px rgba(59, 130, 246, 0.5));
  }
}

.painel__navegacao {
  display: flex;
  width: 100%;
  align-items: center;
}

.navegacao__links {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 42px;
  margin: 0 auto;
  list-style: none;
}

.navegacao__links a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.navegacao__links a:hover {
  color: #1196F3;
}

.navegacao__links a::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: #1196F3;
  box-shadow: 0 0 18px rgba(17, 150, 243, 0.8);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.navegacao__links a:hover::after,
.navegacao__links a.ativo::after {
  opacity: 1;
  transform: scaleX(1);
}

.quote-btn {
  display: flex;
  min-width: 210px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-left: auto;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #1196F3, #2563eb);
  box-shadow: 0 0 24px rgba(17, 150, 243, 0.48);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.quote-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.quote-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1aa3ff, #2563eb);
  box-shadow: 0 0 30px rgba(17, 150, 243, 0.7);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(17, 150, 243, 0.34);
  border-radius: 12px;
  background: rgba(17, 150, 243, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 220ms ease, opacity 220ms ease;
}

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

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

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

@media (max-width: 768px) {
  .navegacao {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo:hover {
    transform: translateX(-50%) translateY(-2px);
  }

  .logo img {
    width: 80px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .painel__navegacao {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 30px 5%;
    border-bottom: 1px solid rgba(17, 150, 243, 0.12);
    background: rgba(2, 7, 17, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    backdrop-filter: blur(20px);
    transition: 0.3s ease;
  }

  .painel__navegacao.ativo {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navegacao__links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .quote-btn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }
}
