#navegar {
    width: fit-content;
    padding: 12px;

    background-color: black;
    color: white;
    font-size: 20px;
    width: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;

    /* padding-top: 15px; */

}

#navegar:hover {
    background-color: #1b1b1b;
    /* color: #111; */
    cursor: pointer;
}

.container-botoes-navegacao {
    width: 100%;
    padding: 12px;
    padding-left: 0;
    padding-right: 0px;
}

.botoes-principais-navegacao {
    text-align: center;
    justify-content: center;
    align-items: center;
    max-width: none;
}


/* The side navigation menu */
.sidenav {
    height: 100%;
    /* 100% Full-height */
    width: 0;
    /* 0 width - change this with JavaScript */
    position: fixed;
    /* Stay in place */
    z-index: 99;
    /* Stay on top */
    top: 0;
    /* Stay at the top */
    left: 0;
    background-color: #111;
    /* Black*/
    overflow-x: hidden;
    /* Disable horizontal scroll */
    padding-top: 60px;
    /* Place content 60px from the top */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in the sidenav */
}


.closebtn {
    color: #818181;
    font-size: 25px;

}

/* The navigation menu links */
.sidenav a {
    /* padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block; */
    transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
    color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s;
    padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}


.galeria-projetos {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;


}

.card-de-projeto {
    /* max-width: 10%; */
    display: flex;
    flex-direction: column;
    width: auto;
    flex-wrap: wrap;
    padding: 16px;
    max-width: 400px;
    border: 1px solid black;
    margin-left: 16px;
    margin-bottom: 16px;
    /* transition-property: box-shadow; */
    transition-duration: 8s;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);

}

@media screen and (min-width:1000px) {
    .card-de-projeto:hover {
        z-index: 2;
        box-shadow: #000000a1 1px 1px 100vh 100vw;
    }
}

.card-de-projeto:hover {
    cursor: pointer;
}

.imagem-padrao {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    /* max-width: 300px; */
    width: 100%;
    /* padding: 15px; */
}

.limitar-texto-card {
    /* max-width: 35ch; */
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;

}

@media screen and (max-width:768px) {
    .limitar-texto-card {
        font-size: 1.6em;
    }
}

.limitar-texto-card p {
    justify-content: space-between;
    display: flex;
    /* max-width: 50%; */
    /* width: 50%; */
    width: 100%;
}


.limitar-texto-card h1 {

    margin: 0px;
    margin-top: 16px;
    padding-bottom: 12px;

    text-align: left;

    text-wrap: wrap;
    word-break: break-word;
}



#main-lista-cards-projeto {
    display: flex;
    flex-direction: row;
}

.secao-menu-lateral-filtros {
    display: flex;
    flex-direction: column;
    padding-top: 16px;
    font-size: 1.5em;
}

.secao-menu-lateral-filtros input {
    margin-bottom: 16px;
}


#limpar-todos-filtros {
    margin-top: 32px;
    padding: 8px;
    background-color: rgb(255, 207, 207);
}



.botoes-principais-navegacao {

    padding: 12px;
    padding-bottom: 16px;
    padding-right: 0px;
    padding-left: 0px;
    border: 7px solid #4e4e4e;
    flex-direction: column;
    align-items: center;
    width: auto;


}




@media screen and (max-width:768px) {

    #main-lista-cards-projeto {
        flex-direction: column;
    }

    .card-de-projeto {
        padding-top: 6px;
        padding-right: 6px;
        padding-left: 6px;
        padding-bottom: 6px;
        max-width: 100%;
        margin-top: 0;
        margin-left: 3%;
        margin-bottom: 6%;
        margin-right: 3%;
    }

    .imagem-padrao {
        /* max-width: 150px; */
        width: 100%;
    }


    #limpar-todos-filtros {
        margin-top: 16px;
        margin-bottom: 32px;
    }

}