/* Google Fonts - Poppins */ 
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

html, body{
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body > main,
body > section{
    flex: 1;
}

.perfil{
    padding-top: 3.4375rem;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 100px;
}
.perfilUser{
    background: #0A0A0A;
    max-width: 300px;
    width: 100%;
    padding: 1.875rem 1.5625rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.perfilUser img{
    width: 180px; height: 180px;
    object-fit: cover;
}
.perfilUser .username{
    font-size: 1.125rem;
    font-weight: 500;
    margin: .5rem 0 .3125rem;
}
.perfilUser .roleUser{
    width: 100%;
    padding: 5px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .625rem;
    border-radius: 5px;
    text-transform: uppercase;
}
.roleUser.admin{
    background: #FF0000;
}
.roleUser.mod{
    background: #0015FF;
}
.roleUser.equipe{
    background: #7B00FF;
}
.roleUser.jornalista{
    background: #F68E18;
}
.roleUser.apoiador{
    background: #F6181C;
}
.roleUser.membro{
    background: #707070;
}
.profileInfo{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.infoBox{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .8125rem;
    color: #fff;
}
.infoBox p{
    color: #787878;
}

.perfilTopics{
    max-width: 900px;
    width: 100%;
    background: #0A0A0A;
    padding: 1.5625rem 2.5rem;
}
.perfilTopics h2{
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
}
.topicContainer{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.25rem;

}
.topicBox{
    max-width: 400px;
    width: 100%;
    padding: 1.25rem 2.1875rem;
    background: #080808;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.topicBox img{
    width: 60px; height: 60px;
    object-fit: cover;
}
.topicBox .desc{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.topicBox .desc span{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}
.topicBox .badge{
    font-size: .75rem;
    font-weight: bold;
    padding: .3125rem .9375rem;
    color: #fff;
    text-align: center;
    border-radius: .5rem;
    width: fit-content;
    text-transform: uppercase;
    
}
.badge.negado{
    background: #FE1C1C;
}
.badge.aceito{
     background: #1C5BFE;
}
.badge.analise{
    background: #ecb603;
}
.topicBox p{
    font-size: .8125rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.35);
}
.topicHeader{
    display: flex;
    align-items: center;
    gap: 5px;
    overflow: hidden;
}

@media (max-width: 850px){
    .perfil{
        flex-direction: column;
        align-items: center;
    }
}