/* ===== TOPBAR - RESTART CLINIC ===== */
:root {
    --primary-blue: #28b6f6;
    --primary-dark: #003153;
    --white: #ffffff;
    --white-soft: #f8faff;
    --gray: #64748b;
    --text-dark: #1e293b;
}

.topbar {
    background: var(--white-soft);
    border-bottom: 1px solid rgba(40,182,246,0.1);
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.topbar .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar-item i {
    color: var(--primary-blue);
    font-size: 0.9rem;
    width: 1.2rem;
    text-align: center;
}

.topbar-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.topbar-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.topbar-item a:hover {
    color: var(--primary-blue);
}

/* Mobile */
@media (max-width: 768px) {
    .topbar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .topbar {
        display: none; /* Opcional: esconder topbar no mobile */
    }
}