/* 
    Usa-se o max-width pra quando a responsividade deve ser aplicada do pc para o celular

    Usa-se o min-windth quando a responsividade deve ser aplicada do celular para o PC (mobile first)
*/
@media (max-width: 769px){
    /* Edita o pseudo elemento depois da tag main */
    main::after{
        background: linear-gradient(0deg, #000 20%, rgba(0, 0, 0, 0) 65%) no-repeat;
        width: 100vw;
    }

    main .personagem .imagem {
        height: 85%;
    }

    .conteudo {
        justify-content: flex-end;
        left: 0;
        top:-20%;
        max-width: 100vw;
        padding: 30px;
    }

    .conteudo .nome-personagem {
        font-size: 36px;
    }

    .conteudo .descricao {
        max-width: 500px;
    }

    .botoes {
        flex-direction: row;
        align-items: flex-end;
        width: 100%;
        padding: 30px;
        padding-left: 10% !important;
    }

    .botoes .botao img {
        max-width: 60px;
    }

    .botoes::-webkit-scrollbar {
        height: 12px; /* Largura da barra de rolagem */
        width: 5px;
    }
    .botoes::-webkit-scrollbar-thumb {
        background-color: #99999900; /* Cor do tracinho */
    }
}


@media (max-width: 425px){
    main .personagem .imagem {
        height: auto;
    }

    .conteudo .logo {
        width: 170px;
        height: 75px;
    }

    .conteudo {
        top: -30%
    }

    .conteudo .nome-personagem {
        font-size: 24px;
    }

    .containerButtons{
        display:flex;
        justify-content: center;
        align-items: center;
    }

    .botoes {
        padding: 20px;
        top: -20%;
    }

    .botoes .botao img {
        width: 9vw;
    }

    .botoes .botao img {
        max-width: 50px;
    }

    .botoes::-webkit-scrollbar {
        height: 30px; /* Largura da barra de rolagem */
        width: 5px;
    }
    .botoes::-webkit-scrollbar-thumb {
        background-color: #00000000; /* Cor do tracinho */
    }
}