/*celulares*/
@media (max-width:768px){
    /*Inicio cabeçalho */
    header section{
        background-color: black;
        color: #f1f1f1;
        font-weight: bold;
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        width: 325px;
        height: 60px;
        align-items: center;
        margin-top: 10px;

        position: fixed; /* Fixa o menu na tela */
        top: 0%; /* Posiciona o menu na metade da tela verticalmente */
        left: 50%; /* Posiciona o menu na metade da tela horizontalmente */
        transform: translate(-50%); /* Centraliza o menu perfeitamente */
        border-radius: 50px; /* Borda arredondada do menu */
        opacity: 0.9;
    
    }
    
    header section #itens{
        display: none;
    }
    header section #itens ul {
        display: flex;
        text-align: center;
        flex-direction: column;
        list-style: none;
        margin-top:10px ;
        gap: 5px;
    }
    header section #visite_git{
        display: none;
        background-image: linear-gradient(to right,#6b7fc1,#00a0bc,#47ac61 );
        padding: 10px;
        border-radius: 10px;
    }
    header section a{
        text-decoration: none;
        color: #f1f1f1;
        

    }
    header section #menu{
        display: flex;
        flex-direction: row;
        gap: 40px;
    }
    header section #burguer{
        cursor: pointer;
    }
   
    /*FIM cabeçalho*/
    /* inicio Home*/
    #home{
        display: flex;
        align-items: center;
        margin-top: 100px;
        flex-direction: column;
    }
    #home h1{
        font-size: 40px;
    }
    #foto{
        width: 300px;
        height: 300px;
        display: flex;
        justify-content: center;
        
    }
    #apresentacao{
        width: 100%;
        margin-top: 40px;
        text-align: center;
         
        
    }
    #apresentacao ul{
        list-style: none;
        display: flex;
        
    }
    .texto_gradient{
        background-image: linear-gradient(to right, #6b7fc1,#00a0bc,#47ac61);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
    }
    .icone{
        border-radius: 10px;
        margin-top: 20px;
    }
    
    /* fim Home*/
    /* inicio  sobre mim */
    #sobre_mim{
        display: flex;
        flex-direction: column;
        align-items: center;
        border-top: 5px solid transparent; 
        border-bottom: 5px solid transparent; 
        border-image: linear-gradient(to right, #6b7fc1,#00a0bc,#47ac61) 1;
        padding-top: 40px;
        padding-bottom: 40px;
        width: 100%;
    }
    #sobre_mim img{
        width: 300px;
    }
    #sobre_mim #informacoes_sobremim{
        width: 300px;
    }
    #minhas_skills{
        margin-top: 20px;
        align-items: center;
    }
    #minhas_skills img{
        width: 50px;
        height: 50px;
        border-radius: 5px;
        
    }
    /* fim  sobre mim */

    /*inicio experiencia*/
    #experiencia{

        margin-top: 100px;
        padding: 60px 10px 60px 10px;
    }
    .titulo{
        display: flex;
        justify-content: center;
        align-items: center;
        background-image: linear-gradient(to right, #6b7fc1,#00a0bc,#47ac61);
        color: white;
        margin:auto;
        width: 300px;
        height: 50px;
        border-radius:30px;
    }
    .conteudo{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border: 3px solid black;
        margin-top:15px ;
        border-radius: 5px;
        box-shadow: 2px 2px 2px 2px rgb(121, 121, 121);    
    }
   
    .conteudo ul{
        padding-left: 40px;
        padding-top: 10px;
        display: inline-block;
    }
/*fim experiencia*/

/* inicio projetos*/
#projetos{
    margin-top: 20px;
}
#projetos #logo_projeto{
    width: 300px;
    height: 200px;
    border-radius: 1rem;
}
.projeto{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 300px;
    height: 390px;
    margin-top: 30px;
    text-align: center;
    border: 2px solid black;
    border-radius: 3rem;
    padding: 2.5rem 2rem;
    align-items: center;
    transition: transform 0.3s ease;
    box-shadow: 2px 2px 2px 2px rgb(121, 121, 121);

}
.projeto nav {
    width: 250px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.projeto nav a{
    text-decoration: none;
    border: 2px solid black;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    color: black;   
}
.projeto:hover {
    transform: scale(1.1); 
    cursor: pointer; 
}
.projeto nav a:hover {
    transform: scale(1.2); 
    cursor: pointer; 
    background-image: linear-gradient(to right, #6b7fc1,#00a0bc,#47ac61);
    border: none;
    color: white;
}

/*fim projetos*/


}
    