/* ===== MELHORIAS NOS CARDS DE IMÓVEIS - BR2STUDIOS ===== */

/* ===== REDUÇÃO DO TAMANHO DO PREÇO ===== */
.property-price-mobile {
    font-size: 0.95rem !important; /* Reduzido ainda mais */
    font-weight: 700 !important;
    color: var(--color-primary) !important;
    margin-bottom: 12px !important;
    line-height: 1.2 !important;
}

/* Desktop - também reduzir o preço */
.property-price {
    font-size: 1rem !important; /* Reduzido ainda mais para desktop */
    font-weight: 700 !important;
    color: var(--color-primary) !important;
    margin-bottom: 15px !important;
}

/* Preço específico dentro do card desktop */
.property-price .price {
    font-size: 1rem !important;
    font-weight: 700 !important;
}

.property-price .price-per-sqft {
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    opacity: 0.8 !important;
}

/* ===== MELHORIAS NOS BADGES/TICKETS ===== */

/* Container dos badges - posicionamento no canto superior esquerdo */
.property-badges-mobile {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    z-index: 2 !important;
}

/* Badge individual - estilo melhorado */
.property-badge-mobile {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 5px 8px !important;
    border-radius: 12px !important;
    font-size: 0.65rem !important; /* Reduzido para caber melhor */
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    max-width: 120px !important;
    text-align: center !important;
}

/* Ícone dos badges */
.property-badge-mobile i {
    font-size: 0.6rem !important;
    flex-shrink: 0 !important;
}

/* ===== CORES ESPECÍFICAS DOS BADGES ===== */

/* Badge DESTAQUE */
.badge-destaque-mobile {
    background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* Badge VALORIZAÇÃO */
.badge-valorizacao-mobile {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* Badge ENTREGA */
.badge-entrega-mobile {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* ===== HOVER EFFECTS ===== */
.property-badge-mobile:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35) !important;
}

/* ===== RESPONSIVIDADE ===== */

/* Telas pequenas - ajustar tamanhos */
@media (max-width: 480px) {
    .property-price-mobile {
        font-size: 0.9rem !important;
        margin-bottom: 10px !important;
    }
    
    .property-badges-mobile {
        top: 8px !important;
        left: 8px !important;
        gap: 4px !important;
    }
    
    .property-badge-mobile {
        padding: 4px 6px !important;
        font-size: 0.6rem !important;
        max-width: 100px !important;
    }
    
    .property-badge-mobile i {
        font-size: 0.55rem !important;
    }
}

/* ===== CORREÇÕES PARA DESKTOP ===== */
@media (min-width: 769px) {
    .property-badges {
        position: absolute !important;
        top: 15px !important;
        left: 15px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        z-index: 2 !important;
    }
    
    .property-badge {
        display: inline-flex !important;
        align-items: center !important;
        gap: 5px !important;
        padding: 6px 10px !important;
        border-radius: 15px !important;
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.3px !important;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25) !important;
        backdrop-filter: blur(8px) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        transition: all 0.3s ease !important;
        white-space: nowrap !important;
        max-width: 140px !important;
        text-align: center !important;
    }
    
    .property-badge i {
        font-size: 0.65rem !important;
        flex-shrink: 0 !important;
    }
    
    /* Cores para desktop */
    .badge-destaque {
        background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
        color: white !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    }
    
    .badge-valorizacao {
        background: linear-gradient(135deg, #28a745, #20c997) !important;
        color: white !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    }
    
    .badge-entrega {
        background: linear-gradient(135deg, #dc3545, #c82333);
        color: white !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    }
}

/* ===== MELHORIAS GERAIS DOS CARDS ===== */

/* Card mobile - melhor espaçamento */
.property-card-mobile {
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    background: white !important;
}

.property-card-mobile:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Imagem do card - melhor posicionamento */
.property-image-mobile {
    position: relative !important;
    height: 200px !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Informações do card - melhor espaçamento */
.property-info-mobile {
    padding: 20px !important;
}

.property-title-mobile {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #333333 !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
}

.property-location-mobile {
    font-size: 0.9rem !important;
    color: #666666 !important;
    margin-bottom: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.property-location-mobile i {
    font-size: 0.8rem !important;
    color: #999999 !important;
}

/* Features do imóvel - melhor layout */
.property-features-mobile {
    display: flex !important;
    gap: 10px !important;
    margin-bottom: 15px !important;
    flex-wrap: wrap !important;
}

.property-feature-mobile {
    font-size: 0.8rem !important;
    color: #666666 !important;
    display: flex !important;
    align-items: center !important;
    gap: 3px !important;
}

.property-feature-mobile i {
    font-size: 0.7rem !important;
    color: #999999 !important;
}

/* Botão de ação - melhor estilo */
.property-action-mobile {
    display: block !important;
    width: 100% !important;
    padding: 12px 20px !important;
    background: var(--color-primary) !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    font-size: 0.9rem !important;
}

.property-action-mobile:hover {
    background: #333333 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}
