.card-casas-xl{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border: 1px solid white;
    border-radius: 15px;
    background-color: var(--bg-color-light);
    margin: 50px 0;
}

@media screen and (max-width: 768px) {
    .card-casas-xl{
        flex-direction: column;
        align-items: center;
        margin: 30px 0;
    }
}

.card-casas-xl img{
    width: 150px;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    .card-casas-xl img{
        margin-bottom: 25px;
    }
}

.card-casas-xl__content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-casas-xl__content .card-casa-texto{
    font-size: 20px;
    margin: 0 0 15px 0;
    padding: 0;
}

@media screen and (max-width: 768px) {
    .card-casas-xl__content .card-casa-texto{
        font-size: 16px;
    }
    
}

.card-casas-xl__bottom{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 30px;
    margin: 0;
    gap: 15px;
}

.card-casas-xl__bottom p{
    font-size: 12px;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .card-casas-xl__bottom p{
        font-size: 10px;
    }
    
    .card-casas-xl__bottom p{
        text-align: center;
        margin-bottom: 10px;
    }
    
}

.card-casas-xl .cta-btn-artigos{
    max-width: 200px;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .card-casas-xl .cta-btn-artigos{
        width: 100%;
        max-width: none;
        margin-top: 15px;
    }
}