/* Ajustes Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand img {
  max-height: 50px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.dropdown-menu {
  margin-top: 0;
  border-radius: 0 0 6px 6px;
}

.navbar-toggler {
  border: none;
  background-color: #20ad96;
  color: #fff;
  font-size: 18px;
  padding: 8px 12px;
}

/* Móvil */
@media (max-width: 991px) {
  .navbar-nav {
    flex-direction: column;
    text-align: center;
  }

  .nav-item {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-top: none;
  }
}