nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 80px;
    background-color: transparent;
    z-index: 20;
    position: fixed;
    top: 0;
    left: 0;
}

nav .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #FFFFFF1C;
    backdrop-filter: blur(30px);
    border-radius: 10px;
    width: 100%;
    max-width: 1280px;
    -webkit-backdrop-filter: blur(30px);
}

nav .menu h1 {
    color: white;
    font-size: 30px;
}

nav .menu img {
    cursor: pointer;
    width: 50px;
}

nav .menu .opcoes {
    display: flex;
}

nav .menu .opcoes a {
    font-family: 'Figtree';
    font-weight: 300;
    font-size: 14px;
    color: #ffffff;
    margin: 0 10px;
    transition: all 0.3s;
    text-decoration: none;
}

nav .menu .opcoes a:hover {
    text-decoration: underline;
    color: #ffffff80;
}

nav .menu .botoes {
    display: flex;
}

nav .menu .botoes a.idioma {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px 0 0;
    transition: all 0.3s;
}

nav .menu .botoes a.idioma:hover {
    transform: scale(1.1);
    filter: brightness(110%);
}

nav .menu .botoes a.idioma img {
    width: 34px;
}

nav .menu .botoes a.idioma.ativo {
    border: 2px solid #ffffff;
    width: 38px;
    border-radius: 50%;
    box-shadow: 0 10px 20px 0 #ffffff20;
    transform: scale(1.1);
    pointer-events: none;
}

nav .menu .botoes a.cta {
    font-family: 'Figtree';
    font-weight: 600;
    font-size: 14px;
    background-color: white;
    padding: 10px 25px;
    color: var(--texto-botao);
    border-radius: 50px;
    transition: all 0.3s;
    text-decoration: none;
}

nav .menu .botoes a.cta:hover {
    /* background-color: var(--botao-hover); */
    transform: translateY(4px);
}


@media (max-width: 768px) {
  nav {
    padding: 10px 30px;
  }  

  nav .menu {
    width: 100%;
    padding: 10px;
  }

  nav .menu img {
    width: 20%
}

  nav .menu h1 {
    font-size: 22px;
    width: 10%;
    margin-right: 30px;
  }

  nav .menu .opcoes {
    display: none;
  }

  nav .menu .botoes a.cta {
    padding: 8px 15px !important;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

}