.cabecalho {
    position: fixed;
    width: 100vw;
    height: 92px;
    padding: var(--size-fluid-1);
    z-index: 500;
    /* background-color: var(--rosemary-2); */
}

.cabecalho-conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--size-lg, 1024px);
    padding: 0 var(--size-fluid-2);
    margin: 0 auto;
}

.cabecalho-transicao {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.cabecalho-transicao.rolado {
    background-color: var(--rosemary-2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.logo {
    display: block;
    height: 64px;
    aspect-ratio: 3.5;
}

.logo-img {
    display: block;
    width: 100%;
    height: auto;
}

.nav-lista {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style-type: none;
    color: var(--off-white-0);
}

.nav-link {
    margin: 0 var(--size-2);
}

li.nav-link a {
    display: inline-block;
    padding: var(--size-2);
    border-radius: var(--radius-2);
    color: var(--off-white-0);
    background-color: transparent;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 100;
    transform: scale(1);
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

li.nav-link a:hover {
    color: var(--rose-2);
    background-color: color-mix(in srgb, var(--rose-0) 15%, transparent);
    transform: scale(0.8);
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.nav-separador {
    width: 1px;
    height: var(--font-size-4);
    color: var(--off-white-0);
    background-color: var(--off-white-0);
}

.cabecalho-botao {
    display: flex;
    align-items: center;
    justify-items: center;
    padding: var(--size-1) var(--size-3);
    border-radius: var(--radius-3);
    color: var(--foreground-muted);
    background-color: var(--background-primary);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85em;
    font-weight: 500;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.cabecalho-insta {
    display: flex;
    margin: auto 0;
    padding: 0;
    align-items: center;
    justify-items: center;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.cabecalho-insta:hover,
.cabecalho-botao:hover {
    transform: scale(0.8);
    transition: transform 0.2s ease;
}


a.cabecalho-botao svg {
    fill: var(--foreground-muted);
    height: 1.25em;
    width: 1.25em;
}

a.cabecalho-insta svg {
    fill: var(--background-primary);
    height: 1.75em;
    width: 1.75em;
}