/* CSS NAVEGATION BAR */
.navegacao {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 20px;
    position: fixed ;
    top: 0px;
    width: 100%;
    display: flex;
    margin: 0px 0px 0px 0px;
    justify-content: space-between;
    z-index: 4;
  }
  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 5px;
  }
  
  .menu > li {
    list-style: none;
    display: inline-block;
    font-size: 19.2px;
    color: var(--white-color);
    cursor: pointer;
  }
  
  .menu > li > a {
    text-decoration: none;
    color: var(--white-color);
  }
  
  .menu > li > a:hover {
    text-decoration: none;
    color: var(--bg-color-hover);
  }
  .logo {
   
    display: flex;
    align-items: center;
    justify-content: start;
    width: 240px; 
    height: 50px; 
    max-width: 100%;
}
  #logonav {
    cursor: pointer;
    width: 90%;
    height: auto;
   
  }

  /*Só para a versão mobile*/
  .colapsado {
    
    display: none;
    

  }

  #menu-mobile {
    display: none;
    padding-right: 5px;
    align-items: center;
    justify-content: center;
  }
  
  .shake {
    animation: shake 0.5s;
  }
  
  .menu-icon {
    cursor: pointer;
    font-size: 36px;
    color: var(--main-yellow);
  }

  
  
  @keyframes rotateX {
    0% {
      opacity: 0;
      transform: rotateX(90deg);
    }
    50% {
      transform: rotateX(20deg);
    }
    100% {
      opacity: 1;
      transform: rotateX(0deg);
    }
  }

  @keyframes shake {
    0% {
      transform: translateX(0);
    }
    25% {
      transform: translateX(-5px);
    }
    50% {
      transform: translateX(5px);
    }
    75% {
      transform: translateX(-5px);
    }
    100% {
      transform: translateX(0);
    }
  }
  .menu-extendido-mobile {
    animation: rotateX 0.3s ease-in-out forwards;
    transform-origin: top;
    position: absolute;
    top: 70px;
    right: 0px;
    text-align: right;
    display: none;
    flex-direction: column;
    padding-right: 10px;
    z-index: 32;
    margin-right: 40px;
    
    padding: 30px;
    
    border-right: 4px solid #de9900;
    margin-top: 30px;
    border-radius: 10px;
    background-color: rgba(55, 55, 55, 0.3);
    backdrop-filter: blur(10px);
    -webkit-box-shadow: 5px 5px 15px -1px rgba(0, 0, 0, 0.65);
    box-shadow: 5px 5px 15px -1px rgba(0, 0, 0, 0.35);
  }

  
  .menu-extendido-mobile a {
    text-decoration: none;
    font-size: 19px;
    cursor: pointer;
    color: var(--white-color);
  }
  .separador-mb {
    margin-bottom: 15px;
  }
  
  .main-btn-mobile {
    padding: 8px;
    text-align: center;
    border-radius: 28px;
    font-size: 16px;
    background: var(--main-gradient);
    color: #373737 !important;
  }
  .mb-link {
    margin-top: 25px;
  }

  .main-btn {
    padding: 10px 15px 10px 15px;
    border-radius: 28px;
    font-size: 18px;
    font-weight: bold;
    background: var(--main-gradient);
    color: #000000 !important;
  }
  /*Fim da versão mobile*/
  
  /* FIM CSS NAVEGATION BAR */

 
/* (640px and up) */
@media only screen and (max-width: 640px) {
  .menu {
    display: none;
  }
  .colapsado {
    display: block;
    
  }
  #menu-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

  /* (768px and up) */
@media only screen and (min-width: 641px) and (max-width: 1024px) {
  
    .menu {
      display: none;
    }
    .colapsado {
      display: block;
    }
    #menu-mobile {
      display: flex;
      align-items: center;
      justify-content: center;
    }
}

/* (1024px and up) */
@media only screen and (min-width: 1025px) and (max-width: 1280px) {
    .menu {
      display: none;
    }
    .colapsado {
      display: block;
    }
    #menu-mobile {
      display: flex;
      align-items: center;
      justify-content: center;
    }
}