.clube{
    margin: 30px 0;
}
.clube .conteudo{
    background-color: #f2f2f2;
    border-radius: 20px;
    margin-top: 130px;
}
.clube .logo{
    justify-content: center;
}
.clube .logo img{
    width: 100%;
    max-width: 450px;
    margin-top: -130px;
}
.clube .msg{
    justify-content: center;
}
.clube .msg .bloco{
    max-width: 80%;
    margin: 30px 0;
    padding: 10px 30px;
    border: solid 1px #41ab34;
    box-sizing: border-box;
    border-radius: 60px;
}
.clube .msg .bloco .linha{
    align-items: center;
}
.clube .msg img{
    width: 40px;
    margin-right: 10px;
    display: block;
}
.clube .msg p{
    font-size: 18px;
    text-align: center;
    line-height: 22px;
    color: #656565;
}
.clube .msg span{
    font-family: "Nunito-ExtraBold";
    color: #004138;
}
/* Blocos */
.empresas .bloco{
    width: 50%;
}
/* Fix Margin */
.fix-margin{
    width: 100%;
    box-sizing: border-box;
    margin: 0 20px;
    overflow: hidden;
}
.fix-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-left: -20px;
}
.empresas .item{
    align-items: center;
    justify-content: flex-start;
    height: 110px;
    margin-left: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 10px;
    background-color: #ffffff;
}
.empresas .imagem{
    justify-content: center;
    height: 100%;
}
.empresas .imagem img{
    height: 100%;
    max-height: 100%;
}
.empresas .texto p{
    padding-left: 20px;
    color: #656565;
}
/* Botao */
.clube .botao{
    padding-top: 20px;
    padding-bottom: 30px;
    flex-direction: column;
    align-items: center;
}
.clube .botao p{
    color: #656565;
}
.clube .botao a{
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #41ab34;
    color: #ffffff;
    border-radius: 30px;
    font-size: 10pt;
    font-family: "Nunito-Bold";
    -webkit-transition: background-color 250ms linear;
    transition: background-color 250ms linear;
}
.clube .botao a:hover{
    background-color: #004138;
}
@media screen and (max-width:1024px) {
    .empresas .bloco{
        width: 100%;
    }
}
@media screen and (max-width:520px) {
    .empresas .bloco .item{
        flex-direction: column;
        height: auto;
    }
    .empresas .bloco .item img{
        height: 90px;
        margin-bottom: 10px;
    }
    .empresas .texto p{
        padding-left: 0;
        text-align: center;
    }
    .clube .botao p{
        text-align: center;
        padding: 0 10px;
    }
}