/* ===== CARDS DE IMÓVEIS ===== */
.property-card {
    background: var(--branco);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(15, 107, 58, 0.15);
}

.property-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.property-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 3rem;
    pointer-events: none;
}

.property-card:hover .property-image {
    transform: scale(1.1);
}

.property-card:hover .property-video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.property-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-sale {
    background: var(--verde-primario);
    color: var(--branco);
}

.badge-rent {
    background: #f39c12;
    color: var(--branco);
}

.badge-sold {
    background: #e74c3c;
    color: var(--branco);
}

.badge-rented {
    background: #6c757d;
    color: var(--branco);
}

.property-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.property-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--preto);
    margin-bottom: 8px;
}

.property-location {
    font-size: 0.9rem;
    color: var(--cinza);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-location i {
    color: var(--verde-primario);
}

.property-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--verde-primario);
    margin: 12px 0;
}

.price-currency {
    font-size: 1rem;
    margin-right: 5px;
}

.property-details-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.property-detail {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-icon {
    width: 36px;
    height: 36px;
    background: rgba(15, 107, 58, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verde-primario);
    transition: all 0.3s ease;
}

.property-card:hover .detail-icon {
    background: var(--verde-primario);
    color: var(--branco);
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-value {
    font-size: 0.9rem;
    font-weight: 700;
}

.detail-label {
    font-size: 0.7rem;
    color: var(--cinza);
    text-transform: uppercase;
}

.property-type-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(15, 107, 58, 0.1);
    color: var(--verde-primario);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
}

@media (max-width: 768px) {
    .property-image-container {
        height: 220px;
    }
    .property-title {
        font-size: 1rem;
    }
    .property-price {
        font-size: 1.4rem;
    }
}