/* Estilos base */
.card-imovel {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    position: relative;
}

.card-imovel:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Topo do card */
.card-imovel__topo {
    position: relative;
}

.card-imovel__imagem-container {
    height: 220px;
    overflow: hidden;
}

.card-imovel__imagem {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-imovel:hover .card-imovel__imagem {
    transform: scale(1.05);
}

.card-imovel__tag-container {
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 2;
}

.card-imovel__tag-tipo {
    display: inline-block;
    padding: 4px 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Corpo do card */
.card-imovel__corpo {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 254.39px;
    justify-content: space-between;
}

.card-imovel__titulo {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    line-break: anywhere;
}

.card-imovel__titulo a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.card-imovel__titulo a:hover {
    color: var(--cor-site-1);
}

.card-imovel__localizacao {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

.card-imovel__caracteristicas {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.card-imovel__caracteristica {
    display: flex;
    flex-direction: column;
    min-width: auto;
    position: relative;
    padding-bottom: 2px;
}

.card-imovel__caracteristica:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -16px;
    width: 1px;
    height: 60%;
    background: #b0bdc6;
    opacity: 0.6;
}

.caracteristica__valor {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    color: #6e7c86;
    margin-bottom: 2px;
}

.property-feature__icon {
    color: var(--cor-site-1, #6e7c86);
    width: 20px;
    height: 20px;
    display: inline-block;
}

.caracteristica__valor strong {
    font-weight: 700;
    color: #5a6a77;
    font-size: 14px;
    padding-bottom: 1px;
}

.caracteristica__label {
    font-size: 12px;
    color: #6e7c86;
    font-weight: 500;
    margin-top: 1px;
    letter-spacing: 0.01em;
}



/* Valor */
.card-imovel__valor-container {
    padding-bottom: 15px;
    margin-top: auto;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: flex;
    gap: 25px;
    align-items: center;
}

.card-imovel__valor {
    display: flex;
    flex-direction: column;
}

.card-imovel__valor-tipo {
    font-size: 0.75rem;
    color: #666;
}

.card-imovel__valor-preco {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cor-site-1);
}

.card-imovel__botao {
    padding: 8px 16px;
    background: var(--cor-site-1);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}

.card-imovel__botao:hover {
    background: var(--cor-site-2);
    transform: translateY(-2px);
}

/* Rodapé */
.card-imovel__rodape {
    padding: 12px 20px;
    background: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
}

.card-imovel__codigo {
    font-size: 12px;
    color: #666;
}

.card-imovel__acoes {
    display: flex;
    gap: 10px;
}

.card-imovel__acao {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-site-1);
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.card-imovel__acao:hover {
    background: var(--cor-site-1);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 1199px) {
  .card-imovel__caracteristicas {
        gap: 20px;
    }
        .card-imovel__caracteristica:not(:last-child)::after {
        right: -10px;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .card-imovel__imagem-container {
        height: 200px;
    }
    
    .card-imovel__corpo {
        padding: 15px;
    }
    .card-imovel__caracteristicas {
        gap: 24px;
    }
    .card-imovel__caracteristica:not(:last-child)::after {
        right: -12px;
    }
}
.padding-card {
    padding: 12px 12px;
}
@media (max-width: 600px) {
    .card-imovel__caracteristicas {
        gap: 16px;
    }
    .card-imovel__caracteristica {
        min-width: 50px;
    }
    .card-imovel__caracteristica:not(:last-child)::after {
        right: -8px;
        height: 65%;
    }
}