/* ==========================================================================
   Top Bar
   ========================================================================== */
.iubello-topbar {
    background: var(--color-azul);
    color: #fff;
    font-size: 0.8125rem;
    height: var(--topbar-height);
    position: relative;
    z-index: 1001;
}

.iubello-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.iubello-topbar__social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.iubello-topbar__social-link {
    color: rgba(255,255,255,0.8);
    transition: color var(--transition);
    display: flex;
}

.iubello-topbar__social-link:hover {
    color: #fff;
}

.iubello-topbar__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.iubello-topbar__quicklinks {
    display: flex;
    gap: 1rem;
}

.iubello-topbar__quicklinks a {
    color: rgba(255,255,255,0.85);
    font-size: 0.8125rem;
    transition: color var(--transition);
}

.iubello-topbar__quicklinks a:hover {
    color: #fff;
}

.iubello-topbar__separator {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.3);
}

.iubello-topbar__search-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255,255,255,0.85);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.8125rem;
    transition: color var(--transition);
    padding: 0;
}

.iubello-topbar__search-btn:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .iubello-topbar__quicklinks,
    .iubello-topbar__separator,
    .iubello-topbar__search-text {
        display: none;
    }
}
