/* Estilos dos paineis de projetos */
.painel-titulo {
    text-align: center;
    font-size: 2rem;
    position: relative;
    top: -3rem;
}

.painel-lista {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.painel-quadros {
    background-color: white;
    border-radius: 50px;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.507);
    height: 350px;
    margin: 10px;
    position: relative;
    transition: .3s;
    top: -2rem;
    width: calc(28% - 20px);
    padding-bottom: 10px;
}

.painel-quadros img {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.253);
    height: 200px;
    position: static;
    object-fit: cover;
    border-radius: 50px 50px 0 0;
}

.painel-int {
    padding-top: 1.5rem;
}

.painel-int li:first-child {
    color: black;
    font-size: 1.5rem;
}

.painel-int li {
    color: rgba(0, 0, 0, 0.61);
    padding: 2px;
    font-size: 1.4rem;
}

.painel-quadros a {
    text-align: center;
    position: absolute;
    height: 100%;
    width: 100%;
}

.painel-quadros:hover {
    box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.377);
}

.painel-texto {
    color: black;
    font-size: 1.5rem;
    position: relative;
    top: -2rem;
    text-align: center;
    margin: 2rem;
}

.painel-texto a:hover {
    text-decoration: underline;
    color: green;
}

/* Responsividade para telas menores */

@media screen and (max-width: 1290px) {
    .painel-quadros {
        width: calc(48% - 20px);
    }
}

@media screen and (max-width: 900px) {
    .painel-quadros {
        width: calc(80% - 20px);
    }
}

@media screen and (max-width: 600px) {
    .painel-quadros {
        width: calc(100% - 20px);
    }
}

@media screen and (max-width: 500px) {
    .painel-quadros {
        width: 100%;
        top: -3rem;
    }
    .container{
        padding-right: 1%;
        padding-left: 1%;
    }
}