.contanier-presentation{
    animation: gradient 8s ease infinite;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90vh;
    background: linear-gradient(-30deg, #000,#1C1C1C, #363636, #4F4F4F) no-repeat;
    background-size: 300% 300%;
    flex-wrap: wrap;
    position: relative;
}

.presentation-infor{
    margin-top: 150px;
}

.presentation-infor > div{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
}



.presentation-photo{
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 100px;
    
}



.presentation-infor{
    height: 40%;
    width: 60%;
    color: var(--color--branco);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.contanier-name{
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: space-between;
}

.contanier-name > hr{
    border: 1px solid; width: 60%; height: 1px;
}

span{
    color: var(--color--vermelho--rosa);
}

.presentation-nav-socialMedia{
    width: 30%;
    justify-content: space-between;
}

.presentation-nav-socialMedia > div > i{
    margin-right: 5px;
}

.presentation-infor a{
    text-decoration: none;
    color: var(--color--vermelho--rosa);
    
}

.presentation-aboutme{
    flex-wrap: wrap;
    width: 650px;
    line-height: 1.5;
    color: white;
    text-align: justify;
    font-weight: 500;
}

.presentation-aboutme + a{
    width: 220px;
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    text-decoration: underline;
}


@keyframes gradient{
    0%{
        background-position: 0 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0 50%;
    }
}


/* RESPONSIVIDADE*/
@media (max-width: 1000px) {
    .contanier-presentation{
        flex-direction: row;
        justify-content: center;
        align-items: center;
        height: 100vh;
        
    }
    .presentation-infor{
        height: 60%;
        width: 90%;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .presentation-infor > div{
        height: 80%;
        align-items: center;
        justify-content: space-between;
    }

    .presentation-nav-socialMedia{
        width: 40%;
        justify-content: space-around;
    }

    .contanier-name{
        display: flex; 
        flex-direction: column; 
    }
    .contanier-name > hr{
        border: none;
    }
    .presentation-aboutme{
        width: auto;
        text-align: center;
    }
    
}

@media (max-width: 540px){
    .presentation-nav-socialMedia{
        width: 50%;
    }
}