/* ==========================================
   BUENO_LG.CSS - Estilos do Seletor de Idioma
   ================================---------- */
.lang-switcher-container {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 3px 6px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.8rem;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: rgba(6, 182, 212, 0.25);
    color: #22d3ee;
    font-weight: bold;
}

.lang-btn:hover {
    color: #22d3ee;
}