/* ============================================================
   components/marketplace-topbar.css
   Tarja promocional superior do marketplace
   ============================================================ */

.marketplace-topbar {
    width: 100%;
    background: #1f4d34;
    color: #ffffff;
    font-size: 0.82rem;
}

.marketplace-topbar-container {
    width: 100%;
    max-width: 1220px;
    min-height: 28px;
    margin: 0 auto;
    padding: 3px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.marketplace-topbar-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.marketplace-topbar-text strong {
    color: #f2dfb2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.74rem;
}

.marketplace-topbar-text span {
    color: inherit;
}

.marketplace-topbar-link {
    min-height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 800;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.marketplace-topbar-link:hover {
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 900px) {
    .marketplace-topbar-container {
        gap: 8px;
        padding: 4px 14px;
    }
}

@media (max-width: 520px) {
    .marketplace-topbar-text span {
        display: none;
    }

    .marketplace-topbar-link {
        min-height: 21px;
        padding: 3px 9px;
    }
}