#menu-mobile{
	display: none;
}

@media screen and (max-width: 1085px) {

  .lang-selector {
    position: fixed;
    right: 60px;
    z-index: 6;
    padding: 5px 10px;
    border-radius: 8px;
  }

	#menu-mobile{
		display: block;
	}

	.menu_desk{
		display: none;
	}

  /* ====== RESET / BASE ====== */

  ul#menu_mobile li ul {
      display: none;
  }

  #align_menu_desktop {
    position: fixed;
    background-color: #ffffff;
    border-bottom: 1px solid #082246;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
  }

  /* ====== NAV MOBILE (ESCONDIDA) ====== */
  .nav_bar_index {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(2, 39, 68, 1);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0px;
    overflow-y: auto;
    z-index: 4;
  }

  /* ====== BOTÃO HAMBURGUER ====== */
  #overlay-button {
    position: fixed;
    right: 2em;
    top: 19px;
    padding: 16px 11px;
    z-index: 5;
    cursor: pointer;
    user-select: none;
  }

  #overlay-button span,
  #overlay-button span::before,
  #overlay-button span::after {
    content: "";
    display: block;
    height: 4px;
    width: 35px;
    border-radius: 2px;
    background-color: #000;
    position: absolute;
    transition: all 0.25s ease-in-out;
  }

  #overlay-button span::before {
    transform: translateY(-10px);
  }

  #overlay-button span::after {
    transform: translateY(10px);
  }

  /* ====== CHECKBOX ====== */
  input[type=checkbox] {
    display: none;
  }

  /* ====== MENU VISÍVEL QUANDO CHECKED ====== */
  input[type=checkbox]:checked ~ .nav_bar_index {
    visibility: visible;
    opacity: 1;
  }

  input[type=checkbox]:checked ~ #overlay-button span {
    background: transparent;
  }

  input[type=checkbox]:checked ~ #overlay-button span::before {
    transform: rotate(45deg);
  }

  input[type=checkbox]:checked ~ #overlay-button span::after {
    transform: rotate(-45deg);
  }

  /* ====== MENU PRINCIPAL ====== */
  .menu_index {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  ul.menu_index li {
    display: block;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu_index a {
    display: block;
    padding: 15px 25px;
    color: #00d9ff;
    font-family: Calibri, Arial, sans-serif;
    font-size: 1.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
  }

  .menu_index a:hover {
    color: #ffffff;
  }

  /* ====== SUBMENUS ====== */
  ul.menu_index li ul {
    display: none;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.08);
    padding-left: 20px;
  }

  ul.menu_index li ul li a {
    color: #b1e0e9;
    font-size: 0.95em;
    padding: 12px 25px;
  }

  ul.menu_index li ul li a:hover {
    color: #ffffff;
  }

  /* ====== BOTÃO EXPANDE SUBMENU ====== */
  ul.menu_index li.has-submenu > a::after {
    content: "▼";
    float: right;
    font-size: 0.8em;
    transition: transform 0.25s ease;
  }

  ul.menu_index li.active > a::after {
    transform: rotate(-180deg);
  }

  ul.menu_index li.active > ul {
    display: flex;
  }

}