.dropdown {
    display: none;
}
#menu {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 80px;
    border: 5px solid rgb(40, 40, 80);
    border-width: 10px 10px 10px 0;
    border-radius: 0 5px 5px 0;
    margin: 0 auto;
    max-width: calc(720px) + 64px;
    background-image: url(../_img/ui/backgrounds/back01.png);
    background-position: center;
    background-size: auto;
    filter: saturate(50%);
    font-size: 1rem;
    font-family: "Playpen Sans Deva", cursive;
}

#menu #nav-scroll {
    position: absolute;
    top: -40%;
    left: -10px;
    width: 64px;
    height: 180%;
    background-image: url(../_img/ui/scroll-sky.png);
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
}

#menu .nav_middle {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 48px;
    width: 100%;
}

#menu a, #menu span {
    display: inline;
    color: #f4f4f4;
    text-shadow: 1px 1px 5px rgba(0,0,0,1);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
}

#menu a:hover {
    color: #ffcc00;
    text-shadow: 
        2px 2px 0 #000,   
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        4px 4px 6px rgba(0,0,0,0.5); 
}

@media (max-width: 720px) {
  #menu {
    display: none;
  }

    .dropdown {
      display: block;
      position: fixed;
      top: 0%;
      left: 0;
      z-index: 7;
      width: 164px;
    }

    /* Botão principal */
    .dropbtn {
        position: relative;
      background-image: url(../_img/ui/scroll-label-horizontal.png);
      background-position: center;
      background-size: 100% 100%;
      background-repeat: no-repeat;
      filter: saturate(50%);
      cursor: pointer;
      width: 120%;
      height: 48px;
      border: none;
      border-radius: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #440000 !important;
      font-size: 1rem;
      font-weight: 200;
      border: none;
      cursor: pointer;
      border-radius: 4px;
      z-index: 99;
    }

    /* .dropbtn:hover ~ .dropdown-content {
        height: 20px;
        border: 12px solid #440000;
        border-width: 0 6px 6px;
    } */

    /* Conteúdo do dropdown */
    .dropdown-content {
        position: relative;
        z-index:6;
        width: 100%;
        height: 0;
        margin: -5px 15px;
        padding: 0 6px;
        background-image: url(../_img/ui/backgrounds/menu-repete.png);
        box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
        border-radius: 4px;
        overflow: hidden;
        transition: 0.5s;
        /* filter: saturate(30%); */
    }

    .dropdown-content a {
        color: #f4f4f4;
        padding: 6px 8px;
        text-decoration: none;
        text-shadow: 0px 0px 5px rgba(0,0,0,1);
        display: block;
        font-size: 1rem;
        font-weight: 300;
    }

    /* Mostrar quando ativo */
    .show {
        height: 80vh!important;
        /* border: 12px solid #440000;
        border-width: 0 6px 6px; */
    }

}