@media (max-width: 1280px) {
  .cabecalho .titulo {
    font-size: 40px;
  }

  .selecao-de-personagens .lista-de-personagens {
    max-width: 330px;
  }

  .selecao-de-personagens .lista-de-personagens .personagem {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 767px) {
  body::before {
    background-image: url("../image/bg-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 1;
  }

  main {
    padding: 0 5px;
    justify-content: start;
  }

  .cabecalho .titulo {
    font-size: 22px;
  }

  .selecao-de-personagens .personagem-grande {
    display: none;
  }
}

@media (max-width: 360px) {
  .cabecalho .titulo {
    font-size: 19px;
    text-align: center;
  }
}
