.cabecalho__nav_list {
    display: grid;
    grid-template-columns: 1fr auto 50% auto auto auto;
    gap: 40px;
    list-style-type: none;
    align-items: center;
    width: 100%;
}

.cabecalho {
    padding: 32px 12.5%;
    width: 100%;
}

.cabecalho__logo {
    width: 79.61px;
    height: 48px;
}

.cabecalho__nav_list_link {
    font-size: 20px;
    line-height: 24px;
    text-decoration: none;
    color: var(--cor-links);
    font-family: var(--fonte-texto)
}

.cabecalho__nav_list_item-input {
    position: relative;
}

.cabecalho__nav_list_input {
    width: 100%;
    height: 100%;
    padding: 24px 20px;
    box-sizing: border-box;
    background-color: var(--cor-texto);
    border-radius: 32px;
    border: none;
    font-size: 20px;
    line-height: 24px;
    font-family: var(--fonte-texto);
    color: var(--cor-links);
}

.pesquisa-icon {
    position: absolute;
    right: 17.5px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .cabecalho__nav_list {
        grid-template-areas: 
        "logo sobre login perfil carrinho"
        "input input input input input";
        grid-template-columns: 1fr 2fr .5fr .5fr .5fr;
    }

    .cabecalho__logo {
        grid-area: logo;
        justify-self: center;
    }

    .cabecalho__nav_list_item-sobre {
        grid-area: sobre;
    }

    .cabecalho__nav_list_item-login {
        grid-area: login;
    }

    .cabecalho__nav_list_item-perfil {
        grid-area: perfil;
    }

    .cabecalho__nav_list_item-carrinho {
        grid-area: carrinho;
    }

    .cabecalho__nav_list_item-input {
        grid-area: input;
    }
}