/* Estils del selector d'idioma - COMÚ per a totes les pàgines */
.language-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 1000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 60, 150, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(2, 169, 214, 0.2);
}

.lang-btn {
    background: transparent;
    border: 2px solid #02a9d6;
    color: #003c96;
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 60px;
    position: relative;
    overflow: hidden;
}

.lang-btn:hover {
    transform: translateY(-2px);
    background: rgba(2, 169, 214, 0.08);
}

.lang-btn.active {
    background: #02a9d6;
    color: white;
    border-color: #02a9d6;
    box-shadow: 0 4px 8px rgba(2, 169, 214, 0.3);
}

/* Versió mòbil */
@media (max-width: 768px) {
    .language-switcher {
        bottom: 15px;
        right: 15px;
        padding: 6px;
        gap: 6px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 50px;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        bottom: 10px;
        right: 10px;
        padding: 5px;
        gap: 5px;
    }

    .lang-btn {
        padding: 5px 10px;
        font-size: 11px;
        min-width: 45px;
    }
}