.cartao-pokemon {
    display: none;
    margin-left: 20vw;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    max-width: 400px;
}

.cartao-topo {
    padding: 20px 30px 0;
    background: url('../img/pokebola.png') top center /70% no-repeat; 
    background-position-y: 15%;
}

.nome {
    margin-bottom: 5px;
}

.tipo {
    font-size: 12px;
    background-color: #fff;
    opacity: 0.7;
    border-radius: 10px;
    padding: 2px 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.detalhes {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detalhes h2 {
    text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.20);
}

.detalhes span {
    text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.20);
    font-size: 1.2em;
}

.cartao-imagem {
    display: flex;
    justify-content: center;
    margin: 5px auto 0;
    width: 300px;
    height: 300px;
}

.cartao-pokemon img {
    max-height: 100%;
}

.aberto img {
    animation-name: slide;
    animation-duration: .3s;
}

@keyframes slide {
    from {
        opacity: 0;
        max-height: 60%;
    }
    to {
        opacity: 1;
    }
}

.cartao-informacoes {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 80px 30px 20px;
    margin-top: -70px;
    border-radius: 0 0 8px 8px;
}

.cartao-informacoes h3 {
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #6b727A;
}

.status, .habilidades {
    padding: 0 10px;
    width: 180px;
}

.status ul li, .habilidades ul li {
    border-bottom: 1px solid #C3C4C5;
    padding: 0 0 5;
    margin-bottom: 5px;
    font-size: 13.5px;
}

.cartao-pokemon.aberto {
    display: block;
}

.tipo-eletrico {
    background: linear-gradient(135deg, #e0b508 0%, #f8d030 60%);
}

.tipo-grama {
    background: linear-gradient(135deg, #07AD7B 0%, #09DC9B 60%);
}

.tipo-fogo {
    background: linear-gradient(135deg, #D16010 0%, #F08030 60%);
}

.tipo-agua {
    background: linear-gradient(135deg, #235FE9 0%, #6890F0 60%);
}

.tipo-fantasma {
    background: linear-gradient(135deg, #3A2D4F 0%, #493963 60%);
}

.tipo-dragao {
    background: linear-gradient(135deg, #4B08E8 0%, #7038F8 60%);
}


