/* Formatando a box que contem a foto do perfil*/
.box_perfil {
    display: flex;
    align-items: center;
    justify-content: left;
    height: auto;
    margin: 1vw 0 2vw 0;
}

.conteudo_perfil {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 1vw;
}

.box_perfil img {
    width: 4vw;
    height: 4vw;
    border-radius: 50%;
    margin-left: 2vw;
    box-shadow: 0 0 0.2vw var(--cor_cinza_escura);
}

.conteudo_perfil p {
    color: var(--cor_cinza_escura);
    font-family: var(--font-family-koho);
    font-size: 1.25em;
    font-weight: 600;
    white-space: nowrap;
    margin-top: 0;
    margin-bottom: 0;
}

.box_localizacao {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0.3vw;
}

    .box_localizacao p {
        color: var(--cor_cinza_clara);
        font-family: var(--font-family-koho);
        font-size: 0.8em;
        font-weight: 900;
        white-space: nowrap;
    }

    .box_localizacao img {
        width: 1vw;
        height: 1vw;
    }
.seletor_privacidade {
    font-family: var(--font-family-koho);
    font-size: 0.8em;
    background-color: var(--cor_cinza_botao);
    width: fit-content;
    border-radius: 0.3vw;
    padding: 0.1vw;
    cursor: pointer;
    margin-top: 0;
}

    .seletor_privacidade:hover,
    .seletor_privacidade:focus {
        background-color: var(--cor_cinza_clara);
    }

/* ************************Responsividade******************** */
@media only screen and (max-width: 1024px) {
    .box_perfil {
        margin-top: 1vw;
    }

        .box_perfil img {
            width: 6vw;
            height: 6vw;
            margin-left: 2vw;
        }


    .box_localizacao {
        margin-top: 0.3vw;
    }


        .box_localizacao img {
            width: 1.5vw;
            height: 1.5vw;
        }
    .seletor_privacidade {
        border-radius: .6vw;
        padding: 0.2vw;
        margin-top: 1vw;
    }
}

@media only screen and (max-width: 768px) {
    .box_perfil {
        margin-top: 2vw;
    }

        .box_perfil img {
            width: 8vw;
            height: 8vw;
            margin-left: 2vw;
        }


    .box_localizacao {
        margin-top: 0.3vw;
    }


        .box_localizacao img {
            width: 1.8vw;
            height: 1.8vw;
        }
    .seletor_privacidade {
        border-radius: .8vw;
        padding: 0.2vw;
        margin-top: 1vw;
    }
}

@media only screen and (max-width: 480px) {
    .box_perfil {
        margin-top: 3vw;
    }

        .box_perfil img {
            width: 15vw;
            height: 15vw;
            margin-left: 2vw;
        }


    .box_localizacao {
        margin-top: 0.3vw;
    }


        .box_localizacao img {
            width: 3vw;
            height: 3vw;
        }
    .seletor_privacidade {
        border-radius: 1vw;
        padding: 0.2vw;
        margin-top: 1vw;
    }

}
