* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

body {
    background: #000000;
    color: #ffffff;
    overflow: hidden;
}

.personagens::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 80vw;
    background: linear-gradient(92deg, #000 25%, rgba(0, 0, 0, 0) 75%) no-repeat;
}

.personagens .personagem {
    display: none;
    height: 100vh;
}

.personagens .selecionado {
    display: block;
}

.personagens .personagem .imagem {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.personagem .conteudo {
    position: absolute;
    top: 0;
    left: 120px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    max-width: 380px;
    z-index: 1;
}

.personagem .conteudo .nome-personagem {
    font-size: 48px;
    font-family: "Secular One", sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
}

.conteudo .descricao {
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.botoes {
    background-color: rgb(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 16px;
    z-index: 1;
}

.botoes .botao {
    border: none;
    background-color: #000000;
    width: 90px;
    height: 90px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.botoes .botao img {
    border-radius: 50%;
}

.botoes .selecionado {
    transform: scale(1.2);
    box-shadow: 0 0 10px #d9d9d9;
}

.botoes .botao.cyberstorm.selecionado {
    box-shadow: 0 0 10px #47ffc5;
}

.botoes .botao.codepixie.selecionado {
    box-shadow: 0 0 10px #9747ff;
}

.botoes .botao.hexblade.selecionado {
    box-shadow: 0 0 10px #ffa947;
}

.botoes .botao.neonpulse.selecionado {
    box-shadow: 0 0 10px #e4309a;
}

.botoes .botao.codebreaker.selecionado {
    box-shadow: 0 0 10px #fff047;
}

footer {
    position: absolute;
    bottom: 0px;
    left: 0;
    display: flex;
    justify-content: center;
    width: 100vw;
    padding: 20px 0;
}

footer .copyright {
    font-family: "Rubik", sans-serif;
    text-shadow: 4px 4px 8px rgb(0, 0, 0, 0.8);
}

@media (max-width: 1040px) and (orientation: landscape){
    .personagens .personagem .conteudo {
        max-width: 300px;
    }

    .botoes .botao {
        width: 60px;
        height: 60px;
    }

    .botoes .botao img {
        max-width: 60px;
    }
}
  
@media (max-width: 820px){
    .personagens::after {
        background: linear-gradient(0deg, #000 25%, rgba(0, 0, 0, 0.00) 70%) no-repeat;
        width: 100vw;
    }

    .personagem .conteudo {
        margin-top: 200px;
    }

    .botoes {
        flex-direction: row;
        align-items: flex-end;
        width: 100%;
        padding: 70px 30px;
    }
}

@media (max-width: 850px) and (orientation: landscape){
    .personagens .personagem .conteudo {
        top: -40px;
    }

    .personagens .personagem .conteudo .nome-personagem{
        font-size: 35px;
        margin-bottom: 5px;
    }

    .botoes .botao {
        width: 45px;
        height: 45px;
    }

    .botoes .botao img {
        max-width: 45px;
    }
}

@media (max-width: 768px){
    .personagens::after {
        background: linear-gradient(0deg, #000 40%, rgba(0, 0, 0, 0.00) 70%) no-repeat;
    }

    .personagens .personagem .imagem {
        height: 85%;
        object-position: center;
    }

    .personagem .conteudo {
        justify-content: flex-end;
        left: 0;
        top: -45%;
        max-width: 100vw;
        padding: 30px;
    }

    .personagem .conteudo .nome-personagem {
        font-size: 30px;
    }

    .personagem .conteudo .descricao{
        max-width: 500px;
    }

    .botoes {
        flex-direction: row;
        align-items: flex-end;
        width: 100%;
        padding: 70px 30px;
    }

    .botoes .botao {
        width: 70px;
        height: 70px;
    }

    .botoes .botao img {
        max-width: 70px;
    }
}

@media (max-width: 608px){
    .personagens .personagem .imagem{
        height: auto;
    }
}

@media (max-width: 480px){
    .personagens .personagem .imagem{
        height: auto;
    }

    .botoes {
        padding: 20px;
        top: -70px;
    }
}

@media (max-width: 425px){
    .personagens .personagem .imagem{
        height: auto;
    }

    .botoes {
        padding: 20px;
        top: -70px;
    }

    .botoes .botao {
        width: 50px;
        height: 50px;
    }

    .botoes .botao img {
        width: 50px;
    }

    footer {
        font-size: 14px;
    }
}

@media (max-width: 392px){
    .conteudo {
        margin-top: 20px;
    }

    .botoes {
        top: -40px;
    }
}