.cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--cor-fundo-foto);
}

.cabecalho .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    margin-left: 70px;
    border-radius: 50%;
    border: 2px solid var(--cor-texto-branco);
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--cor-texto-branco);
    transition: 0.3s, border-color 0.3;
}

.cabecalho a:hover .logo {
    color: var(--cor-fundo-hover-menu);
    border: 2px solid var(--cor-fundo-hover-menu);
}

.cabecalho .menu ul {
    display: flex;
}

.cabecalho .menu li a {
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--cor-texto-branco);
    border-radius: 5px;
    transition: 0.3s;
}

.cabecalho .menu li a:hover {
    background-color: var(--cor-destaque);
    color: var(--cor-fundo-hover-menu);
}

i#burguer {
    display: none;
}

.cabecalho.header-scrolled {
    background-color: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
