body {
    background-color: #141414;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: 'Geist', sans-serif;
}

.conteudo-principal {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

h1 {
    font-size: 3.5vw;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.lista-perfis {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2vw;
    margin-bottom: 50px;
    list-style: none;
    padding: 0;
}

.item-perfil {
    width: 10vw;
    min-width: 120px;
    max-width: 200px;
}

.perfil {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

/* ---------- AVATAR ---------- */

.avatar-container {
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icone-avatar {
    width: 100%;
    height: 100%;
}

.icone-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    outline: 2px solid transparent;
    /* reserva espaço */
    transition: outline-color 0.3s;
}

/* ---------- NOME ---------- */

.nome-perfil {
    font-size: 1.2vw;
    margin-top: 8px;
    color: #808080;
    font-weight: 400;
    transition: color 0.3s;
}

/* ---------- HOVER UNIFICADO ---------- */

.perfil:hover img {
    outline-color: #fff;
}

.perfil:hover .nome-perfil {
    color: #fff;
}

/* ---------- GERENCIAR ---------- */

.gerenciar {
    margin-top: 20px;
}

.botao-gerenciar {
    background: transparent;
    border: 1px solid grey;
    color: grey;
    padding: 10px 30px;
    font-size: 1vw;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    font-weight: 200;
    transition: all 0.3s;
}

.botao-gerenciar:hover {
    border-color: #e5e5e5;
    color: #e5e5e5;
}