
@import url('https://fonts.googleapis.com/css2?family=Julius+Sans+One&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 12px; 
}


::-webkit-scrollbar-thumb {
    background-color: #2E2E2E; 
    border-radius: 10px; 
}


::-webkit-scrollbar-track {
    background-color: #000000; 
    border-radius: 10px; 
}

body{
    background-color: #2E2E2E;
    font-family: "Julius Sans One", sans-serif;
    color: #FFFFFF;
}

main{
    display: flex;
    flex-direction: column;
    gap:40px
}

a{
    text-decoration: none;
    color: inherit;
}

.menu-bar{
    background-color: #000000;
    height: 4rem;
    display: flex;
    align-items: center;
    position: fixed;
    z-index:2;
    width: 100%;
    top:0;
}

.menu-item-container{
    display:flex;
    align-items: center;
    gap:2rem;
    list-style: none;
    margin: auto 0;
}

nav{
    max-width: 1120px;
    background-color:#000000;
}

.menu-item{
    cursor: pointer;
    font-weight:700;
}

.menu-item:hover{
    border-bottom: solid 1px #FFFFFF;
    padding-top: 3px;
    font-weight: bold;
}


.about-me{
    max-width: 1200px;
    height: 90vh;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;

    padding:0rem 0rem;
    margin: auto;
    
}

.aboutme-text{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.container-text{
    padding-right: 1rem;
}

.align-text{
    text-align: justify;
}



#typing{
    display: inline-block;
    letter-spacing: 4px;
    font-weight: 400;

    animation: typing 2s steps(22), blink 0.5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid;
}

@keyframes typing {
    from{
        width: 0;
    }
    to {
        width:30%; /* Defina o valor final de acordo com o tamanho do texto */
    }
}

@keyframes blink {
    50%{
        border-color:transparent;
    }
    
}

.title-container{
    margin-left: 6rem;
    margin-top: 2rem;
    font-size: 3rem;
    font-weight: 400;
    margin-top: 6rem;
}


.resume-download{
width: 25%; 
height: 2rem; 
background-color: #D9D9D9;


display: flex !important;
flex-direction: row !important;
justify-content: center !important;
/*align-items: center !important;*/
gap:0.5rem !important;


font-size: 1.5rem;
font-family: "Julius Sans One", sans-serif;;
font-weight: 800;

border-radius: 1rem;
border: none;

cursor: pointer;
transition: width 1s ease;
}

.resume-download:hover{
    background-color: #2E2E2E;
    color: #FFFFFF;
    border: #FFFFFF solid 1px;
}

.resume-download-img{
    margin: auto 0;
}


h3{
    font-weight: 500;
}

.title{
    font-size: 3rem;
    font-weight: 600;
}

.graduation{
    margin-bottom: 1rem;
    margin-left: 1rem;
}

.img-profile{
    border: #312d2d solid 3px;
    border-radius: 10rem;
    animation: oscilacao 3s ease-in-out infinite;

    /* para imagem nova*/
    width: 45vh;
}

@keyframes oscilacao {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(30px); 
    }
}

.projects{
    display: flex;
    flex-direction: column;

    max-width: 100%;


    gap:4rem;

    padding:0rem 0rem;
    margin: auto;

    background-color: #000000;


}

.projects-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap:1rem;
    

    background-color: #000000;
    margin: 0 8rem;
    margin-bottom: 3rem;
}

.projects-div{
    border-radius: 1rem;

    max-width: 23%;
    display: flex;
    flex-direction: column;
    gap:0.2rem;

    background-color: #2E2E2E;
    cursor:pointer;
    transition: box-shadow 0.3s ease;
}

.projects-div:hover{
    box-shadow:  0 0 10px  #c4c2c2;
}

.projects-div:hover .appointer{
    border: #FFFFFF solid 3px;
    width: 1rem;
}

.projects-div:hover .project-title{
    font-weight: 600;
 }

.project-img{
    width: 100%;  
    height: 100%; 
    object-fit: cover;
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
}

.img-container{
    width: 300px;  
    height: 200px; 
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-project-skills{
    display: flex;
    flex-direction: row;
    gap:0.5rem;   
}

.project-title{
    font-size: 1.5rem;
    padding: 0rem 0.5rem ;
}

.project-description{
    font-size: 12px;
    padding: 0rem 1rem;
    text-align: justify;
}

.img-project-skills{
    list-style: none;
    padding: 0rem 1rem;
    padding-bottom: 1rem;
    flex-wrap: wrap;
}

.head-project{
    display: flex;
    align-items: center;
    padding: 0rem 1rem;
    
}

.head-project:hover .appointer{
    border: #FFFFFF solid 3px;
    width: 1rem;
}

.head-project:hover .project-title{
   font-weight: 600;
}

.appointer{
    border: #FFFFFF solid 2px;
    border-radius: 3px;
    width: 3px;
    transition: width 0.2s ease;
}


.project-skills{
    display: inline-block;
    background-color: #4e4e4e;
    padding: 0.5rem 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

.project-skills:hover{
    background-color: #6d6d6d;
}

.skills{
    display: flex;
    flex-direction: column;
}

.skills-logo{
    width: 80%;
    display: flex;
    flex-direction: row;
    margin: 40px auto;
    gap: 2rem;

}

.img-tec{
    width: 60px;
    cursor: pointer;
}




.icon-container {
    position: relative;
    display: inline-block;
    text-align: center;
}

.caption {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.icon-container:hover .img-tec {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.icon-container:hover .caption {
    opacity: 1;
}

.container{
    height: 40%vh;
    width:80%;
    margin-top: 1rem;
}

.slider-wrapper{
    overflow: hidden;

    max-width: 1200px;
    margin: 0 70px 55px;
}

.slider-wrapper .swiper-pagination-bullet{
    background-color: #000000;
    height: 15px;
    width: 15px;
}

.slider-wrapper .swiper-button-prev{
    color: #000000;
    transition:  0.2s ease;
}

.slider-wrapper .swiper-button-next{
    color: #000000;
    transition:  0.2s ease;
}

.certifications-div{
    height: 100%;
    width: 80%;
    margin: 0 auto;

    display: flex;
    flex-direction: row;
}

.certifications{
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    border-radius: 1rem;
    width: 400px;
    gap:1rem;
    padding: 1rem 1rem;
    cursor: pointer;
}

.certifications:hover{
    box-shadow:  0 0 10px  #7a7a7a;
}

.certifications:hover .appointer{
    border: #FFFFFF solid 3px;
    width: 1rem;
}

.certifications:hover .project-title{
   font-weight: 600;
}

#certification-name{
    font-size: 1rem;
}

.certifications-img{
    width: 100%;
}

.github{
    background-color: #000000;
    display: none;
}

footer{
    background-color: #000000;
    height: 180vh

}

.contact{
    display: flex;
    flex-direction: row;
    width: 80%;
    margin: 3rem auto;
    gap: 3rem;
}

.contac-informations{
    display: flex;
    flex-direction: column;
    gap:1rem;
    height: 100%;
}

.contact-title{
    padding-top: 0rem;
}

.contact-section{
    display: flex;
    flex-direction: row;
    gap:0.5rem;
    align-items: center;
}

.social-medias{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-media-icons{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    cursor: pointer;
}

.text-center{
    font-size: 3rem;
    font-weight: 400;
    margin-top: 4rem;
}

.card{
    background-color: #2E2E2E;
}

.btn-primary{
    background-color: #D9D9D9;
    border-color: #D9D9D9;
    color: #000000;
    font-weight: bold;
}

.btn-primary:hover{
    background-color: #2E2E2E;
    color: #FFFFFF;
    border: #FFFFFF solid 1px;
}

.btn-primary.cliked{
    background-color: #2E2E2E;
    color: #FFFFFF;
    border: #FFFFFF solid 1px;
}