.hamburger-fixed {
    padding: 15px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 9999;
    position: relative;
    display: none
}

.hamburger-fixed .hamburger-box-fixed {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative
}

.hamburger-fixed .hamburger-inner-fixed::before,
.hamburger-fixed .hamburger-inner-fixed,
.hamburger-fixed .hamburger-inner-fixed::after {
    width: 40px;
    height: 1px;
    left: 0px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition: transform .3s ease
}

.hamburger-fixed .hamburger-inner-fixed {
    top: 50%;
    transform: translateY(-50%)
}

.hamburger-fixed .hamburger-inner-fixed::before {
    content: "";
    top: -10px
}

.hamburger-fixed .hamburger-inner-fixed::after {
    content: "";
    bottom: -10px
}

.navbar-drawer {
    position: fixed;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background-color: #192A6B;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 9999;
    transition: right .3s ease-in-out
}

.navbar-drawer.open {
    right: 0
}

.drawer-close {
    align-self: flex-end;
    font-size: 32px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 16px
}

.drawer-menu {
    list-style: none;
    margin: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.drawer-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid hsla(0, 0%, 100%, .2);
    color: #fff;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    transition: color .2s
}

.drawer-menu li a img {
    width: 20px;
    height: 20px;
    flex-shrink: 0
}

@media(max-width: 1023px) {
    .navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 600;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbar-fixed.navbar-fixed-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
    .navbar-fixed__menu {
        display: none
    }

    .hamburger-fixed {
        display: block
    }

    .navbar-fixed__left p {
        display: none
    }

    .btn-assistente {
        color: #192a6b
    }
}

@media(min-width: 1024px) {
    .navbar-drawer {
        display: none
    }
}