.navweb {
    align-items: center;
  }
  .navweb a {
    display: flex;
    flex-direction: row;
    position: relative;
    margin: 0 20px;
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
  }
  .submenu {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    width: 250px;
  }
  
  .submenu a {
    display: block;
    padding: 12px;
    text-decoration: none;
    color: black;
  }
  
  .submenu a:hover {
    color: #0056b3;
  }
  
  /* Mostrar submenú al hacer hover */
  .nav-item:hover .submenu {
    display: block;
  }