@media (max-width: 768px) {
    
    main::after {
        background: linear-gradient(0deg, #000 20%, rgba(0, 0, 0, 0) 50%) no-repeat;
        width: 100vw;
    }

    main .personagem .imagem {
        height: 85%;
        object-position: center;
    }
    
    .conteudo {
        left: 0;
        top: -25%;
        max-width: 100vw;
        padding: 30px;
    }
    
    .conteudo .nome-personagem {
        font-size: 30px;
    }

    .botoes {
        flex-direction: row;
        align-items: flex-end;
        width: 100%;
        padding-bottom: 100px;
        gap: 22px;
    }

    .botoes .botao {
        height: 60px;
        width: 60px;
    }

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

@media (max-width: 620px) {
    
    main .personagem .imagem {
        height: auto;
    }

    .conteudo {
        top: -16%;
    }

    .conteudo .nome-personagem {
        margin-bottom: 6px;
    }
    .conteudo .descricao {
        font-size: 16px;
        line-height: 18px;
    }

    .botoes {
        gap: 10px;
    }

    .botoes .botao {
        height: 36px;
        width: 36px;
    }

    .botoes .botao img {
        max-width: 36px;
    }
}

@media (max-width: 392px) {
    .conteudo {
        top: -20%;
    }

    .conteudo .descricao {
        font-size: 14px;
    }
}