@media (max-width: 769px) {
    main::after {
        background: linear-gradient(0deg, black 20%, rgba(0, 0, 0, 0) 65%) no-repeat;

        width: 100vw;
    }

    section .img-personagem {
        height: 85%;
    }

    .conteudo {
        justify-content: end;

        left: 0;
        top: -25%;

        max-width: 100vw;
        padding: 30px;
    }

    .conteudo .nome-personagem {
        font-size: 36px;
    }

    .conteudo .descricao-personagem {
        max-width: 500px;
    }

    .lista-botoes {
        flex-direction: row;
        align-items: end;

        width: 100%;
        padding: 30px;

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

    .lista-botoes .botao {
        height: auto;
    }

    .lista-botoes .botao img {
        width: 60px;
    }
}

@media (max-width: 425px) {
    section .img-personagem {
        height: auto;
    }

    .conteudo .img-logo {
        width: 170px;
        height: 75px;

        margin-bottom: 20px;
    }

    .conteudo .nome-personagem {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .lista-botoes {
        min-height: 15vh;

        flex-wrap: wrap;

        top: auto;
        bottom: 0;
    }
}