

.foto-perfil {
    width: 116px;
    height: 116px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, .18);
    
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, .22),
        0 6px 18px rgba(0, 0, 0, .16);
}

.foto-perfil img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media only screen and (max-width: 768px) {
    .foto-perfil {
        width: 96px;
        height: 96px;
    }
}

