/*DISPOSITIVOS PEQUENOS*/
@media screen and (min-width: 320px)  and (max-width: 1025px){
    /*CABECALHO*/
    .banner{
        top: 35%;
        left: 5%;
    }
    .banner h1{
        font-size: 1.5rem;
        line-height: 1.5rem;
    }
    .banner h2{
        font-size: 1.5rem;
    }
    .btn-banner{
        padding: .5rem;
        font-size: .7rem;
    }

    /*MENU*/
    .menu{
        width: 50%;
    }
    .menu li a{
        font-size: 1.2rem;
    }
    .mostrar .hamburguer{
        right: 38%;
    }

    /*CONHECIMENTOS*/
    .conhecimentos h2{
        font-size: 1.5rem;
    }
    .conhecimentos hr{
        width: 80px;
    }
    .conhecimentos{
        height: 100%;
    }
    .conhecimentos-content{
        margin-top: 80px;
        grid-column-gap: 1rem;
    }
    .conhecimentos-item header{
        margin-bottom: .5rem;
    }
    .conhecimentos-item i{
        font-size: 1.1rem;
        margin-right: .2rem;
    }
    .conhecimentos-item header h4{
        font-size: .9rem;
    }
    .conhecimentos-item  p{
        font-size: .6rem;
        line-height: 16px;
    }
    #html-css{
        grid-column: 2/8;
        grid-row: 1/2;
    }
    #javascript{
        grid-column: 10/16;
        grid-row: 1/2;
    }
    #python{
        grid-column: 1/7;
        grid-row: 3/4;
    }
    #wordpress{
        grid-column: 11/17;
        grid-row: 3/4;
    }
    #php{
        grid-column: 2/8;
        grid-row: 5/-1;
    }
    #git{
        grid-column: 10/16;
        grid-row: 5/-1;
    }
    #imagem-svg{
        grid-column: 6/11;
        grid-row: 3/4;
    }

    /*PROJETOS*/
    .projetos h2{
        font-size: 1.5rem;
    }
    .projetos hr{
        width: 80px;
    }
    .projetos-content{
        flex-direction: column;
    }
    .projetos-content .projeto{
        width: 100%;
        margin: 2% 0;
    }
    .projetos-link{
        padding: .5rem;
        font-size: .8rem;
    }
    .projetos-link:hover{
        transform: none;
    }

    /*FORMULARIO*/
    .formulario{
        width: 100%;
        height: 100%;
        padding: 3rem 2rem;
    }
    .formulario form{
        flex-direction: column;
    }
    .orcamento{
        width: 100%;
    }
    .orcamento h2{
        top: -15px;
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    .orcamento h4{
        font-size: 1.2rem;
    }
    .orcamento input{
        margin: 10px;
    }
    .valor{
        margin-bottom: 45px;
    }
    .valor span{
        font-size: 1.2rem;
    }
    .contato{
        width: 100%;
    }
    .contato h2{ 
        font-size: 2rem;
    }
    .informacoes input{
        margin: 0;
        width: 100%;
    }
    .contato-form input, textarea{
        padding: .3rem 0;
        margin-bottom: 20px;
    }
    .informacoes input::placeholder, textarea::placeholder{
        font-size: .9rem;
    }
    .btn-contato{
        margin-top: 0px;
        padding: .5rem;
        font-size: .9rem;
    } 
    .btn-contato:hover{
        transform: none;
    }

    /*RODAPE*/
    footer{
        padding: 1.5rem 2rem;
        text-align: center;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    footer p{
        font-size: .8rem;
        margin-bottom: 15px;
    }
    footer p a{
        font-size: .8rem;
    }
    .redes-sociais li{
        width: 20px;
        height: 20px;
        line-height: 20px;
    }
    .redes-sociais li a{
        font-size: .8rem;
    }    
}

/*DISPOSITIVOS MAIORES*/
@media screen and (min-width: 720px) and (max-width: 1025px){
    .banner{
        top: 25%
    }
    .projetos-content{
        flex-direction: row;
        justify-content: flex-start;
    }
    #imagem-svg{
        grid-column: 7/11;
        grid-row: 3/4;
    }
    .projetos-content .projeto{
        width: 48%;
        margin: 1%;
    }
}