@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;300;400;500;600;700;800;900&display=swap');

/* Typical Device Breakpoints
-------------
Pequenas Telas: até 600px
Celular : de 600 até 768px
Tablet: 768px até 992px
Desktop: 992px até 1200px
Grandes Telas: acima de 1200px
*/


/* Configurações */
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--fontpadrao);

}

/* Variaveis */
:root{
    --corclaro: #FFFBEB;
    --azulsecundario:#495579;
    --azulprimario:#263159;
    --azuldark: #251749;

    --fontpadrao:'Raleway', sans-serif;

    --shadow: 0px 8px 16px -8px rgba(0, 0, 0, 0.3);

    --escala:scale(97%);
}
@media screen and (min-width: 768px) {
/* Navbar */
    #header{
        height: 18vh;
        display: flex;
        align-items: center;
        justify-content: center;
        
    }
        #header > .navbar{
            width: 90vw;
            height: 70px;
            top: 70px;

            display: flex;
            align-items: center;
            justify-content: space-around;
            border: none;
        }
        .navbar > .menu{
            flex-direction: row;
            justify-content: center;
            column-gap: 70px;
        }

        #header > #hamburguer {
            display: none;
        }
/* Salve */
    #sobre{
        height: 82vh;

        display: flex;
        align-items: center;
    }
        .sobre{
            width: 565px;
            height: 334px;

            display: flex;
            flex-direction: column;
            row-gap: 13px;
            flex-wrap: nowrap;
            align-items: flex-start;

            margin-left: 180px;

            
            color:var(--azuldark);
        }
        .sobre > .saudacao{  
            width: 150px;  
            height: 40px;
            font-size: 20px;
            column-gap: 5px;
            
        }
        .sobre > .saudacao > .mao{
            margin: 5px 0px 0px -2px;
            width: 39px;
            height: 39px;
        }
        .sobre > h1{
            position: relative;
            font-weight: 600;
            font-size: 60px;
            line-height: 75px;
            color:var(--azuldark);
            
        }
        .sobre > p{
            font-size: 15pt;
        }
        .sobre > aside > a > img{
            width: 50px;
            height: 50px;
            
            
        }
        .img_danilo_sobre{
            display: inline-block;
        }
/* Tecnologia */

    #tecnologia{
            
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0px;

    }
    #div_tecnologia{
        width: 30%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

    }
    #div_tecnologia > .icon_menu{
        width: 210px;
        height: 40px;

    }
    #div_tecnologia > h2{
        font-size: 35px;
    }

    #icons{
        width: 70%;
        height: 100%;
    }
    #icons .icons{
        width: 65px;
        height: 65px;
    }


/* Sobre mim */
    #sobre-mim .img_danilo{
        display: none;
    }
    #sobre-mim .borda{
        width: 90%;

        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        
        padding: 15px 27px;
    }
    .btn_sobremim{
        
        width: 160px;
        height: 40px;
        
        padding-left: 0px;        
        margin-right: 50px;
    }
    .titulo_danilo{
        display: flex;
        align-items: center;

        width: 300px;
        height: 70px;
        font-size: 36px;
        line-height: 42px;
        font-weight: 600;

        margin-right: 50px;
    }
    .paragrafo_sobremim{
        
        width: 60%;
        font-size: 15px;
        font-weight: 500;
        line-height: 25px;
        margin-right: 30px;
    }


/* Trabalhos e Trajetória */
    #trabalhos, #trajetoria{
        height: 170px;
        text-decoration: none;
    }
    #trabalhos > h2, #trajetoria > h2{
        color: var(--corclaro);
        font-weight: 500;
        font-size: 40px;
    }
    #trabalhos > .icon_menu, #trajetoria > .icon_menu{
        width: 210px;
        height: 40px;

    }
    #sec-trabalhos, #sec-trajetoria{
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        
    justify-content: space-between;
        flex-direction: row;
        
        padding: 50px 70px;
    }
    #sec-trabalhos > .trabalho, #sec-trajetoria > .trajetoria {
        width: 270px;
        height: 410px;
        background-color: var(--azulprimario);
        border-radius: 15px;
        
    
        box-shadow: var(--shadow);
    }

    #contatos{
        width: 98.5vw;
        height: 300px;
    
    
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        column-gap: 20px;
    }
    #contatos > #info{
        
        color: var(--azuldark);
        width: 775px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }
    #contatos > #info > h2{
        font-size: 30px;
    }
    #contatos > #info > img{
        width: 140px;
        height: 45px;
    }
    #contatos > #botoes {
        width: 775px;
        margin-top: 50px;

        display: flex;
        justify-content: space-around;
        align-items: center;

    }
    #contatos > #botoes >div{
        border-right: 1px solid var(--azuldark);
        height: 100px;
    }
    #contatos > #botoes > img {
        width: 240px;
        height: 70px;
    }
    #contatos > #botoes > a > img {
        width: 240px;
        height: 70px;
    }
    #voltar > a {
        color: grey;
    }
}