/* CONFIGS GERAIS */

@import url('https://fonts.googleapis.com/css2?family=Chilanka&family=Fira+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
    margin: 0;
    overflow-x: hidden;
    font-family: "Fira Sans Condensed";
}

/* ================================================================= */

/* PÁGINA */

@media (min-width: 800px) {

    .projetosDivTxtImg {
        width: 90%;
        margin: 5%;
    }
    
    .divTxtImg {
        display: flex;
        justify-content: left;
        margin: 5% 0 5% 0;
        width: 100%;
        height: 10%;
    }
    
    #img {
        width: 400px;
        height: 275px;
        /* desloc-horizontal, desloc-vertical, blur, "spread effect" */
        box-shadow: 7px 7px 0px 0px #33E46D;
        padding: 0;
    }
    
    .txtBtnProj {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 0 0 5%;
    }
    
    #projTit {
        font-size: 30px;
        font-weight: 600;
        margin: 0 0 1% 0;
    }
    
    #descProj {
        font-size: 16px;
        margin: 2% 0 2% 0;
        line-height: 20px;
    }
    
    .projBtn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 200px;
        height: 45px;
        font-family: "Fira Sans Condensed";
        font-weight: 600;
        background-color: #33E46D;
        color: #FFFFFF;
        border: 0;
        cursor: pointer;
    }
    
    #saibaMaisIcon {
        padding: 0 0 0 7%;
        font-size: 20px;
    }

}


@media (max-width: 799px) {

    .projetosDivTxtImg {
        width: 90%;
        margin: 5%;
    }
    
    .divTxtImg {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
        margin: 5% 0 5% 0;
        width: 100%;
        gap: 20px;
    }
    
    #img {
        width: 100%;
        /* desloc-horizontal, desloc-vertical, blur, "spread effect" */
        box-shadow: 7px 7px 0px 0px #33E46D;
        padding: 0;
    }
    
    .txtBtnProj {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    #projTit {
        font-size: 26px;
        font-weight: 600;
        margin: 1.5% 0 0 0;
    }
    
    #descProj {
        font-size: 14px;
        margin: 2.5% 0 5% 0;
        line-height: 20px;
    }
    
    .btn {
        display: flex;
        justify-content: center;
    }

    .projBtn {
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 45px;
        font-family: "Fira Sans Condensed";
        font-weight: 600;
        background-color: #33E46D;
        color: #FFFFFF;
        border: 0;
        cursor: pointer;
    }
    
    #saibaMaisIcon {
        padding: 0 0 0 2%;
        font-size: 20px;
    }
    
}

