/* navbar.css */
.navbar {
    background: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #4b136b;
    font-weight: 500;
  }
  
  .menu-toggle {
    font-size: 24px;
    background: none;
    border: none;
    display: none;
    cursor: pointer;
  }
  
  .usuario {
    margin-left: 20px;
    font-weight: 500;
    color: #555;
  }
  .usuario-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 20px;
  }
  
  .usuario-btn {
    background: none;
    border: none;
    color: #4b136b;
    font-weight: 500;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    padding: 8px;
  }
  
  .usuario-menu {
    display: none;
    position: absolute;
    background: #fff;
    color: #333;
    right: 0;
    top: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 160px;
    z-index: 999;
  }
  
  .usuario-menu.visible {
    display: block;
  }
  
  .usuario-menu a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #333;
  }
  
  .usuario-menu a:hover {
    background: #f5f5f5;
  }
  
  /* MOBILE MENU */
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      background: #fff;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      display: none;
      padding: 20px;
    }
  
    .nav-links.visible {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  }
  