/*tablets*/
@media (min-width:768px) and (max-width: 1024px){
    /*Inicio cabeçalho*/
    header section{
        background-color: black;
        color: #f1f1f1;
        font-weight: bold;
        display: flex;
        justify-content: center;
        gap: 20px;
        width: 700px;
        height: 83px;
        align-items: center;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;

        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 nav ul {
        display: flex;
        list-style: none;
        gap: 20px;
    }
    header section a{
        text-decoration: none;
        color: #f1f1f1;
        

    }
    header section #menu #burguer{
        display: none;

    }
    header section #visite_git{
        background-image: linear-gradient(to right,#6b7fc1,#00a0bc,#47ac61 );
        padding: 10px;
        border-radius: 10px;
    }
    /*Fim cabeçalho*/

    /* inicio Home*/
    #home{
        display: flex;
        margin-top: 200px;
        flex-direction: column;
        align-items: center;

    }
    #home h1{
        font-size: 40px;
    }
    #foto{
        width: 349px;
        height: 349px;
        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;
        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%;
        padding-top:130px ;
        padding-bottom:130px ;
    }
    #sobre_mim img{
        width: 350px;
        height: 350px;
    }
    #sobre_mim #informacoes_sobremim{
        width: 600px;
    }
    #minhas_skills{
        margin-top: 20px;
    }
    #minhas_skills img{
        width: 50px;
        height: 50px;
        border-radius: 5px;
    }
    /* fim  sobre mim */

    /*inicio experiencia*/
    #experiencia{
        border-radius:30px;
        width: 500px;
        height: 590px;
        padding: 120px 10px 120px 10px;
    }
    .titulo{
        display: flex;
        align-items: center;
        justify-content: 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;
        height: 300px;
        padding: auto;
        border: 3px solid black;
        margin-top:15px ;
        border-radius: 10px;
        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: 70px;
}
#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*/
}
    