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

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

h1 {
    font-size: 28px;
    color: #e50914;
    font-weight: bold;
    letter-spacing: 2px;


}
h2 {
    width: 100%;
    height: 20px;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #ffffff;
}

.lista-perfis {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.item-perfil {
    width: 140px;
}


.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 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.5vw;
    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;
}

/* ---------- MEDIA ---------- */

@media (max-width: 768px) {

    body {
        flex-direction: column;
        justify-content: center;
        padding: 20px;
    }

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 18px;
    }

    .lista-perfis {
        flex-direction: column;
        align-items: center;
    }

    .item-perfil {
        width: 120px;
    }

    .nome-perfil {
        font-size: 14px;
    }

    .botao-gerenciar {
        font-size: 14px;
        padding: 10px 20px;
    }
}

#site {
    display: none;
}
