@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    text-decoration: none;
    list-style: none;
    color: #FFFFFF;
}

html{
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body{
    background: linear-gradient(45deg, #000000, #383737); 
    background-repeat: no-repeat;

}

/* CABEÇALHO */
.header{
    position: fixed;
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 20px; 
}

.header a{
    font-size: 28px;
    transition: .3s ease-out;
}

.header a:hover{
    color: #504e4e;
}

.menu{
    display: flex;
}


.menu li a{
    font-size: 20px;
    margin: 5px;
    padding: 10px;
    transition: .3s ease-out;
}

.menu li a:hover{
    color: #504e4e;
}
/* /CABEÇALHO */

/* TELA INICIAL / APRESENTAÇÃO */
.boll-welcome{
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome{
    /* width: 1200px;
    height: 100vh;
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    justify-content: center;
    gap: 20px;   */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    min-height: 100Vh;
    margin-top: 20px;
}



.left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
    padding: 0 0 0 20px;
}


.intro{
    border-right: 2px solid rgba(255, 255, 255, .75);
    font-family: 'Special Elite', Arial, Helvetica;
    display: inline-block;
    font-size: max(20px, 2.2vw);
    padding: 6px 0;
    max-width: 0;
    animation: blink normal infinite .8s, typing normal 6s steps(55) infinite both;
    overflow: hidden;
    white-space: nowrap;
}

@keyframes blink{
    100%{
        border-right-color: transparent;
    }
}

@keyframes typing{
    100%{
        max-width: 100%;
    }
}


.left h2{
    font-size: 16px;
    margin-top: 3px;
    color: #c9c6c6;
}

.left p{
    width: 70%;
    margin-top: 15px;
    color: #c9c6c6;
}


.left #button{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c9c6c6;
    color: #000;
    font-weight: 700;
    width: 160px;
    height: 60px;
    border-radius: 6px;
    margin-top: 30px;
    transition: all 1s ease-out;
    font-size: 16px;
}

#button:hover{
    background-color: transparent;
    border: 2px double #fff;
    box-shadow: 0 0 20px #fff;
    color: #fff;
}

#button img{
    width: 24px;
    margin-left: 2px;
}

.left .scroll-down{
    display: flex;
    align-items: center;
    margin-top: 80px;
    animation: jumping 1s linear infinite;
}

.left .scroll-down a img{
    width: 24px;
    margin-left: 15px;
}

@keyframes jumping{
    from{
        transform: translateY(-15px);
    }
    50%{
        transform: translateY(0);
    }
    to{
        transform: translateY(-15px);
    }
}

.right{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px 0 0;
    width: 40%;
}

.right img{
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 3px solid rgb(18, 17, 17);
}
/* /TELA INICIAL / APRESENTAÇÃO */


/* ABOUTME */
.boll-about{
    display: flex;
    justify-content: center;
    align-items: center;
}

#about{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    min-height: 90Vh;

} 

#about h2{
    font-size: 32px;
    letter-spacing: 2px;
}

#about h4{
    font-size: 14px;
    font-weight: 500;
    color: #c9c6c6;
}

#about .container-about{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    padding: 0 15px 0 15px;
}

#about .container-about .img-about{
    text-align: center;
}

#about .container-about .img-about img{
    width: 320px;
    height: 320px;
    border-radius: 10%;
    border: 2px solid rgb(255, 255, 255);
    margin: 0 10px 0 10px;
}

#about .container-about .info-about{
    width: 80%;
}

.mailto{
    transition: 0.3s all ease-out;
}

.mailto:hover{
    color: #504e4e;
}

.tel{
    transition: 0.3s all ease-out;
}

.tel:hover{
    color: #504e4e;
}

#about .container-about .info-about #download-cv{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c9c6c6;
    color: #000;
    font-weight: 700;
    width: 170px;
    height: 60px;
    border-radius: 6px;
    margin-top: 30px;
    transition: all 1s ease-out;
    font-size: 16px;
}

#about .container-about .info-about #download-cv:hover{
    background-color: transparent;
    border: 2px double #fff;
    box-shadow: 0 0 20px #fff;
    color: #fff;
}

#download-cv img{
    width: 22px;
    margin-left: 8px;
}
/* /ABOUTME */


/* PARTE DOS CARDS */
.boll-cards{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    z-index: 1;
    column-gap: 60px;
    row-gap: 60px;
    margin-top: 100px;
}

.container .card{
    width: 280px;
    height: 400px;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}


.container .card .content{
    padding: 20px;
    text-align: center;
    transform: translateY(100px);
    opacity: 0;
    transition: 0.5s all;
}

.container .card:hover .content{
    transform: translateY(0px);
    opacity: 1;
}

.container .card .content h2{
    position: absolute;
    top: -40px;
    right: 30px;
    font-size: 8em;
    color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.container .card .content h3{
    font-size: 1.8em;
    color: #fff;
    z-index: 1;
}

.container .card .content p{
    font-size: 1em;
    color: #fff;
    font-weight: 300;
}

.container .card .content a{
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    margin-top: 20px;
    background: #fff;
    border-radius: 15px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
/* /PARTE DOS CARDS */

/* HOVER PARA AS IMAGENS DOS CARDS SUMIREM E APARECER AS INFORMAÇÕES */

.footer{
    text-align: center;
    /* margin: 50px; */
    padding: 20px;
    margin-top: 30px;
}

.social-network{
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-network > div{
    width: 20px;
    padding: 20px;
    margin: 80px 20px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-network > div > a{
    padding: 20px;
}

.social-network > div > a > img{
    width: 20px;
    align-items: center;
}

.footer > p{
    margin: 0px 38px 10px 38px;
}


@media screen and (max-width: 1280px){

    .left p{
        width: 95%;
    }

    .right{
        justify-content: flex-end;
    }
    
    .right img{
        width: 350px;
        height: 350px;
    } 

    /* .intro{
        font-size: 2em;
    } */

    @keyframes typing{
        100%{
            max-width: 80%;
        }
    }

}
 

@media screen and (max-width: 769px){

    .welcome{
        display: flex;
        flex-direction: column-reverse;
        gap: 30px;
    }

    .right{
        justify-content: center;
    }

    .left{
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 70%;
        padding: 0 15px 0 15px;
    }

    .left h2{
        font-size: 14px;
    }

    .left p{
        width: 100%;
        margin-top: 15px;
        color: #c9c6c6;
    }

    @keyframes typing{
        100%{
            max-width: 65%;
        }
    }


    #about .container-about .img-about img{
        width: 300px;
        height: 300px;
    }

    #about .container-about .info-about{
        width: 100%;
    }

    .container{
        margin-top: 100px;
    }

} 

@media screen and (max-width: 650px){

    html{
        scroll-behavior: smooth;
        scroll-padding-top: 120px;
    }

    .header{
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .right{
        width: 100%;
        padding: 0;
        margin-top: 100px;
    }

    .left{
        width: 100%;
        padding: 0 20px;
    }

    @keyframes typing{
        100%{
            max-width: 80%;
        }
    }

    /* .intro{
        font-size: 1.8em;
    } */

    .scroll-down{
        display: none;
    }


    #about{
        margin-top: 60px
    }

    .container{
        margin-top: 150px
    }

} 

@media screen and (max-width: 489px){

    .right{
        padding: 0;
    }

    .right img{
        width: 280px;
        height: 280px;
    } 

    .left{
        padding: 0 20px;
    }

    @keyframes typing{
        100%{
            max-width: 100%;
        }
    }

    /* .intro{
        font-size: 1.5em;
    }  */

    .left p{
        margin-top: 30px;
    }

    .left #button{
        margin-top: 30px;
    }

    #about .container-about .img-about img{
        width: 280px;
        height: 280px;
    }

    #about .container-about{
        gap: 50px;
        margin-top: 30px;
    }

    .scroll-down span{
        display: none;
    }

    .scroll-down img{
        display: none;
    }

}

@media screen and (max-width: 380px){

    .left{
        padding: 0 15px;
    }

    @keyframes typing{
        100%{
            max-width: 100%;
        }
    }

    .left p{
        margin-top: 30px;
    }

    .right{
        margin-top: 100px;
    }

    .right img{
        width: 230px;
        height: 230px;
    }

    #about .container-about .img-about img{
        width: 250px;
        height: 250px;
    }

}



