/* --- ESTILOS SELECTOR DE IDIOMA MULTILENGUAJE --- */
.lang-selector {
    position: relative;
    display: inline-block;
}

.lang-selector .lang-btn {
    background: transparent; 
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff; 
    padding: 0.4rem 0.8rem; 
    border-radius: 8px;
    cursor: pointer; 
    font-family: var(--font-body, 'Inter', sans-serif); 
    transition: 0.3s;
    display: flex; 
    align-items: center; 
    gap: 6px; 
    font-weight: 600; 
    font-size: 0.85rem;
}

.lang-selector .lang-btn:hover {
    border-color: var(--secondary, #00ffcc); 
    color: var(--secondary, #00ffcc);
}

.lang-selector .lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: rgba(5, 5, 7, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    list-style: none;
    padding: 8px 0;
    min-width: 130px;
    z-index: 2000;
    display: none;
    flex-direction: column;
}

.lang-selector .lang-menu.show {
    display: flex;
}

.lang-selector .lang-menu li {
    padding: 10px 16px;
    color: #a0a0a5;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-selector .lang-menu li:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.lang-selector .lang-menu li.active {
    color: var(--secondary, #00ffcc);
    background: rgba(0, 255, 204, 0.1);
}
