#navbar {
  width: 100%;
  height: 80px;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  z-index: 1000;
  background: #00133B;
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.containerNavbar {
  width: 90%;
  max-width: 1160px;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 24px;
}

.containerNavbar ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.containerNavbar li {
  list-style: none;
  margin: 0;
}

.containerNavbar a {
  color: #ffffff;
  text-decoration: none !important;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.containerNavbar a:hover {
  color: #2196F3;
  background: rgba(255, 255, 255, 0.1);
}

.menu {
  display: none;
}

.burger {
  display: none;
}

.navbar_logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.navbar_logo:hover {
  transform: scale(1.02);
}

/* Responsividade */
@media (max-width: 768px) {
  .containerNavbar ul {
    display: none;
  }
  
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(0, 19, 59, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
  }
  
  .burger:hover {
    background: rgba(0, 19, 59, 1);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  }
  
  .burger .line {
    width: 24px;
    height: 2.5px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    display: block;
  }
  
  .burger.active .line_1 {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .burger.active .line_2 {
    opacity: 0;
    transform: scale(0);
  }
  
  .burger.active .line_3 {
    transform: rotate(-45deg) translate(4px, -4px);
  }
  
  .menu {
    display: block;
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: calc(100vh - 80px);
    background: rgba(0, 19, 59, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    padding: 40px 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  }
  
  .menu.active {
    right: 0;
  }
  
  .menu li {
    list-style: none;
    margin: 0;
    padding: 0 24px;
  }
  
  .menu a {
    display: block;
    color: #ffffff;
    text-decoration: none !important;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 16px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 8px 0;
  }
  
  .menu a:hover {
    color: #2196F3;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .containerNavbar {
    padding: 0 16px;
    position: relative;
  }
  
  .navbar_logo {
    height: 60px;
  }
  
  .burger {
    position: absolute;
    top: 15px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .containerNavbar {
    padding: 0 12px;
  }
  
  .menu {
    max-width: 100%;
    right: -100%;
  }
  
  .menu.active {
    right: 0;
  }
  
  .navbar_logo {
    height: 50px;
  }
  
  .burger {
    width: 38px;
    height: 38px;
    top: 15px;
    right: 16px;
  }
  
  .burger .line {
    width: 20px;
    height: 2px;
    margin: 2.5px 0;
  }
}