.sp--body-perfil{
    background-image: url("../assets/imagens/bg.svg");
}

.sp--perfil-container{
    display: flex;
    justify-content: center ;
    align-items: center;
    flex-direction: column;
    height: var(--resol-h);
    width: var(--resol-w);
}

.sp--perfil-texto{
    padding-bottom: 100px;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 50px;
    font-weight: 700;
}

.sp--perfil-list{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    padding-bottom: 100px;
}

.sp--btn-perfil{
    height: 7vh;
    min-height: 40px;
    width: 400px;
    font-size: 25px;
    position: absolute;
    bottom: 20%;
    border-radius: 10px;
    font-weight: 600;
    background-color: #222;
    color:white;
    border-color: #333;
    border-style: dashed;
    border-width: 2px;
    box-shadow: 0 0 20px black;
}

.sp--btn-perfil:focus{
    outline: none;
    border-color: #FFB000;
    color: #FFB000;
}

.perfil,
.perfil-avatar{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20vh;
    width: 20vh;

    border-radius: 50%;
    filter: brightness(0.6);
    padding: 2px;
    margin: 10px;
    box-shadow: 0 0 20px black;
    overflow: hidden;
}

.perfil-avatar{
    margin: 10px;
}

.perfil img{
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.perfil-padrao{
    content: url("../assets/imagens/avatar.svg");
}

.perfil:focus,
.perfil-avatar:focus,
.avt-select{
    outline: none;
    filter: brightness(1);
    border: dashed 2px #FFB000;
}

.perfil-avatar:focus,
.avt-select{
    border-color: green;
}

.apagarPerfil:focus{
    border-color: red;
}

.sp--perfil-user{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 2.5vw;
}

.sp--perfil-nome{
    color: white;
    line-height: 2;
    font-size: 25px;
    font-weight: 500;
}

.p-bloqueado{
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 2;
    color: white;
    text-align: center;
    font-size: 40px;
    height: 600px;
}

.voltar-login{
    align-self: center;
    width: 250px;
}

@media all and (max-width: 1919px){
    .sp--perfil-container{
        height: var(--hdresol-h);
        width: var(--hdresol-w);
    }

    .sp--perfil-texto{
        padding-bottom: 50px;
        padding-top: 50px;
        width: 100%;
        font-size: 40px;
        font-weight: 600;
    }

    .sp--btn-perfil{
        bottom: 10%;
        height: 70px;
        width: 350px;
        font-size: 20px;
        font-weight: 500;
    }

    .sp--body-perfil{
        background-position: center center;
    }

    .sp--perfil-nome{
        font-size: 20px;
    }

    .sp--perfil-list{
        padding-left: 250px;
        padding-right: 250px;
    }

}