.selecoes-wrapper{
    display: flex;
    flex-wrap: wrap;
    padding: 0px 6.67% 25px;
    justify-content: space-between;
}

.selecoes-wrapper .selecao{
    width: 100%;
    border-top: 1px solid #eeeeee;
}

.selecoes-wrapper .selecao:first-child {
    border-top: none;
}

.selecoes-wrapper .selecao .selecao-body{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 80px;
}

.selecoes-wrapper .selecao .selecao-body .selecao-name{
    padding-left: 20px;
    font-size: 6.4vw;
    font-weight: 600;
    text-transform: uppercase;
}
.selecoes-wrapper .selecao .selecao-body .selecao-categoria{
    display: block;
    transform: translateY(-20px);
    color: #fff;
    padding: 0 10px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
}
.selecoes-wrapper .selecao .selecao-body .logo{
    height: auto; 
    width: 50px;
}


@media only screen and (min-width: 768px) {
    .selecoes-wrapper{
        padding: 30px 3.16% 0px;
    }

    .selecoes-wrapper .selecao{
        width: calc(50% - 20px);
        border-top: none;
        margin-bottom: 40px;
    }

    .selecoes-wrapper .selecao:nth-child(3n){
        margin-right: 0;
    }

    .selecoes-wrapper .selecao .selecao-body{
        flex-direction: column;
        justify-content: center;
        height: 125px;
        background-color: #09612d;
    }

	.selecoes-wrapper .selecao .selecao-body.festas {
    	background-color: #30c1d2;
	}

    .selecoes-wrapper .selecao .selecao-body .selecao-name{
        padding: 0px 15px;
        text-align: center;
        color: #fff;
        transform: translateY(-45px);
        font-size: 24px;
        font-weight: 500;
    }

    .selecoes-wrapper .selecao .selecao-body .logo{
        background-color: #fff;
        border-radius: 50%;
        height: 80px;
        padding: 10px;
        width: 80px;
        object-fit: cover;
        object-position: center;
        transform: translateY(-60px);
    }

    .selecoes-wrapper .selecao .selecao-body .logo.default{
        padding: 0px;
        border-radius: 0;
        background-color: transparent;
    }
    .selecoes-wrapper .selecao .selecao-head{
        display: block;
        height: 200px;
        background-size: cover;
        background-position: center;
    }
}


@media only screen and (min-width: 992px){
    .selecoes-wrapper .selecao {
        width: calc(33.33% - 25px);
    }
}