.menu-alinhamento{
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    @media(min-width: 1350px){
        justify-content: center;
    }
}

.menu-item-active span{
   border-bottom: 3px solid var(--verde);
   padding-bottom: 4px;
   width: inherit;
}

.menu-item-new{
   border-bottom: 3px solid var(--azul-marinho);
   padding-bottom: 4px;
}

.menu-suspenso-vots{
    width: 200px;
    height: 34px;
    background: var(--azul-virtual-claro);
    text-align: center;
    border-radius: 15px;
    font-size: 17px;
    color: white;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border: 3px solid var(--verde);
    position: fixed;
    right: 60px;
    bottom: 8vh;
    z-index: 5;
    text-decoration: none;
}

.menu-suspenso-vots:hover{
    background: var(--laranja);
    color: var(--branco);
}

.menu-suspenso-vots > a{
    color: var(--branco);
    text-decoration: none;
}

.conteudo-ppa-virtual{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    padding: 0 20px;
}

 /* Botão ppa-vitual */
  .button-body{
    display:flex;
    align-items:center;
    justify-content:center;
    position: fixed;
    z-index: 990;
    top: 160px;
    right: 20px;

    @media(max-width: 576px){
      right: 15px;
      top: 85px;
    }
  }
  .available-for-btn {
    font-family:system-ui, math;
    --animation: 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    column-gap: 2px;
    color: var(--branco);
    background-color: var(--laranja);
    border-radius: 100px;
    padding: 1rem 1.5rem 1rem 0.5rem;
    outline: none;
    border: none;
    font-weight: 600;
    position: relative;
    transition: 0.2s ease-in-out;
    cursor: pointer;
    font-size:16px;
  }
  .available-for-btn:hover {
    background-color: var(--azul-marinho);
  }
  .available-for-btn:active {
    background-color: #e1f9dc;
    border: solid 2px var(--branco);
  }
  .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 16px;
    height: 16px;
    border: solid 2px var(--branco);
    border-radius: 50%;
    margin: 0 10px;
    background-color: transparent;
    animation: circle-keys var(--animation);
  }
  
  .circle .dot {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--branco);
    animation: dot-keys var(--animation);
  }
  
  .circle .outline {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    animation: outline-keys var(--animation);
  }
  .circle:nth-child(2) {
    animation-delay: 0.3s;
  }
  .circle:nth-child(2) .dot {
    animation-delay: 0.3s;
  }
  .circle:nth-child(1) .outline {
    animation-delay: 0.9s;
  }
  .circle:nth-child(2) .outline {
    animation-delay: 1.2s;
  }
  @keyframes circle-keys {
    0% {
      transform: scale(1);
      opacity: 1;
    }
  
    50% {
      transform: scale(1.5);
      opacity: 0.5;
    }
  
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  @keyframes dot-keys {
    0% {
      transform: scale(1);
    }
  
    50% {
      transform: scale(0);
    }
  
    100% {
      transform: scale(1);
    }
  }
  
  @keyframes outline-keys {
    0% {
      transform: scale(0);
      outline: solid 20px var(--color);
      outline-offset: 0;
      opacity: 1;
    }
  
    100% {
      transform: scale(1);
      outline: solid 0 transparent;
      outline-offset: 20px;
      opacity: 0;
    }
  }

  /* Botão ppa-vitual */