/* Estilos do Menu Superior - Infinite Marketing - Versão Futurística */

/* Header com menu distribuído lateralmente */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(10, 10, 20, 0.8);
  backdrop-filter: blur(10px);
  z-index: 100;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
  background: rgba(10, 10, 20, 0.95);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo com efeito neon */
.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  margin-right: 15px;
  filter: drop-shadow(0 0 5px rgba(255, 85, 0, 0.5));
  transition: all 0.3s ease;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}

.logo-text .infinite {
  color: #FF5500;
  text-shadow: 0 0 5px rgba(255, 85, 0, 0.5), 0 0 10px rgba(255, 85, 0, 0.3), 0 0 15px rgba(255, 85, 0, 0.1);
  animation: neonPulse 1.5s infinite alternate;
}

.logo-text .marketing {
  color: #FFFFFF;
  display: block;
  font-size: 1.2rem;
  letter-spacing: 3px;
}

@keyframes neonPulse {
  from {
    text-shadow: 0 0 5px rgba(255, 85, 0, 0.5), 0 0 10px rgba(255, 85, 0, 0.3), 0 0 15px rgba(255, 85, 0, 0.1);
  }
  to {
    text-shadow: 0 0 7px rgba(255, 85, 0, 0.7), 0 0 14px rgba(255, 85, 0, 0.5), 0 0 21px rgba(255, 85, 0, 0.3);
  }
}

/* Menu distribuído lateralmente */
nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  margin-right: 20px;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 0;
  color: #F0F2FF;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF5500, #9900FF);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #FF5500;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 20px;
}

/* Botão da Área do Cliente com efeito neon */
.btn-primary {
  background: linear-gradient(135deg, #FF5500, #9900FF);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 10px rgba(255, 85, 0, 0.5);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 85, 0, 0.7), 0 0 30px rgba(255, 85, 0, 0.4);
}

/* Menu mobile */
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  top: 18px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* Media queries para responsividade */
@media (max-width: 992px) {
  .nav-list {
    margin-right: 10px;
  }
  
  .nav-item {
    margin: 0 10px;
  }
  
  .nav-link {
    font-size: 0.8rem;
  }
  
  .btn-primary {
    padding: 8px 15px;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s ease;
    z-index: 100;
  }
  
  nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
    margin: 0 0 30px 0;
  }
  
  .nav-item {
    margin: 15px 0;
  }
  
  .hamburger {
    display: block;
  }
}
