/* Favoritos Maiopção - compatível com os cards existentes */
.maiopcao-fav-card-wrap { position: relative; }

.maiopcao-favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 25;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 106, 186, .22);
    background: rgba(255,255,255,.96);
    color: #006ABA;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .16);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, color .18s ease, background .18s ease;
}

.maiopcao-favorite-btn:hover,
.maiopcao-favorite-btn:focus-visible {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 6px 18px rgba(15, 23, 42, .22);
    outline: 2px solid rgba(0, 106, 186, .28);
    outline-offset: 2px;
}

.maiopcao-favorite-btn i { font-size: 1.15rem; pointer-events: none; }
.maiopcao-favorite-btn.is-favorite { color: #dc3545; border-color: rgba(220,53,69,.26); }
.maiopcao-favorite-btn.is-favorite i::before { font-weight: 900; }

.maiopcao-favorite-detail {
    position: static;
    width: auto;
    min-width: 44px;
    height: 42px;
    border-radius: 999px;
    padding: 0 14px;
    gap: 8px;
    margin-left: auto;
}

.maiopcao-favorite-detail .favorite-label { font-size: .82rem; font-weight: 600; }

.favoritos-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.favoritos-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: #006ABA;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.favoritos-header-btn .favoritos-count { background: #006ABA; color: #fff; }
.favoritos-nav-link .favoritos-count { margin-left: 4px; }

.favoritos-page-hero {
    padding: 36px 0 22px;
    background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
    border-bottom: 1px solid #e8eef5;
}
.favoritos-page-title { color: #006ABA; margin: 0; font-weight: 700; }
.favoritos-page-subtitle { color: #64748b; margin: 8px 0 0; }

#favoritos-grid .favorite-list-card {
    height: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(15, 23, 42, .06);
    transition: transform .18s ease, box-shadow .18s ease;
}
#favoritos-grid .favorite-list-card:hover { transform: translateY(-2px); box-shadow: 0 9px 24px rgba(15,23,42,.11); }
#favoritos-grid .favorite-list-image { position: relative; height: 220px; background: #f1f5f9; overflow: hidden; }
#favoritos-grid .favorite-list-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
#favoritos-grid .favorite-list-body { padding: 16px; }
#favoritos-grid .favorite-list-title { color: #1e293b; font-weight: 700; font-size: 1rem; margin-bottom: 5px; }
#favoritos-grid .favorite-list-location { color: #64748b; font-size: .82rem; margin-bottom: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
#favoritos-grid .favorite-list-price { color: #006ABA; font-size: 1.08rem; font-weight: 700; }
#favoritos-grid .favorite-list-ref { color: #94a3b8; font-size: .72rem; }
#favoritos-grid .favorite-status { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(15,23,42,.78); color:#fff; border-radius: 999px; padding: 5px 9px; font-size: .7rem; font-weight: 700; }
#favoritos-grid .favorite-proposal { position: absolute; top: 12px; left: 12px; right: auto; z-index: 2; max-width: calc(100% - 78px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; background: linear-gradient(135deg,#1a365d 0%,#006ABA 100%); color:#fff; border-radius:999px; padding:5px 10px; font-size:.68rem; font-weight:700; letter-spacing:.35px; }
#favoritos-grid .favorite-actions { display: flex; gap: 8px; margin-top: 14px; }
#favoritos-grid .favorite-actions .btn { flex: 1; }

.favoritos-empty {
    max-width: 620px;
    margin: 45px auto 70px;
    padding: 38px 24px;
    text-align: center;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
    background: #f8fafc;
}
.favoritos-empty i { font-size: 2.4rem; color: #94a3b8; margin-bottom: 15px; }

@media (max-width: 576px) {
    .maiopcao-favorite-btn { width: 40px; height: 40px; top: 10px; right: 10px; }
    .maiopcao-favorite-detail { position: static; width: auto; padding: 0 12px; }
    #favoritos-grid .favorite-list-image { height: 200px; }
    .favoritos-page-hero { padding-top: 24px; }
}

/* O item FAVORITOS segue exatamente a tipografia do restante menu. */
.navbar-nav .favoritos-nav-link {
    font-family: inherit !important;
    font-size: inherit;
    font-weight: 500 !important;
    letter-spacing: inherit;
}
