@media (max-width:769px) {
    main::after {
        background: linear-gradient(0deg, #000 20%, rgba(0, 0, 0,00) 65%) no-repeat;
        width: 100vw;
        top: -15%;

    }

    main .personagem .imagem{
        height: 85%;
    }

    .conteudo {
        justify-content: flex-end;
        left: 0;
        top: -20%;
        max-width: 100vw;
        padding: 30px;
    }

    .conteudo .nome-personagem{
        font-size: 30px;
    }

    .conteudo .descricao{
        max-width: 500px;
    }

    .conteudo .logo{
        height: 90px;
        width: 200px;
        object-fit: cover;
    }

    .botoes{
        flex-direction: row;
        align-items: flex-end;
        width: 100%;
        padding: 30px;
    }

    .botoes .botao img{
        max-width: 60px;
    }
}

@media (max-width: 425px){

    main::after {
        background: linear-gradient(0deg, #000 20%, rgba(0, 0, 0,00) 65%) no-repeat;
        width: 100vw;
        top: -34%;
    }

    main .personagem .imagem{
        height: 50%;
        object-fit: cover;
    }

    .conteudo .logo{
        width: 170px;
        height: 75px;
    }

    .conteudo{
        top: -30%;
    }

    .conteudo .nome-personagem{
        font-size: 24px;
    }

    .conteudo .descricao{
        font-size: 12px;
    }

    .botoes{
        padding: 20px;
        top: -10%;
    }

    .botoes .botao img{
        max-width: 35px;
    }
}