#paginaParceiros {
    float: left;
    width: 100%;
}

/* Lista de Eventos */

.listaDeEventos {
    float: left;
    width: 100%;
    padding: 70px 0;
}

.listaDeEventos ul {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
}

.listaDeEventos ul li {
    display: flex;
    align-items: center;
}

.listaDeEventos ul li .boxDataDestaque {
    width: 130px;
    min-width: 130px;
    border-radius: 20px;
    min-height: 130px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(133deg, rgba(36,36,36,1), rgba(232,246,154,1));
    flex-direction: column;
    margin-right: 20px;
}

.listaDeEventos ul li .boxDataDestaque .dia {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    line-height: 50px;
}

.listaDeEventos ul li .boxDataDestaque .mes {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    margin-top: 5px;
}

.listaDeEventos ul li .boxDataDestaque .texto {
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.listaDeEventos ul li figure {
    width: 320px;
    min-width: 320px;
    margin-right: 20px;
}

.listaDeEventos ul li .boxDados {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.listaDeEventos ul li .boxDados h2 {
    float: left;
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.listaDeEventos ul li .boxDados .texto p {
    font-size: 13px;
    line-height: 20px;
    margin: 0;
}

.listaDeEventos ul li .boxDados a {
    background-color: #E8F69A;
    border: solid #E8F69A 2px;
    color: #070707;
    display: inline-block;
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    margin-top: 20px;
    transition: all 0.2s linear;
}

.listaDeEventos ul li .boxDados a:hover {
    background: #fff;
}

/* Banner Conteúdo */

.bannerConteudo {
    float: left;
    width: 100%;
    padding: 0 0 70px 0;
    text-align: center;
}

.bannerConteudo a {
    display: inline-block;
}

.bannerConteudo picture {
    display: inline-block;
}

@media (max-width: 1200px) {

    .listaDeEventos ul li .boxDataDestaque {
        width: 100px;
        min-width: 100px;
        height: 100px;
    }

    .listaDeEventos ul li .boxDataDestaque .dia {
        font-size: 40px;
        line-height: 40px;
    }

    .listaDeEventos ul li figure {
        width: 240px;
        min-width: 240px;
    }

}

@media (max-width: 1000px) {

    .listaDeEventos .col-sm-9,
    .listaDeEventos .col-sm-3 {
        width: 100%;
        float: left;
    }

    .boxSidebar {
        margin-top: 40px;
    }

    .boxSidebar .imagemSidebar {
        text-align: center;
    }

}

@media (max-width: 768px) {

    .listaDeEventos {
        padding: 40px 0;
    }

    .listaDeEventos ul li {
        flex-flow: row wrap;
    }

    .listaDeEventos ul li .boxDados {
        margin-top: 30px;
    }

}

@media (max-width: 500px) {

    .listaDeEventos ul li {
        flex-flow: inherit;
        flex-direction: column;
    }

    .listaDeEventos ul li .boxDataDestaque {
        width: 100%;
        max-width: 100%;
        margin: 0 0 20px 0;
        height: 80px;
    }

    .listaDeEventos ul li .boxDataDestaque .dia {
        font-size: 35px;
        line-height: 35px;
    }

    .listaDeEventos ul li figure {
        margin: 0;
        width: 100%;
        max-width: 100%;
    }

    .listaDeEventos ul li figure img {
        width: 100%;
    }

}