/* ═══════════════════════════════════════════════════
   Empreendimentos Comerciais — style.css v2.0.0
   Escopo: listagem via widget Elementor
   (o single tem CSS próprio inline no template)
   ═══════════════════════════════════════════════════ */

/* ── Wrapper da lista ────────────────────────────── */
.empreendimentos-lista {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* ── Card ────────────────────────────────────────── */
.empreendimento-card {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,.09);
    transition: transform .3s ease, box-shadow .3s ease;
}
.empreendimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

/* ── Imagem ──────────────────────────────────────── */
.empreendimento-image {
    width: 100%;
    height: 100%;
    min-height: 340px;
    overflow: hidden;
}
.empreendimento-image a {
    display: block;
    width: 100%;
    height: 100%;
}
.empreendimento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
    display: block;
}
.empreendimento-card:hover .empreendimento-image img {
    transform: scale(1.06);
}

/* ── Conteúdo ────────────────────────────────────── */
.empreendimento-content {
    padding: 36px 36px 36px 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.empreendimento-titulo {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.empreendimento-descricao {
    font-size: 15px;
    color: #666;
    line-height: 1.65;
}

/* ── Tags ────────────────────────────────────────── */
.empreendimento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag {
    display: inline-block;
    padding: 5px 14px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.tag-status {
    background: #e3f2fd;
    color: #1565c0;
}

/* ── Métricas (grid 3 colunas na listagem) ───────── */
.empreendimento-detalhes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}
.detalhe-item { text-align: left; }
.detalhe-label {
    font-size: 11px;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.detalhe-valor {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

/* ── Ações ───────────────────────────────────────── */
.empreendimento-acoes {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: auto;
}
.btn {
    padding: 13px 26px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all .25s ease;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: inline-block;
}
.btn-primary {
    background: #d32f2f;
    color: #fff;
}
.btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(211,47,47,.3);
    color: #fff;
}
.btn-secondary {
    background: #444;
    color: #fff;
}
.btn-secondary:hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(0,0,0,.2);
    color: #fff;
}

/* ── Responsivo ──────────────────────────────────── */
@media (max-width: 1024px) {
    .empreendimento-card {
        grid-template-columns: 380px 1fr;
    }
}
@media (max-width: 800px) {
    .empreendimento-card {
        grid-template-columns: 1fr;
    }
    .empreendimento-image {
        height: 280px;
        min-height: 0;
    }
    .empreendimento-content {
        padding: 28px;
    }
    .empreendimento-detalhes {
        grid-template-columns: 1fr 1fr;
    }
    .empreendimento-acoes {
        flex-direction: column;
    }
    .btn { text-align: center; }
}
@media (max-width: 480px) {
    .empreendimento-detalhes {
        grid-template-columns: 1fr;
    }
}
