.language-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.language-dropdown i {
    font-size: 20px;
    color: var(--color-primario);
    transition: color 0.3s ease;
}

.language-dropdown:hover i {
    color: var(--color-secundario);
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    top: 40px;
    right: 0;
    width: 160px;
    z-index: 1000;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* 🔹 AHORA EL MENÚ SE ABRE CON UNA CLASE ACTIVA */
.dropdown-content.active {
    display: block;
}

.lang-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    width: 100%;
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lang-btn i {
    margin-right: 12px;
    font-size: 16px;
}

.lang-btn:hover {
    background: #f0f8ff;
}

.lang-btn span {
    font-weight: 500;
}