body{
    background-image: url(../img/fundo-site.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    font-family: 'vt323', monospace;
    color: #f3f3f3;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 30px;
}

.cartao{
    background-color: #976f00d3;
    width: 370px;
    border: 2px solid #ffbb00;
    box-shadow: 0px 0px 20px #ffbb00, 0px 0px 10px #ffbb00 inset;
    border-radius: 20px;
    overflow: auto;
}

.cartao .minhas-informacoes{
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cartao .minhas-informacoes img{
    width:100px;
    border-radius: 50px;
    border: 2px solid #ffbb00;
    box-shadow: 0px 0px 20px #ffbb00, 0px 0px 10px #ffbb00 inset;
}

 li.aba:active img{
        width: 25px;
        height: 25px;
    }  

.cartao .minhas-informacoes .nome{
    font-size: 30px;
    text-align: center;
}

.cartao .minhas-informacoes .cargo{
    font-size: 20px;
    color: #fff;
    text-align: center;
}

.cartao .conteudo{
    margin-top: 15px; 
}

.cartao .abas{
    display: flex;
}

.cartao .abas .aba{
    width: 50%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.cartao .abas .aba.selecionado{
    background-color: #070647d3;
}

.cartao .informacoes-abas{
    background-color: #070647d3;
}

.informacoes-abas .informacao{
    min-height: 260px;
    padding: 15px;
    display: none;
}

.informacoes-abas .informacao.selecionado{
    display: block;
}

.informacoes-abas .sub-titulo{
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
    color: #ffbb00;
}

.informacoes-abas .descricao{
    font-size: 20px;
    max-height: 180px;
    overflow-y: scroll;
}

.informacoes-abas .descricao span{
    color: #ffbb00;
}

/*redes sociais*/

.redes-sociais{
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    max-height: 180px;
    overflow-y: scroll;
}

.redes-sociais li a{
    width: 250px;
    display: block;
    color: #f3f3f3;
    text-align: center;
    padding: 10px;
    font-size: 20px;
    transition: opacity 0.3s ease-in-out;
}

.redes-sociais .curriculo{
    background-color: #ffbb00;
}

.redes-sociais .linkedin{
    background-color: #1d87bd;
}

.redes-sociais .github{
    background-color: #fd0000;
}

.redes-sociais .behance{
    background-color: #0003b3;
}



@media (hover: hover){

     .cartao .minhas-informacoes .nome:hover{
        font-size: 36px;
        text-align: center;
    }

    .cartao .minhas-informacoes .cargo{
        font-size: 20px;
        color: #c0c0c0;
    }

    .cartao .minhas-informacoes .cargo:hover{
        font-size: 23px;
        color: #ffffff;
        text-align: center;
    }

    .cartao .abas .aba:hover{
        background-color: #161549cb;
    }

    .redes-sociais li a:hover{
        opacity: 0.8;
        font-size: 15px;
    }
}
