body {
    background-color: #000;
    overflow: hidden;
  }
   
  main .personagem {
    display: none;
    height: 100vh;
  }
  
  main .personagem.selecionado {
    /*EXPLICAR ESSE SELETOR*/
    display: block;
  }
  
  main .personagem .imagem {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .conteudo {
    position: absolute;
    top: 0;
    left: 120px;
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    max-width: 380px;
    z-index: 1;
  }
  
  .conteudo .nome-personagem {
    color: #ffffff;
    font-size: 48px;
    font-family: "Secular One";
    font-weight: 400;
    margin-bottom: 20px;
  }
  
  .conteudo .descricao {
    color: #ffffff;
    font-family: "Rubik";
    font-size: 16px;
    line-height: 24px;
  }
  
  .conteudo .logo {
    background-image: url("../imagens/one-piece-logo.png");
    background-size: cover;
    width: 230px;
    height: 100px;
    margin-bottom: 35px;
  }
  
  .botoes {
    position: fixed;
    top: 0;
    right: 0;
    width: 180px;
  
    display: flex;
    flex-direction: column;
  
    min-height: 100vh;
    justify-content: center;
    align-items: center;
  
    gap: 1px;
    background: rgba(0, 0, 0, 0.3);
  }
  
  .botoes .botao {
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 50%;
  }
  
  .botoes .botao img {
    border-radius: 100%;
  }
  
  .botoes .botao.selecionado {
    transform: scale(1.2);
    box-shadow: 0px 0px 10px #d9d9d9;
  }
  