/* Estilos para el nav principal */
.navbar {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
  padding: 0 40px;
  display: flex;
  align-items: center;
  height: 70px;
  z-index: 100;
  transition: all 0.3s ease-in-out;
}
.navbar .brand {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.main-nav, nav, .navbar {
  z-index: 9999 !important;
  position: relative;
  pointer-events: auto !important;
}

/* Estilos para cuando el nav está fijo */
.navbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Media queries para responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }
  
  .navbar .nav {
    gap: 15px;
  }
  
  .navbar .brand img {
    width: 80%;
  }
}