@media screen and (min-width: 0 ) {
    .calendario-eventos{
        margin: auto;
    }

    .eventos{ 
        display: flex;
        flex-wrap: wrap;
    }

    .evento{
        height: 300px;
        width: 100%;
        background: black;
        overflow: hidden;
        border-radius: 5%;
        box-shadow: 0px 4px 15px RGBA(0, 0, 0, 0.5);
        margin: 5px;
        position: relative;
    }
    
}

@media screen and (min-width: 768px){
    .calendario-eventos{
        width: 80%;
        margin: auto;
    }
    
    .eventos{ 
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .evento{
        height: 300px;
        width: 300px;
        background: black;
        overflow: hidden;
        border-radius: 5%;
        box-shadow: 0px 4px 15px RGBA(0, 0, 0, 0.5);
        transition: width 500ms, height 500ms, transform 500ms, background-color 500ms ease;
        margin: 5px;
        position: relative;
    }
}

.evento{
    position: relative;
    transition: width 500ms, height 500ms, transform 500ms, background-color 500ms ease, filter 1000ms ease;
    transform: scale(0.95);
    filter: grayscale(50%);
    background: rgba(240, 187, 5 , 0); 
    background: linear-gradient(rgba(240, 187, 5 , 0), rgba(49, 49, 49, 0.8)); 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.evento:hover {
    transform: scale(1);
    filter: grayscale(0);
}

.evento-placa{
    position: absolute;
    top: 1px;
    left: 1px;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0,0,0,0.4);
    transition: background-color 500ms ease;
}

.evento:hover .evento-placa{
    background-color: rgba(0,0,0,0);
}

.evento-tos{
    background: linear-gradient(rgba(240, 187, 5 , 0), rgba(49, 49, 49, 0.8)), url("../img/banner_tos.jpg"); /* The least supported option. */
}

.evento-funrun{
    background: linear-gradient(rgba(240, 187, 5 , 0), rgba(49, 49, 49, 0.8)), url("../img/banner_funrun.jpg"); /* The least supported option. */
}

.evento-ruckpush{
    background: linear-gradient(rgba(240, 187, 5 , 0), rgba(49, 49, 49, 0.8)), url("../img/banner_ruckpush.jpg"); /* The least supported option. */
}

.evento-halfgames {
    background: linear-gradient(rgba(240, 187, 5 , 0), rgba(49, 49, 49, 0.8)), url("../img/banner_halfgames.jpg"); /* The least supported option. */
}

.evento-rfgames {
    background: linear-gradient(rgba(240, 187, 5 , 0), rgba(49, 49, 49, 0.8)), url("../img/banner_rfg.jpg"); /* The least supported option. */
}

.evento-sixweeks {
    background: linear-gradient(rgba(240, 187, 5 , 0), rgba(49, 49, 49, 0.8)), url("../img/banner_6wc.jpg"); /* The least supported option. */
}

.evento-informacoes {
    padding: 0.7rem;
    position: absolute;
    bottom: 19px;
    left: 15px;
    color: #fff;
    z-index: 2;
}

.evento-informacoes p{
    color: #fff;
}

.evento-titulo{
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 0.15rem;
    color: #fff;
    font-size: 35px;
    font-weight: 800;
    line-height: 1;
}

.datas-eventos{
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 20px;    
    display: flex;
    flex-direction: row;
}

.datas-eventos p{
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 20px;    
}

.data-evento {
    padding: 0.25rem;
}