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

main::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;

    min-height: 100vh;
    width: 80vw;

    background: linear-gradient(-233deg, black 40%, rgba(0, 0, 0, 0) 65%) no-repeat;
}

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

section .personagem.selecionado {
    display: block;
}

section .img-personagem {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition-duration: 0.5s;
}

.conteudo {
    position: absolute;
    top: 0;
    left: 120px;
    z-index: 1;

    min-height: 100vh;
    max-width: 380px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    transition-duration: 0.5s;
}

.conteudo .nome-personagem {
    color: white;
    font-size: 48px;
    font-family: "Secular One", sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
}

.conteudo .descricao-personagem {
    color: white;
    font-family: "Rubik", sans-serif;
    line-height: 24px;
}

.conteudo .img-logo {
    height: 100px;
    width: 230px;
    margin-bottom: 35px;

    background-image: url("../imagens/one-piece-logo.png");
    background-size: cover;
}

.lista-botoes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

    background-color: rgba(0, 0, 0, 0.3);

    min-height: 100vh;
    width: 20vw;

    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;

    transition-duration: 0.5s;
}

.lista-botoes .botao {
    background: none;
    height: 86px;

    border: none;
    border-radius: 50%;

    cursor: pointer;
    overflow: hidden;

    user-select: none;
}

.lista-botoes .botao.selecionado {
    transform: scale(1.2);
    box-shadow: 0 0 10px #d9d9d9;

    transition-duration: 0.5s;
}