body{
    background-color: black;
    overflow: hidden;
}

main::after{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 88vw;

    background: linear-gradient(-250deg, #181717 40%, rgba(0, 0, 0, 0) 65%) no-repeat;
}

main .personagem {
    display: none;
    height: 100vh;
}

main .personagem.selecionado{
    display: block;
}

main .personagem .imagem{
    width: 100%;
    height: 100%;
    object-fit: cover; /*para não esticar a imagem*/
}

.conteudo{
    position: absolute;
    top: 0;
    left: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    max-width: 300px;
    z-index: 1;
}

.conteudo .nome-personagem{
    color: white;
    font-size: 46px;
    font-family: 'Protest Revolution', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
}

.conteudo .descricao{
    color: white;
    font-family: 'Secular one', sans-serif;
    line-height: 24px;
    text-align: justify;
}

.conteudo .logo{
    background-image: url("../imagens/logo.png");
    background-size: cover;
    height: 170px;
    width: 400px;
    margin-bottom: 20px;
}

.botoes{
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 180px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background-color: rgba(0, 0, 0, 0.3);
}

.botoes .botao{
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.botoes .botao img{
    border-radius: 50%;
    object-fit: cover;
    width: 100px;
    height: 100%;
}

.botoes .botao.selecionado{
    transform: scale(1.1);
    box-shadow: 0 0 5px #9e9e9c;
} 

