
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@500&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Josefin Sans', sans-serif;
}

button{
    cursor: pointer;
}
body{
    background-color: #282828;
}
header{
    width: 100%;
    height: 70px;
    display: flex;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .4);
    border-radius: 0 0 2px 2px;
    background-color: white;
}
header .divisao#logo{
    display: flex;
    width: 40%;
    justify-content: center;
    align-items: center;
}
header .divisao img{
    height: 100%;
}

header .divisao#itens{
    display: flex;
    width: 60%;
    align-items: center;
}
header #menu{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
header .divisao p{
    font-size: 20px;
    font-weight: bold;
    border: white solid 5px;
    cursor: pointer;
    padding: 5px;
}
/*Manipulação JS*/
.home{
    
    display: block;
}
.produtos, .projetos{
    
    display: none;
}

#btn-mobile{
    display: none;
}



.corpo{
    overflow-y: auto;
    height: calc(100dvh - 70px);
    width: 100%;
}
.corpo::-webkit-scrollbar{
    width: 7px;
}
.corpo::-webkit-scrollbar-thumb{
    background-color: #62a69d;
}
/*Home
Parte-1*/


.parte1-home{
    width: 100%;
    height: calc(100dvh - 70px);
    min-height: 200px;
    background-image: url('../imagens/parte1-home-background.jpg');
    background-size: cover;
    background-position: center;
    justify-content: center;
    display: flex;
    
}
.parte1-home .paragrafos .TXT h2{
    color: #62a69d;
    font-size: 40px;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: end;
}
.parte1-home .paragrafos{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}
.parte1-home .paragrafos img{
    width: 40%;
} 
.parte1-home .paragrafos .TXT{
    width: 47%;
}
.parte1-home .paragrafos .TXT p{
    font-size: 17px;
    color: white;
    text-align: end;
    padding: auto;
    margin-bottom: 3px;
}
.parte1-home .paragrafos .TXT a{
    margin-top: 5px;
    float: right;
    background-color: #62a69d;
    text-decoration: none;
    color: white;
    padding: 10px;
    border-radius: 7px;
}
.parte1-home .paragrafos .TXT a i{
    color: white;
    font-size: 17px;
    margin-right: 5px;
}




/*Home
Parte-2*/


.parte2-home{
    background-color: rgba(40, 40, 40, .8);
    background-image: url('../imagens/TT_no_background 1.png');
    background-repeat: repeat;
    background-size: 80px;
    width: 100%;
    min-height: 100vh;
    padding-top: 40px;
}
.parte2-home h2{
    font-family: 'Josefin Sans', sans-serif;
    color: whitesmoke;
    text-shadow: 1px 1px 2px black;
    font-size: 50px;
    width: 100%;
    background-color: rgba(0, 0, 0, .6);
    padding: 7px;
    text-align: center;
    text-shadow: -2px -2px 5px gray;
}
.parte2-home h3{
    color: whitesmoke;
    font-size: 32px;
    text-align: center;
    padding: 25px 0 10px 0;
}
.parte2-home .painel-destaques{
    width: 100%;
    display: flex;
    justify-content: center;
}
.parte2-home .painel-destaques .nossos-produtos{
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%;
    justify-content: center;
}
.parte2-home .painel-destaques .nossos-produtos a{
    width: 300px;
    height: 225px;
    margin: 3px;
    transition: 0.1s;
    text-decoration: none;
}
.parte2-home .painel-destaques .nossos-produtos img{
    width: 100%;
    height: 90%;
    object-fit: cover;
    transition: 0.7s;
}
.parte2-home .painel-destaques .nossos-produtos p{
    height: 10%;
    text-align: center;
    padding-top: 4px;
    background-color: rgb(40, 40, 40);
    color: white;
    
}

.parte2-home .painel-destaques .nossos-produtos a:hover{
    transform: scale(1.01);
}
.parte2-home .painel-destaques .nossos-produtos a:hover img{
    filter: brightness(110%);
}
.parte2-home .painel-destaques .nossos-projetos{
    width: 98%;
    overflow-x: auto;
    align-items: center;
    display: flex;
    flex-direction: row;
}
.parte2-home .painel-destaques .nossos-projetos .scroll{
    width: auto;
    height: 230px;
    display: flex;
    align-items: center;

}
.parte2-home .painel-destaques .nossos-projetos::-webkit-scrollbar{
    height: 9px;
}
.parte2-home .painel-destaques .nossos-projetos::-webkit-scrollbar-thumb{
    background-color: #62a69d;
    border-radius: 5px;
}
.parte2-home .painel-destaques .nossos-projetos .scroll a{
    width: 250px;
    height: 200px;
    margin-right: 35px;
    text-decoration: none;
    transition: 0.1s;
    animation: destaque 1ms ease-in-out;
    animation-timeline: view(x);
    animation-range: cover 0% cover 100px;
}
.parte2-home .painel-destaques .nossos-projetos .scroll a p{
    width: 100%;
    padding: 4px;
    height: 25px;
    background-color: rgb(40, 40, 40);
    color: white;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.parte2-home .painel-destaques .nossos-projetos .scroll a img{
    width: 250px;
    height: 175px;
    object-fit: cover;
    margin-right: 10px;
}
.parte2-home .painel-destaques .nossos-projetos .scroll a:hover img{
    filter: brightness(110%);
}
.parte2-home .painel-destaques .nossos-projetos .scroll a:hover{
    transform: scale(1.01);
}


@keyframes destaque {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}





/*Home
Parte-3*/




/*Produtos
Parte-1*/
.produtos{
    background-color: white;
    /*background-color: #282828;*/
}

.produtos .itens-prod{
    height: 390px;
    background-color: white;
    display: flex;
    /*border: solid 5px #282828;*/
    /*margin-bottom: 13px;*/
    /*border-radius: 7px;*/
    border: solid 5px white;
    border-top: solid 8px white;
    border-bottom: solid 8px white;
}


.produtos .itens-prod#churrasqueiras, .produtos .itens-prod#pilares{
    border: solid 5px #282828;
    background-color: #282828;
    border-top: solid 8px #282828;
    border-bottom: solid 8px #282828;
}
.produtos .itens-prod#churrasqueiras .prod-txt, .produtos .itens-prod#pilares .prod-txt{
    color: white;
}




.produtos .itens-prod .prod-img{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #282828;
    overflow: hidden;
    width: 50%;
}
.produtos .itens-prod .prod-img img{
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    
}
.produtos .itens-prod .prod-txt{
    padding: 10px;
    overflow-y: auto;
    width: 50%;
}
.produtos .itens-prod .prod-txt::-webkit-scrollbar{
    width: 7px;
}
.produtos .itens-prod .prod-txt::-webkit-scrollbar-thumb{
    background-color: #62a69d;
}
.produtos .itens-prod .prod-txt h2{
    justify-content: end;
    text-align: end;
    padding: 5px;
}
.produtos .itens-prod .prod-txt p{
    font-size: 18px;
    justify-content: start;
    text-align: end;
    margin-top: 20px;
}



















/*Projetos Finalizados*/
.projetos .projetos-finalizados{
    display: block
}
.projetos .projetos-finalizados .proj-tipo{
    border-bottom: 10px solid #282828;
    border-top: 10px solid #282828;
    display: flex;
    flex-direction: row;
    /*background-color: white;*/
    width: 100%;
    height: 430px; 
}
.projetos .projetos-finalizados .proj-tipo .texto{
    display: flex;
    position: relative;
    text-align: start;
    justify-content: center;
    align-items: end;
    width: 60%;
    /*padding: 15px;*/
    overflow-y: auto;
    overflow-x: hidden;
}
.projetos .projetos-finalizados .proj-tipo .texto::-webkit-scrollbar{
    width: 7px;
}
.projetos .projetos-finalizados .proj-tipo .texto::-webkit-scrollbar-thumb{
    background-color: #62a69d;
}
.projetos .projetos-finalizados .proj-tipo .texto p{
    /*text-indent: 40px;*/
    letter-spacing: 1.5px;
    padding: 12px;
    font-size: 1.5em;
    line-height: 1.5;
    text-align: start;
    width: 100%;
    color: white;
    background-color: #285f58;
}


.projetos .projetos-finalizados .proj-tipo .fundo-img{
    display: flex;
    background-color: #285f58;
    width: 40%;
    align-items: center;
    justify-content: center;
    position: relative;
}
.projetos .projetos-finalizados .proj-tipo .fundo-img .rolo{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    align-items: center;
    overflow: hidden;
    scroll-behavior: smooth;
}
.projetos .projetos-finalizados .proj-tipo .fundo-img .rolo img{
    width: 100%;
    min-width: 100%;
    max-height: 90%;
    object-fit: cover;
}

.projetos .projetos-finalizados .proj-tipo .fundo-img button.esq{
    position: absolute;
    color: white;
    background-color: transparent;
    border-radius: 5%;
    cursor: pointer;
    z-index: 1;
    left: 0;
}
.projetos .projetos-finalizados .proj-tipo .fundo-img button.dir{
    position: absolute;
    color: white;
    background-color: transparent;
    border-radius: 5%;
    cursor: pointer;
    z-index: 1;
    right: 0;
}
.projetos .projetos-finalizados .proj-tipo .fundo-img button i{
    font-size: 50px;
}
.projetos .projetos-finalizados .proj-tipo .fundo-img button:disabled{
    opacity: 30%;
    cursor: auto;
}






/*Footer*/

footer{
    margin-top: 7px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 10px;
    width: 100%;
    background-image: url('../imagens/roda_foot.webp');
    background-size: cover;
    background-position: center;
}
footer .box-maps{
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 3px 6px darkslategray;
    overflow: hidden;
    max-width: 40%;
    width: 450px;
    height: 300px;
}
footer .box-maps iframe{
    width: 100%;
    height: 100%;
}
footer .box-text{
    display: block;
    padding: 5px;
    width: 50%;
    margin-top: 0;
}
footer .box-text p{
    padding: 3px;
    font-size: 18px;
    color: white;
    margin-bottom: 20px;
}
footer .box-text img{
    margin-top: 8px;
    margin-right: 25px;
    float: right;
    margin-bottom: 10px;
    width: 140px;
}
footer .box-text a{
    text-decoration: none;
    color: white
}
.wpp a{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    padding: 15px;
    background-color: green;
    border-radius: 50%;
    box-shadow: 1px 1px 2px black;
    border: solid 2px white;
}
.wpp a i{
    color: white;
    font-size: 30px;
}






/*media query*/
@media (min-width: 1288px) and (max-width: 1350px){
    .parte2-home .painel-destaques .nossos-produtos{
        width: 90% 
    }
    
}
@media (min-width: 1350px) and (max-width: 1580px){
    .parte2-home .painel-destaques .nossos-produtos{
        width: 77%
    }
    
}
@media (min-width: 1580px) and (max-width: 1615px){
    .parte2-home .painel-destaques .nossos-produtos{
        width: 98%
    }
    
}

@media only screen and (max-width: 450px){
    .projetos .admin-area .form-envio-proj input{
        font-size: 12px;
    } 
}

@media only screen and (min-width: 1000px){
    .produtos .itens-prod .prod-txt{
        padding-left: 150px;
    }
    .produtos .itens-prod .prod-txt p{
        margin-top: 50px;
    }
}
@media only screen and (max-width: 660px){
    header{
        justify-content: space-around;
    }
    header .divisao#logo{
        width: 75%;
    }
    header .divisao#itens{
        width: auto;
    }
    header #menu{
        display: block;
        position: absolute;
        width: 100%;
        height: 0;
        top: 70px;
        right: 0;
        background-color: white;
        z-index: 10;
        transition: .6s;
        visibility: hidden;
        overflow-y: hidden;
    }
  
    #itens.active #menu{
        height: 130px;
        visibility: visible;
    }
    #btn-mobile{
        display: flex;
        cursor: pointer;
        padding: 20px;
        border: none;
        background-color: rgb(231, 231, 231);
        border-radius: 2px;
        box-shadow: 3px 3px 3px rgb(174, 172, 172);
    }
    #hamburguer{
        display: block;
        color: #62a69d;
        width: 30px;
        border-top: 4px solid;
    }
    #hamburguer::after, #hamburguer::before{
        content:'';
        display: block;
        width: 30px;
        height: 4px;
        background: currentColor;
        margin-top: 5px;
        transition: .3s;
        position: relative;
    }
    #itens.active #hamburguer{
        border-top-color: transparent;
    }
    #itens.active #hamburguer::before{
        transform: rotate(135deg);
        color: rgb(255, 50, 10);
    }
    #itens.active #hamburguer::after{
        transform: rotate(-135deg);
        color: rgb(255, 50, 10);
        top: -8.2px
    }
    /*Home
    Parte-1*/
    .parte1-home .paragrafos .TXT h2{
        font-size: 28px;
    }
    .parte1-home .paragrafos .TXT p{
        font-size: 14px;
    }
    .parte1-home .paragrafos{
        display: flex;
        flex-direction: column;
    }
    .parte1-home .paragrafos img{
        width: 90%;
    } 
    .parte1-home .paragrafos .TXT{
        width: 90%;
    }
    /*Home
    Parte-2*/
    .parte2-home h2{
        font-size: 35px;
    }

    /*Parte Produtos*/
    
    .produtos .itens-prod{
        height: 450px;
        background-color: white;
        display: flex;
        flex-direction: column;
    }
    .produtos .itens-prod .prod-img{
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #282828;
        overflow: hidden;
        width: 100%;
        height: 50%;
    }
    .produtos .itens-prod .prod-txt{
        padding: 10px;
        overflow-y: auto;
        width: 100%;
        height: 50%;
    }

    /*Parte Projetos*/
    .projetos .projetos-finalizados .proj-tipo{
        flex-direction: column;
    }
    .projetos .projetos-finalizados .proj-tipo .texto{
        width: 100%;
        height: 50%;
        align-items: start;
    }
    .projetos .projetos-finalizados .proj-tipo .fundo-img{
        width: 100%;
        height: 50%;
    }
    .projetos .projetos-finalizados .proj-tipo .fundo-img img{
        max-width: 95%;
        max-height: 95%;
    }
    footer{
        flex-direction: column;
    }
    footer .box-maps{
        max-width: 100%;
    }
    footer .box-text{
        margin-top: 20px;
        width: 100%;
    }
}





/*ADMINISTRAÇÃO T & T*/
.loginAdmin{
    background-image: url("../imagens/parte1-home-background.jpg");
    background-size: cover;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loginAdmin .loginBox{
    background-color: rgba(241, 255, 255, 1);
    width: 300px;
    box-shadow: 2px 5px 5px black;
    border-radius: 15px;
    padding: 20px;
}

.loginAdmin .loginBox h4{
    color: slateblue;
    font-size: 35px;
}
.loginAdmin .loginBox input{
    padding: 5px;
    border: 2px solid rgba(0, 155, 59, 0.8);
    width: 250px;
    caret-color: rgba(0, 155, 59, 0.8);
    outline: 0;

}
.loginAdmin .loginBox .senha-admin{
    position: relative;
    width: 250px;
    height: auto;
    margin-bottom: 20px;
}
.loginAdmin .loginBox .senha-admin input{
    padding: 5px 30px 5px 5px;
    margin-bottom: 0;
}
.loginAdmin .loginBox .senha-admin i{
    position: absolute;
    font-size: 20px;
    right: 5px;
    color: rgba(0, 155, 59, 1);
    padding-top: 3px;
}
.loginAdmin .loginBox button{
    padding: 5px;
    background-color: rgb(42, 42, 255);
    color: rgb(0, 0, 0);
    width: 250px;
    cursor: pointer;
}
.loginAdmin .loginBox h4,.loginAdmin .loginBox input,.loginAdmin .loginBox button{
    margin-bottom: 20px;
    border-radius: 5px;
}

.projetos .admin-area{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.projetos .admin-area .form-envio-proj{
    margin-top: 20px;
    background-color: white;
    width: 90%;
    max-width: 900px;
    padding: 20px;
    border-radius: 10px;
}
.projetos .admin-area .form-envio-proj label, .projetos .admin-area .form-envio-proj input{
    font-size: 18px;
    margin-bottom: 7px;
    font-family: 'Rubik', sans-serif;
} 
.projetos .admin-area input, .projetos .admin-area textarea, .projetos .proj-tipo .texto textarea, .projetos .proj-tipo .texto input{
    border-color: #39726a;
    border-radius: 15px;
    caret-color: #39726a;
    background-color: azure;
    padding: 5px;
    width: 95%;
}

.projetos .admin-area .form-envio-proj button{
    background-color: #62a69d;
    padding: 20px 70px;
    border: solid 1px #39726a;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    
}
.projetos .proj-tipo .texto textarea{
    resize: vertical;
}
.projetos .projetos-finalizados .proj-tipo button{
    color: #282828;
    background-color: antiquewhite;
    padding: 5px;
}

.projetos .projetos-finalizados .proj-tipo .cancelamento{
    position: absolute;
    top: 0;
    right: 0;
}
.projetos .projetos-finalizados .proj-tipo .favorito{
    position: absolute;
    top: 0;
    right: 26px;
}
.projetos .projetos-finalizados .proj-tipo .nofavorito{
    position: absolute;
    top: 0;
    right: 26px;
}
.projetos .projetos-finalizados .proj-tipo .cancelamento button{
    color: red;
    width: 26px;
}
.projetos .projetos-finalizados .proj-tipo .nofavorito button{
    color: black;
    width: 26px;
}
.projetos .projetos-finalizados .proj-tipo .favorito button{
    color: yellow;
    width: 26px;
}
.sair a{
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 5px;
    background-color: red;
    color: white;
    border-radius: 15px;
    border: solid 1px white;
    text-decoration: none;
}

.projetos .projetos-finalizados .cad-img{
    width: 100%;
    height: 100px;
    border: 1px solid white;
    background-color: rgba(1, 51, 128, 0.5);
    color: white;

}
.projetos .projetos-finalizados .deleta-imagem{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background-color: rgba(255, 0, 0, .5);
    border: 1px solid white;
    color: white;
}
.projetos .projetos-finalizados .deleta-imagem button{
    width: 130px;
    height: 98px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOEAAADhCAMAAAAJbSJIAAAAllBMVEX////+AAL7AAD2AAD5///1AAD/AAH3///8///4///9AQP0///yAAD+/fv7BQj8/P/1qKD5pqH5qqXzrKT5+//7r6L1+/31//r6pJz7/fb6rKP0sab7s6n5p6D9+vr5iYT1ko389v34zNP70dP3sKz+g4HnAAD6hoT0iYj4koz7iYzzkI36r63zraDytqjyuavvdGL3bmyxo98XAAALPUlEQVR4nO2d63qjOBJAjS5GgAFfcRoc3OnOzsSTpHfm/V9uq5Cd9oVLYSNgvtX53W1R1qEk4aIymVgsFovFYrFYLBaLxWKxWCwWi8VisVgsFovFYrFYLBYLBRHGwQ8hcmFwjFj9jMU3gwPUsxaH2auIc4NDiFd+CEx+hbXE4j9/TPmTUgbHWHLJ9iYHqAYV3fOp4/C52JoRFUZIp8zn/F2oIURdqwNnjuMztpokRkRV7gZG8CPG34cQNRZ/slnkOFEkeSrMXEDGZ+AIjMAOfYsqwkmwZ6AoMjUj6hoV1SOAqG9ev6KGqGjkHPEZB1HDjscINvw0gNO/qLHas5n8Gj/ifO52fQEZlw7Tk8h9EPV7f6IeFZ06v0FRvS6X/vy3oke4fHP7EjWEhZ7zi+FR1LmIu/uWA8yiFyGCqG99iRqrNyblRYBTFHUhulszUsiivn8+hU7E2ffOPr8GiOJaUa0piLoKvE6mcR1kU3Y9AkYJs5h3ndBuAEX3XJYMD6LKpVh3cQHBRl4pqgcAUf8yLypmUS5LAkRR2bPbhagrGOBC0eMUYkZ97+DzaxCTODiU+XMUFWYxCF4e+5bXbja9nb/TNHL5blTUakVPos6W6sGlv1C0Eo6iGlwYY/UnL1X0SAR3ysKFbHPvNYRqkkrus6oYIaNK/tZpTGfUKnoCRXXvPxKDoiUp5soTY6KGa++Ae/2mC5gtRX7vHAY7yfyGEM2JCid6zqL60TGjMrZw87tERUWlX5JFLwJ0fMnewKjugwwOfzQoWoQIos7gXozbD7AWWfPnI3CYOqjwjhEa+DFr0OdEdKeowUfpQl+C5PxH0P2tKF5hM9xkqXMUFdJNuwdUkEU/eNSk6Okr5K/B3fd6TYTqiXNChEdRg+SlzaejooSbAFOZw+Rn59EheSzm14em6m95thBJm093axf6yxB5plp9NhUvV2LFiKL6KGouiNkgFJMdLPSEm9DHZ3s70fkjkxNbOLfxiJ5Rc2KESbyjTSAqOssM7tryxJvzpm3NkUJU4nFRpDNY6ClJxmEsUwYPUCIXYsWZT8k3WlRCRkVFOShKCRAVfXRr38R2Mm/e2WhA1KXXvEddq1/UHAN70sz4CfglcefUrBcxuRCNc+h9SqqiU/bLpKIaESbeki4qh4wa1l2UUB/waQRFmVZUGH9OA3hiIVuI6q5rMqoARae0OxAX+p6eJuaxt5yRM6p8Fm5NhK+gPMlQyKL/NbPQl1yVioMla5FRgwpRwwQVjZzmEHGh5z0pqknaiCrn7ro0o6KipKRVLPRpv7/MxG4bUdNyUVUGBzLyQh/3GqEK84CcUeHy5q66FhUU3TFyFuW7SY+KagK1mJFFxZ9trkQVKuPEdRWy6KYmW5niJQkWKCplHx5x/ny9VNMV9afM0HGpHhHCvYgZlRAiiMpX56VF4VoUihLCw6cyr/0rWqBiQRbV4SDq74oNoT6JhuJC/xEMER4CGZUqqoM/hKvt6X+qTHLCMqhjzNR6oAAVzCKKGhFFhUv1UNRCUdphyfclZtGBAiyCjL0WorKVQlEVOYviQj9EFj3nJCplQoqMiqJ+zjhxoXec1Ov+yW8bUNRggaJSQgRRV8pVKS08EFnyD9hcDBohBpmI1Yw6I5zNi0075d/CPxowi56hXoS7lLSM6keS/83Iik4zd6gsekXuLRgnZVQft3CUZQKyKJepgd+X7kPlYkkWlQYu9JsxKKpReJiSDm3ppzIeRSc6o3oLThOVgO87EhQdFyiq7ErUkSmqiWPhrnhnmk6zYDyKfpG7haiPBscYKLoaOphSYEM9552IykenqAYOGsG8A1HZdDVGRY94KXtIVB8VzYaOogYQdfWQqLA5H6uiGhFvvYdE9UHRES30pSjxzOV9ohYL/ZgV1YSxWhGPRyUzyDfuWDbblYjcE3PS8eEWNk1HnEXPEBBia1HxvMvHr6gmT1TGiKVFZxEyvvNGr6hG5Fu4F1uKClk0dTup9O8HVz2DqOQQYaHn3EytmilA1FUrUbGU61+iqEbkbpFRyXPIlq7hQqDuSYK/yXubiP3jui//qjkE1JL2G33hKL4WNsAvhA8Qikna4j6UEePL4IH3NPpnLTL6DALTu8vfhyLYzIhF6SfaFGsOzrGcklSU/jWJ5GLNMZCQyynPQ7yn/H0osCidWE55AYqqvKGvvpFCUVIh0G2E2IDCi2uLNUcAKnr3Uwws1hy9qOKzbRa9mEYmn9WYn0SFiVb0bk4ZdbSiJtRyymqI5e9DoRV97ME+vmhrqBnMwwiFBZn334THCLEBhZeEI1w2xD0LfRlFVbGZrkWPoTL5sKIayKjLybZ5xF4J1+qDseiux6S3EWJpkbipKh4WoTLaexNEyqqKh6Wo+O0wQsioN1XFA3IqSm8GK36jmqYMvyPE3lPjEVWoDXGhh1TESO8SO7qqeDSibujllOwfTq8qfhrFYepUlE6SlPOlu+DUqmIHRTXaWZOEUrs2Fb9BgjVw5KriUYjapuI3E8lLQi5/9wtRB57DtfsxpWVRLErHcko1id0FsfzdR1GVyAe8G5V4JS70zGdyp8+2Km5RrHkqfx+MlYzKmlaVheh8lVNi+XuLquKnulc0jRKu3ZSqaFFOeSxKL97TaFFVzOfKbK/iSpSHWZRWdv+l6PG/JmreQtTMUAvYRlZS0ovSL6os1IvnUauKo0LUAZLN2l3RFMVySn5bThm7+EM4WVTh9S2q7vFLpKxWDbbrc2pVMT4qVnHfvxFn190pK2GlFb/iJXCXnC7qc7+/869vGqhWffu+wyuL0nNBLn/XvYofbFjYhvMev7XUFqWrmF5VjOdF011Nzjnr8dv47e8qa9VglSMXa2JnzbSvsr7bHr+V33tjOWXiptTy9x5Fve3xWxVhc8VvmEzIVcX9iXrT47eS5nJKkW8FUVTdq9g1Xs1QNFClXBBMDK2cklxV3Gmv4moqevyW4E9pFb9tqoq761VcTSo5TVGfWvFbVBXT3l0vehUXnTVNUdvj9zI8J2rxao8ST2RRsXoqMSYqKEqJT2fRV/rqlcf0Ys2iBawxUVFR0kIPc/jR4r0Jjy6qc2wBa6IEbi2WtCKLYqGft/x0pZ4kp1UVF021cwNFcEXTKuKTUb5pexLIY9FG1I2JGrifXNIqnUCj1Gt7pwjsrEnPqPKnAU3VgfHmQ29xXLrvBUndApYQIpwW91sDe5sk2JM6Jk75633PqfOEKCrjexEbsPSbUO9SOg3ttn3GPrz7Xu3xcldkzGloAYuSHFxT1W8CRI1qIsS+ag+9N7GdNPYqjqR82xp7ZpMEh3pRH+3xC6I29Spm0oyiGhD1jdeI+nCPX1z6VzVNtSGX870xRTXue5WoReu/3cNfrlDP1b2KYZnYm1NUo4L3yjM5zODjrf+KptqVJ1B58MwpqvkmJiCqXyIq7LbTDh4yiFB5q9LOmpABCkXNP45y3xi/2X9jj99fHY29VWlZQutDUU0cfC+5gGl3bairehX3oKimEBVO+r+D9LttQw2iimtRC0W9PhTVBH+xs2XLQI/frXq+bAHr96ao5kbUrttQg6iXLWCnErZqPb41BKK+Y0blzqnHb8d//xBEPetVjH+tq09FNYWo/nGhN9GG2vO+ehX3ragmD96OP3AyUNRAo4BTr2JUFdfB3l9sCzGjznysBDXT41eFx6baUXEe7FlRTSEqkztT5S4qKVrAcnnoX1ENisqlwR6/urPmIIpqQJzv0mSPXxDVTWdDKVog1A/D72GF4udQihbk3wKzxUoqjrEXnNExGi7A+AvmSg2nqMVisVgsFovFYrFYLBaLxWKxWCwWi8VisVgsFovl/47/Ae0fqHLPtrkpAAAAAElFTkSuQmCC);
    margin-left: 20px;
    background-size: cover;
    background-position: center;
}
.projetos .projetos-finalizados .deleta-imagem button img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.5s;
    opacity: 100%;
    z-index: 1;
}
.projetos .projetos-finalizados .deleta-imagem button img:hover{
    opacity: 0%;
}

/*Fim Area Admin*/









