#btn-mobile {
  display: none;
}

#menu {
  display: flex;
}

@media (max-width: 1100px) {

  #menu {
    /*display: none;*/
    display: block;
    position: absolute;
    width: 100%;
    top: 70px;
    right: 0px;
    /*padding-left: 180px;*/
    background:rgb(2, 120, 189); /* rgba(0, 138, 216,1) var(--azulcrescento);*/
    height: 0px;
    transition: .6s;
    z-index: 1000;
    visibility: hidden;
    overflow-y: hidden;
    justify-content: center;
    text-align: center;
  }

  #menu .underline:hover {
    border-radius: 4px;
    /* color: var(--azulcrescento3);*/
    background-color: rgb(17, 129, 194,.5); /*var(--azulcrescento3);*/
  }

  #nav.active #menu {
    height: calc(100vh + 130px) ;
    visibility: visible;
    overflow-y: auto;
  }

  #menu .underline, #menu .addmargin {
    padding: 1rem;
    margin: 0 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, .05)
  }

  #btn-mobile {
    display: flex;
    padding: .5rem 1rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    background: none;
    gap: .5rem;
  }

  #hamburguer {
    display: block;
    width: 20px;
    border-top: 2px solid;
    color: white;
  }
  #hamburguer::after, #hamburguer::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    margin-top: 5px;
    transition: .3s;
    position: relative;
  }
  #nav.active #hamburguer {
    border-top-color: transparent;
  }

  #nav.active #hamburguer::after{
    transform: rotate(135deg);
    top: -7px
  }
  #nav.active #hamburguer::before{
    transform: rotate(-135deg);
  }

  .underline::after {
    display: none;
  }

  .estilo-botao {
    padding: 0px 0px;
  }

  .dropdown-menu {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    text-align: center;
    justify-content: center;
  }

  .dropdown-menu::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .lista-hd {
    padding: 13px 0px;
  }

}