/* Seletor de idiomas — páginas parceiro / admin login standalone */
.partner-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 12px;
    background: #f4f4f4;
    border: 1px solid #e8e8e8;
}

.partner-lang-switch__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 30px;
    padding: 0 6px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color 0.15s, background 0.15s, transform 0.15s, color 0.15s;
    text-decoration: none;
    background: #fff;
    color: #333;
}

.partner-lang-switch__code {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
}

.partner-lang-switch__item:hover {
    border-color: #ccc;
    transform: translateY(-1px);
    color: #111;
}

.partner-lang-switch__item.is-active {
    border-color: #00a699;
    background: #e8faf8;
    color: #008f84;
    box-shadow: 0 0 0 1px rgba(0, 166, 153, 0.25);
}

.partner-lang-switch--bar {
    width: 100%;
    justify-content: center;
    padding: 8px 12px;
}

@media (max-width: 480px) {
    .partner-lang-switch__item {
        min-width: 30px;
        height: 26px;
        padding: 0 4px;
    }

    .partner-lang-switch__code {
        font-size: 0.68rem;
    }
}
