/* ─── Language Switcher (header) ─────────────────────────────────────────── */

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.lang-option {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    padding: 2px 5px;
    border-radius: 3px;
    opacity: 0.45;
    transition: opacity 0.2s;
    color: inherit;
}

.lang-option:hover {
    opacity: 0.9;
    text-decoration: none;
}

.lang-option.active {
    opacity: 1;
}

/* Separator between PT and EN */
.lang-switcher .lang-option:not(:last-child)::after {
    content: " /";
    font-weight: 400;
    opacity: 0.4;
    margin-left: 3px;
}

/* ─── Language Suggestion Banner ─────────────────────────────────────────── */

#lang-suggest-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(30, 30, 30, 0.94);
    color: #e8e8e8;
    font-size: 0.87rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

#lang-suggest-banner a.lang-suggest-link {
    color: #7eb8f7;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 1px solid rgba(126, 184, 247, 0.4);
    transition: border-color 0.2s;
}

#lang-suggest-banner a.lang-suggest-link:hover {
    border-bottom-color: #7eb8f7;
}

#lang-suggest-banner button.lang-suggest-close {
    background: none;
    border: none;
    color: rgba(232, 232, 232, 0.5);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    margin-left: 8px;
    transition: color 0.2s;
    flex-shrink: 0;
}

#lang-suggest-banner button.lang-suggest-close:hover {
    color: #e8e8e8;
}

@media (max-width: 680px) {
    #lang-suggest-banner {
        font-size: 0.82rem;
        padding: 10px 16px;
        gap: 8px;
    }
}
