/* ===================================================================
   IMOBILLE.CSS — Estilos permanentes da Imobille Gestão
   Este arquivo NÃO pode ser sobrescrito pelo admin "CSS Personalizado".
   Carregado por último no layout (após color.php) com cache-busting.
   Para estilos via admin, use a seção "CSS Personalizado" no painel.
   =================================================================== */

/* ===========================
   Property Card - Novo Layout
   =========================== */

/* Badges (Linha 1) */
.property-card__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.property-card__badges .badge--type {
    background-color: #f8d7da !important;
    color: #b53342 !important;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #f1aeb5 !important;
}

.property-card__badges .badge--airbnb {
    background-color: #fff0f0 !important;
    color: #FF5A5F !important;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #FF5A5F !important;
}

.property-card__badges .badge--cod {
    background-color: #f5f5f5 !important;
    color: #666 !important;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #ccc !important;
}

.property-card__badges .badge--primary,
.property-card__badges .badge--success,
.property-card__badges .badge--warning {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Título (Linha 2) - max 2 linhas */
.property-card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-card__title a {
    color: #1a1a2e;
    text-decoration: none;
}

.property-card__title a:hover {
    color: hsla(var(--base));
}

/* Localização (Linha 3) */
.property-card__location {
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-card__location i {
    color: hsla(var(--base));
    font-size: 13px;
    flex-shrink: 0;
}

/* Preço + Botão (Linha 4) */
.property-card__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.property-card__price {
    font-size: 17px;
    font-weight: 700;
    color: hsla(var(--base));
    white-space: nowrap;
}

/* Features / Detalhes (Linha 5) */
.property-card__features {
    display: flex;
    justify-content: space-between;
    gap: 4px;
    padding-top: 12px;
}

.property-card__feature {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.property-card__feature-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.property-card__feature-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.property-card__feature-label {
    font-size: 11px;
    color: #999;
    line-height: 1.2;
}

.property-card__feature-value {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    white-space: nowrap;
}

/* ===========================
   Property Details
   =========================== */

/* Descrição do imóvel - cor do texto */
.property-details__desc {
    color: #444 !important;
}

/* ===========================
   Hero Banner - Background Placeholder
   =========================== */

.banner {
    position: relative !important;
    overflow: hidden !important;
}

.banner-content {
    margin-top: 0;
}

.banner-bg-placeholder {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.banner-bg-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner > .container {
    position: relative;
    z-index: 1;
}

/* Animação floating na imagem PNG do hero */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.banner-thumbs {
    animation: float 4s ease-in-out infinite !important;
}

/* Floating cards na seção Sobre */
.floating-card--one {
    animation: float 4s ease-in-out infinite !important;
}

.floating-card--two {
    animation: float 5s ease-in-out infinite !important;
    animation-delay: 1s !important;
}

.floating-card__title {
    color: hsl(var(--base)) !important;
}
