/* Formatando a box que contem a foto do perfil*/
.box_perfil {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    margin-top: 1vw;
}

.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.25vw;
    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.8vw;
        font-weight: 900;
        white-space: nowrap;
    }

    .box_localizacao img {
        width: 1vw;
        height: 1vw;
        margin-left:0.5vw;
    }


/* ************************Responsividade******************** */
@media only screen and (max-width: 1024px) {
    .box_perfil {
        margin-top: 1vw;
    }

        .box_perfil img {
            width: 6vw;
            height: 6vw;
            margin-left: 2vw;
        }

    .conteudo_perfil p {
        font-size: 1.8vw;
    }

    .box_localizacao {
        margin-top: 0.3vw;
    }

        .box_localizacao p {
            font-size: 1.3vw;
        }

        .box_localizacao img {
            width: 1.5vw;
            height: 1.5vw;
        }
}

@media only screen and (max-width: 768px) {
    .box_perfil {
        margin-top: 2vw;
    }

        .box_perfil img {
            width: 8vw;
            height: 8vw;
            margin-left: 2vw;
        }

    .conteudo_perfil p {
        font-size: 2.2vw;
    }

    .box_localizacao {
        margin-top: 0.3vw;
    }

        .box_localizacao p {
            font-size: 1.5vw;
        }

        .box_localizacao img {
            width: 1.8vw;
            height: 1.8vw;
        }
}

@media only screen and (max-width: 480px) {
    .box_perfil {
        margin-top: 3vw;
    }

        .box_perfil img {
            width: 15vw;
            height: 15vw;
            margin-left: 2vw;
        }

    .conteudo_perfil p {
        font-size: 4vw;
    }

    .box_localizacao {
        margin-top: 0.3vw;
    }

        .box_localizacao p {
            font-size: 2.5vw;
        }

        .box_localizacao img {
            width: 3vw;
            height: 3vw;
        }
}
