.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://thinvestimentos.com.br/imagens/imovel_background.webp') no-repeat center;
    background-size: cover;
}
.content-row {
    display: flex;
    align-items: center;
    gap: 20px;
}
.content-row > div {
    flex: 1;
}
@media (max-width: 767px) {
    .content-row {
        flex-direction: column;
    }
    .content-row > div:first-child {
        margin-bottom: 20px;
    }
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}
.service-grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}
.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}
@media (max-width: 767px) {
    .service-grid,
    .service-grid-2-col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
.service-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.service-card h3 {
    text-align: center;
}
.service-card p {
    color: #fff;
}
.services div:has(.btn-gold) {
    display: block;
    text-align: center;
}
.about .service-card {
    background-color: #fff;
    border-left: 0;
    border: 2px solid #D4AF37;
    border-radius: 5px;
}
.about .service-card h3 {
    color: #000;
}
.about .service-card p {
    color: #000;
}