.hamburger {
  position: relative;
  width: 1em;
  height: 1em;
  font-size: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hamburger.is-sm {
  font-size: 1rem;
}

.hamburger.is-md {
  font-size: 1.5rem;
}

.hamburger.is-lg {
  font-size: 2rem;
}

.hamburger-line {
  position: absolute;
  right: 0;
  width: 100%;
  height: 0.125em;
  border-radius: 0.125em;
  background: #fff;
  transition: inherit;
}

.hamburger-line:nth-child(1) {
  top: 0.125em;
}

.hamburger.is-active .hamburger-line:nth-child(1),
.w-nav-button.w--open .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotateZ(-135deg);
}

.hamburger-line:nth-child(2) {
  top: 0.438em;
}

.hamburger.is-active .hamburger-line:nth-child(2),
.w-nav-button.w--open .hamburger-line:nth-child(2) {
  right: 50%;
  width: 0;
}

.hamburger-line:nth-child(3) {
  top: 0.75em;
  width: 0.625em;
}

.hamburger.is-active .hamburger-line:nth-child(3),
.w-nav-button.w--open .hamburger-line:nth-child(3) {
  top: 50%;
  width: 100%;
  transform: translateY(-50%) rotateZ(135deg);
}

/* Oculta o menu lateral no desktop */
.mobile-sidebar {
  display: none;
}

.navbar-list .icon-home .navbar-link {

  padding-left: 25px;
  position: relative;
}



.navbar-list .icon-home .navbar-link:before {

  content: "";
  left: 0;
  top: 27px;
  position: absolute;
  width: 15px;
  height: 15px;
  background-image: url("../images/icon-home.svg");
  background-size: 100%;
}

.navbar-list .icon-home .navbar-link:hover:before {
  background-image: url("../images/icon-home-hover.svg");
}

/* Mostra apenas em telas menores */
@media (max-width: 991px) {
  .desktop-menu {
    display: none;
  }

  .navbar-list .icon-home .navbar-link:before {

    left: 15px;
    top: 15px;
  }

  .navbar-list .icon-home .navbar-link {

    padding-left: 35px;
  }

  .mobile-sidebar {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background: #8a489f;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    transition: left 0.3s ease-in-out;
  }

  .mobile-sidebar .navbar-item {
    width: 100%;
    display: inline-block;
    margin-right: 0;
    background-color: #5d0a6b;
  }

  .mobile-sidebar .navbar-link {

    margin-right: 0;
  }

  .mobile-sidebar .navbar-link {
    width: 100%;
    margin: 0;
    margin-right: 0;
    padding: 10px;
    border-radius: 0;
  }

  .mobile-sidebar.active {
    left: 0;
  }

  .close-mobile-menu {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .mobile-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .mobile-list .dropdown-position-list {
    padding-left: 15px;
    position: inherit;
    top: 0;
    visibility: visible;
    opacity: 1;
    width: 100%;
    border-radius: 0;
    display: none;
  }

  .mobile-list .dropdown-position-list.active {
    display: block;
  }
}