.card-casas-artigos{
    border: 3px solid white;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 400px;
    max-width: 350px;
    background-color: var(--bg-color-light);
}

.card-casa-logo{
    padding: 15px;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px 15px 0 0;
}

.card-casa-logo img{
    height: 90%;
    max-width: 100px;
    object-fit: contain;
}

.card-casa-logo p{
    background-color: var( --bg-color-dark);
    border-radius: 5px;
    padding: 5px 10px;
    margin: 0;
}

.card-casa-texto{
    text-align: center;
    font-size: 30px;
    padding: 15px;
    line-height: 1.1;

}

.card-casas-artigos__bottom{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-casas-artigos__content{
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    width: 100%;
    padding: 0 15px;
}

.cta-btn-artigos{
    width: 90%;
    background-color: var(--green);
    padding: 15px 0;
    margin-bottom: 35px;
    border-radius: 15px;
    text-align: center;
    color: var(--bg-color-dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-btn-artigos:hover{
    background-color: var(--green-dark);
    color: var(--bg-color-dark);
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .app-section-heading .wpex-row .col{
        padding: 0;
    }
}